.wg-exit-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.wg-exit-popup {
    background: #0b0b0f;
    color: #ffffff;
    max-width: 480px;
    width: 90%;
    padding: 2rem 2.5rem;
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
    position: relative;
    text-align: left;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.wg-exit-heading {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.wg-exit-body {
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.wg-exit-body p {
    margin: 0.4rem 0;
}

.wg-exit-coupon {
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    background: #14141f;
    border: 1px dashed #f7ce46;
    text-align: center;
    font-size: 0.95rem;
}

.wg-exit-coupon-label {
    display: block;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.wg-exit-coupon-code {
    font-size: 1.4rem;
    letter-spacing: 0.16em;
}

.wg-exit-cta {
    display: inline-block;
    margin-top: 1.4rem;
    padding: 0.9rem 1.6rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    background: #f7ce46;
    color: #18181b;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.wg-exit-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
    background: #ffd84f;
}

.wg-exit-close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    border: none;
    background: transparent;
    color: #888888;
    font-size: 1.6rem;
    cursor: pointer;
    line-height: 1;
}

.wg-exit-close:hover {
    color: #ffffff;
}

@media (max-width: 480px) {
    .wg-exit-popup {
        padding: 1.5rem 1.6rem;
    }

    .wg-exit-heading {
        font-size: 1.4rem;
    }

    .wg-exit-coupon-code {
        font-size: 1.2rem;
    }
}
