@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

.category-card {
    @apply py-3 px-4 rounded-lg text-center font-medium transition-all duration-200 shadow-md;
}

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

::-webkit-scrollbar-track {
    @apply bg-gray-200 dark:bg-gray-800;
}

::-webkit-scrollbar-thumb {
    @apply bg-primary rounded-full;
}

::-webkit-scrollbar-thumb:hover {
    @apply bg-primary-dark;
}

/* Animation for movie cards */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

movie-card {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

movie-card:nth-child(1) { animation-delay: 0.1s; }
movie-card:nth-child(2) { animation-delay: 0.2s; }
movie-card:nth-child(3) { animation-delay: 0.3s; }
movie-card:nth-child(4) { animation-delay: 0.4s; }

/* Responsive video player */
.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute