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

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #eef2ff;
    background: #070b14;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(254, 202, 87, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 107, 107, 0.15) 0%, transparent 60%);
    min-height: 100vh;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container-fluid-p7q4 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 头部导航 - 半透明深色 */
.header-nav-x3z8 {
    background: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 107, 0.3);
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-nav-x3z8 .container-fluid-p7q4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand-w5r1 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon-t2n6 {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-brand-w5r1 h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.02em;
}

.desktop-nav-m8k3 {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link-d4s7 {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 0.95rem;
}

.nav-link-d4s7:hover {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.15);
    transform: translateY(-1px);
}

.mobile-menu-btn-f6h9 {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn-f6h9:hover {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.mobile-nav-overlay-j3l8 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay-j3l8.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-content-v9n2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: rgba(7, 11, 20, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid rgba(255, 107, 107, 0.3);
}

.mobile-nav-overlay-j3l8.active .mobile-nav-content-v9n2 {
    transform: translateX(0);
}

.close-btn-a1c5 {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.close-btn-a1c5:hover {
    background: rgba(255, 107, 107, 0.15);
    color: #ff6b6b;
}

.mobile-nav-link-b8k4 {
    display: block;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 60px;
    font-size: 1.1rem;
}

.mobile-nav-link-b8k4:first-of-type {
    margin-top: 80px;
}

.mobile-nav-link-b8k4:hover {
    color: #ff6b6b;
    padding-left: 10px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    padding: 15px 10px;
}

.main-content-r5t2 {
    margin-top: 80px;
}

/* Hero 区域 - 增强光晕 */
.hero-section-q8w7 {
    background: linear-gradient(135deg, rgba(7, 11, 20, 0.9) 0%, rgba(20, 15, 30, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 120px 0 80px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.hero-section-q8w7::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(254, 202, 87, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content-z6x1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.game-header-s2v8 {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.game-icon-large-u7i3 {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.game-title-main-e9f6 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.game-subtitle-z8x4 {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.version-tag-h1k8 {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.game-tags-l3p0 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag-item-y4r7 {
    background: rgba(255, 107, 107, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 107, 107, 0.4);
    backdrop-filter: blur(10px);
}

.download-section-a8d3 {
    margin-top: 30px;
}

.download-btn-primary-g2j5 {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: -0.01em;
}

.download-btn-primary-g2j5:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252, #ffb347);
}

.download-info-x9v4 {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.info-item-q2w3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.info-item-q2w3 i {
    color: #ff6b6b;
    width: 16px;
}

.cover-container-m5n6 {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.cover-container-m5n6:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.2);
}

.cover-image-main-q1z9 {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    max-height: 500px;
}

/* 内容区块 - 半透背景 */
.content-section-f7h2 {
    padding: 80px 0;
    background: rgba(15, 20, 30, 0.85);
    backdrop-filter: blur(8px);
    margin-bottom: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.bg-alt-z4x7 {
    background: rgba(10, 14, 23, 0.9);
}

.section-title-m6k1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    letter-spacing: -0.02em;
}

.section-title-m6k1::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 2px;
}

.intro-cover-section-x5y6 {
    text-align: center;
    margin-bottom: 50px;
}

.intro-cover-image-z7w8 {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.intro-cover-image-z7w8:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(255, 107, 107, 0.2);
}

.intro-text-large-d2s6 {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e2e8f0;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid-v3x8 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.feature-item-b9l5 {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.feature-item-b9l5:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
}

.feature-icon-c4r2 {
    font-size: 2.5rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.feature-item-b9l5 h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-item-b9l5 p {
    color: #bdc3d0;
    line-height: 1.6;
}

.game-description-w7e5 {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    color: #e2e8f0;
}

.game-description-w7e5 h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ff6b6b;
    margin: 30px 0 15px 0;
}

.game-description-w7e5 p {
    color: #e2e8f0;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* 首页特色卡片 - 统一新风格 */
.main-features-grid-x9y2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.main-feature-card-a3b4 {
    background: rgba(20, 25, 40, 0.8);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.2);
    position: relative;
    overflow: hidden;
}

.main-feature-card-a3b4::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-feature-card-a3b4:hover::before {
    transform: scaleX(1);
}

.main-feature-card-a3b4:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
    background: rgba(30, 35, 55, 0.9);
}

.feature-icon-large-c5d6 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.feature-icon-large-c5d6 i {
    font-size: 2.5rem;
    color: white;
}

.main-feature-card-a3b4:hover .feature-icon-large-c5d6 {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.5);
}

.main-feature-card-a3b4 h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.01em;
}

.main-feature-card-a3b4 p {
    color: #bdc3d0;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
}

.features-list-y8n3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.feature-highlight-k5m2 {
    background: rgba(20, 25, 40, 0.8);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.feature-highlight-k5m2:hover {
    border-color: #ff6b6b;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.1);
}

.feature-highlight-k5m2 h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.feature-list-items-j6p9 {
    list-style: none;
}

.feature-list-items-j6p9 li {
    padding: 10px 0;
    color: #e2e8f0;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.feature-list-items-j6p9 li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #feca57;
    font-weight: bold;
}

.screenshots-grid-t9w6 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.screenshot-item-r3e8 {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.screenshot-item-r3e8:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
    border-color: #ff6b6b;
}

.screenshot-img-u2i5 {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.screenshot-item-r3e8:hover .screenshot-img-u2i5 {
    transform: scale(1.05);
}

.download-container-s7f4 {
    max-width: 600px;
    margin: 0 auto;
}

.download-card-main-h9k6 {
    background: rgba(20, 25, 40, 0.9);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.download-card-main-h9k6 h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.download-desc-n2m8 {
    color: #bdc3d0;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.download-link-container-v5b3 {
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    border: 2px dashed #ff6b6b;
}

.download-link-box-a8j1 {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 15px;
}

.download-link-box-a8j1 label {
    font-weight: 600;
    color: #ff6b6b;
    min-width: 80px;
}

.download-link-input-c6w4 {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 107, 107, 0.5);
    border-radius: 8px;
    background: #0f1420;
    color: #ffffff;
    font-family: monospace;
    font-size: 0.9rem;
}

.copy-btn-z3p7 {
    background: #ff6b6b;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.copy-btn-z3p7:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.download-tip-e4r9 {
    color: #bdc3d0;
    font-size: 0.9rem;
    font-style: italic;
}

.download-btn-large-q1w5 {
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
}

.download-btn-large-q1w5:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
}

/* 攻略/新闻卡片 - 统一悬浮效果 */
.guides-grid-x4y7, .news-grid-p8q2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guide-card-m9n3, .news-card-t6u9 {
    background: rgba(20, 25, 40, 0.8);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.guide-card-m9n3:hover, .news-card-t6u9:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(255, 107, 107, 0.15);
    border-color: #ff6b6b;
    background: rgba(30, 35, 55, 0.9);
}

.guide-card-m9n3 h3, .news-card-t6u9 h3 {
    margin-bottom: 15px;
}

.guide-card-m9n3 h3 a, .news-card-t6u9 h3 a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.guide-card-m9n3 h3 a:hover, .news-card-t6u9 h3 a:hover {
    color: #ff6b6b;
}

.guide-card-m9n3 p, .news-card-t6u9 p {
    color: #bdc3d0;
    line-height: 1.6;
    margin-bottom: 15px;
}

.guide-meta-k2l6, .news-meta-v1w8 {
    color: #8a8f9a;
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-section-d5g8 {
    background: #070b14;
    color: white;
    padding: 40px 0 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 107, 107, 0.3);
}

.footer-content-j7k3 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-info-a2b9 h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ff6b6b;
}

.footer-info-a2b9 p {
    color: #bdc3c7;
}

.footer-links-c8e4 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links-c8e4 span {
    color: #bdc3c7;
    cursor: default;
}

.footer-bottom-f3h6 {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    color: #bdc3c7;
}

.toast-notification-x9z2 {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(400px);
    transition: transform 0.3s ease;
    z-index: 3000;
}

.toast-notification-x9z2.show {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .desktop-nav-m8k3 {
        display: none;
    }
    
    .mobile-menu-btn-f6h9 {
        display: block;
    }
    
    .hero-content-z6x1 {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .game-header-s2v8 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .game-title-main-e9f6 {
        font-size: 2rem;
    }
    
    .cover-image-main-q1z9 {
        max-height: 300px;
    }
    
    .game-description-w7e5 div[style*="display: flex"] {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .game-description-w7e5 img {
        width: 100% !important;
        max-width: 300px !important;
        height: 180px !important;
        align-self: center !important;
    }
    
    .main-features-grid-x9y2 {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .main-feature-card-a3b4 {
        padding: 30px 20px;
    }
    
    .feature-icon-large-c5d6 {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .feature-icon-large-c5d6 i {
        font-size: 2rem;
    }
    
    .main-feature-card-a3b4 h3 {
        font-size: 1.2rem;
    }
    
    .intro-cover-image-z7w8 {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .features-list-y8n3 {
        grid-template-columns: 1fr;
    }
    
    .feature-highlight-k5m2 {
        padding: 20px;
    }
    
    .screenshots-grid-t9w6 {
        grid-template-columns: 1fr;
    }
    
    .download-link-box-a8j1 {
        flex-direction: column;
        align-items: stretch;
    }
    
    .download-link-box-a8j1 label {
        min-width: auto;
        margin-bottom: 5px;
    }
    
    .footer-content-j7k3 {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links-c8e4 {
        justify-content: center;
    }
    
    .container-fluid-p7q4 {
        padding: 0 15px;
    }
    
    .content-section-f7h2 {
        padding: 40px 0;
    }
    
    .section-title-m6k1 {
        font-size: 1.8rem;
    }
}

/* ========== 文章页面样式 ========== */
.article-content-w8x5 {
    max-width: 860px;
    margin: 0 auto;
    background: rgba(15, 20, 30, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid rgba(255, 107, 107, 0.2);
}

.article-header-n7m2 {
    padding: 40px 40px 30px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(254, 202, 87, 0.05));
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.article-title-k4j9 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta-p3q6 {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #bdc3d0;
    font-size: 0.9rem;
}

.meta-item-r8s1 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.article-body-t5u2 {
    padding: 40px;
}

.intro-section-v9w3 {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 40px;
    padding: 24px 32px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    border-left: 5px solid #ff6b6b;
}

.guide-section-a6b7, .news-section-r7s8 {
    margin-bottom: 40px;
}

.guide-section-a6b7 h2, .news-section-r7s8 h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ff6b6b;
    display: inline-block;
}

.content-block-c8d9 {
    margin-bottom: 30px;
}

.content-block-c8d9 h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ff6b6b;
    margin: 25px 0 15px 0;
}

.content-block-c8d9 h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #feca57;
    margin: 20px 0 10px 0;
}

.content-block-c8d9 p {
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 15px;
}

.content-block-c8d9 ul, .content-block-c8d9 ol {
    margin: 15px 0;
    padding-left: 25px;
}

.content-block-c8d9 li {
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.character-block-m3n4, .ending-block-x7y8, .cheat-block-p5q6 {
    background: rgba(20, 25, 40, 0.8);
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 30px;
    border-left: 4px solid #ff6b6b;
    transition: all 0.25s ease;
}

.character-block-m3n4:hover, .ending-block-x7y8:hover, .cheat-block-p5q6:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(255, 107, 107, 0.15);
    border-color: #feca57;
    background: rgba(30, 35, 55, 0.9);
}

.character-block-m3n4 h3, .ending-block-x7y8 h3, .cheat-block-p5q6 h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.conclusion-section-e2f3 {
    background: linear-gradient(115deg, rgba(20, 25, 40, 0.9), rgba(10, 14, 23, 0.95));
    padding: 32px 40px;
    border-radius: 24px;
    margin-top: 40px;
    border: 1px solid rgba(255, 107, 107, 0.3);
}

.conclusion-section-e2f3 h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.conclusion-section-e2f3 p {
    line-height: 1.8;
    color: #e2e8f0;
    margin-bottom: 15px;
}

.article-navigation-g4h5 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    gap: 20px;
}

.nav-btn-back-i6j7, .nav-btn-next-k8l9 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 500;
    transition: all 0.25s;
    flex: 1;
    max-width: 250px;
    justify-content: center;
}

.nav-btn-back-i6j7:hover, .nav-btn-next-k8l9:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    .article-header-n7m2 {
        padding: 30px 25px 20px;
    }
    
    .article-title-k4j9 {
        font-size: 1.8rem;
    }
    
    .article-body-t5u2 {
        padding: 30px 25px;
    }
    
    .article-meta-p3q6 {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-navigation-g4h5 {
        flex-direction: column;
        padding: 25px;
    }
    
    .nav-btn-back-i6j7, .nav-btn-next-k8l9 {
        max-width: none;
        width: 100%;
    }
    
    .character-block-m3n4, .ending-block-x7y8, .cheat-block-p5q6 {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .game-title-main-e9f6 {
        font-size: 1.6rem;
    }
    
    .version-tag-h1k8 {
        display: block;
        margin: 10px 0 0 0;
        width: fit-content;
    }
    
    .download-card-main-h9k6 {
        padding: 25px 20px;
    }
    
    .toast-notification-x9z2 {
        right: 10px;
        left: 10px;
        transform: translateX(100vw);
        top: 100px;
    }
    
    .toast-notification-x9z2.show {
        transform: translateX(0);
    }
    
    .article-title-k4j9 {
        font-size: 1.5rem;
    }
    
    .article-header-n7m2 {
        padding: 20px 20px 15px;
    }
    
    .article-body-t5u2 {
        padding: 25px 20px;
    }
    
    .main-features-grid-x9y2 {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .main-feature-card-a3b4 {
        padding: 25px 15px;
    }
    
    .feature-icon-large-c5d6 {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }
    
    .feature-icon-large-c5d6 i {
        font-size: 1.5rem;
    }
    
    .main-feature-card-a3b4 h3 {
        font-size: 1.1rem;
    }
    
    .main-feature-card-a3b4 p {
        font-size: 0.9rem;
    }
}
/* ========== 底部导航链接样式 ========== */
.footer-links-c8e4 .footer-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links-c8e4 .footer-link:hover {
    color: #ff6b6b;
}

/* ========== 友情链接样式修复 ========== */
.friend-links-section-wgc {
    margin: 20px 0;
    text-align: center;
}
.friend-links-title-wgc {
    font-size: 1rem;
    font-weight: 500;
    color: #ff6b6b;
    margin-bottom: 12px;
}
.friend-links-container-wgc {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.friend-link-wgc {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
.friend-link-wgc:hover {
    color: #ff6b6b;
    text-decoration: underline;
}
/* 首页下载按钮增强：变长 + 下划线 */
.download-btn-primary-g2j5 {
    width: 100%;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 6px;
    justify-content: center;
    box-sizing: border-box;
}

/* 确保按钮内部图标与文字对齐（可选） */
.download-btn-primary-g2j5 i {
    margin-right: 8px;
}