
.entry-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000; /* dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    overflow: hidden;
}

/* CONTENT */
.entry-popup-content {
    position: relative;
    text-align: center;
    animation: fadeInScale 0.5s ease;
}

/* IMAGE */
.popup-img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 10px;
    cursor: pointer;
}

/* BUTTON */
.enter-btn {
    margin-top: 15px;
    padding: 10px 25px;
    background: #b22222;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.enter-btn:hover {
    background: #ff3c3c;
}

/* ANIMATION */
@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* HIDE SCROLL WHEN POPUP ACTIVE */
body.popup-active {
    overflow: hidden;
}

/* LOADER FULL OVERLAY */
/* LOADER FULL OVERLAY */
.popup-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.9);

    /* REMOVE display:flex from here */
    display: none;

    align-items: center;
    justify-content: center;

    border-radius: 10px;
}

/* ACTIVE STATE */
.popup-loader.active {
    display: flex;
}

/* INNER BOX */
.loader-box {
    text-align: center;
}

/* SPINNER */
.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #fff;
    border-top: 4px solid #b22222;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* TEXT */
.loader-text {
    color: #fff;
    margin-top: 12px;
    font-size: 14px;
    letter-spacing: 1px;
}

/* ANIMATION */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.popup-loader.active {
    display: flex; /* when visible */
}


  @media only screen and (max-width: 767.5px) {
         
         body {
        padding-bottom: 0;
    }
     }