html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Hide scroll */
}

.streaming-video-wrapper {
    position: fixed;  /* Stay on screen */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background-color: black;
    overflow: hidden;
}

.streaming-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    background: black;
}

.elementor-section-wrap,
.elementor-section,
.elementor-container,
.elementor-widget {
    margin: 0 !important;
    padding: 0 !important;
}