#exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
}

#exit-popup-container {
    position: relative;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    border-radius: 32px;
    max-width: 500px;
    width: 90%;
    margin: 20px;
    padding: 30px 25px 35px;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 107, 0, 0.3);
    animation: popupFadeIn 0.4s ease-out;
}

@keyframes popupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

#exit-popup-close {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
    color: #94a3b8;
    transition: 0.2s;
}

#exit-popup-close:hover {
    color: #FF6B00;
}

.popup-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

#exit-popup-content h2 {
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
}

#exit-popup-content p {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 25px;
}

.coupon-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 15px;
    margin: 20px 0;
    border: 1px dashed #FF6B00;
}

.coupon-label {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 8px;
}

.coupon-code {
    font-family: monospace;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #FF6B00;
    background: #0f0f1a;
    display: inline-block;
    padding: 8px 20px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.copy-btn {
    background: #FF6B00;
    border: none;
    color: white;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s;
}

.copy-btn:hover {
    background: #e05e00;
    transform: scale(1.02);
}

.timer-info {
    background: rgba(255, 107, 0, 0.15);
    border-radius: 40px;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #FFB347;
    margin-bottom: 20px;
}

.timer-label {
    font-weight: normal;
}

#coupon-timer {
    font-family: monospace;
    font-size: 20px;
    background: #0000004d;
    padding: 2px 10px;
    border-radius: 30px;
}

.discount-badge {
    display: inline-block;
    background: #FF6B00;
    color: white;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 14px;
    margin-bottom: 20px;
}

.small-note {
    font-size: 11px !important;
    color: #64748b !important;
    margin-top: 15px;
    margin-bottom: 0 !important;
}

.continue-btn {
    display: inline-block;
    background: #FF6B00;
    color: white;
    text-decoration: none;
    font-weight: 800;
    padding: 14px 30px;
    border-radius: 50px;
    margin-top: 10px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.3);
}

.continue-btn:hover {
    background: #e05e00;
    transform: translateY(-2px);
    color: white;
}