/* The website's own pages (privacy, terms, contact, FAQ, 404) in the game's
   look: its navy backdrop, its text colour, its two self-hosted fonts
   (/fonts.css — Unbounded for titles, Space Grotesk for text) and the brand's
   gradient. The game itself never loads this file. */

:root {
  --bg: #040312;
  --ink: #e6e9ff;
  --quiet: #aeb2d2;
  --line: rgba(174, 178, 210, 0.18);
  --link: #67e8f9;
  --brand: linear-gradient(90deg, #cfe0ff, #a78bfa 55%, #67e8f9);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(1300px 900px at 50% 0%, #0d0a33 0%, #05041c 55%, #030211 100%) fixed;
  color: var(--ink);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: var(--link);
  text-underline-offset: 3px;
}

a:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--link);
  outline-offset: 3px;
  border-radius: 4px;
}

.site-nav,
.site-footer,
.container {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.site-nav__brand {
  font-family: "Unbounded", sans-serif;
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.2em;
  text-decoration: none;
  background: var(--brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav__links {
  display: flex;
  gap: 20px;
}

.site-nav__links a,
.site-footer__links a {
  color: var(--quiet);
  text-decoration: none;
}

.site-nav__links a:hover,
.site-footer__links a:hover,
.site-footer__links a[aria-current="page"] {
  color: var(--ink);
}

.container {
  flex: 1;
  padding-top: 8px;
  padding-bottom: 48px;
}

h1,
h2 {
  font-family: "Unbounded", sans-serif;
  font-weight: 400;
  line-height: 1.25;
}

h1 {
  font-size: clamp(26px, 5vw, 36px);
  margin: 12px 0 8px;
}

h2 {
  font-size: 19px;
  margin: 36px 0 8px;
}

.updated,
.lede {
  color: var(--quiet);
}

.lede {
  font-size: 19px;
}

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #0b0a24;
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq details p {
  margin: 10px 0 0;
}

.center {
  text-align: center;
}

.site-footer {
  padding-top: 20px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line);
  color: var(--quiet);
  font-size: 14px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
}
