/* Tablet & Medium Screens */
@media (max-width: 1024px) {
    :root {
        --max-width: 960px;
    }
    
    h1 { font-size: 3.2rem; }
    h2 { font-size: 2.2rem; }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Screens */
@media (max-width: 768px) {
    .header {
        padding: 1rem 0;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--base-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 99;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 100;
        position: relative;
    }
    
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 4rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-visual {
        transform: none;
    }
    
    .hero-visual:hover {
        transform: none;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .game-wrapper {
        padding: 0.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .rg-badges {
        justify-content: center;
    }
    
    .page-header {
        padding: 8rem 0 3rem;
    }
}