.video-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-popup[hidden] {
    display: none;
}

.video-popup_backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.video-popup_container {
    position: relative;
    z-index: 1;
    width: 90vw;
    max-width: 960px;
    aspect-ratio: 16 / 9;
}

.video-popup_close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.video-popup_player {
    width: 100%;
    height: 100%;
    background: #000;
}

.video-popup_iframe-wrapper {
    width: 100%;
    height: 100%;
}

.video-popup_iframe {
    width: 100%;
    height: 100%;
    background: #000;
}
