html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    background: black;
}

.xvp-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: black;
    z-index: 0;
}

.xvp-video-bg iframe,
.xvp-video-bg video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    outline: none;
    z-index: 0;
    pointer-events: none;
}

.xvp-video-bg video::-webkit-media-controls {
    display: none !important;
}

.xvp-overlay {
    z-index: 1;
    width: 100%;
    height: 100%;
}

.xvp-play-btn {
    background: rgba(255,255,255,0.85);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.3rem;
    border-radius: 10px;
    cursor: pointer;
    z-index: 10;
}
