@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;850&family=Outfit:wght@400;600;800&display=swap');
@import "tailwindcss";

@theme {
  --font-sans: "Inter", "Outfit", ui-sans-serif, system-ui, sans-serif;
}

/* Custom premium scrollbar styling */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: #0d0d11;
}

::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.35);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(212, 175, 55, 0.65);
}

/* Smooth Scrolling globally */
html {
  scroll-behavior: smooth;
}

/* Custom text break-all wrapper */
.breaker-all {
  word-break: break-all;
}

/* Scrollbar none helper */
.scrollbar-none::-webkit-scrollbar {
  display: none;
}
