/* General Page Styles */

*{
    color:white;
}

/* Header styles */
header {
    transition: background-color 0.3s ease;
}

header.scrolled {
    background-color: rgba(17, 24, 39, 0.95); /* bg-gray-900 with opacity */
    backdrop-filter: blur(8px);
}

/* Custom scrollbar */
.video-carousel {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.video-carousel::-webkit-scrollbar {
    display: none;
}

/* Video card hover effects */
.video-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.video-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

/* Video carousel navigation */
.carousel-nav {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.carousel-container:hover .carousel-nav {
    opacity: 1;
}

/* Video thumbnail gradient overlay */
.thumbnail-overlay {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

/* Modal transitions */
.modal-enter {
    animation: modalFadeIn 0.3s ease-out;
}

.modal-exit {
    animation: modalFadeOut 0.3s ease-in;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes modalFadeOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.95);
    }
}

/* Loading animations */
.loading-skeleton {
    animation: skeletonPulse 1.5s ease-in-out infinite;
}

@keyframes skeletonPulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        opacity: 0.6;
    }
} 