.video-dialog {
    width: min(1040px, calc(100% - 32px));
    height: auto;
    max-height: calc(100vh - 32px);
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #02070b;
    border: 1px solid rgba(195, 161, 91, .38);
}

.video-dialog .dialog-close {
    right: 16px;
    top: 16px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 50%;
    background: rgba(4, 17, 29, .72);
    font-size: 27px;
    line-height: 1;
    backdrop-filter: blur(10px);
}

.video-player {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    background: #000;
    object-fit: contain;
}

@media (max-width: 640px) {
    .video-dialog {
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
    }

    .video-dialog .dialog-close {
        right: 10px;
        top: 10px;
        width: 38px;
        height: 38px;
    }
}
