/* Custom animations */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dark ::-webkit-scrollbar-track {
    background: #374151;
}

::-webkit-scrollbar-thumb {
    background: #ec4899;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #db2777;
}

/* Video thumbnail placeholder */
#video-thumbnail {
    background: linear-gradient(135deg, #f9a8d4 0%, #f472b6 100%);
    position: relative;
    background-size: cover;
    background-position: center;
}

#video-thumbnail::after {
    content: "Preview";
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
}

/* Theme Variables */
:root {
    --navbar-bg: #ffffff;
    --navbar-text: #111827;
    --navbar-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dark {
    --navbar-bg: #1f2937;
    --navbar-text: #f3f4f6;
    --navbar-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}