/* ================================
   VIDEO POPUP - BACKGROUND
================================ */

#sallaVideoPopup {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.85);

    z-index: 9999999;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    box-sizing: border-box;
}


/* ================================
   VIDEO CONTAINER
================================ */

#sallaVideoContainer {
    position: relative;

    width: min(92vw, 620px);

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ================================
   VIDEO
================================ */

#sallaPopupVideo {
    display: block;

    width: 100%;
    height: auto;

    max-height: 88vh;

    object-fit: contain;

    border-radius: 16px;

    background: #000;
}


/* ================================
   CLOSE BUTTON
================================ */

#sallaPopupClose {
    position: absolute;

    top: -17px;
    right: -17px;

    width: 44px;
    height: 44px;

    border: none;
    border-radius: 50%;

    background: #ffffff;
    color: #111111;

    font-size: 30px;
    font-family: Arial, sans-serif;
    line-height: 40px;

    cursor: pointer;

    z-index: 100;

    /* مخفي أول 5 ثواني */
    display: none;

    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}


#sallaPopupClose:hover {
    transform: scale(1.07);
}


/* ================================
   MOBILE
================================ */

@media (max-width: 600px) {

    #sallaVideoPopup {
        padding: 12px;
    }

    #sallaVideoContainer {
        width: 94vw;
    }

    #sallaPopupVideo {
        max-height: 85vh;
        border-radius: 12px;
    }

    #sallaPopupClose {
        width: 40px;
        height: 40px;

        top: -14px;
        right: -5px;

        font-size: 27px;
        line-height: 36px;
    }
}