@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .game-container iframe {
        height: 600px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }
    
    :root {
        --space-desktop: var(--space-tablet);
    }

    .header-inner {
        position: relative;
    }

    .menu-toggle {
        display: block;
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--bg-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.8);
        border-left: 1px solid var(--accent-red);
        z-index: 1000;
    }

    .main-nav.active {
        right: 0;
    }

    .header-inner .btn {
        display: none;
    }
    
    .hero {
        padding: var(--space-tablet) 0;
        min-height: 60vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .responsible-gaming-badges {
        justify-content: center;
    }
    
    .game-container {
        width: 95%;
        padding: 8px;
    }
    
    .game-container iframe {
        height: 500px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    :root {
        --space-desktop: var(--space-mobile);
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .game-container {
        width: 100%;
        border-radius: 12px;
        padding: 4px;
    }
    
    .game-container iframe {
        height: 400px;
        border-radius: 8px;
    }
    
    .content-box {
        padding: 24px;
    }
}