
#shapno24-popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
    z-index:99998;
}

#shapno24-popup{
    position:fixed;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:90%;
    max-width:520px;
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    z-index:99999;
    animation:popupAnim .6s ease;
    box-shadow:0 0 30px rgba(0,0,0,0.4);
    font-family:Arial, sans-serif;
}

@keyframes popupAnim{
    from{
        opacity:0;
        transform:translate(-50%, -40%) scale(0.8);
    }
    to{
        opacity:1;
        transform:translate(-50%, -50%) scale(1);
    }
}

#shapno24-close{
    position:absolute;
    top:10px;
    right:15px;
    border:none;
    background:red;
    color:#fff;
    width:35px;
    height:35px;
    border-radius:50%;
    font-size:22px;
    cursor:pointer;
}

.shapno24-header{
    background:linear-gradient(135deg,#ff0080,#7928ca);
    color:#fff;
    text-align:center;
    padding:35px 20px;
}

.shapno24-header h2{
    margin:0;
    font-size:30px;
}

.shapno24-header p{
    font-size:18px;
    margin-top:10px;
    line-height:1.7;
}

.shapno24-body{
    padding:30px;
    text-align:center;
}

.glow-box{
    background:#f7f7f7;
    padding:25px;
    border-radius:15px;
    border:2px dashed #ff0080;
    animation:glow 2s infinite;
}

@keyframes glow{
    0%{box-shadow:0 0 5px #ff0080;}
    50%{box-shadow:0 0 25px #7928ca;}
    100%{box-shadow:0 0 5px #ff0080;}
}

.glow-box h3{
    margin-top:0;
    color:#7928ca;
}

.shapno24-btn{
    display:inline-block;
    margin-top:15px;
    padding:14px 28px;
    background:linear-gradient(135deg,#ff0080,#7928ca);
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-size:18px;
    transition:0.3s;
}

.shapno24-btn:hover{
    transform:scale(1.05);
}

.shapno24-footer{
    background:#111;
    color:#fff;
    padding:10px;
    font-size:16px;
}
