@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;900&family=Space+Grotesk:wght@500;700&family=JetBrains+Mono:wght@400;600;800&display=swap');
@import "tailwindcss";

@theme {
  --font-sans: "Inter", "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;
}

/* Custom styles for extreme visual fidelity */
@layer utilities {
  .text-shadow {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(212, 175, 55, 0.15);
  }
}

/* Custom scrollbars matching the emerald-gold theme */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #070d0b;
}

::-webkit-scrollbar-thumb {
  background: #1c2e26;
  border-radius: 10px;
  border: 1px solid #4e6e5d/20;
}

::-webkit-scrollbar-thumb:hover {
  background: #4e6e5d;
}

/* Flowing hover animations */
.hvr-bounce {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.hvr-bounce:hover {
  transform: scale(1.05);
}

