/* Keep this file for non-Tailwind additions only. */
:root {
  color-scheme: dark;
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

@keyframes floatUp {
  0% { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0px); opacity: 1; }
}

.float-in {
  animation: floatUp 420ms ease-out both;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(34,211,238,.22), 0 0 18px rgba(34,211,238,.12); }
  50% { box-shadow: 0 0 0 1px rgba(255,61,206,.22), 0 0 26px rgba(255,61,206,.14); }
}

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