/* Shared styling for the static, crawlable pages (privacy, terms, about, ...).
   Kept as a plain stylesheet rather than inlined per page so the six pages
   cannot drift apart. Colours match the Flutter app's dark theme
   (background #0E141B, accent #F4C430) so the pages do not look bolted on. */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0d1117;
  color: #c9d1d9;
  line-height: 1.7;
  padding: 0 16px 64px;
}

a { color: #F4C430; }
a:hover { color: #ffd968; }

.container { max-width: 820px; margin: 0 auto; }

/* ---- header / nav ---- */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}

.brand img { width: 32px; height: 32px; border-radius: 8px; }

.site-nav { display: flex; flex-wrap: wrap; gap: 18px; font-size: 14px; }
.site-nav a { color: rgba(255, 255, 255, 0.65); text-decoration: none; }
.site-nav a:hover { color: #F4C430; }

/* ---- content card ---- */
.card {
  background: #131b24;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 40px 36px;
  margin-top: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

h1 { font-size: 30px; font-weight: 900; color: #58a6ff; margin-bottom: 6px; }
h2 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin: 32px 0 10px;
  padding-top: 4px;
}
h3 { font-size: 16px; font-weight: 700; color: #fff; margin: 20px 0 8px; }

.meta { color: rgba(255, 255, 255, 0.4); font-size: 14px; margin-bottom: 8px; }
.lead { font-size: 17px; color: rgba(255, 255, 255, 0.8); margin-top: 16px; }

p { margin: 10px 0; }
ul, ol { margin: 10px 0 10px 22px; }
li { margin: 6px 0; }
strong { color: #fff; }

/* ---- callouts ---- */
.note, .warn {
  border-radius: 12px;
  padding: 18px 20px;
  margin: 24px 0;
}
.note { background: rgba(88, 166, 255, 0.08); border: 1px solid rgba(88, 166, 255, 0.25); }
.warn { background: rgba(248, 81, 73, 0.08); border: 1px solid rgba(248, 81, 73, 0.35); }
.warn h2, .warn h3 { color: #ff9a94; margin-top: 0; }

/* ---- contact / detail rows ---- */
.rows { margin-top: 18px; }
.row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.row:last-child { border-bottom: 0; }
.row .label { min-width: 160px; color: rgba(255, 255, 255, 0.5); font-size: 14px; }

/* ---- footer ---- */
.site-footer {
  max-width: 820px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 14px; }
.site-footer a { color: rgba(255, 255, 255, 0.6); text-decoration: none; }
.site-footer a:hover { color: #F4C430; }

@media (max-width: 600px) {
  .card { padding: 28px 22px; }
  h1 { font-size: 25px; }
  .row .label { min-width: 100%; }
}
