/* Video Background Styles */
.video-background {
    position: relative;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.6;
    object-fit: cover;
    z-index: 0;
}

.video-background .container {
    position: relative;
    z-index: 2;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 37, 41, 0.7);
    z-index: 1;
}

@media (max-width: 768px) {
    .video-background video {
        display: none;
    }
    
    .video-background {
        background-color: var(--dark-bg);
    }
}
