/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* Hero */
    .hero-main {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Event Card */
    .event-card {
        flex-direction: column;
        text-align: center;
    }
    
    .countdown-timer {
        justify-content: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 4px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero-main {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .driver-standing {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .driver-info {
        margin-left: 0;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}