/* The game's own tokens, lifted from src/index.css so the site and the app
   read as the same object. */
:root {
  --abyss: #020810;
  --surface: #071426;
  --rule: rgba(60, 120, 200, 0.22);
  --sonar: #00e5ff;
  --ink: #e2edf5;
  --ink-2: #a0c4dd;
  --ink-3: #6d8fa8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--abyss);
  color: var(--ink);
  font-family: 'Crimson Pro', Georgia, 'Times New Roman', serif;
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(120% 70% at 50% -10%, rgba(0, 229, 255, 0.09), transparent 60%),
    radial-gradient(90% 50% at 50% 105%, rgba(155, 123, 240, 0.06), transparent 65%);
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 46rem;
  margin: 0 auto;
  padding: 4rem 1.5rem 6rem;
}

a { color: var(--sonar); text-underline-offset: 2px; }
a:focus-visible { outline: 2px solid var(--sonar); outline-offset: 3px; }

.eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sonar);
  margin: 0 0 1rem;
}

h1 {
  font-family: 'Orbitron', ui-sans-serif, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  text-wrap: balance;
}

h2 {
  font-family: 'Orbitron', ui-sans-serif, system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
  margin: 2.75rem 0 0.75rem;
  text-wrap: balance;
}

p { margin: 0 0 1.1rem; max-width: 65ch; }
li { margin-bottom: 0.5rem; max-width: 63ch; }

.lede { font-size: 1.2rem; color: var(--ink-2); font-style: italic; }

.meta {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 0.78rem;
  color: var(--ink-3);
  border-top: 1px solid var(--rule);
  margin-top: 3.5rem;
  padding-top: 1.25rem;
  line-height: 1.9;
}

nav {
  font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
nav a { margin-right: 1.5rem; text-decoration: none; color: var(--ink-3); }
nav a:hover, nav a[aria-current] { color: var(--sonar); }

table { border-collapse: collapse; width: 100%; margin: 1.25rem 0; font-size: 0.95rem; }
th, td { text-align: left; padding: 0.6rem 0.9rem; border-bottom: 1px solid var(--rule); vertical-align: top; }
th { color: var(--ink-3); font-family: 'JetBrains Mono', ui-monospace, Menlo, monospace;
     font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500; }

.scroller { overflow-x: auto; }
