
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700&family=Roboto+Mono:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-blue: #00b4ff;      /* 主要蓝色 */
    --neon-purple: #9d4edd;    /* 紫色 */
    --neon-pink: #ff6b9d;      /* 粉色 */
    --neon-cyan: #00ffea;      /* 青色 */
    --neon-green: #00ff9d;     /* 绿色（保留兼容性）*/
    --glow-blue: 0 0 20px #00b4ff, 0 0 40px #00b4ff;
    --glow-purple: 0 0 20px #9d4edd, 0 0 40px #9d4edd;
    --glow-pink: 0 0 20px #ff6b9d, 0 0 40px #ff6b9d;
    --glow-cyan: 0 0 20px #00ffea, 0 0 40px #00ffea;
    --dark-bg: #0d0d1a;
    --darker-bg: #080814;
    --panel-bg: rgba(13, 13, 26, 0.9);
}

body {
    font-family: 'Orbitron', -apple-system, BlinkMacSystemFont, sans-serif;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 180, 255, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(157, 78, 221, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(255, 107, 157, 0.15) 0%, transparent 40%),
        var(--dark-bg);
    background-attachment: fixed;
    min-height: 100vh;
    padding: 20px;
    overflow-x: hidden;
    color: #fff;
    position: relative;
}

/* 网格背景 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 180, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    background-position: -1px -1px;
    pointer-events: none;
    z-index: -1;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% { transform: translateY(0) translateX(0); }
    100% { transform: translateY(30px) translateX(30px); }
}

/* 浮动光点 */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, var(--neon-blue) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, var(--neon-purple) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, var(--neon-pink) 0%, transparent 50%);
    filter: blur(100px);
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}
/* 添加退出按钮样式 */
        .logout-form {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }
        
        .logout-btn {
            background: rgba(255, 0, 102, 0.7);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 5px;
            cursor: pointer;
            font-family: 'Orbitron', sans-serif;
            font-size: 14px;
        }
        
        .logout-btn:hover {
            background: rgba(255, 0, 102, 0.9);
        }
.logout-form {
                top: 10px;
                right: 10px;
            }
            
            .logout-btn {
                padding: 6px 12px;
                font-size: 12px;
            }
/* 折叠容器样式 */
.collapse-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: rgba(13, 13, 26, 0.8);
    border-radius: 8px;
    cursor: pointer;
    color: var(--neon-blue);
    font-weight: 500;
    border: 1px solid var(--neon-blue);
    transition: all 0.3s ease;
    text-shadow: 0 0 10px var(--neon-blue);
}

.collapse-header:hover {
    background: rgba(18, 18, 36, 0.9);
    box-shadow: var(--glow-blue);
    transform: translateY(-2px);
}

.collapse-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: var(--neon-purple);
}

.collapse-arrow.open {
    transform: rotate(180deg);
}

.collapse-content {
    margin-top: 10px;
    padding: 15px;
    background: rgba(13, 13, 26, 0.7);
    border-radius: 8px;
    border: 1px solid var(--neon-purple);
    display: none;
}

.collapse-content.show {
    display: block;
    animation: contentFade 0.3s ease;
}

@keyframes contentFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* 调整文本输入框样式 */
.text-input-container textarea {
    min-height: 80px;
    margin-bottom: 10px;
}

/* 新增样式：文本输入框 */
.text-input-container {
    margin: 20px 0;
    padding: 15px;
    background: rgba(13, 13, 26, 0.7);
    border-radius: 10px;
    border: 1px solid var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 180, 255, 0.2);
}

.text-input-container label {
    display: block;
    margin-bottom: 10px;
    color: var(--neon-blue);
    font-weight: 500;
    text-shadow: 0 0 5px var(--neon-blue);
}

.text-input-container textarea {
    width: 100%;
    min-height: 100px;
    padding: 12px;
    border: 1px solid var(--neon-purple);
    border-radius: 6px;
    background: rgba(8, 8, 20, 0.8);
    color: #ffffff;
    font-family: 'Roboto Mono', monospace;
    resize: vertical;
    transition: all 0.3s ease;
}

.text-input-container textarea:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: var(--glow-pink);
}

.parse-btn {
    margin-top: 10px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    margin-left: auto;
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.parse-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

/* 添加图片容器样式 */
.image-container {
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background: rgba(13, 13, 26, 0.7);
    border-radius: 10px;
    border: 1px solid var(--neon-purple);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    box-shadow: 0 0 20px rgba(157, 78, 221, 0.2);
}

.image-placeholder {
    padding: 40px;
    text-align: center;
    color: #9e9e9e;
    font-style: italic;
    background: rgba(8, 8, 20, 0.6);
    border-radius: 8px;
    border: 2px dashed var(--neon-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
}

.dynamic-image {
    max-width: 100%;
    max-height: 200px;
    border-radius: 8px;
    border: 2px solid var(--neon-blue);
    box-shadow: var(--glow-blue);
}

.customer-label {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    box-shadow: 0 3px 15px rgba(0, 180, 255, 0.5);
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--panel-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--neon-blue);
    border-radius: 15px;
    box-shadow: 
        0 0 30px rgba(0, 180, 255, 0.3),
        inset 0 0 20px rgba(0, 180, 255, 0.1);
    overflow: hidden;
    position: relative;
    animation: containerGlow 3s ease-in-out infinite alternate;
}

@keyframes containerGlow {
    0% { box-shadow: 0 0 30px rgba(0, 180, 255, 0.3), inset 0 0 20px rgba(0, 180, 255, 0.1); }
    100% { box-shadow: 0 0 40px rgba(0, 180, 255, 0.5), inset 0 0 20px rgba(0, 180, 255, 0.2); }
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 60%, rgba(0, 180, 255, 0.1) 100%);
    pointer-events: none;
    z-index: 0;
}

.header {
    background: linear-gradient(135deg, rgba(0, 180, 255, 0.2) 0%, rgba(157, 78, 221, 0.2) 100%);
    color: white;
    padding: 30px 25px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--neon-blue);
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 180, 255, 0.1) 25%, 
        rgba(157, 78, 221, 0.1) 50%, 
        rgba(255, 107, 157, 0.1) 75%, 
        transparent 100%);
    animation: headerScan 8s linear infinite;
    pointer-events: none;
}

@keyframes headerScan {
    0% { transform: translateX(0); }
    100% { transform: translateX(50%); }
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.logo-container {
    flex-shrink: 0;
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* 渐变边框 */
    border: 3px solid transparent;
    background: 
        linear-gradient(rgba(13, 13, 26, 0.9), rgba(13, 13, 26, 0.9)) padding-box,
        linear-gradient(45deg, var(--neon-blue), var(--neon-purple), var(--neon-pink)) border-box;
    
    /* 内阴影 */
    box-shadow: 
        inset 0 0 20px rgba(0, 0, 0, 0.8),
        inset 0 0 40px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(0, 180, 255, 0.3);
    
    /* 发光效果 */
    filter: drop-shadow(0 0 10px rgba(0, 180, 255, 0.3));
}

/* 旋转光晕背景 */
.logo-glow {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        var(--neon-blue),
        var(--neon-purple),
        var(--neon-pink),
        var(--neon-blue)
    );
    animation: rotateGlow 3s linear infinite;
    z-index: 1;
    filter: blur(20px);
    opacity: 0.6;
}

@keyframes rotateGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* 外层脉冲光环 */
.logo-pulse {
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid var(--neon-blue);
    animation: pulseRing 3s ease-out infinite;
    z-index: 2;
    opacity: 0;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* 悬停效果 */
.logo-container:hover .logo {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 
        inset 0 0 30px rgba(0, 0, 0, 0.9),
        inset 0 0 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(0, 180, 255, 0.5),
        0 0 80px rgba(157, 78, 221, 0.3);
    border-width: 4px;
}

.logo-container:hover .logo-glow {
    animation-duration: 1.5s;
    filter: blur(25px);
    opacity: 0.8;
}

.logo-container:hover .logo-pulse {
    animation-duration: 2s;
    border-color: var(--neon-pink);
}

/* 点击效果 */
.logo:active {
    transform: scale(0.95);
    transition: transform 0.1s;
}

/* 标题容器 - 重新设计 */
.title-container {
    text-align: center;
    flex: 1;
    min-width: 200px;
    position: relative;
    padding: 25px 20px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(8, 8, 20, 0.8), rgba(5, 5, 15, 0.9));
    border: 2px solid var(--neon-blue);
    box-shadow: 
        0 0 25px rgba(0, 180, 255, 0.3),
        inset 0 0 20px rgba(0, 180, 255, 0.1),
        0 0 40px rgba(157, 78, 221, 0.2) inset;
    backdrop-filter: blur(10px);
    z-index: 2;
}

/* 标题通用样式 */
.title-container h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 2px;
    position: relative;
    text-transform: uppercase;
}

/* 第一个标题 - 蓝色霓虹灯效果 */
.title-container h1:first-child {
    color: var(--neon-blue);
    text-shadow: 
        0 0 10px var(--neon-blue),
        0 0 20px var(--neon-blue),
        0 0 30px var(--neon-blue),
        0 0 40px rgba(0, 180, 255, 0.5);
    animation: bluePulse 2s infinite alternate;
    position: relative;
}

/* 第二个标题 - 紫色霓虹灯效果 */
.title-container h1:nth-child(2) {
    color: var(--neon-purple);
    text-shadow: 
        0 0 10px var(--neon-purple),
        0 0 20px var(--neon-purple),
        0 0 30px var(--neon-purple),
        0 0 40px rgba(157, 78, 221, 0.5);
    animation: purplePulse 2s infinite alternate;
    animation-delay: 0.5s;
    margin-bottom: 5px;
}

/* 副标题样式 */
.title-container p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    font-family: 'Roboto Mono', monospace;
    margin-top: 18px;
    padding: 12px 25px;
    background: rgba(0, 180, 255, 0.15);
    border-radius: 25px;
    display: inline-block;
    border: 1px solid rgba(0, 180, 255, 0.4);
    text-shadow: 0 0 15px rgba(0, 180, 255, 0.6);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    letter-spacing: 0.5px;
    box-shadow: 0 0 15px rgba(0, 180, 255, 0.3);
    transition: all 0.3s ease;
}

/* 副标题悬停效果 */
.title-container p:hover {
    background: rgba(0, 180, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 180, 255, 0.5);
}

/* 标题下划线效果 */
.title-container h1:first-child::after,
.title-container h1:nth-child(2)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-blue), 
        var(--neon-purple),
        transparent);
    border-radius: 2px;
    opacity: 0.8;
}

.title-container h1:nth-child(2)::after {
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-purple), 
        var(--neon-pink),
        transparent);
}

/* 脉冲动画 */
@keyframes bluePulse {
    0% {
        text-shadow: 
            0 0 5px var(--neon-blue),
            0 0 10px var(--neon-blue),
            0 0 15px var(--neon-blue);
    }
    100% {
        text-shadow: 
            0 0 10px var(--neon-blue),
            0 0 20px var(--neon-blue),
            0 0 30px var(--neon-blue),
            0 0 40px rgba(0, 180, 255, 0.8);
    }
}

@keyframes purplePulse {
    0% {
        text-shadow: 
            0 0 5px var(--neon-purple),
            0 0 10px var(--neon-purple),
            0 0 15px var(--neon-purple);
    }
    100% {
        text-shadow: 
            0 0 10px var(--neon-purple),
            0 0 20px var(--neon-purple),
            0 0 30px var(--neon-purple),
            0 0 40px rgba(157, 78, 221, 0.8);
    }
}

/* 数据流背景效果 */
.title-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(0, 180, 255, 0.03) 2px,
            rgba(0, 180, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(157, 78, 221, 0.03) 2px,
            rgba(157, 78, 221, 0.03) 4px
        );
    border-radius: 10px;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
}

/* 标题容器角标 */
.title-container::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--neon-blue), 
        var(--neon-purple), 
        var(--neon-pink), 
        var(--neon-blue));
    border-radius: 14px;
    z-index: -2;
    opacity: 0.3;
    filter: blur(8px);
    animation: rotateBorder 8s linear infinite;
}

@keyframes rotateBorder {
    0% { opacity: 0.2; }
    50% { opacity: 0.4; }
    100% { opacity: 0.2; }
}

/* 响应式设计 */
@media (max-width: 768px) {
    .title-container {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .title-container h1 {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .title-container h1:first-child,
    .title-container h1:nth-child(2) {
        text-shadow: 
            0 0 8px currentColor,
            0 0 16px currentColor;
    }
    
    .title-container p {
        font-size: 14px;
        padding: 10px 18px;
    }
    
    .title-container h1:first-child::after,
    .title-container h1:nth-child(2)::after {
        width: 60px;
        height: 2px;
    }
}

@media (max-width: 480px) {
    .title-container h1 {
        font-size: 20px;
    }
    
    .title-container p {
        font-size: 13px;
        padding: 8px 15px;
    }
    
    .title-container {
        padding: 15px 12px;
    }
}

@keyframes neonFlicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 10px currentColor,
            0 0 20px currentColor,
            0 0 30px currentColor;
    }
    20%, 24%, 55% {
        text-shadow: 
            0 0 5px currentColor,
            0 0 10px currentColor,
            0 0 15px currentColor;
    }
}

@keyframes textScan {
    0% { left: -100%; }
    100% { left: 100%; }
}

.form-container {
    padding: 30px 25px;
    background: rgba(13, 13, 26, 0.7);
    position: relative;
    z-index: 1;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: inline-block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--neon-blue);
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 5px var(--neon-blue);
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: -6px;
    right: -6px;
    height: 7px;
    background: linear-gradient(90deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    border-radius: 2px;
    z-index: -1;
    opacity: 0.3;
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--neon-purple);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Roboto Mono', monospace;
    transition: all 0.3s ease;
    background: rgba(8, 8, 20, 0.8);
    color: #ffffff;
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(13, 13, 36, 0.9);
    box-shadow: var(--glow-pink);
}

.form-group select[multiple] {
    min-height: 120px;
    overflow-y: auto;
}

.form-group select[multiple] option {
    padding: 8px 12px;
    border-radius: 4px;
    margin: 2px 0;
    cursor: pointer;
    background: rgba(13, 13, 36, 0.9);
    color: #ffffff;
}

.form-group select[multiple] option:checked {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: #000;
    font-weight: bold;
}

.form-group select[multiple] option:hover {
    background: rgba(0, 180, 255, 0.3);
}

.custom-multiselect {
    position: relative;
    width: 100%;
}

.multiselect-display {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--neon-purple);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Roboto Mono', monospace;
    background: rgba(8, 8, 20, 0.8);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.multiselect-display:hover {
    border-color: var(--neon-blue);
    background: rgba(13, 13, 26, 0.9);
    box-shadow: var(--glow-blue);
}

.multiselect-display.active {
    border-color: var(--neon-blue);
    background: rgba(13, 13, 26, 0.9);
    box-shadow: var(--glow-blue);
}

.multiselect-selected {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.multiselect-tag {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: #000;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 10px rgba(0, 180, 255, 0.5);
}

.multiselect-tag .remove {
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    color: #000;
}

.multiselect-placeholder {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.multiselect-arrow {
    margin-left: 8px;
    font-size: 12px;
    color: var(--neon-purple);
    transition: transform 0.3s ease;
}

.multiselect-arrow.open {
    transform: rotate(180deg);
    color: var(--neon-blue);
}

.multiselect-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 8, 20, 0.95);
    border: 1px solid var(--neon-blue);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: var(--glow-blue);
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    backdrop-filter: blur(10px);
}

.multiselect-dropdown.show {
    display: block;
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.multiselect-option {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid rgba(0, 180, 255, 0.1);
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.multiselect-option:hover {
    background: rgba(0, 180, 255, 0.2);
}

.multiselect-option.selected {
    background: rgba(0, 180, 255, 0.3);
    font-weight: bold;
    color: var(--neon-blue);
}

.multiselect-option input[type="checkbox"] {
    width: auto;
    margin: 0;
    padding: 0;
}

.form-group input::placeholder, .form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.tip-text {
    color: #ff9900; /* 橙色 */
    text-shadow: 0 0 8px rgba(255, 153, 0, 0.6);
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    background: rgba(255, 153, 0, 0.1);
    padding: 10px 15px;
    border-radius: 8px;
    border-left: 3px solid #ff9900;
    margin-top: 8px;
    white-space: pre-line;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.copy-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: #000;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 25px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.copy-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

.copy-btn:hover::before {
    left: 100%;
}

.copy-btn:hover {
    transform: translateY(-3px);
    box-shadow: 
        var(--glow-blue),
        0 10px 20px rgba(0, 0, 0, 0.3);
}

.copy-btn:active {
    transform: translateY(-1px);
}

.success-message {
    background: rgba(0, 180, 255, 0.2);
    color: var(--neon-blue);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: center;
    display: none;
    border: 1px solid var(--neon-blue);
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-blue);
}

.ratio-rent-notification {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(8, 8, 20, 0.95);
    color: var(--neon-blue);
    padding: 15px 25px;
    border-radius: 10px;
    font-weight: bold;
    z-index: 10000;
    box-shadow: var(--glow-blue);
    animation: notificationFloat 3s ease-in-out;
    text-align: center;
    max-width: 90%;
    border: 1px solid var(--neon-blue);
    backdrop-filter: blur(10px);
}

@keyframes notificationFloat {
    0% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    10% { opacity: 1; transform: translateX(-50%) translateY(0); }
    90% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
}

.error-message {
    color: var(--neon-pink);
    font-size: 12px;
    margin-top: 5px;
    display: none;
    text-shadow: 0 0 5px var(--neon-pink);
}

.time-range-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.time-input {
    flex: 1;
    position: relative;
}

.time-input select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--neon-purple);
    border-radius: 6px;
    cursor: pointer;
    background: rgba(8, 8, 20, 0.8);
    color: white;
}

.separator {
    color: var(--neon-blue);
    font-weight: bold;
}

#onlineTime {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--neon-purple);
    border-radius: 6px;
    background-color: rgba(8, 8, 20, 0.8);
    color: white;
}

.online-time-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.allday-btn {
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
    color: #000;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    font-weight: bold;
    transition: all 0.3s ease;
}

.allday-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 10px;
    }

    .header {
        padding: 20px 15px;
    }

    .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .logo-container {
        width: 120px;
        height: 120px;
    }
    
    .logo {
        width: 110px;
        height: 110px;
    }
    
    .logo-glow {
        width: 130px;
        height: 130px;
    }
    
    .logo-pulse {
        width: 150px;
        height: 150px;
    }

  

    .form-container {
        padding: 20px 15px;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .form-group input, .form-group textarea, .form-group select {
        font-size: 14px;
        padding: 10px 14px;
    }

    .copy-btn {
        font-size: 14px;
        padding: 14px;
    }
}

/* 成功模态框样式 */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 20, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: modalFade 0.3s ease;
}

.success-modal-content {
    background: rgba(13, 13, 26, 0.95);
    border: 2px solid var(--neon-blue);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    max-width: 90%;
    box-shadow: var(--glow-blue);
    backdrop-filter: blur(10px);
}

.success-modal-content h3 {
    color: var(--neon-blue);
    margin-bottom: 15px;
    font-size: 24px;
}

.success-modal-content p {
    color: var(--neon-purple);
    margin-bottom: 20px;
}

.modal-close {
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.modal-close:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

@keyframes modalFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 扫描线效果 */
.scan-line {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--neon-blue), 
        var(--neon-purple),
        var(--neon-pink),
        transparent);
    z-index: 1000;
    animation: scan 10s linear infinite;
    pointer-events: none;
}

@keyframes scan {
    0% { top: 0; }
    100% { top: 100%; }
}

/* 手机端并排显示优化 */
@media (max-width: 480px) {
    .form-row {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .form-row .form-group {
        flex: 1 1 45%;
        min-width: 140px;
    }
    
    .form-group select {
        font-size: 13px;
        padding: 8px 10px;
    }
}

.online-time-container {
    margin-top: 10px;
}

.time-input-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: nowrap;
}

.time-input-row input {
    flex: 1;
    min-width: 150px;
    padding: 12px 16px;
    border: 1px solid var(--neon-purple);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Roboto Mono', monospace;
    background: rgba(8, 8, 20, 0.8);
    color: #ffffff;
    box-sizing: border-box;
}

.time-input-row input:focus {
    outline: none;
    border-color: var(--neon-pink);
    background: rgba(13, 13, 36, 0.9);
    box-shadow: var(--glow-pink);
}

.allday-btn {
    padding: 12px 20px !important;
    background: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    font-weight: bold;
}

.allday-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--glow-blue);
}

/* 手机端适配 */
@media (max-width: 480px) {
    .time-input-row {
        gap: 8px;
    }
    
    .time-input-row input {
        min-width: 120px;
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .allday-btn {
        padding: 10px 14px !important;
        font-size: 13px;
    }
}

/* 装备掉落效果 */
.gear-rain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    overflow: hidden;
}

.gear-item {
    position: absolute;
    top: -50px;
    font-size: 20px;
    opacity: 0.25;
    animation: gearFall 12s linear infinite;
    filter: drop-shadow(0 0 5px currentColor);
}

.gear-item.helmet { color: var(--neon-blue); content: "🎯"; }
.gear-item.armor { color: var(--neon-purple); content: "⚔️"; }
.gear-item.weapon { color: var(--neon-cyan); content: "🔫"; }
.gear-item.ammo { color: var(--neon-pink); content: "💰"; }

@keyframes gearFall {
    0% {
        transform: translateY(-50px) rotate(0deg) translateX(-20px);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
        transform: translateX(0);
    }
    50% {
        opacity: 0.25;
    }
    90% {
        opacity: 0.15;
    }
    100% {
        transform: translateY(100vh) rotate(360deg) translateX(20px);
        opacity: 0;
    }
}


/* 悬浮微信客服按钮样式 - 竖排版本 */
.floating-wechat-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-blue) 100%);
    color: #000;
    border: none;
    border-radius: 25px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    font-size: 16px;
    z-index: 9999;
    box-shadow: 
        0 0 20px rgba(0, 180, 255, 0.5),
        0 0 40px rgba(0, 255, 157, 0.3);
    transition: all 0.3s ease;
    animation: floatPulse 3s ease-in-out infinite;
    width: 80px;
    height: 80px;
    text-align: center;
}

/* 竖排按钮特定样式 */
.floating-wechat-btn.vertical {
    flex-direction: column;
    padding: 15px 10px;
    width: 50px;
    height: auto;
    min-height: 70px;
}

@keyframes floatPulse {
    0%, 100% {
        transform: translateY(0) scale(1);
        box-shadow: 
            0 0 20px rgba(0, 180, 255, 0.5),
            0 0 40px rgba(0, 255, 157, 0.3);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 
            0 0 30px rgba(0, 180, 255, 0.7),
            0 0 60px rgba(0, 255, 157, 0.5);
    }
}

.floating-wechat-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 180, 255, 0.8),
        0 0 60px rgba(0, 255, 157, 0.6);
    animation: none;
}

.floating-wechat-btn.vertical:hover {
    width: 75px;
    height: auto;
    min-height: 75px;
}

.wechat-icon {
    font-size: 28px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
    display: block;
    margin-bottom: 2px;
}

.floating-wechat-btn.vertical .wechat-icon {
    font-size: 26px;
    margin-bottom: 5px;
}

.wechat-text {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    letter-spacing: 1px;
    font-size: 14px;
    line-height: 1.2;
    display: block;
    white-space: nowrap;
}

.floating-wechat-btn.vertical .wechat-text {
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* 微信二维码弹窗样式保持不变 */
.wechat-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 20, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.wechat-modal.show {
    opacity: 1;
    visibility: visible;
}

.wechat-modal-content {
    background: linear-gradient(145deg, rgba(13, 13, 26, 0.95), rgba(8, 8, 20, 0.98));
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    padding: 30px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 
        var(--glow-cyan),
        0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalAppear 0.4s ease-out;
}

@keyframes modalAppear {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wechat-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 107, 157, 0.5);
}

.wechat-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 0 25px rgba(255, 107, 157, 0.8);
}

.wechat-header {
    text-align: center;
    margin-bottom: 25px;
}

.wechat-header h3 {
    color: var(--neon-green);
    font-size: 24px;
    margin-bottom: 10px;
    text-shadow: 
        0 0 10px var(--neon-green),
        0 0 20px var(--neon-green);
    animation: greenPulse 2s infinite alternate;
}

@keyframes greenPulse {
    0% {
        text-shadow: 
            0 0 10px var(--neon-green),
            0 0 20px var(--neon-green);
    }
    100% {
        text-shadow: 
            0 0 15px var(--neon-green),
            0 0 30px var(--neon-green),
            0 0 40px var(--neon-green);
    }
}

.wechat-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    opacity: 0.8;
}

.wechat-qr-container {
    background: rgba(8, 8, 20, 0.8);
    border-radius: 15px;
    padding: 25px;
    border: 2px solid var(--neon-blue);
    margin-bottom: 25px;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wechat-qr-placeholder {
    padding: 30px;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    background: rgba(13, 13, 26, 0.6);
    border-radius: 10px;
    border: 2px dashed var(--neon-blue);
}

.wechat-qr {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    border: 3px solid var(--neon-green);
    box-shadow: var(--glow-green);
}

.wechat-footer {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 180, 255, 0.3);
}

.wechat-footer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin: 5px 0;
}

.wechat-footer p:first-child {
    color: var(--neon-cyan);
    font-weight: 500;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .floating-wechat-btn.vertical {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: auto;
        min-height: 65px;
        padding: 12px 8px;
    }
    
    .floating-wechat-btn.vertical .wechat-icon {
        font-size: 22px;
    }
    
    .floating-wechat-btn.vertical .wechat-text {
        font-size: 11px;
    }
    
    .wechat-modal-content {
        padding: 20px;
    }
    
    .wechat-header h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .floating-wechat-btn.vertical {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: auto;
        min-height: 60px;
        padding: 10px 6px;
    }
    
    .floating-wechat-btn.vertical .wechat-icon {
        font-size: 20px;
        margin-bottom: 3px;
    }
    
    .floating-wechat-btn.vertical .wechat-text {
        font-size: 10px;
        letter-spacing: 0;
    }
    
    .wechat-qr-container {
        padding: 15px;
        min-height: 200px;
    }
}

/* 在小屏幕上完全隐藏文字，只显示图标 */
@media (max-width: 360px) {
    .floating-wechat-btn.vertical .wechat-text {
        display: none;
    }
    
    .floating-wechat-btn.vertical {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .floating-wechat-btn.vertical .wechat-icon {
        margin: 0;
        font-size: 24px;
    }
}
