.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, #1a4f3a, #2d7a5f);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  border: 3px solid #ff4500;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: popupAppear 0.5s ease;
}

.exit-popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.exit-popup-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.exit-popup-icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: bounce 2s infinite;
}

.exit-popup-title {
  font-size: 36px;
  font-weight: bold;
  color: #ff4500;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

.exit-popup-subtitle {
  font-size: 18px;
  color: white;
  margin-bottom: 25px;
  opacity: 0.9;
}

.exit-bonus-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 69, 0, 0.1);
  border-radius: 15px;
  border: 2px dashed #ff4500;
}

.exit-bonus-amount {
  font-size: 32px;
  font-weight: bold;
  color: #ff4500;
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.exit-bonus-plus {
  font-size: 28px;
  color: white;
  opacity: 0.8;
}

.exit-bonus-percent {
  font-size: 32px;
  font-weight: bold;
  color: #ff4500;
  text-shadow: 0 0 10px rgba(255, 69, 0, 0.3);
}

.exit-popup-text {
  font-size: 16px;
  color: white;
  margin-bottom: 30px;
  opacity: 0.9;
}

.exit-popup-cta {
  background: linear-gradient(45deg, #ff4500, #ff6500);
  color: white;
  border: none;
  padding: 18px 35px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(255, 69, 0, 0.4);
  transition: all 0.3s ease;
  animation: pulseButton 2s infinite;
  margin-bottom: 20px;
}

.exit-popup-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 69, 0, 0.6);
}

.exit-popup-footer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

/* Animation */
@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%;
  }
  
  .exit-popup-title {
    font-size: 28px;
  }
  
  .exit-bonus-amount,
  .exit-bonus-percent {
    font-size: 24px;
  }
  
  .exit-popup-cta {
    font-size: 16px;
    padding: 15px 25px;
  }
}
