/* Responsive Styles */

/* Large Desktop Screens */
@media (min-width: 1400px) {
    .logo-hero {
        font-size: 6rem;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
    }
    
    .container {
        max-width: 1320px;
    }
}

/* Regular Desktop Screens */
@media (max-width: 1399px) {
    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablets and Small Desktops */
@media (max-width: 1024px) {
    .logo-hero {
        font-size: 4rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefits-container {
        flex-direction: column;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .featured-game {
        flex-direction: column;
    }
    
    .featured-img, .featured-info {
        width: 100%;
    }
    
    .featured-img {
        height: 300px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: space-between;
        width: 100%;
    }
    
    .legal-content {
        padding: 2rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .main-nav {
        padding: 1rem 5%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: rgba(0, 20, 9, 0.95);
        padding: 1.5rem;
        gap: 1rem;
        transform: translateY(-200%);
        transition: transform 0.3s ease;
        z-index: 100;
        border-bottom: 1px solid var(--neon-green);
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .logo-hero {
        font-size: 3.5rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .featured-img {
        height: 250px;
    }
}

/* Mobile Devices */
@media (max-width: 480px) {
    .logo-container .logo {
        font-size: 1.5rem;
    }
    
    .logo-hero {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 5%;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit {
        padding: 1.5rem;
    }
    
    .featured-info h3 {
        font-size: 1.5rem;
    }
    
    .featured-img {
        height: 200px;
    }
    
    .footer-content {
        padding: 2rem 5% 1rem;
    }
    
    .game-header h1 {
        font-size: 2rem;
    }
    
    .legal-content {
        padding: 1.5rem;
    }
    
    .legal-content h1 {
        font-size: 1.8rem;
    }
    
    .legal-content h2 {
        font-size: 1.4rem;
    }
    
    .contact-form, .legal-container, .game-container {
        padding: 6rem 5% 3rem;
    }
}

/* Height-based Media Queries */
@media (max-height: 700px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 8rem 0 4rem;
    }
    
    .logo-hero {
        font-size: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        margin-bottom: 1.5rem;
    }
}

/* Print Media */
@media print {
    .main-nav, .cta-button, .games-grid, .benefits-container, .footer-content {
        display: none;
    }
    
    body {
        background-color: white;
        color: black;
    }
    
    .legal-content {
        border: none;
        padding: 0;
        max-width: 100%;
    }
    
    .legal-content h1, .legal-content h2 {
        color: black;
    }
}