Not found: /tailwindcss@3.4.13/dist/tailwind.min.css
.video-card {
    transition: all 0.3s;
}
.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
