/* Custom fonts and transitions */
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
}

/* Custom scrolling list effect */
@keyframes scrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

.scrolling-content {
  animation: scrollUp 20s linear infinite;
}

.scrolling-content:hover {
  animation-play-state: paused;
}
