@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 0.5rem 0;
    }
    
    .auth-buttons {
        margin-top: 1rem;
    }
    
    .mobile-menu-btn {
        display: block;
        position: absolute;
        top: 1rem;
        left: 1rem;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: center;
        position: relative;
    }
    
    nav {
        display: none;
    }
    
    nav.active {
        display: block;
        width: 100%;
    }
    
    .teams {
        flex-direction: column;
    }
    
    .team {
        margin: 1rem 0;
    }
    
    .ticket-filters {
        flex-direction: column;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .features, .matches, .tickets, .page-content {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .search-box input {
        width: 150px;
    }
}