/* RESPONSIVE DESIGN - Valhalla Slot Lux */

/* Desktop / Laptop */
@media (max-width: 1200px) {
    .slot-screen {
        height: 500px;
    }
}

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

    .slot-screen {
        height: 400px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--bg-secondary);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-light);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    h1 { font-size: 2.2rem; }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand p {
        margin: 16px auto;
    }
    
    .slot-screen {
        height: 300px;
    }
    
    .slot-machine-wrapper {
        padding: 12px;
    }
    
    .text-content {
        padding: 24px 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}