/* Video background styles with positive z-index */
#video-background {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

#video-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.4) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Ensure all content is above the video */
.header,
.container,
.footer,
body>* {
    position: relative;
    z-index: 10;
}