/* Shared styling for the static content pages (privacy / terms / about / guide / ships /
   changelog). These live in public/ so Cloudflare Pages serves them verbatim — no bundling, no
   build-config change, and they stay readable with JavaScript disabled. */
:root { color-scheme: dark; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #070b12;
  color: #c9d8ea;
  font: 16px/1.75 ui-sans-serif, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial,
    "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  padding: 0 20px 80px;
}
.wrap { max-width: 780px; margin: 0 auto; }
header.site {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding: 22px 0 18px; border-bottom: 1px solid #1c2836; margin-bottom: 34px;
}
header.site img { height: 34px; width: auto; }
header.site a.home { color: #e8f1fb; font-weight: 700; text-decoration: none; font-size: 18px; letter-spacing: .02em; }
nav.site { margin-left: auto; display: flex; gap: 16px; flex-wrap: wrap; }
nav.site a { color: #8fa9c4; text-decoration: none; font-size: 14px; }
nav.site a:hover { color: #cfe3ff; text-decoration: underline; }
h1 { font-size: 30px; line-height: 1.3; color: #eaf2fb; margin-bottom: 8px; }
h2 { font-size: 20px; color: #dce9f7; margin: 34px 0 10px; }
h3 { font-size: 16px; color: #cfe0f2; margin: 22px 0 6px; }
p, li { color: #a9bed4; }
p { margin-bottom: 14px; }
ul, ol { margin: 0 0 16px 22px; }
li { margin-bottom: 6px; }
a { color: #6fb2f0; }
code { background: #121b27; padding: 2px 6px; border-radius: 4px; font-size: 14px; color: #b9d4f0; }
.lede { font-size: 17px; color: #bed2e6; margin-bottom: 26px; }
.updated { font-size: 13px; color: #6d8298; margin-bottom: 30px; }
table { border-collapse: collapse; width: 100%; margin-bottom: 22px; font-size: 14px; }
th, td { border-bottom: 1px solid #1a2533; padding: 8px 10px; text-align: left; }
th { color: #cfe0f2; font-weight: 600; }
td { color: #a3b8cd; }
.scroll { overflow-x: auto; }
footer.site {
  border-top: 1px solid #1c2836; margin-top: 48px; padding-top: 18px;
  font-size: 13px; color: #6d8298;
}
footer.site a { color: #8fa9c4; margin-right: 14px; text-decoration: none; }
footer.site a:hover { text-decoration: underline; }
.cta {
  display: inline-block; background: #1c5f36; color: #dff6e6; padding: 11px 22px;
  border-radius: 7px; text-decoration: none; font-weight: 600; margin: 6px 0 20px;
}
.cta:hover { background: #24763f; }
