/* Minimal custom CSS to complement Tailwind */
:root {
  color-scheme: dark;
}

/* Smooth fade for loader overlay */
#loader.hidden {
  opacity: 0;
  pointer-events: none;
}

/* Subtle card glow */
.card-glow {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 20px 60px rgba(0,0,0,0.45);
}

/* Reduce motion for users who prefer less */
@media (prefers-reduced-motion: reduce) {
  .animate-spin { animation: none !important; }
}
