h1 {
  font-size: 3em;
  margin: 0;
  font-weight: 800;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #c084fc, #a855f7);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.6));
  }
  50% {
    text-shadow: 0 0 30px rgba(168, 85, 247, 0.8);
    filter: drop-shadow(0 0 20px rgba(168, 85, 247, 0.9));
  }
}
