@keyframes fade-out {
    from {
        opacity: 1;
        visibility: visible;
    }

    to {
        opacity: 0;
        visibility: hidden; /* Hide it after fade-out */
    }
}

#playlist-video {
    filter: grayscale(1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}

#intro-video {
    filter: grayscale(1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    animation: fade-out 1s ease forwards; /* Added forwards to maintain end state */
    animation-delay: 4s; /* Delay before fade-out */
}
