.has-techno-bg-video {
    position: relative;
    overflow: hidden;
}

.techno-bg-video-element {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    /* Ensure it stays behind content if content has higher z-index, but might need adjustment */
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    /* Better support for modern browsers */
}

/* Ensure content sits on top */
.has-techno-bg-video>*:not(.techno-bg-video-element) {
    position: relative;
    z-index: 1;
}