.popup {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000; /* Ensure the popup is on top */
    justify-content: center;
    align-items: center;
    background: #00000082;
}

.popup-content {
    position: relative;
    background-color: white;
    padding: 10px;
    width: 825px;
    max-width: 100%;
    text-align: center;
    z-index: 10001; /* Ensure the content is above the overlay */
}

.close {
    position: absolute;
    right: 10px;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10002; /* Ensure the close button is above everything else */
}

.video-container iframe {
    width: 100%;
    height: 449px;
    max-width: 900px;
    z-index: 10000; /* Ensure the video is above the overlay */
}