/* Desktop Adjustments */
@media (max-width: 1200px) {
    :root {
        --space-desk: 80px;
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }
    .game-container {
        width: 95%;
    }
}

/* Tablet Layouts */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content p {
        margin: 0 auto 32px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Mobile Menus & Layouts */
@media (max-width: 768px) {
    :root {
        --space-desk: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(8, 28, 21, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255,255,255,0.05);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.25rem;
        padding: 16px;
    }
    
    .nav-actions .btn {
        display: none; /* Hide top right play button on small mobile if desired, or keep it */
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .game-container {
        width: 100%;
        aspect-ratio: 4/3;
        border-radius: var(--radius-md);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 16px auto 0;
    }
    
    .content-section {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .game-section-header h2 {
        font-size: 2rem;
    }
}