.angie-exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.angie-exit-intent-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.angie-exit-intent-modal {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.angie-exit-intent-overlay.visible .angie-exit-intent-modal {
    transform: translateY(0);
}

.angie-exit-intent-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    line-height: 1;
}

.angie-exit-intent-title {
    font-size: 24px;
    color: #111;
    margin-bottom: 15px;
    font-weight: 700;
}

.angie-exit-intent-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
}

.angie-exit-intent-coupon-box {
    background: #f8f9fa;
    border: 2px dashed #0073aa;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.angie-exit-intent-code {
    font-family: monospace;
    font-size: 20px;
    font-weight: bold;
    color: #0073aa;
}

.angie-exit-intent-copy-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.2s;
}

.angie-exit-intent-copy-btn:hover {
    background: #005177;
}

.angie-exit-intent-footer {
    font-size: 12px;
    color: #888;
    margin-top: 10px;
}

.hidden {
    display: none !important;
}
