html,
body {
    height: 100%;
    margin: 0;
    background: #000;
}

.wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.video-container {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-click-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-click-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
}

.video-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: default;
    background: rgba(0, 0, 0, 0);
}