body {
  font-family: 'Inter', sans-serif;
  /* Solid dark gray background matching screenshot */
  background-color: #191923; 
}

/* Scroll Reveal Animation Classes */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #191923;
}

::-webkit-scrollbar-thumb {
  background: #2d2d39;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffc107;
}