:root {
  --bg: #0a0a0a;
  --fg: #e0e0e0;
  --amber: #f0a020;
  --green: #3a5a3a;
  --terminal: #00ff41;
  --muted: #555;
}
* { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  background: var(--bg);
  color: var(--fg);
  font-family: "SF Mono", "Menlo", "Courier New", monospace;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.7;
}
body {
  min-height: 100vh;
  padding: 3rem 1.5rem 6rem;
  position: relative;
}

.scanline {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    rgba(0, 255, 65, 0.015) 2px,
    rgba(0, 255, 65, 0.015) 4px
  );
  z-index: 1;
}

main {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

header {
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px dashed var(--green);
}
.crumb { color: var(--muted); font-size: 12px; }
.crumb a {
  color: var(--amber);
  text-decoration: none;
  border-bottom: 1px dashed var(--amber);
}

h1 {
  color: var(--amber);
  font-size: clamp(20px, 2.5vw, 28px);
  margin: 0.5rem 0 0.25rem;
  text-shadow: 0 0 8px rgba(240, 160, 32, 0.3);
}
.sub { color: var(--muted); font-size: 12px; }

h2 {
  color: var(--terminal);
  font-size: clamp(15px, 1.7vw, 17px);
  margin: 2rem 0 0.75rem;
}

p, li { margin-bottom: 0.75rem; }
ul { padding-left: 1.25rem; }
strong { color: var(--amber); }

a {
  color: var(--terminal);
  text-decoration: none;
  border-bottom: 1px dashed var(--terminal);
}

code {
  background: rgba(0, 255, 65, 0.05);
  border: 1px solid var(--green);
  padding: 0.1rem 0.4rem;
  border-radius: 3px;
  color: var(--terminal);
  font-size: 0.95em;
}

.box {
  border: 1px solid var(--green);
  padding: 1rem 1.25rem;
  margin: 1rem 0;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
}

pre.license {
  white-space: pre-wrap;
  color: var(--fg);
  background: rgba(0, 255, 65, 0.03);
  border: 1px solid var(--green);
  padding: 1.25rem;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.6;
  margin: 1rem 0;
}

.footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px dashed var(--green);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}
.footer a {
  color: var(--amber);
  border-bottom-color: var(--amber);
  margin: 0 0.5rem;
}
.brand {
  color: var(--amber);
  letter-spacing: 0.1em;
}
