#spei-popup-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.82);
    display:none;
    justify-content:center;
    align-items:center;
    z-index:999999;
}

#spei-popup-box{
    width:90%;
    max-width:500px;
    background:#111;
    color:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    position:relative;
    border:1px solid rgba(212,175,55,0.3);
    box-shadow:0 15px 40px rgba(0,0,0,0.4);
    animation:speiFade .25s ease;
}

@keyframes speiFade{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

#spei-popup-box h2{
    font-size:32px;
    color:#D4AF37;
    margin-bottom:15px;
}

#spei-popup-box p{
    font-size:16px;
    line-height:1.7;
    color:#ddd;
    margin-bottom:25px;
}

#spei-whatsapp-btn{
    display:inline-block;
    background:#D4AF37;
    color:#111;
    text-decoration:none;
    padding:15px 30px;
    border-radius:12px;
    font-weight:700;
    transition:.2s ease;
}

#spei-whatsapp-btn:hover{
    transform:translateY(-2px);
}

#spei-close-btn{
    position:absolute;
    right:15px;
    top:10px;
    font-size:32px;
    cursor:pointer;
}

@media(max-width:768px){

    #spei-popup-box{
        padding:30px 22px;
    }

    #spei-popup-box h2{
        font-size:25px;
    }

    #spei-whatsapp-btn{
        width:100%;
        box-sizing:border-box;
    }
}
