/* Instrument Serif + Space Mono — editorial authority, monospace utility */
:root {
  --bg: #0A0A0F;
  --bg-2: #0D0D14;
  --accent: #B4FF00;
  --accent-dim: rgba(180,255,0,0.15);
  --fg: #E8E8E0;
  --fg-dim: rgba(232,232,224,0.5);
  --border: rgba(180,255,0,0.1);
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Space Mono', monospace;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }

/* Selection */
::selection { background: var(--accent); color: var(--bg); }

/* Focus */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Links */
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Transitions */
* { transition: color 0.2s ease, background 0.2s ease; }
