:root {
  --ink: #e8f6f7;
  --muted: #9bbabd;
  --line: rgba(151, 220, 220, 0.18);
  --teal: #82dfe0;
  --navy: #03131d;
  --amber: #f1b66c;
}

* { box-sizing: border-box; }
html { background: var(--navy); color-scheme: dark; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  background: radial-gradient(circle at 12% 0%, rgba(39, 127, 139, 0.24), transparent 33rem), linear-gradient(160deg, #061c28 0%, #03131d 48%, #020b12 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.home-shell { align-items: center; display: flex; min-height: 100vh; overflow: hidden; padding: 48px 24px; position: relative; }
.home-card { margin: 0 auto; max-width: 780px; position: relative; width: 100%; z-index: 1; }
.ambient { border: 1px solid rgba(130, 223, 224, 0.08); border-radius: 50%; pointer-events: none; position: absolute; }
.ambient-one { height: 520px; left: -260px; top: -80px; width: 520px; }
.ambient-two { border-color: rgba(241, 182, 108, 0.08); bottom: -320px; height: 720px; right: -320px; width: 720px; }
.eyebrow, .policy-kicker { color: var(--teal); font-size: .74rem; font-weight: 700; letter-spacing: .18em; margin: 0 0 18px; text-transform: uppercase; }
h1, h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.03em; }
.home-card h1 { font-size: clamp(3.4rem, 10vw, 6.8rem); line-height: .92; margin: 0; max-width: 700px; }
.home-intro { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.3rem); margin: 28px 0 42px; max-width: 600px; }
.game-row { align-items: center; border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: flex; gap: 22px; margin-bottom: 36px; padding: 25px 0; }
.sonar { align-items: center; border: 1px solid rgba(130, 223, 224, .45); border-radius: 50%; display: flex; height: 52px; justify-content: center; position: relative; width: 52px; }
.sonar::before { border: 1px solid rgba(130, 223, 224, .18); border-radius: 50%; content: ""; inset: 7px; position: absolute; }
.sonar span { background: var(--amber); border-radius: 50%; box-shadow: 0 0 18px rgba(241, 182, 108, .7); height: 5px; width: 5px; }
.game-label { font-size: 1.08rem; font-weight: 700; margin: 0; }
.game-note { color: var(--muted); font-size: .92rem; margin: 2px 0 0; }
.primary-link { align-items: center; background: var(--teal); border-radius: 999px; color: #04202a; display: inline-flex; font-size: .95rem; font-weight: 800; gap: 24px; padding: 14px 22px; text-decoration: none; transition: transform 160ms ease, background 160ms ease; }
.primary-link:hover { background: #b0f0f0; transform: translateY(-2px); }
.policy-links { align-items: flex-start; display: flex; flex-direction: column; gap: 12px; }
.secondary-link { align-items: center; border: 1px solid var(--line); border-radius: 999px; color: var(--ink); display: inline-flex; font-size: .95rem; font-weight: 700; gap: 24px; padding: 13px 21px; text-decoration: none; transition: border-color 160ms ease, transform 160ms ease; }
.secondary-link:hover { border-color: var(--teal); transform: translateY(-2px); }
.primary-link:focus-visible, .secondary-link:focus-visible, .back-link:focus-visible, .policy a:focus-visible, footer a:focus-visible { outline: 3px solid var(--amber); outline-offset: 4px; }
footer { color: #76979a; display: flex; flex-wrap: wrap; font-size: .82rem; gap: 12px 24px; justify-content: space-between; margin-top: 72px; }
footer a, .policy a { text-underline-offset: 4px; }
.policy-shell { margin: 0 auto; max-width: 820px; padding: 48px 24px 96px; }
.back-link { color: var(--muted); display: inline-block; font-size: .9rem; margin-bottom: 64px; text-decoration: none; }
.back-link:hover { color: var(--ink); }
.policy-header { border-bottom: 1px solid var(--line); margin-bottom: 48px; padding-bottom: 42px; }
.policy-header h1 { font-size: clamp(2.8rem, 8vw, 5.4rem); line-height: .98; margin: 0 0 24px; }
.policy-summary { color: #b8ced0; font-size: 1.1rem; margin: 0; max-width: 680px; }
.effective-date { color: var(--amber); font-size: .82rem; font-weight: 700; letter-spacing: .08em; margin-top: 22px; text-transform: uppercase; }
.policy section { border-bottom: 1px solid var(--line); padding: 6px 0 32px; }
.policy section + section { padding-top: 28px; }
.policy section:last-child { border-bottom: 0; }
.policy h2 { font-size: 1.7rem; margin: 0 0 12px; }
.policy p, .policy li { color: #b0c7ca; }
.policy ul { margin: 14px 0 0; padding-left: 22px; }
.policy li + li { margin-top: 8px; }
.policy a { color: var(--teal); }
@media (max-width: 600px) {
  .home-shell { align-items: flex-start; padding-top: 96px; }
  .home-card h1 { font-size: 3.6rem; }
  .primary-link { gap: 14px; justify-content: space-between; width: 100%; }
  .back-link { margin-bottom: 44px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } .primary-link, .secondary-link { transition: none; } }
