html {
  scroll-behavior: smooth;
}

body {
  background-color: #0a0a0a;
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: #111;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #d4af37;
}

/* Utilities for timeline */
.timeline-item::before {
  content: '';
  position: absolute;
  inset: 0;
  margin-left: 1.25rem;
  width: 2px;
  background: linear-gradient(to bottom, transparent, #333, transparent);
}

@media (min-width: 768px) {
  .timeline-item::before {
    margin-left: auto;
    margin-right: auto;
    transform: translateX(0);
  }
}
