/* Ensure container is fixed and behind content */
.background-video-container {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: -999; /* Ensure it is behind everything */
}

.background-video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* We set transform in JS, but initial state helps prevent jump */
    transform: scale(1.2); 
    will-change: transform;
}
