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

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
    :root {
        --spacing-desktop: var(--spacing-tablet);
    }

    .container {
        padding: 0 24px;
    }

    .hero-container {
        gap: 40px;
    }

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

    .iframe-container iframe {
        height: 600px;
    }

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
    :root {
        --spacing-tablet: var(--spacing-mobile);
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(7, 20, 28, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        gap: 30px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 40px;
    }

    .hero-description {
        margin: 0 auto 30px;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }

    .hero-visual {
        margin-top: 40px;
    }

    .section-heading h2 {
        font-size: 2.2rem;
    }

    .iframe-container iframe {
        height: 500px;
    }

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

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .footer-disclaimer {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .game-wrapper {
        padding: 16px;
    }

    .game-header {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .iframe-container iframe {
        height: 400px;
    }

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

    .wood-panel, .glass-panel {
        padding: 24px;
    }
}