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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #e8f4f8 0%, #f0f8ff 100%);
    min-height: 100vh;
}

.container_x8k5n {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav_header_p7w2q {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #e3f2fd;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav_header_p7w2q .container_x8k5n {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.logo_section_m4r9t {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo_img_b3v7s {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.game_title_z6n4k {
    font-size: 24px;
    font-weight: 700;
    color: #2980b9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.desktop_nav_q2l8m {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav_link_f5h9p {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav_link_f5h9p:hover {
    color: #2980b9;
    background: rgba(52, 152, 219, 0.1);
    transform: translateY(-2px);
}

.download_btn_t4y8r {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.download_btn_t4y8r:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.mobile_menu_btn_w7j3x {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #2980b9;
    cursor: pointer;
    padding: 8px;
}

.mobile_nav_d8s2k {
    display: none;
    background: white;
    border-top: 1px solid #e3f2fd;
    padding: 20px;
}

.mobile_nav_link_v3n6m {
    display: block;
    text-decoration: none;
    color: #34495e;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile_nav_link_v3n6m:hover {
    color: #2980b9;
}

.main_content_r5k9w {
    margin-top: 80px;
}

.hero_section_j7m4p {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 100%);
}

.hero_content_n2q8v {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero_image_s6l3t {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.hero_image_s6l3t:hover {
    transform: scale(1.02);
}

.hero_title_c4x7m {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero_desc_u8p5j {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero_tags_l6n9q {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag_item_h3k8r {
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.intro_section_y4w7k,
.features_section_b8n5j,
.screenshots_section_v3n8k,
.download_section_h5l2k {
    padding: 80px 0;
}

.section_title_e9r2m {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section_title_e9r2m::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 2px;
}

.intro_paragraph_z2l7k {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.game_info_box_m7k4p {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
    border-left: 5px solid #3498db;
}

.info_title_r9x6n {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
}

.info_list_t3w8q {
    list-style: none;
}

.info_list_t3w8q li {
    padding: 8px 0;
    color: #5d6d7e;
    display: flex;
    align-items: center;
    gap: 12px;
}

.info_list_t3w8q i {
    color: #3498db;
    width: 16px;
}

.features_grid_k4m7p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature_card_w6q3r {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature_card_w6q3r:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature_icon_l9x2v {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature_title_s5k8n {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.feature_desc_t7m4q {
    color: #5d6d7e;
    line-height: 1.6;
}

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

.screenshot_item_p4k7s {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.screenshot_item_p4k7s:hover {
    transform: scale(1.05);
}

.screenshot_img_w8q2n {
    width: 100%;
    height: auto;
    display: block;
}

.download_content_m9p6r {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.download_title_q8w5k {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.download_desc_z3m8j {
    font-size: 16px;
    color: #5d6d7e;
    margin-bottom: 30px;
    line-height: 1.7;
}

.download_features_r6k9m {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-bottom: 40px;
}

.download_feature_t2l5n {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #27ae60;
    font-weight: 500;
}

.download_feature_t2l5n i {
    color: #27ae60;
}

.download_buttons_k7p4w {
    margin-top: 30px;
}

.download_btn_primary_n5j8r {
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    color: white;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
    margin-bottom: 20px;
}

.download_btn_primary_n5j8r:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.download_info_small_v9m3k {
    color: #7f8c8d;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer_section_b4n7q {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer_title_z9l4k {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #3498db;
}

.footer_desc_m6n2q {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer_links_t7k9r {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_link_s4m8n {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer_link_s4m8n:hover {
    color: #3498db;
}

.footer_bottom_l5p8k {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.copyright_text_j3w6r {
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 768px) {
    .desktop_nav_q2l8m {
        display: none;
    }
    
    .mobile_menu_btn_w7j3x {
        display: block;
    }
    
    .mobile_nav_d8s2k.active {
        display: block;
    }
    
    .hero_content_n2q8v {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero_title_c4x7m {
        font-size: 24px;
    }
    
    .section_title_e9r2m {
        font-size: 28px;
    }
    
    .features_grid_k4m7p {
        grid-template-columns: 1fr;
    }
    
    .screenshots_grid_j6m9r {
        grid-template-columns: 1fr;
    }
    
    .footer_content_w8k5m {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download_features_r6k9m {
        grid-template-columns: 1fr;
    }
    
    .container_x8k5n {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero_title_c4x7m {
        font-size: 20px;
    }
    
    .section_title_e9r2m {
        font-size: 24px;
    }
    
    .download_btn_primary_n5j8r {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .feature_card_w6q3r {
        padding: 20px;
    }
    
    .game_info_box_m7k4p {
        padding: 20px;
    }
}

html {
    scroll-behavior: smooth;
}

.nav_link_f5h9p:hover::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 1px;
}

.feature_card_w6q3r::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(45deg, #3498db, #2980b9);
    border-radius: 15px 15px 0 0;
}

.feature_card_w6q3r {
    position: relative;
    overflow: hidden;
}

@keyframes snowfall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
    }
    100% {
        transform: translateY(100vh) rotate(360deg);
    }
}

.hero_section_j7m4p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.7), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: snowfall 10s linear infinite;
    pointer-events: none;
    z-index: 1;
}

.hero_section_j7m4p {
    position: relative;
    overflow: hidden;
}

.hero_content_n2q8v {
    position: relative;
    z-index: 2;
}
