@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .game-wrapper {
        margin-top: -50px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
    
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 100px 30px;
        transition: var(--transition-smooth);
        border-left: 1px solid rgba(245, 197, 66, 0.1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.8);
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .hero {
        padding-top: 120px;
        min-height: auto;
        padding-bottom: 100px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .game-wrapper {
        margin-top: 0;
        border-radius: var(--radius-md);
        padding: 10px;
    }
    
    .iframe-container {
        height: 400px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .content-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .iframe-container {
        height: 350px;
    }
}