body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #0A0A0A;
  color: #d1d5db; /* Default text color from text-gray-300 */
}

/* Mobile menu background */
#mobile-menu .flex.flex-col.items-center.justify-center.min-h-screen.space-y-8.text-center {
    background: #000000e0;
}

/* Custom Scrollbar for a modern look */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #1A1A1A;
}
::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Tailwind Prose Overrides */
.prose-invert a {
    color: #D4AF37;
}
.prose-invert a:hover {
    color: #f0e68c;
}