/* Vollbild-Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup-Inhalt – Handyrahmen */
.popup-content {
    position: relative;
    max-width: 380px;
    width: 90%;
    padding: 20px;
    background: #000;
    border-radius: 32px;
    box-shadow: 0 0 40px rgba(0,0,0,0.6);
    border: 8px solid #111;
    z-index: 1;
}

/* Schließen-Button */
.popup-close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 32px;
    color: white;
    cursor: pointer;
    z-index: 10000;
}

/* Play-Button */
.popup-play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 999999 !important;
    pointer-events: auto;
}

/* Video */
#popupVideo {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

/* MOBILE: 65% Breite */
@media screen and (max-device-width: 600px) {
    .popup-content {
        max-width: 65% !important;
        border-width: 6px;
        border-radius: 28px;
    }

    #popupVideo {
        border-radius: 20px;
    }
}
