@media (max-width: 768px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }

    .category-header #categoryTitle {
        font-size: 2rem;
    }

    /* Layout */
    .media-container {
        padding: 0px;
    }

    /* Events */
    .featured-events-gallery {
        padding: 0px;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .event-card {
        width: 100%;
        max-width: 280px;
    }

    .event-image {
        height: 200px;
    }

    /* Icons */
    .like-btn {
        width: 32px;
        height: 32px;
        padding: 6px;
    }

    .icon {
        width: 20px;
        height: 20px;
    }
    
    /* Profile */
    .profile-actions {
        flex-direction: column;
    }
    
    .auth-tabs {
        flex-direction: column;
    }

    /* Filters */
    .filter-content {
        padding: 10px;
    }

    /* Navigation */
    #backBtn {
        top: 10px;
        left: 10px;
        padding: 8px 12px;
        font-size: 0.9rem;
    }

    /* Modal */
    .modal {
        width: 95%;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .event-image {
        height: 180px;
    }

    .event-details {
        padding: 10px;
    }

    .event-details h3 {
        font-size: 1.1rem;
    }

    .event-details p {
        font-size: 0.85rem;
    }
}
