html { scroll-behavior: smooth; }
body { background-color: #0D0E10; }

.focus-ring:focus-visible {
  outline: 2px solid #E8792C;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; }
}

@keyframes scrollLine {
  0%   { transform: translateY(-100%); opacity: 0; }
  50%  { opacity: 1; }
  100% { transform: translateY(400%); opacity: 0; }
}
