.overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}
/*
.overlay .popup {
    position: relative;
    width: 80%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    height: 89vh;
}
*/
.overlay .popup {
    position: relative;
    width: 95%;
	max-width: 1400px;
    aspect-ratio: 16 / 9; /* Mantiene proporción 1.77 */
    background: #000;
    border-radius: 12px;
    overflow: hidden;
	max-height: 95vh;
}

.overlay .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1100;
}
.overlay iframe {
    width: 100%;
    height: 100%;
    border: none;
}