/* G.A.V.E.L. Legal Intelligence Dashboard — Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Antonio:wght@400;700&family=Orbitron:wght@400;700;900&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0e17;
  --surface: #1a1f2e;
  --surface-hover: #242a3d;
  --accent: #8b5cf6;
  --accent-dim: rgba(139, 92, 246, 0.15);
  --teal: #00bfa5;
  --green: #69f0ae;
  --orange: #ff6d00;
  --red: #ff3b3b;
  --text: #e0e0e0;
  --text-dim: #8892a4;
  --border: #2a3040;
  --regulations: #8b5cf6;
  --court: #f472b6;
  --news: #00bfa5;
  --legislation: #ffd740;
  --font-nav: 'Antonio', sans-serif;
  --font-title: 'Orbitron', sans-serif;
  --font-data: 'IBM Plex Mono', monospace;
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-data);
  min-height: 100vh;
  line-height: 1.5;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--accent); }

.hidden { display: none !important; }

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-dim); }

/* Responsive */
@media (max-width: 768px) {
  html { font-size: 14px; }
}
@media (max-width: 480px) {
  html { font-size: 13px; }
}
