* {
    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: #e0e6ed;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3a 50%, #2a2a5a 100%);
    min-height: 100vh;
}

.container_qdy29 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.nav_qdy84 {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #6c5ce7;
}

.nav_qdy84 .container_qdy29 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo_qdy63 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo_img_qdy51 {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #a29bfe;
}

.logo_text_qdy88 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #74b9ff;
    text-shadow: 0 0 10px rgba(116, 185, 255, 0.5);
}

.navigation_qdy77 {
    display: flex;
    gap: 2rem;
}

.navigation_qdy77 a {
    color: #ddd6fe;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.navigation_qdy77 a:hover {
    color: #a29bfe;
    text-shadow: 0 0 5px rgba(162, 155, 254, 0.5);
}

.navigation_qdy77 a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    transition: width 0.3s ease;
}

.navigation_qdy77 a:hover::after {
    width: 100%;
}

.mobile_menu_qdy23 {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile_menu_qdy23 span {
    width: 25px;
    height: 3px;
    background: #a29bfe;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero_qdy19 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero_bg_qdy82 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.05) 100%);
    z-index: -1;
}

.hero_content_qdy74 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding-top: 100px;
}

.hero_title_qdy95 {
    font-size: 3rem;
    font-weight: bold;
    color: #74b9ff;
    text-shadow: 0 0 20px rgba(116, 185, 255, 0.3);
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.icon_qdy42 {
    font-size: 1.2em;
    margin-right: 0.5rem;
}

.game_tags_qdy58 {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag_qdy71 {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: normal;
    text-shadow: none;
}

.hero_desc_qdy83 {
    font-size: 1.2rem;
    color: #b2bec3;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero_buttons_qdy27 {
    display: flex;
    gap: 1rem;
}

.btn_primary_qdy64, .btn_secondary_qdy89 {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn_primary_qdy64 {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.btn_primary_qdy64:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

.btn_secondary_qdy89 {
    background: transparent;
    color: #a29bfe;
    border: 2px solid #a29bfe;
}

.btn_secondary_qdy89:hover {
    background: #a29bfe;
    color: white;
}

.hero_image_qdy15 {
    text-align: center;
}

.cover_img_qdy52 {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(162, 155, 254, 0.3);
}

/* Section Styles */
.section_title_qdy73 {
    font-size: 2.5rem;
    color: #74b9ff;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(116, 185, 255, 0.3);
    position: relative;
}

.section_title_qdy73::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #6c5ce7, #a29bfe);
    border-radius: 2px;
}

/* Intro Section */
.intro_section_qdy46 {
    padding: 5rem 0;
    background: rgba(26, 26, 58, 0.3);
}

.intro_content_qdy85 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.intro_text_qdy97 h3 {
    color: #a29bfe;
    font-size: 1.3rem;
    margin: 2rem 0 1rem 0;
    border-left: 4px solid #6c5ce7;
    padding-left: 1rem;
}

.intro_text_qdy97 p {
    color: #b2bec3;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro_images_qdy24 {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.intro_image_item_qdy95 {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(162, 155, 254, 0.2);
    transition: all 0.3s ease;
}

.intro_image_item_qdy95:hover {
    border-color: #a29bfe;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.intro_img_qdy68 {
    width: 100%;
    border-radius: 13px;
    display: block;
}

.image_caption_qdy47 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Features Section */
.features_section_qdy31 {
    padding: 5rem 0;
}

.features_grid_qdy49 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature_card_qdy86 {
    background: rgba(26, 26, 58, 0.6);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(162, 155, 254, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature_card_qdy86:hover {
    transform: translateY(-5px);
    border-color: #a29bfe;
    box-shadow: 0 10px 25px rgba(162, 155, 254, 0.2);
}

.feature_icon_qdy72 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature_card_qdy86 h3 {
    color: #74b9ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature_card_qdy86 p {
    color: #b2bec3;
    line-height: 1.6;
}

/* Guide Section */
.guide_section_qdy93 {
    padding: 5rem 0;
    background: rgba(26, 26, 58, 0.3);
}

.guide_content_qdy35 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
}

.guide_links_qdy57 {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide_link_qdy79 {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.guide_link_qdy79:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.guide_tips_qdy41 h3 {
    color: #a29bfe;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.guide_tips_qdy41 ul {
    list-style: none;
}

.guide_tips_qdy41 li {
    color: #b2bec3;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.guide_tips_qdy41 li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #74b9ff;
}

.guide_tips_qdy41 strong {
    color: #a29bfe;
}

/* Screenshots Section */
.screenshots_section_qdy14 {
    padding: 5rem 0;
}

.screenshots_grid_qdy62 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.screenshot_item_qdy38 {
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(162, 155, 254, 0.2);
    transition: all 0.3s ease;
}

.screenshot_item_qdy38:hover {
    border-color: #a29bfe;
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.screenshot_img_qdy75 {
    width: 100%;
    height: auto;
    display: block;
}

/* Screenshot Captions */
.screenshot_caption_qdy96 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.screenshot_item_qdy38 {
    position: relative;
    overflow: hidden;
}

.screenshot_item_qdy38:hover .screenshot_caption_qdy96 {
    opacity: 1;
}

.view_more_qdy47 {
    text-align: center;
    margin-top: 2rem;
}

/* System Requirements Section */
.system_requirements_qdy98 {
    padding: 5rem 0;
    background: rgba(26, 26, 58, 0.3);
}

.requirements_grid_qdy52 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.requirement_card_qdy73 {
    background: rgba(42, 42, 90, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(162, 155, 254, 0.2);
    backdrop-filter: blur(10px);
}

.requirement_card_qdy73 h3 {
    color: #74b9ff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
}

.requirement_card_qdy73 ul {
    list-style: none;
}

.requirement_card_qdy73 li {
    color: #b2bec3;
    margin-bottom: 0.8rem;
    padding-left: 1rem;
    position: relative;
}

.requirement_card_qdy73 li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #a29bfe;
}

.requirement_card_qdy73 strong {
    color: #a29bfe;
}

/* Version History Section */
.version_history_qdy99 {
    padding: 5rem 0;
}

.timeline_qdy84 {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline_qdy84::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #6c5ce7, #a29bfe);
    transform: translateX(-50%);
}

.timeline_item_qdy61 {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.timeline_item_qdy61:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline_date_qdy35 {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 80px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline_content_qdy72 {
    background: rgba(26, 26, 58, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(162, 155, 254, 0.2);
    flex: 1;
    backdrop-filter: blur(10px);
}

.timeline_content_qdy72 h3 {
    color: #74b9ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.timeline_content_qdy72 ul {
    list-style: none;
}

.timeline_content_qdy72 li {
    color: #b2bec3;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

/* FAQ Section */
.faq_section_qdy87 {
    padding: 5rem 0;
    background: rgba(26, 26, 58, 0.3);
}

.faq_grid_qdy48 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.faq_item_qdy71 {
    background: rgba(42, 42, 90, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(162, 155, 254, 0.2);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.faq_question_qdy92 {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    padding: 1.5rem;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.faq_question_qdy92:hover {
    background: linear-gradient(45deg, #5a4fcf, #8b7df7);
}

.faq_answer_qdy63 {
    padding: 1.5rem;
    color: #b2bec3;
    line-height: 1.6;
}

.faq_answer_qdy63 p {
    margin: 0;
}

/* Download Section */
.download_section_qdy87 {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.1), rgba(162, 155, 254, 0.05));
}

.download_content_qdy59 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(26, 26, 58, 0.6);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(162, 155, 254, 0.2);
}

.download_info_qdy33 h2 {
    color: #74b9ff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.download_info_qdy33 p {
    color: #b2bec3;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.version_info_qdy76 {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.version_qdy94, .update_date_qdy81 {
    background: rgba(108, 92, 231, 0.2);
    color: #a29bfe;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(162, 155, 254, 0.3);
}

.btn_download_qdy65 {
    background: linear-gradient(45deg, #6c5ce7, #a29bfe);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.btn_download_qdy65:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(108, 92, 231, 0.6);
}

/* Footer */
.footer_qdy92 {
    background: rgba(10, 10, 35, 0.9);
    padding: 3rem 0 1rem;
    border-top: 2px solid #6c5ce7;
}

.footer_content_qdy37 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer_info_qdy54 h3 {
    color: #74b9ff;
    margin-bottom: 1rem;
}

.footer_info_qdy54 p {
    color: #b2bec3;
}

.footer_links_qdy69 h4 {
    color: #a29bfe;
    margin-bottom: 1rem;
}

.friend_links_qdy43 {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.friend_links_qdy43 a {
    color: #ddd6fe;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.friend_links_qdy43 a:hover {
    color: #a29bfe;
}

.footer_bottom_qdy28 {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(162, 155, 254, 0.2);
    color: #636e72;
}

/* 图片默认样式保护 */
img {
    opacity: 1 !important;
    display: block !important;
    max-width: 100%;
    height: auto;
}

/* Desktop Styles for Intro Images */
@media (min-width: 769px) {
    .intro_images_qdy24 {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .navigation_qdy77 {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 10, 35, 0.98);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid #6c5ce7;
    }

    .navigation_qdy77.active {
        display: flex;
    }

    .mobile_menu_qdy23 {
        display: flex;
    }

    .mobile_menu_qdy23.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .mobile_menu_qdy23.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile_menu_qdy23.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .hero_content_qdy74 {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero_title_qdy95 {
        font-size: 2rem;
    }

    .game_tags_qdy58 {
        justify-content: center;
    }

    .hero_buttons_qdy27 {
        justify-content: center;
        flex-wrap: wrap;
    }

    .intro_content_qdy85 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .guide_content_qdy35 {
        grid-template-columns: 1fr;
    }

    .download_content_qdy59 {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer_content_qdy37 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .friend_links_qdy43 {
        justify-content: center;
    }

    .container_qdy29 {
        padding: 0 15px;
    }

    .section_title_qdy73 {
        font-size: 2rem;
    }

    .features_grid_qdy49 {
        grid-template-columns: 1fr;
    }

    .screenshots_grid_qdy62 {
        grid-template-columns: 1fr;
    }

    .requirements_grid_qdy52 {
        grid-template-columns: 1fr;
    }

    .timeline_qdy84::before {
        left: 20px;
    }

    .timeline_item_qdy61 {
        flex-direction: row !important;
        padding-left: 50px;
    }

    .timeline_date_qdy35 {
        position: absolute;
        left: -25px;
        margin: 0;
        min-width: 60px;
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }

    .timeline_content_qdy72 {
        margin-left: 0;
    }

    .faq_grid_qdy48 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero_title_qdy95 {
        font-size: 1.5rem;
    }

    .tag_qdy71 {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
    }

    .btn_primary_qdy64, .btn_secondary_qdy89 {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .feature_card_qdy86 {
        padding: 1.5rem;
    }

    .download_content_qdy59 {
        padding: 2rem 1rem;
    }
} 