/* nyc.world — shared stylesheet for the non-map pages (about, terms,
   sitemap, 404). Same tokens as styles.css; kept separate so these pages
   don't pull the whole HUD stylesheet. */
:root {
  --accent: #ffd166; --accent-deep: #b98f2f; --sky: #7dd3fc; --good: #86efac;
  --warn: #fca5a5; --ink: #e6ecf5; --ink-dim: #b9c7e2; --ink-faint: #9fb4d8;
  --ink-ghost: #6b7ea8; --bg: #0a0e1a; --well: #10162a; --raised: #131a2e;
  --raised-hi: #22304f; --border: #2e3a5c;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink-dim); font-family: 'Press Start 2P', monospace;
  padding: 28px 20px 60px; line-height: 2.3;
}
.wrap { max-width: 720px; margin: 0 auto; }

/* header: logo + page nav */
.site-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px 20px; margin-bottom: 34px; }
.site-head .logo { font-size: 16px; color: var(--accent); text-decoration: none; text-shadow: 3px 3px 0 #00000088; letter-spacing: 1px; }
.site-head .logo .lol { color: var(--sky); }
.site-nav { display: flex; flex-wrap: wrap; gap: 4px 14px; font-size: 8px; }
.site-nav a { color: var(--ink-faint); text-decoration: none; padding: 6px 0; }
.site-nav a:hover, .site-nav a[aria-current] { color: var(--accent); text-decoration: underline; }

/* type */
h1 { font-size: 20px; color: var(--accent); margin-bottom: 10px; line-height: 1.7; }
h1 .lol { color: var(--sky); }
.tag { font-size: 9px; color: var(--ink-ghost); margin-bottom: 30px; }
h2 { font-size: 13px; color: var(--ink); margin: 40px 0 12px; line-height: 1.8; scroll-margin-top: 20px; }
h3 { font-size: 10px; color: var(--sky); margin: 22px 0 6px; line-height: 1.8; }
p { font-size: 11px; margin-bottom: 12px; }
strong, b { color: var(--good); }
a { color: var(--sky); }
ul, ol { padding-left: 20px; }
li { font-size: 11px; margin-bottom: 8px; }
li::marker { color: var(--ink-ghost); }
.muted { color: var(--ink-ghost); font-size: 9px; }
.caps { color: var(--warn); }

/* boxes */
.tldr, .box {
  border: 2px solid var(--border); background: var(--well); padding: 14px 16px;
  font-size: 9px; line-height: 2.1; color: var(--ink-faint); margin-bottom: 30px;
}
.tldr b { color: var(--good); }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; margin: 14px 0 18px; }
.price-grid div { border: 2px solid var(--border); background: var(--well); padding: 14px 12px; font-size: 8px; line-height: 2; }
.price-grid b { display: block; font-size: 16px; color: var(--accent); margin-bottom: 6px; }
.steps { list-style: none; padding: 0; counter-reset: step; }
.steps li { counter-increment: step; position: relative; padding-left: 40px; margin-bottom: 14px; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 4px; width: 26px; height: 26px;
  background: var(--accent); color: #1a1408; font-size: 10px; line-height: 26px; text-align: center;
}

/* buttons */
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 20px 0 10px; }
.btn {
  display: inline-block; font-size: 10px; padding: 13px 18px; text-decoration: none;
  border: 2px solid var(--border); background: var(--raised); color: var(--ink-dim);
  box-shadow: 4px 4px 0 #00000066;
}
.btn.primary { background: var(--accent); color: #1a1408; border-color: var(--accent-deep); }
.btn:hover { filter: brightness(1.12); }
.btn:active { transform: translate(2px, 2px); box-shadow: none; }

/* sitemap lists */
.map-list { list-style: none; padding: 0; }
.map-list li { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 4px 14px; border-top: 1px solid var(--border); padding: 9px 0; }
.map-list a { text-decoration: none; }
.map-list a:hover { text-decoration: underline; }
.map-list .where { color: var(--ink-ghost); font-size: 8px; }

/* footer link row: every page links to every other page */
.site-foot {
  margin-top: 56px; padding-top: 18px; border-top: 2px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 8px; color: var(--ink-ghost);
}
.site-foot a { color: var(--ink-faint); text-decoration: none; padding: 6px 0; }
.site-foot a:hover { color: var(--accent); text-decoration: underline; }
.site-foot .copy { width: 100%; margin-top: 8px; line-height: 2; }

@media (max-width: 480px) {
  body { padding: 18px 16px 48px; }
  h1 { font-size: 15px; }
  h2 { font-size: 11px; }
  p, li { font-size: 10px; }
  .site-head .logo { font-size: 13px; }
}
