html {
  scroll-behavior: smooth;
}
body {
  background-color: #0a0a0a;
  color: #d4d4d4;
  font-family: system-ui, -apple-system, sans-serif;
  margin: 0;
  padding: 0;
}
/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #eab308;
}
