/* The app's own palette, from RideAccess/Theme.swift — warm paper rather than
   theme-park colour, an ink with a blue cast, and the deep teal as accent. */
:root {
  --ink: #11242E;
  --slate: #4A6472;
  --faint: #74858F;
  --hairline: #E0D9CD;
  --surface: #FFFFFF;
  --canvas: #F6F2EA;
  --accent: #0E6E7C;
  --stop: #A3282A;
  --caution: #8A5A12;
  --clear: #1F6B3E;
}
@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ECF2F4;
    --slate: #9CB0B9;
    --faint: #6C7F88;
    --hairline: #2A3942;
    --surface: #16242B;
    --canvas: #0C161B;
    --accent: #57C3D1;
    --stop: #FF8F8B;
    --caution: #E0AC5C;
    --clear: #6FCB93;
  }
}

* { box-sizing: border-box; }
body {
  margin: 0;
  padding: 0 20px 80px;
  background: var(--canvas);
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  -webkit-text-size-adjust: 100%;
}
main { max-width: 680px; margin: 0 auto; }

header { padding: 56px 0 8px; }
h1 { font-size: 2rem; line-height: 1.15; margin: 0 0 6px; letter-spacing: -0.02em; }
.tagline { color: var(--slate); margin: 0 0 8px; font-size: 1.05rem; }

h2 {
  font-size: 1.15rem; margin: 40px 0 10px; letter-spacing: -0.01em;
  padding-top: 20px; border-top: 1px solid var(--hairline);
}
h3 { font-size: 1rem; margin: 24px 0 6px; }
p, li { color: var(--ink); }
p { margin: 0 0 14px; }
ul { padding-left: 22px; margin: 0 0 14px; }
li { margin-bottom: 7px; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }

.card {
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 18px 20px;
  margin: 18px 0;
}
.card p:last-child, .card ul:last-child, .card table:last-child { margin-bottom: 0; }

.note { color: var(--slate); font-size: 0.92rem; }
.warn { color: var(--stop); font-weight: 600; }

/* Coverage is the single most important thing on this page: somebody whose
   park is missing has to find that out here, not after downloading. */
table { border-collapse: collapse; width: 100%; margin: 0 0 14px; font-size: 0.95rem; }
th, td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--hairline); }
th { font-size: 0.82rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--slate); font-weight: 600; }
td.num { text-align: right; font-variant-numeric: tabular-nums; }
tr:last-child td { border-bottom: none; }

.missing { border-color: var(--stop); }
.missing h3 { color: var(--stop); }

footer {
  margin-top: 48px; padding-top: 20px; border-top: 1px solid var(--hairline);
  color: var(--slate); font-size: 0.9rem;
}
footer a { margin-right: 16px; }
