.exit-intent-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-intent-overlay.show {
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: linear-gradient(135deg, #FF9800, #FFC107);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    max-width: 480px;
    width: 90%;
    border: 4px solid #FFFFFF;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupAppear 0.5s ease;
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    font-size: 32px;
    color: #FFFFFF;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.exit-popup-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.exit-popup-icon {
    font-size: 48px;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.exit-popup-title {
    font-size: 36px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    animation: pulse 2s infinite;
    font-family: 'Arial', sans-serif;
}

.exit-popup-subtitle {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 25px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.exit-bonus-offer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    border: 3px solid #FFFFFF;
    backdrop-filter: blur(10px);
}

.exit-bonus-amount {
    font-size: 28px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.exit-bonus-plus {
    font-size: 24px;
    color: #FFFFFF;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.exit-bonus-percent {
    font-size: 28px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.exit-popup-text {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.exit-popup-cta {
    background: linear-gradient(45deg, #2C5282, #4299E1);
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(44, 82, 130, 0.4);
    transition: all 0.3s ease;
    animation: pulseButton 2s infinite;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.exit-popup-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(44, 82, 130, 0.6);
    filter: brightness(1.1);
}

.exit-popup-footer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

@keyframes popupAppear {
    0% {
        transform: scale(0.7) translateY(-50px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulseButton {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .exit-popup-content {
        padding: 30px 20px;
        max-width: 95%;
        border-radius: 20px;
    }
    
    .exit-popup-title {
        font-size: 28px;
    }
    
    .exit-bonus-amount,
    .exit-bonus-percent {
        font-size: 22px;
    }
    
    .exit-popup-cta {
        font-size: 16px;
        padding: 15px 25px;
    }
    
    .exit-bonus-offer {
        flex-direction: column;
        gap: 10px;
    }
}
