/* Custom Styles for Downsell Page */

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 15px rgba(0, 215, 105, 0.4), 0 0 30px rgba(0, 215, 105, 0.2);
  }
  50% {
    box-shadow: 0 0 25px rgba(0, 215, 105, 0.8), 0 0 50px rgba(0, 215, 105, 0.4);
  }
}

.animate-pulse-glow {
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes urgentBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.animate-urgent-blink {
  animation: urgentBlink 1.2s infinite;
}

/* Wiapy Fallback Styles when rendered via fallback */
#wiapy_upsell a {
  transition: all 0.3s ease;
  cursor: pointer;
}

#wiapy_upsell a:hover {
  transform: scale(1.02);
}

.faq-item {
  transition: background-color 0.2s ease;
}

.faq-item:hover {
  background-color: rgba(30, 41, 59, 0.9);
}
