/* ── Overlay ─────────────────────────────────────────────────── */
#rlp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: rlpFadeIn 0.3s ease;
}

/* ── Popup box ───────────────────────────────────────────────── */
#rlp-popup {
    background: #ffffff;
    border-radius: 12px;
    padding: 44px 42px 34px;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ── Close button ────────────────────────────────────────────── */
#rlp-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #999;
    padding: 4px 8px;
    transition: color 0.2s;
}
#rlp-close:hover { color: #333; }

/* ── Heading ─────────────────────────────────────────────────── */
#rlp-popup h2 {
    margin: 0 0 10px;
    font-size: 2rem;
    line-height: 1.15;
    color: #1a1a1a;
}

#rlp-popup p {
    margin: 0 0 22px;
    color: #555;
    font-size: 1.08rem;
    line-height: 1.55;
}

#rlp-popup .rlp-offer {
    margin-bottom: 14px;
    color: #262626;
    font-size: 1.28rem;
    line-height: 1.35;
}

/* ── Form ────────────────────────────────────────────────────── */
#rlp-form-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 18px;
}

#rlp-email {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
#rlp-email:focus { border-color: #4f46e5; }

#rlp-submit {
    width: 100%;
    padding: 15px 18px;
    background: #4f46e5;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
#rlp-submit:hover  { background: #4338ca; }
#rlp-submit:disabled { background: #a5b4fc; cursor: not-allowed; }

/* ── Feedback message ────────────────────────────────────────── */
#rlp-message {
    font-size: 0.95rem;
    padding: 10px 14px;
    border-radius: 6px;
    margin: 0 0 12px;
}
#rlp-message.rlp-success {
    background: #ecfdf5;
    color: #065f46;
}
#rlp-message.rlp-error {
    background: #fef2f2;
    color: #991b1b;
}

/* ── Decline link ────────────────────────────────────────────── */
#rlp-decline {
    display: inline-block;
    font-size: 0.8rem;
    color: #aaa;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}
#rlp-decline:hover { color: #666; }

/* ── Fade-in animation ───────────────────────────────────────── */
@keyframes rlpFadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to   { opacity: 1; transform: scale(1); }
}

/* ── Mobile ──────────────────────────────────────────────────── */
@media (max-width: 480px) {
    #rlp-overlay {
        padding: 12px;
    }

    #rlp-popup {
        padding: 34px 20px 24px;
    }

    #rlp-popup h2 {
        font-size: 1.55rem;
    }

    #rlp-popup p {
        font-size: 0.98rem;
        line-height: 1.45;
        margin-bottom: 18px;
    }

    #rlp-popup .rlp-offer {
        font-size: 1.08rem;
        line-height: 1.35;
        margin-bottom: 12px;
    }

    #rlp-email {
        padding: 13px 14px;
    }

    #rlp-submit {
        padding: 14px 12px;
        font-size: 0.98rem;
    }
}

