/* ==========================================================================
   RESPONSIVE DESIGN SYSTEM
   ========================================================================== */

/* Tablet (Max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --pad-x: 24px;
        --section-space: 70px;
    }

    .hero-grid {
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .game-wrapper {
        width: 95%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

/* Mobile (Max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --pad-x: 16px;
        --section-space: 50px;
    }

    .site-header {
        background: rgba(20, 13, 10, 0.95);
        backdrop-filter: blur(10px);
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 99;
    }

    .nav-links.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links .btn {
        margin-top: 1rem;
    }

    .hero {
        padding-top: 120px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-content .subtitle {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .game-wrapper {
        width: 100%;
        border-radius: var(--radius-md);
    }

    .game-header h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }

    .inner-hero {
        padding: 120px 0 60px;
    }

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

    .content-box {
        padding: 1.5rem;
    }
}

/* Small Mobile (Max-width: 480px) */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .cta-box {
        padding: 3rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }
}