/* Responsive Styles */

/* Tablets */
@media screen and (max-width: 1024px) {
    .hero h2 {
        font-size: 2.8rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .highlight-content {
        max-width: 80%;
    }
    
    .highlight-content h3 {
        font-size: 2rem;
    }
    
    .game-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-container {
        padding: 0 2rem;
    }
}

/* Small Tablets */
@media screen and (max-width: 768px) {
    header {
        padding: 1rem;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero {
        height: 70vh;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .game-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .highlight-content {
        max-width: 100%;
        padding: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    .footer-links a {
        margin: 0.5rem;
    }
    
    .smoke-container {
        display: none;
    }
}

/* Mobile Devices */
@media screen and (max-width: 480px) {
    .logo img {
        height: 40px;
    }
    
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero {
        height: 60vh;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .game-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-content h3 {
        font-size: 1.8rem;
    }
    
    .highlight-content p {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .help-button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
}

/* Special case for extremely small screens */
@media screen and (max-width: 320px) {
    .logo h1 {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
}