/* InsiderPlay — shared styling for the standalone legal pages (privacy, terms).
   These pages live OUTSIDE the React bundle (plain static HTML in public/), so
   they carry their own compact stylesheet. Tokens + fonts mirror "The Drop" so
   the pages read as part of the site. Same-origin, so the site CSP allows it. */

:root {
  --bg: #070707;
  --ink: #0a0a0a;
  --line: #242424;
  --line-soft: #1a1a1a;
  --text: #f5f3ea;
  --muted: #9a988e;
  --amber: #ffc23d;
  --amber-ink: #0a0a0a;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.legal-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 96px;
}

/* Header — wordmark + back link */
.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 28px;
  margin-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.wordmark {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -2px;
  text-decoration: none;
  color: var(--text);
}
.wordmark .play { color: var(--amber); }

.back-link {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 14px;
  transition: border-color 0.15s, color 0.15s;
}
.back-link:hover { color: var(--text); border-color: var(--amber); }

h1 {
  font-family: "Archivo", sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 6vw, 44px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.effective {
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin: 0 0 40px;
  text-transform: uppercase;
}

h2 {
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 44px 0 14px;
  padding-top: 8px;
}

h3 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 26px 0 8px;
}

p, li { color: #e7e4d8; }
.muted, .muted * { color: var(--muted); }

a { color: var(--amber); text-decoration: underline; text-underline-offset: 2px; }
a:hover { text-decoration: none; }

ul { padding-left: 22px; margin: 12px 0; }
li { margin: 7px 0; }

strong { color: var(--text); font-weight: 700; }

/* Callout box for the important disclaimers */
.callout {
  border: 1px solid var(--line);
  border-left: 3px solid var(--amber);
  background: rgba(255, 194, 61, 0.04);
  border-radius: 4px;
  padding: 16px 20px;
  margin: 20px 0;
}
.callout p { margin: 0; }

.legal-foot {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
}
.legal-foot a { color: var(--muted); }
.legal-foot a:hover { color: var(--amber); }
