@tailwind base;
@tailwind components;
@tailwind utilities;

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  background-color: #020617;
  color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

/* Global Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #1e293b;
  border-radius: 99px;
  transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background: #2563eb;
}

/* Force firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: #1e293b transparent;
}

/* Hero/Landing font */
.font-hero {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
}

/* Glass Card Effect for Remote Dashboard */
.glass-card {
  background: rgba(2, 4, 16, 0.6);
  border: 1px solid rgba(30, 41, 59, 0.5);
  backdrop-filter: blur(10px);
}
