/* Mobile styles */
.video-wrapper {
    display: none;
}

/* Desktop and Tablet styles */
@media (min-width: 768px) {
    .video-wrapper {
        display: block !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: #000;
        z-index: 999999;
        opacity: 1;
        visibility: visible;
    }

    .video-container {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
    }

    video {
        width: 100vw;
        height: 100vh;
        object-fit: cover;
        position: fixed;
        top: 0;
        left: 0;
    }
}