.glow-animated {
  position: relative;
  animation: glowPulse 2.2s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    text-shadow: 0 0 8px #fff, 0 0 16px #f8f8f2, 0 0 32px #00eaff;
  }
  25% {
    text-shadow: 0 0 12px #fff, 0 0 24px #00eaff, 0 0 40px #00eaff;
  }
  50% {
    text-shadow: 0 0 18px #fff, 0 0 36px #00eaff, 0 0 60px #00eaff;
  }
  75% {
    text-shadow: 0 0 12px #fff, 0 0 24px #00eaff, 0 0 40px #00eaff;
  }
  100% {
    text-shadow: 0 0 8px #fff, 0 0 16px #f8f8f2, 0 0 32px #00eaff;
  }
}
