/* Minimal styling and animated gradient */
#animatedGradient{transition:background-position 0.6s linear}
.animate-gradient {
  background: linear-gradient(-45deg, #6366f1, #a855f7, #ec4899, #6366f1);
  background-size: 400% 400%;
  animation: gradient 15s ease infinite;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}
@keyframes gradient {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
body{font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;}
