/* Minimal overrides — Tailwind handles almost everything */

/* Smooth scrollbar for dark theme */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0a0a0f;
}
::-webkit-scrollbar-thumb {
  background: #2d2d3d;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #3d3d52;
}

/* Hero gradient animation */
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
