/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and HTML styles */
html, body {
    height: 100%;
    overflow: hidden;
    background-color: #000;
}

/* Video container */
.video-container {
    width: 100vw;
    height: 100vh;
    position: relative;
}

/* Fullscreen video styles */
.fullscreen-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Disable default controls */
    outline: none;
}

/* Hide videos by default */
#desktop-video, #mobile-video {
    display: none;
}

/* Show desktop video by default (for larger screens) */
@media (min-width: 768px) {
    #desktop-video {
        display: block;
    }
}

/* Show mobile video for smaller screens */
@media (max-width: 767px) {
    #mobile-video {
        display: block;
    }
}

/* Disable text selection */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Disable context menu */
body, .fullscreen-video {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}