.video-popup-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.video-popup-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.8);
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    z-index: 2;
}

.video-popup-content iframe {
    width: 100%;
    height: 100%;
}

.video-popup-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}