:root {
    --primary: #c8782f;
    --primary-light: #d79b65;
    --dark: #2D2D2D;
    --light: #f8f9fa;
    --white: #ffffff;
    --bg-dark: #1a1a1a;
    --text-light: #e0e0e0;
}

/* Production optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: var(--bg-dark);
}

/* Navbar Styles */
.navbar {
    background: var(--dark);
    padding: 10px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 15px rgba(0,0,0,0.3);
}

.navbar-brand img {
    height: 90px;
    transition: all 0.3s ease;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    color: var(--text-light);
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler .fas {
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 10px 20px !important;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
}

/* Hero Section */
.hero {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--dark) 100%);
    min-height: 100vh;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-light);
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--dark) 100%);
}

.about .section-title {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.about-image-container {
    text-align: center;
    padding: 2rem;
}

.about-image {
    max-width: 70%;
    height: auto;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.about-image:hover {
    transform: scale(1.05);
}

/* Section Title - Global */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: var(--text-light);
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

/* Language Dropdown */
.dropdown-menu {
    background: var(--dark);
    border: 1px solid rgba(255,255,255,0.1);
    margin-top: 10px;
}

.dropdown-item {
    color: var(--text-light);
    padding: 8px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--primary);
    color: var(--white);
}

.dropdown-item.active {
    background: var(--primary);
    color: var(--white);
}

.nav-link.dropdown-toggle::after {
    margin-left: 5px;
}

.nav-item.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    font-size: 1.1rem;
}

.nav-item.dropdown .fa-globe {
    font-size: 1.1rem;
}

/* ================================
   GAMES SECTION - DARK MODE DESIGN
   ================================ */

/* Games Section - Main */
.games {
    padding: 80px 0 110px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    position: relative;
    overflow: visible;
}

.games::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"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.games .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #ffffff 0%, #007bff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

/* Games Navigation Container */
.games-navigation-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Games Container System - Optimized */
.games-wrapper {
    display: flex;
    gap: 24px;
    padding: 0 24px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding: 24px;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
    min-height: 400px;
    flex: 1;
    will-change: scroll-position;
    transform: translateZ(0);
}

.games-wrapper::-webkit-scrollbar {
    display: none;
}

.games-wrapper .game-card-container {
    flex: 0 0 auto;
    width: 320px;
    scroll-snap-align: start;
}

/* Perfect Game Card Design */
.game-card {
    background: linear-gradient(145deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 20px;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 520px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: none;
    margin: 0;
    box-shadow: none;
    will-change: transform;
    transform: translateZ(0);
}

.game-card:hover {
    transform: translateY(-3px);
    box-shadow: none;
    border: 1px solid rgba(0, 123, 255, 0.4);
}

/* Game Image Section */
.game-image-section {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    border-radius: 20px 20px 0 0;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.game-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 123, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-image-section::before {
    opacity: 1;
}

.games .game-image {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: 12px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 2;
}

.game-card:hover .games .game-image,
.game-card:hover .game-image {
    transform: scale(1.08);
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.4));
}

/* Game Content Section */
.game-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.game-description {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 24px 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Perfect Play Button */
.btn-play-game {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.btn-play-game::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-play-game:hover::before {
    left: 100%;
}

.btn-play-game:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #0056b3 0%, #0041a3 100%);
    box-shadow: none;
    color: white;
    text-decoration: none;
}

.btn-play-game i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.btn-play-game:hover i {
    transform: translateX(2px);
}

/* Scroll Arrows - New Clean Design */
.scroll-arrow {
    position: static;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    font-size: 1.1rem;
}

.scroll-arrow:hover {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    transform: scale(1.1);
    box-shadow: 
        0 15px 40px rgba(0, 123, 255, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

.scroll-arrow:active {
    transform: scale(0.95);
}

.scroll-left, .scroll-right {
    position: static;
}

.scroll-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}

.scroll-arrow:disabled:hover {
    transform: none;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Swipe Hint - Enhanced Mobile Design */
.swipe-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: 10px 18px;
    border-radius: 25px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    animation: fadeInOut 3s ease-in-out;
    pointer-events: none;
    z-index: 100;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.3);
}

.swipe-hint i {
    font-size: 0.75rem;
    opacity: 0.8;
    animation: swipeFloat 2s ease-in-out infinite;
}

.swipe-hint i:first-child {
    animation-delay: 0s;
}

.swipe-hint i:last-child {
    animation-delay: 1s;
}

@keyframes swipeFloat {
    0%, 100% { 
        transform: translateX(0); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateX(3px); 
        opacity: 1; 
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    20%, 80% { opacity: 1; }
}

/* Loading Spinner - Enhanced */
.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
    color: #ffffff;
    padding: 40px;
}

.loading-spinner .spinner-border {
    width: 3.5rem;
    height: 3.5rem;
    border-width: 0.25em;
    border-color: #007bff;
    border-right-color: transparent;
    animation: spin 1s linear infinite;
    filter: drop-shadow(0 4px 8px rgba(0, 123, 255, 0.3));
}

.loading-spinner p {
    margin-top: 20px;
    font-size: 1rem;
    font-weight: 500;
    color: #b0b0b0;
    text-align: center;
    letter-spacing: 0.5px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 767px) {
    .loading-spinner {
        min-height: 300px;
        padding: 30px;
    }
    
    .loading-spinner .spinner-border {
        width: 3rem;
        height: 3rem;
    }
    
    .loading-spinner p {
        font-size: 0.9rem;
        margin-top: 16px;
    }
}

/* Scroll Indicator - Enhanced Design */
.scroll-indicator {
    display: none; /* Hidden by default */
    width: 100%;
    justify-content: center;
    margin-top: 35px;
    padding: 0 20px;
}

.scroll-dots {
    display: flex;
    gap: 14px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.scroll-dot.active {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    transform: scale(1.4);
    box-shadow: 
        0 0 0 4px rgba(0, 123, 255, 0.2),
        0 4px 12px rgba(0, 123, 255, 0.4);
}

.scroll-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
}

/* Mobile/Tablet Specific Scroll Dots */
@media (max-width: 991px) {
    .scroll-indicator {
        margin-top: 25px;
    }
    
    .scroll-dots {
        gap: 12px;
        padding: 10px 16px;
        background: rgba(0, 0, 0, 0.5);
        border-radius: 20px;
    }
    
    .scroll-dot {
        width: 8px;
        height: 8px;
    }
    
    .scroll-dot.active {
        transform: scale(1.5);
        box-shadow: 
            0 0 0 3px rgba(0, 123, 255, 0.25),
            0 3px 10px rgba(0, 123, 255, 0.4);
    }
}

@media (max-width: 575px) {
    .scroll-indicator {
        margin-top: 20px;
        padding: 0 16px;
    }
    
    .scroll-dots {
        gap: 10px;
        padding: 8px 14px;
        border-radius: 18px;
    }
    
    .scroll-dot {
        width: 7px;
        height: 7px;
    }
    
    .scroll-dot.active {
        transform: scale(1.6);
        box-shadow: 
            0 0 0 2px rgba(0, 123, 255, 0.3),
            0 2px 8px rgba(0, 123, 255, 0.5);
    }
}

/* Empty State - Dark Mode */
.empty-state {
    text-align: center;
    padding: 80px 40px;
    color: #c4c4c4;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    opacity: 0.6;
    color: #666;
}

.empty-state h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.empty-state p {
    font-size: 1.1rem;
    max-width: 400px;
    margin: 0 auto;
    line-height: 1.6;
    color: #999;
}

/* ================================================
   UNIFIED RESPONSIVE DESIGN - ALL SECTIONS
   ================================================ */

/* Tablet and Mobile */
@media (max-width: 991px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar {
        width: 100vw;
        left: 0;
        right: 0;
    }

    .navbar-collapse {
        background: var(--dark);
        padding: 1rem;
        border-radius: 0.5rem;
        margin-top: 0.5rem;
        position: absolute;
        width: calc(100% - 30px);
        left: 15px;
        top: 100%;
        z-index: 1000;
    }

    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .navbar-brand img {
        height: 70px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Games Section - Tablet */
    .games {
        padding: 70px 0 100px 0;
    }

    .games .section-title {
        font-size: 2.3rem;
        margin-bottom: 2.5rem;
    }

    .games-navigation-container {
        display: block; /* Show on mobile, but arrows will be hidden */
    }

    .scroll-arrow {
        display: none; /* Hide arrows on tablet/mobile */
    }

    .games-wrapper {
        padding: 0 20px;
        gap: 20px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        justify-content: flex-start;
        scroll-padding: 20px;
        -webkit-overflow-scrolling: touch;
        will-change: scroll-position;
    }

    .games-wrapper .game-card-container {
        width: calc(100vw - 60px);
        max-width: 400px;
        min-width: 300px;
        scroll-snap-align: center;
        flex-shrink: 0;
        scroll-snap-stop: always;
    }

    .game-card {
        height: auto;
        min-height: 500px; /* Flexible height */
    }

    .scroll-indicator {
        display: none; /* Hide scroll indicator */
    }
}

/* Mobile Large */
@media (max-width: 767px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    /* Games Section - Mobile Large */
    .games {
        padding: 60px 0 90px 0;
        background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 50%, #1a1a1a 100%);
    }

    .games .section-title {
        font-size: 2.1rem;
    }

    .games-wrapper {
        padding: 0 16px;
        gap: 16px;
        scroll-padding: 16px;
    }

    .games-wrapper .game-card-container {
        width: calc(100vw - 48px);
        max-width: 340px;
        min-width: 260px;
    }

    .game-card {
        height: 480px; /* Fixed height */
    }

    .game-description {
        height: 4.5em; /* 3 lines */
    }
}

/* Mobile Small */
@media (max-width: 575px) {
    .hero h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer {
        text-align: center;
    }

    .social-links {
        justify-content: center;
        margin-top: 1rem;
    }

    /* Games Section - Mobile Small */
    .games {
        padding: 50px 0 80px 0;
    }

    .games .section-title {
        font-size: 1.9rem;
    }

    .games-wrapper {
        padding: 0 12px;
        gap: 12px;
        scroll-padding: 12px;
    }

    .games-wrapper .game-card-container {
        width: calc(100vw - 36px);
        max-width: 320px;
        min-width: 240px;
    }

    .game-card {
        height: 450px; /* Fixed height */
    }

    .game-description {
        height: 4.2em; /* 3 lines */
    }
}

/* ================================================
   COMING SOON PAGE STYLES
   ================================================ */

.coming-soon-container {
    background: linear-gradient(145deg, var(--dark) 0%, var(--bg-dark) 100%);
    border-radius: 32px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    max-width: 600px;
    width: 90%;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(20px);
    text-align: center;
    padding: 40px;
    margin: 20px;
}

.coming-soon-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(200, 120, 47, 0.05) 0%, 
        rgba(215, 155, 101, 0.05) 50%, 
        rgba(200, 120, 47, 0.05) 100%
    );
    border-radius: 32px;
    z-index: -1;
}

.coming-soon-page-body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f0f0f 0%, var(--bg-dark) 50%, #1f1f1f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--text-light);
    overflow-x: hidden;
}

.coming-soon-page-body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(200, 120, 47, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(215, 155, 101, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(200, 120, 47, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.coming-soon-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 
        0 15px 40px rgba(200, 120, 47, 0.3),
        0 0 0 3px rgba(200, 120, 47, 0.2);
    animation: cs-float 3s ease-in-out infinite;
}

@keyframes cs-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.coming-soon-icon i {
    font-size: 3rem;
    color: var(--white);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 50%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.coming-soon-description {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.game-info-section {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.game-info-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.game-logo {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.game-name {
    color: var(--white);
    font-weight: 700;
    font-size: 1.7rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.status-info {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 25px;
    margin: 25px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.status-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.status-label {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
}

.status-value {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.status-progress {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(200, 120, 47, 0.3);
}

.coming-soon-container .action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 25px 0;
}

.coming-soon-container .btn {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
}

.coming-soon-container .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.coming-soon-container .btn:hover::before {
    left: 100%;
}

.coming-soon-container .btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(200, 120, 47, 0.4);
}

.coming-soon-container .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(200, 120, 47, 0.5);
    color: var(--white);
}

.coming-soon-container .btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 0 0 0 rgba(200, 120, 47, 0.3);
}

.coming-soon-container .btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(200, 120, 47, 0.4);
}

.social-section {
    margin-top: 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-section h5 {
    color: var(--white);
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 1.3rem;
}

.coming-soon-container .social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--bg-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.3rem;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.social-link:hover::before {
    opacity: 1;
}

.social-link i {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.social-link:hover {
    color: var(--white);
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(200, 120, 47, 0.4);
}

.social-link:hover i {
    transform: scale(1.1);
}

.cs-language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.cs-language-switcher a {
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-language-switcher a.active,
.cs-language-switcher a:hover {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(200, 120, 47, 0.3);
}

/* Coming Soon Page - Responsive */
@media (max-width: 1200px) {
    .coming-soon-container {
        max-width: 520px;
        padding: 35px;
    }
    .coming-soon-title {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .coming-soon-container {
        max-width: 480px;
        padding: 35px 30px;
    }
    .coming-soon-title {
        font-size: 2.5rem;
    }
    .coming-soon-description {
        font-size: 1.2rem;
    }
    .coming-soon-icon {
        width: 100px;
        height: 100px;
    }
    .coming-soon-icon i {
        font-size: 2.5rem;
    }
    .game-info-header {
        flex-direction: column;
        gap: 10px;
    }
    .game-name {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .coming-soon-page-body {
        padding: 10px;
    }
    .coming-soon-container {
        padding: 30px 25px;
        margin: 10px;
        border-radius: 24px;
    }
    .coming-soon-title {
        font-size: 2.2rem;
    }
    .coming-soon-description {
        font-size: 1.1rem;
    }
    .coming-soon-container .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .coming-soon-container .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 25px;
        font-size: 1rem;
    }
    .status-info,
    .game-info-section {
        padding: 20px;
    }
    .status-row {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 12px 0;
    }
    .coming-soon-container .social-links {
        gap: 15px;
    }
    .social-link {
        width: 55px;
        height: 55px;
        font-size: 1.2rem;
    }
    .cs-language-switcher {
        top: 15px;
        right: 15px;
    }
    .cs-language-switcher a {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
    .game-logo {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 576px) {
    .coming-soon-container {
        padding: 25px 20px;
        border-radius: 20px;
    }
    .coming-soon-title {
        font-size: 1.8rem;
    }
    .coming-soon-description {
        font-size: 1rem;
    }
    .coming-soon-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 25px;
    }
    .coming-soon-icon i {
        font-size: 2rem;
    }
    .status-info,
    .social-section,
    .game-info-section {
        padding: 15px;
        margin: 20px 0;
    }
    .status-label,
    .status-value {
        font-size: 1rem;
    }
    .social-section h5 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    .coming-soon-container .social-links {
        gap: 12px;
    }
    .social-link {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }
    .game-logo {
        width: 60px;
        height: 60px;
    }
    .game-name {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-title {
        font-size: 1.6rem;
    }
    .coming-soon-description {
        font-size: 0.95rem;
    }
    .coming-soon-container .btn {
        font-size: 0.95rem;
        padding: 10px 20px;
    }
}

/* ================================================
   INSTALL / DOWNLOAD PAGE STYLES
   ================================================ */

.install-page-body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--dark) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.install-page-body::before {
    content: '';
    position: fixed;
    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"><defs><pattern id="grain" patternUnits="userSpaceOnUse" width="100" height="100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.download-card {
    background: linear-gradient(145deg, var(--dark) 0%, var(--bg-dark) 100%);
    border-radius: 24px;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
    max-width: 520px;
    width: 90%;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.download-card .game-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 40px 30px;
    text-align: center;
    position: relative;
}

.download-card .game-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0.7;
}

.download-card .game-icon {
    width: 90px;
    height: 90px;
    border-radius: 20px;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.download-card .game-header h2 {
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.download-card .game-header p {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.download-section {
    padding: 40px 30px;
}

.download-section .section-title {
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Platform-Specific Download Buttons */
.download-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    margin-bottom: 16px;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s;
}

.download-btn:hover::before {
    left: 100%;
}

.btn-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.btn-icon {
    font-size: 1.8rem;
    margin-right: 16px;
    width: 32px;
    text-align: center;
}

.btn-text {
    flex: 1;
}

.btn-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
    display: block;
}

.btn-subtitle {
    font-size: 0.85rem;
    opacity: 0.8;
    display: block;
}

.btn-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

/* iOS App Store Button */
.btn-ios {
    background: linear-gradient(135deg, #000000 0%, #1c1c1e 100%);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-ios:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1c1c1e 0%, #000000 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
}

.btn-ios .btn-arrow {
    color: var(--primary);
}

.btn-ios:hover .btn-arrow {
    transform: translateX(4px);
    color: var(--primary-light);
}

/* Google Play Button */
.btn-android {
    background: linear-gradient(135deg, #01875f 0%, #137333 100%);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 25px rgba(1, 135, 95, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-android:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #137333 0%, #0f5132 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 35px rgba(1, 135, 95, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
}

.btn-android .btn-icon {
    background: linear-gradient(45deg, #FF6B35, #F7931E, #FFD23F, #34A853);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-android .btn-arrow {
    color: #34A853;
}

.btn-android:hover .btn-arrow {
    transform: translateX(4px);
    color: #2d8f47;
}

/* Web Button */
.btn-web {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 8px 25px rgba(200, 120, 47, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.btn-web:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 35px rgba(200, 120, 47, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
    color: white;
    text-decoration: none;
}

.btn-web .btn-arrow {
    color: #ffffff;
}

.btn-web:hover .btn-arrow {
    transform: translateX(4px);
}

/* Device Detection Info */
.device-info {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
    margin-top: 24px;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    backdrop-filter: blur(10px);
}

.device-info i {
    color: var(--primary);
    margin-right: 8px;
}

/* Back Button */
.install-back-btn {
    position: absolute;
    top: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.install-back-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Install Page - Responsive */
@media (max-width: 576px) {
    .download-card {
        width: 95%;
        margin: 0 20px;
    }
    .download-card .game-header {
        padding: 30px 20px;
    }
    .download-section {
        padding: 30px 20px;
    }
    .install-back-btn {
        top: 16px;
        left: 16px;
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    .download-btn {
        padding: 18px 20px;
    }
    .btn-title {
        font-size: 1rem;
    }
    .btn-subtitle {
        font-size: 0.8rem;
    }
}

/* Loading Animation */
@keyframes install-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.download-btn.loading {
    animation: install-pulse 2s infinite;
    pointer-events: none;
}