* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #ffeef8 0%, #f0e6ff 100%);
    min-height: 100vh;
}

.container_2m7k {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar_h3x8 {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav_container_2m9p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav_brand_4k1s {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav_logo_6t2w {
    width: 55px;
    height: 55px;
    border-radius: 10px;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 3px;
}

.brand_text_8n5r {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d63384;
    text-decoration: none;
}

.nav_toggle_7p4q {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #d63384;
    cursor: pointer;
}

.nav_menu_3w9k {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav_link_1q8p {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 20px;
}

.nav_link_1q8p:hover {
    color: #d63384;
    background: rgba(214, 51, 132, 0.1);
    transform: translateY(-2px);
}

.hero_section_5n8w {
    margin-top: 70px;
    padding: 60px 0;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    position: relative;
    overflow: hidden;
}

.hero_section_5n8w::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/></svg>') repeat;
    background-size: 50px 50px;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero_container_3p7k {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.game_info_6x4s {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    gap: 30px;
    align-items: center;
}

.game_content_left_8w5k {
    flex: 1;
}

.game_cover_right_3n7p {
    flex: 0 0 480px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.game_cover_image_5k9m {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.game_cover_image_5k9m:hover {
    transform: scale(1.05);
}

.game_header_8k1p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}



.game_title_5t2k {
    font-size: 1.8rem;
    color: #d63384;
    margin-bottom: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-weight: 700;
    line-height: 1.1;
}

.game_tags_7n9m {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.tag_item_3x6p {
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

.game_description_2w8k {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin-bottom: 15px;
}

.download_section_4r7m {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download_btn_8x3k {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d63384, #e91e63);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
    align-self: flex-start;
}

.download_btn_8x3k:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(214, 51, 132, 0.6);
    background: linear-gradient(135deg, #e91e63, #d63384);
}

.game_stats_6m2n {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.stat_item_9p4w {
    background: rgba(214, 51, 132, 0.1);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    color: #d63384;
    font-weight: 500;
}

.main_content_7k9p {
    padding: 60px 0;
}

.content_section_3w8n {
    margin-bottom: 80px;
}

.section_title_9r4s {
    font-size: 2.2rem;
    color: #d63384;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section_title_9r4s::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff9a9e, #fecfef);
    border-radius: 2px;
}

.intro_content_5n2w {
    display: block;
}

.intro_image_container_7k4m {
    margin-top: 30px;
    text-align: center;
}

.intro_bottom_image_3n9w {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.intro_bottom_image_3n9w:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.intro_text_8k6p {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.intro_text_8k6p p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}



.characters_grid_6k3w {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.character_card_8m2p {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.character_card_8m2p:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.character_image_5n7r {
    width: 100%;
    height: 280px;
    object-fit: contain;
    object-position: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
}

.character_clickable_8w4k {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.character_clickable_8w4k:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(214, 51, 132, 0.3);
    filter: brightness(1.1);
}

.character_info_9k4s {
    padding: 20px;
}

.character_name_2w8p {
    font-size: 1.3rem;
    color: #d63384;
    margin-bottom: 6px;
    font-weight: 600;
}

.character_role_7m3k {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.character_desc_4n9r {
    line-height: 1.4;
    color: #555;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.character_stats_5k8w {
    font-size: 0.8rem;
    color: #888;
    background: rgba(214, 51, 132, 0.08);
    padding: 4px 8px;
    border-radius: 4px;
    margin-top: 0;
    border-left: 2px solid #d63384;
    line-height: 1.3;
}

.features_grid_7n4k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature_item_3w9p {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature_item_3w9p:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature_icon_5m2r {
    font-size: 2.5rem;
    color: #d63384;
    margin-bottom: 20px;
}

.feature_title_8k6n {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.feature_desc_2p7w {
    color: #666;
    line-height: 1.6;
}

.screenshots_grid_4m7n {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.screenshot_item_9k2p {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.screenshot_item_9k2p:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.screenshot_image_6w3r {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.screenshot_image_6w3r:hover {
    transform: scale(1.02);
}

.strategy_list_7k4p, .news_list_6w3k {
    display: grid;
    gap: 25px;
}

.strategy_item_3w8n, .news_item_8m4p {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.strategy_item_3w8n:hover, .news_item_8m4p:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.strategy_title_5m2r a, .news_title_2r7n a {
    color: #d63384;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
}

.strategy_title_5m2r a:hover, .news_title_2r7n a:hover {
    text-decoration: underline;
}

.strategy_desc_9p6w, .news_desc_4n9r {
    color: #666;
    margin-top: 10px;
    line-height: 1.6;
}

.news_date_7m2k {
    color: #999;
    font-size: 0.9rem;
    float: right;
    margin-top: 10px;
}

.footer_section_4k7n {
    background: linear-gradient(135deg, #6a11cb 0%, #2575fc 100%);
    color: white;
    padding: 50px 0 30px;
}

.footer_container_8m3p {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer_content_2w9k {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer_title_3n8w {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer_desc_7k2m {
    line-height: 1.6;
    opacity: 0.9;
}

.links_title_9m4r {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.links_grid_2w8n {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.links_grid_2w8n a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.links_grid_2w8n a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer_bottom_8k5p {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
}

.copyright_text_3w7m {
    opacity: 0.8;
}

@media (max-width: 768px) {
    .nav_toggle_7p4q {
        display: block;
    }
    
    .nav_menu_3w9k {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav_menu_3w9k.active {
        left: 0;
    }
    
    .nav_link_1q8p {
        font-size: 1.2rem;
        padding: 15px 30px;
        width: 80%;
        text-align: center;
        border-radius: 10px;
        margin-bottom: 10px;
    }
    
    .game_title_5t2k {
        font-size: 1.8rem;
    }
    
    .game_header_8k1p {
        text-align: center;
    }
    
    .game_info_6x4s {
        flex-direction: column;
        gap: 20px;
        padding: 30px;
    }
    
    .game_cover_right_3n7p {
        flex: none;
        order: -1;
    }
    
    .game_cover_image_5k9m {
        max-width: 350px;
    }
    
    .game_title_5t2k {
        text-align: center;
        font-size: 2rem;
    }
    
    .game_tags_7n9m {
        justify-content: center;
    }
    

    

    
    .characters_grid_6k3w {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .character_info_9k4s {
        padding: 15px;
    }
    
    .character_image_5n7r {
        height: 250px;
        padding: 3px;
    }
    
    .features_grid_7n4k {
        grid-template-columns: 1fr;
    }
    
    .intro_image_container_7k4m {
        margin-top: 25px;
    }
    
    .intro_bottom_image_3n9w {
        max-width: 500px;
    }
    
    .screenshots_grid_4m7n {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    
    .footer_content_2w9k {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .game_stats_6m2n {
        justify-content: center;
    }
    
    .download_btn_8x3k {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .game_info_6x4s {
        padding: 20px;
        gap: 15px;
    }
    
    .game_cover_image_5k9m {
        max-width: 280px;
    }
    
    .game_title_5t2k {
        font-size: 1.8rem;
    }
    
    .screenshots_grid_4m7n {
        grid-template-columns: 1fr;
    }
    
    .container_2m7k {
        padding: 0 15px;
    }
    
    .intro_text_8k6p {
        padding: 25px;
        max-width: none;
    }
    
    .intro_image_container_7k4m {
        margin-top: 20px;
    }
    
    .intro_bottom_image_3n9w {
        max-width: 100%;
        border-radius: 10px;
    }
    
    .character_info_9k4s {
        padding: 12px;
    }
    
    .character_image_5n7r {
        height: 220px;
        padding: 2px;
    }
    
    .nav_container_2m9p {
        padding: 0 15px;
    }
}

.nav_menu_3w9k.active .nav_link_1q8p {
    color: #333;
    background: rgba(214, 51, 132, 0.1);
}

body.nav_open {
    overflow: hidden;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content_section_3w8n {
    animation: fadeInUp 0.6s ease-out;
}

/* 角色图片模态框样式 */
.modal_overlay_7k2m {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal_overlay_7k2m.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal_content_4n8p {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

.character_modal_content_5m8r {
    display: flex;
    max-width: 800px;
    max-height: 600px;
}

.modal_close_6r3s {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    color: #666;
    cursor: pointer;
    z-index: 10001;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal_close_6r3s:hover {
    background: rgba(214, 51, 132, 0.9);
    color: white;
    transform: scale(1.1);
}

.modal_image_8w5n {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.character_modal_image_2q7k {
    width: 400px;
    height: 100%;
    object-fit: contain;
    background: rgba(248, 249, 250, 0.5);
}

.character_modal_info_4r8n {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.character_modal_info_4r8n h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.character_modal_info_4r8n p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from { 
        opacity: 0;
        transform: scale(0.8);
    }
    to { 
        opacity: 1;
        transform: scale(1);
    }
}

/* 移动端适配 */
@media (max-width: 768px) {
    .character_modal_content_5m8r {
        flex-direction: column;
        max-width: 95%;
        max-height: 85%;
    }
    
    .character_modal_image_2q7k {
        width: 100%;
        height: 300px;
    }
    
    .character_modal_info_4r8n {
        min-width: auto;
        padding: 20px;
    }
    
    .character_modal_info_4r8n h3 {
        font-size: 1.5rem;
    }
    
    .character_modal_info_4r8n p {
        font-size: 1rem;
    }
} 

/* Whitehat SEO protocol additions */
.download_confirm_overlay_2m9p { position: fixed; inset: 0; z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 20px; background: rgba(20, 16, 36, .65); }
.download_confirm_dialog_7k3w { width: min(420px, 100%); padding: 28px; border-radius: 16px; background: #fff; box-shadow: 0 18px 60px rgba(0,0,0,.28); text-align: center; }
.download_confirm_dialog_7k3w h2 { margin: 0 0 12px; color: #d63384; font-size: 1.35rem; }
.download_confirm_dialog_7k3w p { margin: 0 0 22px; color: #555; line-height: 1.7; }
.download_confirm_actions_8n4r { display: flex; gap: 12px; justify-content: center; }
.download_confirm_actions_8n4r button { border: 0; border-radius: 24px; padding: 10px 22px; cursor: pointer; font: inherit; }
.download_confirm_cancel_3p8k { background: #eee; color: #555; }
.download_confirm_continue_6r2m { background: linear-gradient(135deg, #d63384, #e91e63); color: #fff; }
.article_generated_content { color: #555; line-height: 1.8; white-space: pre-wrap; }
.news_listing_page_4m8p { margin-top: 70px; padding: 40px 0; }
.news_listing_page_4m8p .news_list_6w3k { display: grid; gap: 20px; }
