/* Prospectour web — shared styles. Palette mirrors the game's UITheme.asset. */

@font-face {
  font-family: 'Staatliches';
  src: url('/assets/staatliches.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('/assets/nunitosans.woff2') format('woff2');
  font-weight: 200 1000;
  font-display: swap;
}

:root {
  --bg: #0b2140;
  --bg-deep: #071527;
  --surface: #163459;
  --surface-2: #1d4270;
  --line: #2a4d7e;
  --text: #f2f8ff;
  --text-2: #aac7e9;
  --gold: #ffc23d;
  --gold-light: #ffd978;
  --gold-deep: #b57812;
  --accent: #2e8be6;
  --green: #79d85c;
  --radius: 18px;
  --display: 'Staatliches', 'Arial Narrow', sans-serif;
  --body: 'Nunito Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); }

.wrap { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ---- header / footer ---- */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text);
}
.brand img { width: 40px; height: 40px; border-radius: 10px; }
.brand span {
  font-family: var(--display);
  font-size: 1.55rem; letter-spacing: 0.04em; color: var(--gold);
}
.site-header nav { display: flex; gap: 22px; }
.site-header nav a {
  color: var(--text-2); text-decoration: none; font-weight: 700; font-size: 0.95rem;
}
.site-header nav a:hover { color: var(--text); }

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 80px; padding: 36px 0 48px;
  color: var(--text-2); font-size: 0.9rem;
}
.site-footer .cols {
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center;
}
.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.site-footer a { color: var(--text-2); text-decoration: none; }
.site-footer a:hover { color: var(--text); }
.site-footer .fineprint { margin-top: 18px; font-size: 0.8rem; color: #6d89ad; }

/* ---- buttons & badges ---- */
.btn {
  display: inline-block; text-decoration: none; text-align: center;
  font-family: var(--body); font-weight: 800; font-size: 1.05rem;
  color: #3d2800; background: var(--gold);
  padding: 14px 30px; border-radius: 999px;
  box-shadow: 0 5px 0 var(--gold-deep);
  transition: transform 0.06s ease, box-shadow 0.06s ease;
}
.btn:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--gold-deep); }
.btn.secondary {
  color: var(--text); background: var(--surface-2);
  box-shadow: 0 5px 0 #10294a;
}

.store-badges { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.store-badges img { height: 52px; width: auto; }

/* ---- legal / document pages ---- */
.doc { max-width: 760px; margin: 0 auto; padding: 24px 24px 60px; }
.doc h1 {
  font-family: var(--display); color: var(--gold);
  font-size: 2.4rem; letter-spacing: 0.03em; line-height: 1.15; margin: 24px 0 6px;
}
.doc .meta { color: var(--text-2); font-size: 0.9rem; margin-bottom: 26px; }
.doc h2 {
  font-family: var(--display); color: var(--gold-light); font-weight: 400;
  font-size: 1.45rem; letter-spacing: 0.03em; margin: 38px 0 10px;
}
.doc p, .doc li { color: #d7e6f8; font-size: 1rem; }
.doc p { margin: 12px 0; }
.doc ul, .doc ol { margin: 12px 0 12px 24px; }
.doc li { margin: 6px 0; }
.doc strong { color: var(--text); }
.doc code {
  background: var(--surface); border-radius: 6px; padding: 1px 6px;
  font-size: 0.9em; color: var(--gold-light);
}
.doc .tablewrap { overflow-x: auto; margin: 16px 0; border-radius: 12px; border: 1px solid var(--line); }
.doc table { border-collapse: collapse; width: 100%; min-width: 560px; font-size: 0.92rem; }
.doc th, .doc td { text-align: left; padding: 10px 14px; vertical-align: top; border-bottom: 1px solid var(--line); }
.doc th { background: var(--surface); color: var(--gold-light); font-weight: 800; }
.doc tr:last-child td { border-bottom: none; }
.doc td { color: #d7e6f8; }

@media (max-width: 640px) {
  .site-header nav { gap: 14px; }
  .doc h1 { font-size: 1.9rem; }
}
