/* Popup Styles */


.video-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.video-popup.active {
    display: flex;
}

.video-popup-content {
    position: relative;
    max-width: 1000px;
    width: 90%;
    background: transparent;
    border-radius: 8px;
    overflow: hidden;
}

.video-popup-content video {
    width: 100%;
    height: auto;
    display: block;
}

.video-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #fff;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    line-height: 1;
}

.video-popup-content video {
    max-height: 90vh;
    object-fit: cover;
}

.video-popup-close {
    display: flex;
    min-height: 30px;
    min-width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-popup-content iframe {
    width: 100%;
    min-height: 60vh;
    border: 0;
    height: auto;
    border-radius: 8px;
}

.video-popup {
    display: none;
}

.video-popup.active {
    display: flex;
}

@media (max-width: 959px) {

    .video-popup-content {
        width: 95%;
    }
}