/* Overlay */
.gmsl-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Popup Box */
.gmsl-popup-box {
    width: 90%;
    max-width: 850px;
    aspect-ratio: 16 / 9;
    position: relative;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 18px;
    overflow: hidden;
    animation: popScale .4s ease;
}

/* Close Button */
.gmsl-popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    width: 32px;
    height: 32px;
    background: rgba(2,190,236,.9);
    border: none;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    z-index: 20;
}

/* Slider */
.gmsl-popup-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Slides */
.gmsl-slide {
    position: absolute;
    inset: 0;
    display: none;
}

.gmsl-slide.gmsl-active {
    display: block;
}

/* Image */
.gmsl-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Arrows */
.gmsl-prev,
.gmsl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,.5);
    border-radius: 50%;
    font-size: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    z-index: 15;
}

.gmsl-prev { left: 15px; }
.gmsl-next { right: 15px; }

.gmsl-prev:hover,
.gmsl-next:hover {
    background: rgba(255,255,255,.9);
}

/* Mobile */
@media (max-width:600px){
    .gmsl-popup-box{
        width:95%;
    }
}

/* Animation */
@keyframes popScale {
    from { transform: scale(.7); opacity:0 }
    to { transform: scale(1); opacity:1 }
}
