* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-primary: #ff006e;
    --color-secondary: #00f5ff;
    --color-accent: #ffbe0b;
    --color-purple: #8338ec;
    --color-dark: #0d0221;
    --color-darker: #000000;
    --color-light: #f8f9fa;
    --color-text: #2c3e50;
    --color-text-light: #6c757d;
    --gradient-primary: linear-gradient(135deg, #ff006e, #ff4d94);
    --gradient-secondary: linear-gradient(135deg, #00f5ff, #0095ff);
    --gradient-dark: linear-gradient(135deg, #0d0221 0%, #1a0b3d 50%, #0d0221 100%);
    --gradient-cyber: linear-gradient(135deg, #ff006e 0%, #8338ec 50%, #00f5ff 100%);
    --shadow-glow: 0 0 20px rgba(255, 0, 110, 0.5);
    --shadow-glow-secondary: 0 0 20px rgba(0, 245, 255, 0.5);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 5px rgba(255, 0, 110, 0.5),
                    0 0 10px rgba(255, 0, 110, 0.3),
                    0 0 20px rgba(255, 0, 110, 0.2);
    }
    50% { 
        box-shadow: 0 0 10px rgba(255, 0, 110, 0.8),
                    0 0 20px rgba(255, 0, 110, 0.6),
                    0 0 40px rgba(255, 0, 110, 0.4);
    }
}

@keyframes neonPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes slideInLeft {
    from { 
        opacity: 0;
        transform: translateX(-50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0;
        transform: translateX(50px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: #0d0221;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 0, 110, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(131, 56, 236, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 10%, rgba(0, 245, 255, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            rgba(0, 245, 255, 0.03) 0px,
            transparent 1px,
            transparent 2px,
            rgba(0, 245, 255, 0.03) 3px
        );
    pointer-events: none;
    z-index: 1;
    animation: scanlines 8s linear infinite;
}

@keyframes scanlines {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

.nav-m8k3 {
    background: rgba(13, 2, 33, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(255, 0, 110, 0.1);
    border-bottom: 2px solid rgba(255, 0, 110, 0.3);
    animation: slideInLeft 0.6s ease-out;
}

.container-p5x7 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.nav-content-r2y8 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-t4z9 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.logo-t4z9:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(255, 0, 110, 0.8));
}

.logo-t4z9 img {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.5);
    transition: all 0.3s ease;
}

.logo-t4z9:hover img {
    box-shadow: 0 0 25px rgba(255, 0, 110, 0.8);
    border-color: var(--color-secondary);
}

.logo-t4z9 span {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: 1px;
}

.nav-links-u6a1 {
    display: flex;
    gap: 0.5rem;
    list-style: none;
}

.nav-links-u6a1 a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.3rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.nav-links-u6a1 a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-cyber);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links-u6a1 a:hover {
    color: var(--color-secondary);
    background: rgba(0, 245, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.3);
}

.nav-links-u6a1 a:hover::before {
    width: 80%;
}

.mobile-toggle-v7b2 {
    display: none;
    background: rgba(255, 0, 110, 0.2);
    border: 2px solid var(--color-primary);
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-toggle-v7b2:hover {
    background: rgba(255, 0, 110, 0.4);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
}

.hero-section-w8c3 {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.8) 0%, rgba(26, 11, 61, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    margin: 2rem 0;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(255, 0, 110, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 0, 110, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.hero-section-w8c3::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

.game-header-x9d4 {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.game-icon-y0e5 {
    flex-shrink: 0;
    /* 移除浮动动画，改善加载性能 */
}

.game-icon-y0e5 img {
    width: 150px;
    height: 150px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(255, 0, 110, 0.4),
                0 0 30px rgba(131, 56, 236, 0.3);
    object-fit: cover;
    border: 3px solid rgba(255, 0, 110, 0.5);
    transition: all 0.3s ease;
    /* 移除持续发光动画，仅保留悬停效果 */
}

.game-icon-y0e5 img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 50px rgba(255, 0, 110, 0.6),
                0 0 40px rgba(131, 56, 236, 0.5);
}

.game-info-z1f6 {
    flex: 1;
}

.game-title-a2g7 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.5),
                 0 0 40px rgba(131, 56, 236, 0.3);
    letter-spacing: 1px;
    /* 移除持续脉冲动画以提升性能 */
}

.game-title-a2g7 i {
    color: var(--color-secondary);
    filter: drop-shadow(0 0 10px var(--color-secondary));
}

.game-tags-b3h8 {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.tag-c4i9 {
    background: rgba(255, 0, 110, 0.2);
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    border: 2px solid rgba(255, 0, 110, 0.5);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
}

.tag-c4i9:hover {
    background: rgba(255, 0, 110, 0.4);
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.6);
    transform: translateY(-2px);
}

.game-meta-d5j0 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 500;
}

.game-meta-d5j0 span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.game-meta-d5j0 i {
    color: var(--color-secondary);
}

.game-desc-e6k1 {
    font-size: 1.15rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

.download-section-f7l2 {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.15), rgba(131, 56, 236, 0.15));
    border-radius: 20px;
    border: 2px solid rgba(0, 245, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 245, 255, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.download-section-f7l2::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.download-section-f7l2 h3,
.download-section-f7l2 p {
    color: white;
    position: relative;
    z-index: 1;
}

.download-btn-g8m3 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-cyber);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.5),
                0 0 30px rgba(0, 245, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    overflow: hidden;
    letter-spacing: 1px;
}

.download-btn-g8m3::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;
}

.download-btn-g8m3:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.7),
                0 0 50px rgba(0, 245, 255, 0.5),
                0 0 100px rgba(131, 56, 236, 0.3);
}

.download-btn-g8m3:hover::before {
    left: 100%;
}

.download-btn-g8m3:active {
    transform: translateY(-3px) scale(1.02);
}

.content-section-h9n4 {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.9) 0%, rgba(26, 11, 61, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 3rem;
    margin: 2rem 0;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(131, 56, 236, 0.2),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(131, 56, 236, 0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out;
}

.content-section-h9n4::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.section-title-i0o5 {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--color-primary), var(--color-secondary)) 1;
    display: flex;
    align-items: center;
    gap: 15px;
    text-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.section-title-i0o5 i {
    color: var(--color-secondary);
    filter: drop-shadow(0 0 10px var(--color-secondary));
}

.content-block-j1p6 {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.content-block-j1p6 h3 {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
    position: relative;
    padding-left: 20px;
}

.content-block-j1p6 h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background: var(--gradient-cyber);
    border-radius: 3px;
    box-shadow: 0 0 10px var(--color-primary);
}

.content-block-j1p6 p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.content-block-j1p6 p strong {
    color: var(--color-secondary);
    font-weight: 700;
}

.content-image-k2q7 {
    width: 100%;
    border-radius: 15px;
    margin: 2rem 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
                0 0 30px rgba(255, 0, 110, 0.3);
    border: 2px solid rgba(255, 0, 110, 0.3);
    transition: all 0.3s ease;
}

.content-image-k2q7:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6),
                0 0 40px rgba(255, 0, 110, 0.5);
}

/* 功能网格布局 */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.08), rgba(131, 56, 236, 0.08));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 110, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-cyber);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: 0 15px 40px rgba(0, 245, 255, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-cyber);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.4);
}

.feature-card h4 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1rem;
}

/* 亮点区域 */
.highlight-section {
    margin: 2rem 0 3rem 0;
}

.highlight-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.08), rgba(0, 245, 255, 0.08));
    border-radius: 15px;
    border-left: 4px solid var(--color-purple);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.15), rgba(0, 245, 255, 0.15));
    border-left-color: var(--color-secondary);
    transform: translateX(5px);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px var(--color-secondary));
}

.highlight-content h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.highlight-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    font-size: 1rem;
}

/* 游戏机制卡片 */
.mechanics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
}

.mechanic-card {
    background: rgba(0, 245, 255, 0.05);
    padding: 1.8rem;
    border-radius: 12px;
    border: 2px solid rgba(0, 245, 255, 0.2);
    transition: all 0.3s ease;
}

.mechanic-card:hover {
    background: rgba(0, 245, 255, 0.1);
    border-color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 245, 255, 0.2);
}

.mechanic-card h4 {
    color: var(--color-secondary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.mechanic-card h4 i {
    font-size: 1.3rem;
}

.mechanic-card p {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* 玩家类型标签 */
.player-types {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 2rem 0 3rem 0;
}

.player-type-tag {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.2), rgba(255, 190, 11, 0.2));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 190, 11, 0.4);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.player-type-tag i {
    font-size: 1.1rem;
    color: var(--color-accent);
}

.player-type-tag:hover {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.4), rgba(255, 190, 11, 0.4));
    border-color: var(--color-accent);
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 190, 11, 0.3);
}

/* 系统配置要求 */
.system-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0 3rem 0;
}

.req-column {
    background: linear-gradient(135deg, rgba(26, 11, 61, 0.5), rgba(13, 2, 33, 0.7));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(131, 56, 236, 0.3);
}

.req-column h4 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.req-column h4 i {
    color: var(--color-primary);
    font-size: 1.3rem;
}

.req-column ul {
    list-style: none;
    padding: 0;
}

.req-column ul li {
    color: rgba(255, 255, 255, 0.8);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
    line-height: 1.6;
}

.req-column ul li:last-child {
    border-bottom: none;
}

.req-column ul li strong {
    color: var(--color-secondary);
    font-weight: 600;
}

/* 更新信息 */
.update-info {
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(131, 56, 236, 0.1));
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 0, 110, 0.3);
    margin: 2rem 0;
    position: relative;
}

.update-badge {
    position: absolute;
    top: -15px;
    right: 2rem;
    background: var(--gradient-cyber);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(255, 0, 110, 0.5);
    letter-spacing: 1px;
}

.update-info p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.update-info p:last-child {
    margin-bottom: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
}

.update-info strong {
    color: white;
    font-weight: 700;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .highlight-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .highlight-icon {
        font-size: 2rem;
    }
    
    .mechanics-grid {
        grid-template-columns: 1fr;
    }
    
    .system-requirements {
        grid-template-columns: 1fr;
    }
    
    .player-types {
        justify-content: center;
    }
    
    .update-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }
}

.screenshot-carousel-l3r8 {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(255, 0, 110, 0.3);
    border: 2px solid rgba(255, 0, 110, 0.3);
}

.carousel-container-m4s9 {
    position: relative;
    width: 100%;
    height: 600px;
}

.carousel-track-n5t0 {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    height: 100%;
}

.carousel-slide-o6u1 {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide-o6u1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(13, 2, 33, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

.carousel-slide-o6u1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn-p7v2 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 0, 110, 0.3);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 0, 110, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn-p7v2:hover {
    background: rgba(255, 0, 110, 0.8);
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-p7v2.prev-q8w3 {
    left: 30px;
}

.carousel-btn-p7v2.next-r9x4 {
    right: 30px;
}

.carousel-dots-s0y5 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    background: rgba(13, 2, 33, 0.6);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 0, 110, 0.3);
}

.carousel-dot-t1z6 {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot-t1z6:hover {
    background: rgba(255, 255, 255, 0.7);
}

.carousel-dot-t1z6.active-u2a7 {
    background: var(--color-primary);
    width: 35px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(255, 0, 110, 0.8);
    border-color: var(--color-secondary);
}

.characters-grid-v3b8 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.character-card-w4c9 {
    background: linear-gradient(135deg, rgba(26, 11, 61, 0.6) 0%, rgba(13, 2, 33, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(255, 0, 110, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 0, 110, 0.2);
    position: relative;
}

.character-card-w4c9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 110, 0.1), rgba(0, 245, 255, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.character-card-w4c9:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(255, 0, 110, 0.5),
                0 0 60px rgba(0, 245, 255, 0.3);
    border-color: var(--color-secondary);
}

.character-card-w4c9:hover::before {
    opacity: 1;
}

.character-image-x5d0 {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: all 0.3s ease;
    position: relative;
}

.character-card-w4c9:hover .character-image-x5d0 {
    filter: brightness(1.1) saturate(1.2);
}

.character-info-y6e1 {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.character-name-z7f2 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
    letter-spacing: 0.5px;
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.character-desc-a8g3 {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.articles-grid-b9h4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0;
    position: relative;
    z-index: 1;
}

.article-card-c0i5 {
    background: linear-gradient(135deg, rgba(26, 11, 61, 0.6) 0%, rgba(13, 2, 33, 0.8) 100%);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(131, 56, 236, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    color: inherit;
    display: block;
    border: 2px solid rgba(131, 56, 236, 0.2);
    position: relative;
    overflow: hidden;
}

.article-card-c0i5::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(131, 56, 236, 0.2), transparent);
    transition: left 0.5s ease;
}

.article-card-c0i5:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7),
                0 0 40px rgba(131, 56, 236, 0.5),
                0 0 60px rgba(0, 245, 255, 0.3);
    border-color: var(--color-purple);
}

.article-card-c0i5:hover::before {
    left: 100%;
}

.article-title-d1j6 {
    font-size: 1.4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 15px rgba(131, 56, 236, 0.5);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.article-excerpt-e2k7 {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.article-meta-f3l8 {
    font-size: 0.9rem;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.article-meta-f3l8 i {
    color: var(--color-accent);
}

.footer-g4m9 {
    background: linear-gradient(135deg, #000000 0%, #0d0221 50%, #1a0b3d 100%);
    color: white;
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
    border-top: 2px solid rgba(255, 0, 110, 0.3);
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5),
                inset 0 1px 1px rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer-g4m9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 110, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(131, 56, 236, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content-h5n0 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section-i6o1 h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 800;
    text-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.footer-section-i6o1 p,
.footer-section-i6o1 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-section-i6o1 a {
    position: relative;
    padding-left: 20px;
}

/* 让友情链接和快速链接区域使用flexbox，分两行显示 */
.footer-section-i6o1:nth-child(2),
.footer-section-i6o1:nth-child(3) {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
}

.footer-section-i6o1:nth-child(2) h3,
.footer-section-i6o1:nth-child(3) h3 {
    width: 100%;
    flex: 0 0 100%;
}

/* 链接区域使用两列布局（2x2网格） */
.footer-section-i6o1:nth-child(2) a,
.footer-section-i6o1:nth-child(3) a {
    flex: 0 0 calc(50% - 0.5rem);
    width: calc(50% - 0.5rem);
    box-sizing: border-box;
}

/* 每行第二个链接添加左边距 */
.footer-section-i6o1:nth-child(2) a:nth-of-type(even),
.footer-section-i6o1:nth-child(3) a:nth-of-type(even) {
    margin-left: 1rem;
}

.footer-section-i6o1 a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.footer-section-i6o1 a:hover {
    color: var(--color-secondary);
    padding-left: 25px;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.footer-section-i6o1 a:hover::before {
    transform: translateX(5px);
}

.footer-bottom-j7p2 {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255, 0, 110, 0.2);
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-g4m9 {
        padding: 2rem 0 1.2rem;
        margin-top: 2rem;
    }
    
    .footer-content-h5n0 {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section-i6o1 h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-bottom-j7p2 {
        padding-top: 1.2rem;
        font-size: 0.85rem;
    }
    
    .nav-links-u6a1 {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 2, 33, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem;
        gap: 0.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
        border-bottom: 2px solid rgba(255, 0, 110, 0.3);
    }

    .nav-links-u6a1.active-k8q3 {
        display: flex;
    }

    .mobile-toggle-v7b2 {
        display: block;
    }

    .hero-section-w8c3,
    .content-section-h9n4 {
        padding: 2rem 1.5rem;
    }

    .game-header-x9d4 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .game-icon-y0e5 img {
        width: 120px;
        height: 120px;
    }

    .game-title-a2g7 {
        font-size: 2rem;
        justify-content: center;
    }

    .section-title-i0o5 {
        font-size: 2rem;
    }

    .characters-grid-v3b8 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .articles-grid-b9h4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carousel-container-m4s9 {
        height: 350px;
    }

    .carousel-btn-p7v2 {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .carousel-btn-p7v2.prev-q8w3 {
        left: 15px;
    }

    .carousel-btn-p7v2.next-r9x4 {
        right: 15px;
    }

    .carousel-dots-s0y5 {
        padding: 8px 15px;
        bottom: 20px;
    }

    .download-btn-g8m3 {
        width: 100%;
        justify-content: center;
    }
    
    /* 移动端footer链接恢复单列显示 */
    .footer-section-i6o1:nth-child(2) a,
    .footer-section-i6o1:nth-child(3) a {
        flex: 0 0 100%;
        width: 100%;
        margin-left: 0 !important;
    }
}

/* 添加一些额外的视觉增强 - 性能优化版本 */
@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* 移除持续的渐变动画以提升性能，保留静态渐变效果 */

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #0d0221;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--color-primary), var(--color-purple));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
}

/* 页面加载动画 */
@keyframes pageLoad {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main {
    animation: pageLoad 0.8s ease-out;
}

/* 文字选中颜色 */
::selection {
    background: rgba(255, 0, 110, 0.3);
    color: white;
}

::-moz-selection {
    background: rgba(255, 0, 110, 0.3);
    color: white;
}

/* 添加霓虹边框动画效果 - 可选装饰 */
@keyframes neonBorder {
    0%, 100% {
        border-color: rgba(255, 0, 110, 0.3);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                    0 0 30px rgba(255, 0, 110, 0.2),
                    inset 0 1px 1px rgba(255, 255, 255, 0.1);
    }
    50% {
        border-color: rgba(0, 245, 255, 0.4);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                    0 0 35px rgba(0, 245, 255, 0.3),
                    inset 0 1px 1px rgba(255, 255, 255, 0.1);
    }
}

/* 只保留淡入动画，移除持续的边框动画以提升性能 */
.hero-section-w8c3,
.content-section-h9n4 {
    animation: fadeInUp 0.6s ease-out;
}

/* 数字雨效果背景装饰（轻量级） */
.container-p5x7::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.02;
    background-image: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 50px,
            rgba(0, 245, 255, 0.1) 50px,
            rgba(0, 245, 255, 0.1) 51px
        );
}

/* 角色卡片额外装饰 */
.character-card-w4c9::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-cyber);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.character-card-w4c9:hover::after {
    opacity: 0.3;
}

/* 加载状态样式 */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 3px solid rgba(255, 0, 110, 0.3);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* 悬浮提示增强 */
[title]:hover::after {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: rgba(13, 2, 33, 0.95);
    color: white;
    border: 1px solid var(--color-primary);
    border-radius: 8px;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

/* 图片灯箱样式 */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    display: flex;
    animation: lightboxFadeIn 0.3s ease forwards;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-container {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 80px rgba(255, 0, 110, 0.3),
                0 0 60px rgba(0, 245, 255, 0.2);
    border: 3px solid rgba(255, 0, 110, 0.5);
    animation: imageZoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes imageZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 0, 110, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 0, 110, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 0, 110, 0.8);
    border-color: var(--color-primary);
    box-shadow: 0 0 30px rgba(255, 0, 110, 0.8);
    transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 245, 255, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 245, 255, 0.5);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0, 245, 255, 0.8);
    border-color: var(--color-secondary);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:active,
.lightbox-next:active {
    transform: translateY(-50%) scale(0.95);
}

.lightbox-counter {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(13, 2, 33, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 2px solid rgba(255, 0, 110, 0.5);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    z-index: 10001;
}

/* 轮播图片添加点击提示 */
.carousel-slide-o6u1 {
    cursor: pointer;
    position: relative;
}

.carousel-slide-o6u1::after {
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.carousel-slide-o6u1:hover::after {
    opacity: 0.8;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .lightbox-prev {
        left: 15px;
    }
    
    .lightbox-next {
        right: 15px;
    }
    
    .lightbox-counter {
        bottom: 20px;
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
    
    .carousel-slide-o6u1::after {
        font-size: 2rem;
    }
}

/* ==================== Footer下载区块样式 ==================== */
.footer-download-zone {
    margin: 2rem 0 1.5rem;
    padding: 0;
}

.footer-download-content {
    background: linear-gradient(135deg, 
        rgba(255, 0, 110, 0.15) 0%, 
        rgba(0, 245, 255, 0.15) 100%);
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 1.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(255, 0, 110, 0.3),
        0 0 60px rgba(0, 245, 255, 0.2),
        inset 0 0 40px rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.footer-download-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--color-primary), 
        var(--color-secondary), 
        var(--color-accent), 
        var(--color-purple));
    background-size: 300% 300%;
    border-radius: 20px;
    z-index: -1;
    animation: gradient-shift 8s ease infinite;
    opacity: 0.6;
}

.footer-download-content:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 5px 40px rgba(255, 0, 110, 0.4),
        0 10px 80px rgba(0, 245, 255, 0.3),
        inset 0 0 50px rgba(255, 255, 255, 0.05);
}

.footer-download-info {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex: 1;
}

.footer-download-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 5px 25px rgba(255, 0, 110, 0.5);
    animation: float 3s ease-in-out infinite;
    position: relative;
}

.footer-download-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: neonPulse 2s ease-in-out infinite;
}

.footer-download-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.4rem 0;
    background: linear-gradient(135deg, #fff, var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.3);
}

.footer-download-text p {
    margin: 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-download-text p span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-download-text p span:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

.footer-download-text p span i {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.footer-download-btn {
    position: relative;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 25px rgba(255, 0, 110, 0.4),
        0 0 40px rgba(0, 245, 255, 0.3);
    white-space: nowrap;
}

.footer-download-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.6s ease;
}

.footer-download-btn:hover::before {
    left: 100%;
}

.footer-download-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 
        0 8px 35px rgba(255, 0, 110, 0.6),
        0 0 60px rgba(0, 245, 255, 0.5);
}

.footer-download-btn:active {
    transform: translateY(-1px) scale(1.02);
}

.btn-icon {
    font-size: 1.3rem;
    animation: bounce 2s ease-in-out infinite;
}

.btn-text {
    position: relative;
    z-index: 1;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-download-btn:hover .btn-glow {
    opacity: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .footer-download-content {
        padding: 1.5rem 1.8rem;
    }
    
    .footer-download-text h3 {
        font-size: 1.2rem;
    }
    
    .footer-download-text p {
        gap: 0.8rem;
    }
}

@media (max-width: 768px) {
    .footer-download-zone {
        margin: 1.5rem 0 1rem;
    }
    
    .footer-download-content {
        flex-direction: column;
        padding: 1.5rem 1.2rem;
        gap: 1.2rem;
    }
    
    .footer-download-info {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .footer-download-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .footer-download-text h3 {
        font-size: 1.1rem;
    }
    
    .footer-download-text p {
        justify-content: center;
        gap: 0.6rem;
        font-size: 0.85rem;
    }
    
    .footer-download-text p span {
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem;
    }
    
    .footer-download-btn {
        width: 100%;
        justify-content: center;
        padding: 0.85rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .footer-download-content {
        padding: 1.2rem 0.8rem;
    }
    
    .footer-download-text h3 {
        font-size: 1rem;
    }
    
    .footer-download-text p {
        flex-direction: column;
        gap: 0.4rem;
        align-items: center;
    }
    
    .footer-download-text p span {
        width: 100%;
        justify-content: center;
        font-size: 0.75rem;
    }
}

/* ==================== 用户评价板块样式 ==================== */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.review-card {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.6) 0%, rgba(26, 11, 61, 0.6) 100%);
    border: 2px solid rgba(255, 0, 110, 0.3);
    border-radius: 16px;
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.review-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        var(--color-primary), 
        var(--color-accent), 
        var(--color-purple));
    background-size: 300% 300%;
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: gradient-shift 6s ease infinite;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-accent);
    box-shadow: 
        0 8px 35px rgba(255, 0, 110, 0.4),
        0 0 50px rgba(0, 245, 255, 0.3);
}

.review-card:hover::before {
    opacity: 0.4;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 0, 110, 0.2);
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 110, 0.5);
    position: relative;
}

.reviewer-avatar::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.5;
    animation: neonPulse 2s ease-in-out infinite;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.reviewer-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5);
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.review-rating i {
    color: #ffd700;
    font-size: 0.9rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.8);
}

.review-rating .rating-text {
    margin-left: 0.5rem;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1rem;
}

.review-date {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.review-date i {
    color: var(--color-accent);
}

.review-content {
    margin-bottom: 1rem;
}

.review-content p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.review-tag {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    color: var(--color-accent);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
}

.review-tag:hover {
    background: rgba(0, 245, 255, 0.2);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.4);
}

.review-tag i {
    font-size: 0.7rem;
}

/* 评分汇总区域 */
.rating-summary {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(131, 56, 236, 0.05), rgba(255, 0, 110, 0.05));
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 0 60px rgba(0, 245, 255, 0.03);
    position: relative;
    overflow: hidden;
}

.rating-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-cyber);
}

.rating-summary-header {
    margin-bottom: 2rem;
}

.rating-summary-header h3 {
    font-size: 1.8rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.rating-summary-header h3 i {
    background: var(--gradient-cyber);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rating-summary-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1.5fr;
    gap: 3rem;
    align-items: start;
}

/* 总体评分 */
.overall-rating {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 245, 255, 0.2);
    border-radius: 15px;
    position: relative;
}

.overall-rating::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-cyber);
    opacity: 0.05;
    border-radius: 15px;
}

.rating-score {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00f5ff, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
    position: relative;
}

.rating-stars {
    font-size: 1.5rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
}

.rating-stars i {
    filter: drop-shadow(0 0 5px rgba(255, 190, 11, 0.6));
}

.rating-total {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    position: relative;
}

.rating-total span {
    color: var(--color-secondary);
    font-weight: 600;
}

.rating-recommendation {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    color: var(--color-secondary);
    font-weight: 600;
    margin-top: 0.5rem;
    position: relative;
}

.rating-recommendation i {
    font-size: 1.1rem;
}

/* 各维度评分 */
.rating-dimensions {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.dimension-item {
    display: grid;
    grid-template-columns: 140px 1fr 50px;
    gap: 1rem;
    align-items: center;
}

.dimension-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.dimension-label i {
    color: var(--color-secondary);
    font-size: 1.1rem;
}

.dimension-bar {
    height: 12px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.2);
    position: relative;
}

.dimension-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 15px rgba(0, 245, 255, 0.5);
    position: relative;
}

.dimension-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

.dimension-score {
    text-align: right;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-accent);
}

/* 评分分布 */
.rating-distribution {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.distribution-item {
    display: grid;
    grid-template-columns: 100px 1fr 60px;
    gap: 0.8rem;
    align-items: center;
}

.distribution-stars {
    display: flex;
    gap: 0.2rem;
    font-size: 0.9rem;
}

.distribution-stars .fas {
    color: var(--color-accent);
}

.distribution-stars .far {
    color: rgba(255, 190, 11, 0.3);
}

.distribution-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(0, 245, 255, 0.15);
}

.distribution-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 10px rgba(255, 190, 11, 0.4);
}

.distribution-count {
    text-align: right;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-header {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .reviewer-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .reviewer-name {
        font-size: 1rem;
    }
    
    .review-date {
        align-self: flex-start;
    }
    
    .rating-summary {
        padding: 1.5rem;
    }
    
    .rating-summary-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .dimension-item {
        grid-template-columns: 120px 1fr 45px;
        gap: 0.8rem;
    }
    
    .dimension-label {
        font-size: 0.9rem;
    }
    
    .distribution-item {
        grid-template-columns: 90px 1fr 55px;
        gap: 0.6rem;
    }
    
    .distribution-stars {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .review-card {
        padding: 1.2rem;
    }
    
    .reviewer-info {
        gap: 0.8rem;
    }
    
    .reviewer-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .reviewer-name {
        font-size: 0.95rem;
    }
    
    .review-content p {
        font-size: 0.9rem;
    }
    
    .review-tags {
        gap: 0.4rem;
    }
    
    .review-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
    
    .rating-summary {
        padding: 1.2rem;
        margin-top: 2rem;
    }
    
    .rating-summary-header h3 {
        font-size: 1.4rem;
    }
    
    .rating-score {
        font-size: 3rem;
    }
    
    .rating-stars {
        font-size: 1.2rem;
    }
    
    .rating-total {
        font-size: 0.85rem;
    }
    
    .rating-recommendation {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .dimension-item {
        grid-template-columns: 100px 1fr 40px;
        gap: 0.6rem;
    }
    
    .dimension-label {
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .dimension-label i {
        font-size: 0.95rem;
    }
    
    .dimension-bar {
        height: 10px;
    }
    
    .dimension-score {
        font-size: 0.95rem;
    }
    
    .distribution-item {
        grid-template-columns: 80px 1fr 50px;
        gap: 0.5rem;
    }
    
    .distribution-stars {
        font-size: 0.75rem;
        gap: 0.15rem;
    }
    
    .distribution-bar {
        height: 6px;
    }
    
    .distribution-count {
        font-size: 0.85rem;
    }
}


.protocol-news-list{max-width:1100px;margin:40px auto;padding:0 20px}.protocol-news-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.protocol-news-card{padding:22px;border:1px solid rgba(127,127,127,.25);border-radius:10px;background:rgba(255,255,255,.06);line-height:1.7}.protocol-news-card h2,.protocol-news-card h3{margin:0 0 10px}.protocol-news-card p{margin:10px 0}.protocol-detail{max-width:960px;margin:40px auto;padding:0 20px}.protocol-detail-content{padding:30px;border-radius:12px;line-height:1.9;overflow-wrap:anywhere;background:rgba(255,255,255,.06)}.protocol-detail-content p{margin:0 0 18px}.protocol-detail-content h2{margin:28px 0 14px}.protocol-back{display:inline-block;margin:20px 0;font-weight:600}@media(max-width:768px){.protocol-news-grid{grid-template-columns:1fr}.protocol-detail-content{padding:20px}}
