.video-popup-overlay-8807a5cf {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-popup-overlay-8807a5cf.is-active {
    opacity: 1;
    visibility: visible;
}

.video-popup-wrapper-8807a5cf {
    position: relative;
    width: 90%;
    max-width: 900px;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.video-popup-overlay-8807a5cf.is-active .video-popup-wrapper-8807a5cf {
    transform: scale(1);
}

.video-popup-wrapper-8807a5cf iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-popup-close-8807a5cf {
    position: absolute;
    top: -40px;
    right: 0;
    width: 36px;
    height: 36px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease;
    z-index: 10;
}

.video-popup-close-8807a5cf:hover {
    border-color: #fff;
    color: #fff;
}
