.hj-cinema-layout {
    min-height: 100vh;
}

.hj-cinema-hero {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(249, 115, 22, 0.1));
}

.hj-cinema-filters {
    transition: all 0.3s ease;
}

.hj-filter-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hj-filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hj-filter-btn:hover::before,
.hj-filter-btn.active::before {
    left: 100%;
}

.hj-cinema-card {
    transition: all 0.3s ease;
    position: relative;
}

.hj-cinema-card:hover {
    transform: translateY(-10px);
}

.hj-cinema-cover {
    position: relative;
    overflow: hidden;
}

.hj-cinema-overlay {
    transition: all 0.3s ease;
}

.hj-cinema-badge {
    animation: hjCinemaBadge 2s ease-in-out infinite;
}

@keyframes hjCinemaBadge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hj-cinema-rating {
    transition: all 0.3s ease;
}

.hj-cinema-card:hover .hj-cinema-rating {
    transform: scale(1.1);
}

.hj-cinema-duration {
    transition: all 0.3s ease;
}

.hj-cinema-card:hover .hj-cinema-duration {
    transform: scale(1.05);
}

.hj-cinema-tags span {
    transition: all 0.3s ease;
}

.hj-cinema-tags span:hover {
    transform: scale(1.1);
}

.hj-cinema-card button {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hj-cinema-card button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hj-cinema-card button:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .hj-cinema-filters {
        padding: 1rem;
    }
    
    .hj-cinema-filters .flex {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .hj-filter-btn {
        flex: 1;
        min-width: calc(50% - 0.25rem);
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .hj-cinema-list {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hj-cinema-cover {
        height: 250px;
    }
    
    .hj-cinema-card {
        padding: 1rem;
    }
}