/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #E50914;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B20710;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-in-out;
}
/* Custom Netflix-like hover effects */
.movie-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.movie-card:hover {
    transform: scale(1.1);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Movie detail page styles */
.episode-card {
    transition: all 0.3s ease;
}

.episode-card:hover {
    transform: scale(1.02);
}

.episode-card img {
    transition: transform 0.3s ease;
}

.episode-card:hover img {
    transform: scale(1.05);
}
