#popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#popup-box {
    position: relative;
    width: 90%;
    max-width: 420px;
    background: #220035;
    border-radius: 16px;
    padding: 15px;
    text-align: center;
}

.popup-img {
    width: 100%;
    border-radius: 12px;
}

.popup-cta {
    display: block;
    background: #00d9ff;
    color: #000;
    padding: 14px 0;
    margin-top: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

/* Close */
#close-popup {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 22px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}
