/* Стили для видео попапа */
.widget-popup.popup-video {
    position: relative;
    width: 90%;
    max-width: 800px;
    height: 600px;
    max-height: 600px;
  
}

.widget-popup.popup-video.popup-active {
    display: block;
}

.popup-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.popup-video-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Корректировка для существующего popup-area */
.popup-area {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-area-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}