#bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(8, 24, 45, 0) 0%,
        rgba(8, 24, 45, 1) 100%
    );
    z-index: -1;
}

.video-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}