/* Gems Slot World Responsive Styles */

/* Tablets & Small Desktops */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .css-gem {
        width: 250px;
        height: 250px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 40px;
        transition: left 0.3s ease;
    }

    .nav-links.active {
        left: 0;
    }

    .header .btn-primary {
        display: none;
    }

    .nav-links .btn-primary {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .game-container {
        height: 500px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .content-box {
        padding: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 16px;
    }

    .game-container {
        height: 600px; /* Taller on very narrow screens for vertical layout */
    }
    
    .section-title {
        font-size: 2rem;
    }
}