/* WowEffects — Core CSS */

.we-animated-shadow {
  --we-shadow-color: #7300ff; /* valeur par défaut */
  text-shadow: 0 0 0px var(--we-shadow-color);
  animation: we-glow 4s infinite ease-in-out;
}

/* Glow animation */
@keyframes we-glow {
  0% {
    text-shadow: 0 0 0px var(--we-shadow-color);
  }
  50% {
    text-shadow:
      0 0 18px var(--we-shadow-color),
      0 0 32px var(--we-shadow-color);
  }
  100% {
    text-shadow: 0 0 0px var(--we-shadow-color);
  }
}

/* Optional motion reduction */
@media (prefers-reduced-motion: reduce) {
  .we-animated-shadow {
    animation-duration: 0.001ms;
    animation-iteration-count: 1;
  }
}
