html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0c0e12;
}

::-webkit-scrollbar-thumb {
  background: #2a3140;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f97316;
}

