/* Progressive Video Loading Styles */

.progressive-video-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden;
    z-index: 0 !important; /* Keep video behind overlay and content */
}












/* Mobile optimization */
@media (max-width: 768px) {
  
    
    /* Or allow video on mobile with lower quality */
    .progressive-video-container.mobile-video-enabled .progressive-video {
        display: block;
    }
}




