/* Fallout-style terminal: green on black, monospace, no images */
:root {
  --bg: #000000;
  --fg: #14ff14; /* FO4-ish green */
  --fg-dim: #0db30d;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0; padding: 16px;
  background: var(--bg);
  color: var(--fg);
  font-family: "Courier New", Courier, monospace;
  font-size: 16px; line-height: 1.35;
}

.term {
  max-width: 1000px;
  margin: 0 auto;
  white-space: pre-wrap;
}

.hdr { text-transform: uppercase; letter-spacing: 1px; }
.dim { color: var(--fg-dim); }
.sep { margin: 8px 0; border-bottom: 1px solid var(--fg-dim); opacity: 0.6; }

a { color: var(--fg); text-decoration: none; border-bottom: 1px dotted var(--fg-dim); }
a:hover { text-decoration: underline; }

pre {
  margin: 0;
  overflow-x: auto;
  padding: 8px 8px 6px;
  border: 1px solid var(--fg-dim);
  border-radius: 4px;
}

.note { margin-top: 10px; color: var(--fg-dim); }

/* Embed mode (body.embed) */
body.embed { background: transparent; padding: 8px; }
body.embed .term { max-width: none; padding: 0; }
body.embed pre { border-color: transparent; padding: 4px 0; }

/* Mobile tweaks */
@media (max-width: 640px) {
  body { font-size: 14px; line-height: 1.3; padding: 10px; }
  .hdr { font-size: 14px; }
  pre { font-size: 12px; }
  a { border-bottom-width: 1px; }
}
