::-webkit-scrollbar {
  width: 8px;
  border-radius: 8px;
}

::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 8px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

::-webkit-scrollbar-thumb {
  background-color: #ffd700;
  border-radius: 8px;
  border: 2px solid #1e1e1e;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, box-shadow 0.3s, transform 0.2s;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #ffc107;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
  transform: scale(1.05);
}

::-webkit-scrollbar-thumb:active {
  background-color: #ffa500;
  box-shadow: 0 0 12px rgba(255, 165, 0, 0.9);
  transform: scale(1.1);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #ffd700 #1e1e1e;
  transition: scrollbar-color 0.3s;
}

@media (prefers-reduced-motion: no-preference) {
  ::-webkit-scrollbar-thumb {
    transition: background-color 0.3s ease, box-shadow 0.3s ease,
      transform 0.2s ease;
  }

  * {
    transition: scrollbar-color 0.3s ease;
  }
}
