/* Video Preloader Styles */
#video-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f0ece1;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#preloader-video {
    /* Changed from cover to contain to "zoom out" / show full video */
    width: 100%;
    height: 100%;
    max-width: 600px;
    /* Limit size so it's not too huge on desktop */
    max-height: 80vh;
    object-fit: contain;
}

/* Hide scrollbar when preloader is active */
body.preloader-active {
    overflow: hidden;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    #preloader-video {
        max-width: 80%;
        /* Even smaller on mobile if needed */
        max-height: 60vh;
    }
}