/* 纳迪亚之宝游戏官网 - 高级优化样式 */

/* 基础重置和变量 */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f59e0b;
    --accent-color: #ec4899;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 0.6s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 简化背景装饰 */
.bg_decoration_x1y2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.gradient_overlay_c5d6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.03) 0%, 
        rgba(118, 75, 162, 0.03) 50%,
        rgba(255, 154, 158, 0.03) 100%);
}

/* 容器 */
.container_wrap_a5b8 {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 导航栏 */
.header_nav_x9p2 {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.header_nav_x9p2.scrolled {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header_nav_x9p2 .container_wrap_a5b8 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
}

.logo_wrapper_e7f8 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.game_icon_r2t6 {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.game_icon_r2t6:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.logo_text_g9h1 {
    display: flex;
    flex-direction: column;
}

.site_title_q8w1 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

.site_subtitle_i2j3 {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.nav_list_h6j4 {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav_link_p9k5 {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav_link_p9k5:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.nav_cta_k4l5 {
    background: var(--gradient-primary) !important;
    color: white !important;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
}

.nav_cta_k4l5:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    background: var(--gradient-primary) !important;
}

/* 移动端菜单按钮 */
.mobile_menu_btn_l5n8 {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mobile_menu_btn_l5n8:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.15);
}

.hamburger_line_m6n9 {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    margin: 2px 0;
    transition: var(--transition);
    border-radius: 1px;
}

.mobile_menu_btn_l5n8.active .hamburger_line_m6n9:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile_menu_btn_l5n8.active .hamburger_line_m6n9:nth-child(2) {
    opacity: 0;
}

.mobile_menu_btn_l5n8.active .hamburger_line_m6n9:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* 移动端菜单 */
.nav_menu_mobile_o3r1 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.nav_menu_mobile_o3r1.active_x7y2 {
    visibility: visible;
    opacity: 1;
}

.mobile_nav_overlay_p7q8 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.mobile_nav_content_r9s1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateX(100%);
    transition: var(--transition);
    padding: 80px 0 40px;
}

.nav_menu_mobile_o3r1.active_x7y2 .mobile_nav_content_r9s1 {
    transform: translateX(0);
}

.mobile_nav_list_i7g2 {
    list-style: none;
    padding: 0 24px;
}

.mobile_nav_link_d4h6 {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    margin: 8px 16px;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.mobile_nav_link_d4h6:hover {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.15);
}

.mobile_nav_cta_t2u3 {
    background: var(--gradient-primary) !important;
    color: white !important;
    border-radius: var(--border-radius);
    margin: 16px 16px !important;
    padding: 16px 20px !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.mobile_nav_cta_t2u3:hover {
    background: var(--gradient-primary) !important;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* 主要内容 */
.main_content_b8x4 {
    margin-top: 80px;
}

/* 英雄区域 */
.hero_section_c2y9 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero_background_v4w5 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero_bg_image_x6y7 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(2px);
}

.hero_overlay_z8a9 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.9) 0%, 
        rgba(139, 92, 246, 0.8) 50%,
        rgba(236, 72, 153, 0.9) 100%);
}

.hero_content_f3z7 {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
}

.hero_badge_b1c2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-md);
}

.hero_title_d3e4 {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero_subtitle_f5g6 {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    opacity: 0.9;
    margin-top: 8px;
}

.hero_description_h7i8 {
    font-size: 18px;
    line-height: 1.7;
    opacity: 1;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero_stats_j9k1 {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 48px;
}

.stat_item_l2m3 {
    text-align: center;
}

.stat_number_n4o5 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
}

.stat_label_p6q7 {
    font-size: 14px;
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero_actions_r8s9 {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn_primary_t1u2,
.btn_secondary_x5y6 {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.btn_primary_t1u2 {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-md);
}

.btn_primary_t1u2:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: rgba(255, 255, 255, 1);
}

.btn_secondary_x5y6 {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn_secondary_x5y6:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* 移除按钮光效以提升性能 */

.scroll_indicator_z7a8 {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
}

.scroll_arrow_b9c1 {
    width: 24px;
    height: 24px;
    border: 2px solid currentColor;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    /* 移除动画以提升性能 */
}

/* 移除bounce动画以提升性能 */

/* 区域标题 */
.section_header_f4g5 {
    text-align: center;
    margin-bottom: 64px;
}

.section_title_h6i7 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    position: relative;
}

.section_title_h6i7::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section_subtitle_j8k9 {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* 游戏特色区域 */
.features_section_d2e3 {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.features_grid_l1m2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature_card_n3o4 {
    background: white;
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.feature_card_n3o4:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature_icon_p5q6 {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: var(--shadow-lg);
}

.feature_title_r7s8 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature_desc_t9u1 {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* 截图区域 */
.screenshots_section_v2w3 {
    padding: 120px 0;
    background: white;
}

.screenshots_gallery_x4y5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.screenshot_item_z6a7 {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.screenshot_item_z6a7:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.screenshot_img_b8c9 {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.screenshot_overlay_d1e2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    color: white;
    font-size: 24px;
    cursor: pointer;
}

.screenshot_overlay_d1e2 span {
    font-size: 14px;
    margin-top: 8px;
    font-weight: 500;
}

.screenshot_item_z6a7:hover .screenshot_overlay_d1e2 {
    opacity: 1;
}

/* 图片放大模态框样式 */
.image_modal_overlay_m3n6 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.image_modal_overlay_m3n6.active {
    opacity: 1;
    visibility: visible;
}

.image_modal_content_o7p2 {
    background: white;
    border-radius: var(--border-radius-lg);
    max-width: 90vw;
    max-height: 90vh;
    width: 800px;
    box-shadow: var(--shadow-xl);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    transition: var(--transition);
}

.image_modal_overlay_m3n6.active .image_modal_content_o7p2 {
    transform: scale(1);
}

.modal_header_q9r4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.modal_title_s1t8 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.modal_close_u5v2 {
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}

.modal_close_u5v2:hover {
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-primary);
}

.modal_body_w7x4 {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 400px;
    max-height: 60vh;
    overflow: hidden;
}

.modal_image_y3z6 {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.modal_footer_a1b8 {
    padding: 20px 24px;
    border-top: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.modal_controls_c5d2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal_btn_e9f6 {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal_btn_e9f6:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.modal_btn_e9f6:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    transform: none;
}

.image_counter_g3h7 {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    background: rgba(0, 0, 0, 0.05);
    padding: 8px 16px;
    border-radius: var(--border-radius);
}

/* 响应式优化 */
@media (max-width: 768px) {
    .image_modal_content_o7p2 {
        width: 95vw;
        max-height: 85vh;
    }
    
    .modal_header_q9r4,
    .modal_footer_a1b8 {
        padding: 16px 20px;
    }
    
    .modal_body_w7x4 {
        padding: 16px;
        max-height: 50vh;
    }
    
    .modal_controls_c5d2 {
        flex-direction: column;
        gap: 16px;
    }
    
    .modal_btn_e9f6 {
        width: 100%;
        justify-content: center;
    }
}

/* 下载区域 */
.download_section_f3g4 {
    position: relative;
    padding: 120px 0;
    background: var(--bg-dark);
    color: white;
    overflow: hidden;
}

.download_background_h5i6 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.download_pattern_j7k8 {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
}

.download_content_l9m1 {
    text-align: center;
}

.download_header_n2o3 {
    margin-bottom: 48px;
}

.download_title_p4q5 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.download_subtitle_r6s7 {
    font-size: 20px;
    opacity: 0.9;
}

.download_card_t8u9 {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lg);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
    color: var(--text-primary);
}

.download_info_v1w2 {
    display: grid;
    gap: 32px;
}

.game_meta_x3y4 {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
}

.download_icon_z5a6 {
    width: 80px;
    height: 80px;
    border-radius: var(--border-radius);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

.game_name_d9e1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.game_version_f2g3 {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 16px;
}

.game_tags_h4i5 {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag_j6k7 {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.download_actions_l8m9 {
    display: grid;
    gap: 24px;
}

.download_btn_main_n1o2 {
    position: relative;
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.download_btn_main_n1o2:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* 移除下载按钮光效以提升性能 */

.download_link_section_r5s6 {
    text-align: left;
}

.download_label_t7u8 {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
    opacity: 0.9;
}

.link_input_group_v9w1 {
    display: flex;
    gap: 8px;
}

.download_input_x2y3 {
    flex: 1;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: #000;
    font-family: monospace;
    font-size: 14px;
}

.download_input_x2y3::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.copy_btn_z4a5 {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 16px 20px;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
}

.copy_btn_z4a5:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* 内容区域 */
.content_sections_b6c7 {
    padding: 120px 0;
    background: var(--bg-secondary);
}

.content_grid_d8e9 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.content_column_f1g2 {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

/* 攻略列表 */
.guides_list_h3i4 {
    display: grid;
    gap: 24px;
}

.guide_item_j5k6 {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.guide_item_j5k6:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.guide_icon_l7m8 {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.guide_content_n9o1 {
    flex: 1;
}

.guide_title_p2q3 {
    margin-bottom: 8px;
}

.guide_title_p2q3 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}

.guide_title_p2q3 a:hover {
    color: var(--primary-color);
}

.guide_excerpt_r4s5 {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 资讯列表 */
.news_list_t6u7 {
    display: grid;
    gap: 24px;
}

.news_item_v8w9 {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.news_item_v8w9:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--secondary-color);
}

.news_date_x1y2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.date_day_z3a4 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

.date_month_b5c6 {
    font-size: 12px;
    font-weight: 500;
}

.news_content_d7e8 {
    flex: 1;
}

.news_title_f9g1 {
    margin-bottom: 8px;
}

.news_title_f9g1 a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: var(--transition);
}

.news_title_f9g1 a:hover {
    color: var(--secondary-color);
}

.news_excerpt_h2i3 {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* 页脚 */
.footer_section_j4k5 {
    position: relative;
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
}

.footer_background_l6m7 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.footer_pattern_n8o9 {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 50%);
}

.footer_content_p1q2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer_brand_r3s4 {
    display: flex;
    gap: 16px;
}

.footer_logo_t5u6 {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.footer_title_x9y1 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer_desc_z2a3 {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer_links_b4c5 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.link_title_f8g9 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.link_list_h1i2 {
    list-style: none;
}

.link_list_h1i2 li {
    margin-bottom: 8px;
}

.link_list_h1i2 a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.link_list_h1i2 a:hover {
    color: white;
}

.footer_bottom_j3k4 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright_text_l5m6 {
    color: rgba(255, 255, 255, 0.6);
}

.footer_social_n7o8 {
    display: flex;
    align-items: center;
    gap: 16px;
}

.social_text_p9q1 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.social_links_r2s3 {
    display: flex;
    gap: 12px;
}

.social_link_t4u5 {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social_link_t4u5:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* 提示框 */
.copy_toast_v6w7 {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.copy_toast_v6w7.show_n7p4 {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.toast_content_x8y9 {
    background: var(--success-color);
    color: white;
    padding: 20px 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

/* 回到顶部按钮 */
.back_to_top_z1a2 {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.back_to_top_z1a2.visible {
    opacity: 1;
    visibility: visible;
}

.back_to_top_z1a2:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .content_grid_d8e9 {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero_stats_j9k1 {
        gap: 32px;
    }
    
    .features_grid_l1m2 {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .nav_menu_desktop_z3v9 {
        display: none;
    }
    
    .mobile_menu_btn_l5n8 {
        display: flex;
    }
    
    .hero_actions_r8s9 {
        flex-direction: column;
        align-items: center;
    }
    
    .hero_stats_j9k1 {
        flex-direction: column;
        gap: 24px;
    }
    
    .game_meta_x3y4 {
        flex-direction: column;
        text-align: center;
    }
    
    .link_input_group_v9w1 {
        flex-direction: column;
    }
    
    .footer_content_p1q2 {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer_links_b4c5 {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer_bottom_j3k4 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .screenshots_gallery_x4y5 {
        grid-template-columns: 1fr;
    }
    
    .features_grid_l1m2 {
        grid-template-columns: 1fr;
    }
    
    .content_column_f1g2 {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .container_wrap_a5b8 {
        padding: 0 16px;
    }
    
    .download_card_t8u9 {
        padding: 32px 24px;
    }
    
    .hero_content_f3z7 {
        padding: 0 16px;
    }
}

/* 简化动画效果 */
.fade-in-up {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* 滚动条样式 */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* 选择文本样式 */
::selection {
    background: rgba(99, 102, 241, 0.2);
    color: var(--text-primary);
}

/* 攻略和资讯页面样式优化 */
.guide_article_x2y5,
.news_article_x2y5 {
    padding: 120px 0 80px;
    background: var(--bg-secondary);
    min-height: 100vh;
}

.article_header_z8w3 {
    text-align: center;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

.article_title_a4b7 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.article_title_a4b7 i {
    color: var(--primary-color);
    margin-right: 12px;
}

.article_meta_c6d9 {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    color: var(--text-secondary);
    font-size: 14px;
}

.meta_item_e2f5 {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta_item_e2f5 i {
    color: var(--primary-color);
}

.article_content_g8h1 {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.content_intro_i4j7 {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    padding: 32px;
    border-radius: var(--border-radius);
    margin-bottom: 48px;
    border-left: 4px solid var(--primary-color);
}

.content_intro_i4j7 p {
    font-size: 18px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.7;
}

.guide_section_k2l5 {
    margin-bottom: 48px;
}

.guide_section_k2l5:last-child {
    margin-bottom: 0;
}

.section_heading_m6n9 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    position: relative;
}

.section_heading_m6n9::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
}

.section_content_o8p1 {
    padding-left: 16px;
}

.section_content_o8p1 h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 16px 0;
    padding-left: 12px;
    border-left: 3px solid var(--secondary-color);
}

.section_content_o8p1 p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.guide_list_q4r7 {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.guide_list_q4r7 li {
    background: var(--bg-secondary);
    margin-bottom: 12px;
    padding: 16px 20px;
    border-radius: var(--border-radius);
    border-left: 3px solid var(--primary-color);
    font-size: 15px;
    line-height: 1.6;
    transition: var(--transition);
}

.guide_list_q4r7 li:hover {
    background: rgba(99, 102, 241, 0.05);
    transform: translateX(4px);
}

.guide_list_q4r7 li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* 特殊内容块样式 */
.tip_box_s6t9 {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 32px 0;
    position: relative;
}

.tip_box_s6t9::before {
    content: '💡';
    position: absolute;
    top: -12px;
    left: 20px;
    background: white;
    padding: 0 8px;
    font-size: 20px;
}

.warning_box_u8v1 {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 32px 0;
    position: relative;
}

.warning_box_u8v1::before {
    content: '⚠️';
    position: absolute;
    top: -12px;
    left: 20px;
    background: white;
    padding: 0 8px;
    font-size: 20px;
}

.info_box_w2x5 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.1));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 32px 0;
    position: relative;
}

.info_box_w2x5::before {
    content: 'ℹ️';
    position: absolute;
    top: -12px;
    left: 20px;
    background: white;
    padding: 0 8px;
    font-size: 20px;
}

/* 表格样式 */
.recipe_table_c3d4 {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.recipe_table_c3d4 th,
.recipe_table_c3d4 td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.recipe_table_c3d4 th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 15px;
}

.recipe_table_c3d4 td {
    font-size: 14px;
    color: var(--text-secondary);
}

.recipe_table_c3d4 tr:hover {
    background: var(--bg-secondary);
}

/* 角色卡片样式 */
.character_guide_box_h3i6 {
    background: white;
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 24px 0;
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--accent-color);
}

.character_guide_box_h3i6 h4 {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 12px;
}

/* 解谜步骤样式 */
.temple_puzzle_box_e5f8 {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 24px 0;
}

.temple_puzzle_box_e5f8 h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 16px;
}

/* 安装步骤样式 */
.installation_steps_k3l8 {
    counter-reset: step-counter;
}

.installation_steps_k3l8 .step_item_m7n2 {
    counter-increment: step-counter;
    background: white;
    border-radius: var(--border-radius);
    padding: 24px;
    margin: 20px 0;
    box-shadow: var(--shadow-md);
    position: relative;
    padding-left: 80px;
}

.installation_steps_k3l8 .step_item_m7n2::before {
    content: counter(step-counter);
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

/* FAQ样式 */
.faq_section_u3v8 {
    margin: 48px 0;
}

.faq_item_w7x4 {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq_question_y1z8 {
    background: var(--bg-secondary);
    padding: 20px 24px;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.faq_question_y1z8:hover {
    background: rgba(99, 102, 241, 0.05);
}

.faq_question_y1z8::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--primary-color);
}

.faq_answer_a5b2 {
    padding: 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* 响应式优化 */
@media (max-width: 768px) {
    .article_content_g8h1 {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .article_meta_c6d9 {
        flex-direction: column;
        gap: 12px;
    }
    
    .section_content_o8p1 {
        padding-left: 8px;
    }
    
    .installation_steps_k3l8 .step_item_m7n2 {
        padding-left: 60px;
    }
    
    .installation_steps_k3l8 .step_item_m7n2::before {
        left: 16px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .recipe_table_c3d4 {
        font-size: 12px;
    }
    
    .recipe_table_c3d4 th,
    .recipe_table_c3d4 td {
        padding: 12px 8px;
    }
}