* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e63946;
    --secondary-color: #f77f00;
    --dark-bg: #1a1a2e;
    --light-bg: #16213e;
    --text-light: #ffffff;
    --text-gray: #cbd5e1;
    --accent-color: #06ffa5;
    --card-bg: #0f3460;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    min-height: 100vh;
}

.container-9x2d {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper-8k3p {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.nav-wrapper-8k3p .container-9x2d {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-section-4h7m {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img-2n5k {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    object-fit: cover;
}

.logo-text-6r9w {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu-1p4z {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link-7s8x {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    padding: 8px 12px;
    border-radius: 5px;
}

.nav-link-7s8x:hover {
    color: var(--primary-color);
    background: rgba(230, 57, 70, 0.1);
}

.nav-download-btn-4m2k {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
}

.nav-download-btn-4m2k:hover {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color)) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(230, 57, 70, 0.5);
}

.nav-download-btn-4m2k i {
    margin-right: 6px;
}

.hamburger-5t3j {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger-5t3j span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

.carousel-banner-3k9d {
    width: 100%;
    margin-top: 0;
    background: var(--dark-bg);
}

.carousel-container-2m7p {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    height: 500px;
}

.carousel-track-8n4x {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.carousel-slide-5j2w {
    min-width: 100%;
    height: 100%;
    display: none;
}

.carousel-slide-5j2w.active {
    display: block;
}

.carousel-slide-5j2w img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-btn-7h5p {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(230, 57, 70, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn-7h5p:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev-2s9k {
    left: 20px;
}

.carousel-next-4t6m {
    right: 20px;
}

.carousel-dots-3w8r {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot-item.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.main-content-6z4v {
    padding-top: 0;
}

.hero-section-9p2x {
    padding: 30px 0;
}

.game-header-4m8n {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: rgba(15, 52, 96, 0.6);
    padding: 25px 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.game-icon-wrapper-7k3p {
    flex-shrink: 0;
}

.game-icon-large-2x9m {
    width: 130px;
    height: 130px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.game-info-block-5n7w {
    flex: 1;
}

.game-title-3h9k {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.game-title-3h9k i {
    margin-right: 10px;
}

.game-tags-8t4p {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.tag-item-2w6x {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.tag-item-2w6x i {
    margin-right: 6px;
}

.game-brief-7m5k {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.download-section-4p8x {
    margin-top: 15px;
}

.download-btn-main-9k2v {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 14px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
    margin-bottom: 15px;
}

.download-btn-main-9k2v:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
}

.download-btn-main-9k2v i {
    margin-right: 10px;
}

.version-info-3n7t {
    display: flex;
    gap: 20px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.version-info-3n7t i {
    margin-right: 6px;
    color: var(--accent-color);
}

.content-section-8w4p {
    padding: 80px 0;
}

.bg-alt-9n5x {
    background: rgba(22, 33, 62, 0.5);
}

.section-title-5x7n {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.section-title-5x7n i {
    margin-right: 12px;
}

.content-rich-text-2m9k {
    max-width: 900px;
    margin: 0 auto;
}

.content-rich-text-2m9k p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-gray);
    text-align: justify;
}

.two-column-layout-5m9x {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.column-left-3k7p,
.column-right-8w2n {
    width: 100%;
}

.column-left-3k7p p,
.column-right-8w2n p {
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--text-gray);
    text-align: justify;
}

.img-wrapper-6k3m {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.content-img-7p2w {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.highlight-box-4t8n {
    background: rgba(230, 57, 70, 0.1);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 8px;
}

.highlight-box-4t8n h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.highlight-box-4t8n h3 i {
    margin-right: 10px;
}

.highlight-box-4t8n ul {
    list-style: none;
    padding-left: 0;
}

.highlight-box-4t8n ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-gray);
}

.highlight-box-4t8n ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.features-grid-3k7m {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.feature-card-8p4w {
    background: rgba(15, 52, 96, 0.6);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.feature-card-8p4w:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.feature-icon-2m9x {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.feature-card-8p4w h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature-card-8p4w p {
    color: var(--text-gray);
    line-height: 1.8;
}

.screenshots-grid-7w3k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.screenshot-item-4m9p {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
}

.screenshot-item-4m9p:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.screenshot-img-2n8k {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.articles-grid-5k8w {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.article-card-7m3p {
    background: rgba(15, 52, 96, 0.6);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.article-card-7m3p:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.3);
}

.article-meta-4n7x {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.article-tag-9w2k {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-tag-4x8p {
    background: linear-gradient(135deg, #06ffa5, #00d4ff);
}

.article-date-6p5m {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.article-date-6p5m i {
    margin-right: 5px;
}

.article-title-8k4n {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.article-title-8k4n a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.article-title-8k4n a:hover {
    color: var(--primary-color);
}

.article-excerpt-2w9x {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.article-link-5t3m {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.article-link-5t3m:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.article-link-5t3m i {
    margin-left: 5px;
}

.download-cta-section-7k9p {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2), rgba(247, 127, 0, 0.2));
}

.cta-box-3m8w {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box-3m8w h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.cta-box-3m8w h2 i {
    margin-right: 15px;
}

.cta-box-3m8w p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 35px;
}

.download-btn-cta-5w7k {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(230, 57, 70, 0.4);
}

.download-btn-cta-5w7k:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 57, 70, 0.6);
}

.download-btn-cta-5w7k i {
    margin-right: 10px;
}

.footer-section-9x4m {
    background: rgba(26, 26, 46, 0.95);
    padding: 50px 0 20px;
    border-top: 2px solid var(--primary-color);
}

.footer-content-7k3p {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about-2w8n h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-about-2w8n h3 i {
    margin-right: 10px;
}

.footer-about-2w8n p {
    color: var(--text-gray);
    line-height: 1.8;
}

.footer-download-4x9w {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-download-4x9w h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.footer-download-btn-3k7m {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.footer-download-btn-3k7m:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.5);
}

.footer-download-btn-3k7m i {
    font-size: 1.1rem;
}

.footer-version-2m5p {
    color: var(--text-gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-version-2m5p i {
    color: var(--accent-color);
}

.footer-links-5m9x h4 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.friends-links-8p4w {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 15px;
}

.friends-links-8p4w li {
    margin-bottom: 0;
}

.friends-links-8p4w a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.friends-links-8p4w a:hover {
    color: var(--primary-color);
}

.footer-bottom-4n7x {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(230, 57, 70, 0.3);
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .hamburger-5t3j {
        display: flex;
    }

    .nav-menu-1p4z {
        position: fixed;
        top: 75px;
        left: -100%;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        width: 100%;
        padding: 30px 20px;
        gap: 15px;
        transition: left 0.3s;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu-1p4z.active {
        left: 0;
    }

    .nav-download-btn-4m2k {
        text-align: center;
        margin-top: 10px;
        display: block;
    }

    .friends-links-8p4w {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .carousel-container-2m7p {
        height: 300px;
    }

    .carousel-btn-7h5p {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-prev-2s9k {
        left: 10px;
    }

    .carousel-next-4t6m {
        right: 10px;
    }

    .game-header-4m8n {
        flex-direction: column;
        text-align: center;
        gap: 25px;
        padding: 30px 20px;
    }

    .game-icon-wrapper-7k3p {
        margin: 0 auto;
    }

    .game-icon-large-2x9m {
        width: 140px;
        height: 140px;
    }

    .game-title-3h9k {
        font-size: 1.8rem;
    }

    .game-tags-8t4p {
        justify-content: center;
    }

    .download-btn-main-9k2v {
        padding: 15px 30px;
        font-size: 1.1rem;
        width: 100%;
    }

    .version-info-3n7t {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .section-title-5x7n {
        font-size: 1.8rem;
    }

    .content-rich-text-2m9k p {
        font-size: 1rem;
    }

    .two-column-layout-5m9x {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid-3k7m,
    .screenshots-grid-7w3k,
    .articles-grid-5k8w {
        grid-template-columns: 1fr;
    }

    .cta-box-3m8w h2 {
        font-size: 1.8rem;
    }

    .download-btn-cta-5w7k {
        padding: 16px 35px;
        font-size: 1.1rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-text-6r9w {
        font-size: 1.1rem;
    }

    .logo-img-2n5k {
        width: 38px;
        height: 38px;
    }

    .carousel-container-2m7p {
        height: 220px;
    }

    .game-title-3h9k {
        font-size: 1.5rem;
    }

    .tag-item-2w6x {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .section-title-5x7n {
        font-size: 1.5rem;
    }

    .friends-links-8p4w {
        grid-template-columns: 1fr;
    }
}
