/* Shared styles for all game privacy policy pages */
:root {
  --bg:        #0a0a0f;
  --bg-soft:   #0e0e15;
  --surface:   #12121a;
  --surface2:  #1a1a28;
  --border:    rgba(255,255,255,0.07);
  --border-2:  rgba(255,255,255,0.12);
  --text:      #e8e8f0;
  --muted:     #8a8aab;
  --dim:       #6b6b8a;
  --accent:    #7c5cbf;
  --accent-2:  #a78bfa;
  --max:       760px;
  --pad:       clamp(20px, 4vw, 40px);
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, "Helvetica Neue", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

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

/* Back nav */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 18px var(--pad);
  background: rgba(10,10,15,0.72);
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 12px;
}
.brand-text { font-weight: 700; }
.nav-spacer { flex: 1; }
.nav-back { color: var(--muted); font-size: 13px; }
.nav-back:hover { color: var(--text); text-decoration: none; }

/* Document */
main {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 72px) var(--pad) 80px;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 5px 12px;
  border: 1px solid rgba(124,92,191,0.35);
  border-radius: 100px;
  background: rgba(124,92,191,0.08);
  margin-bottom: 24px;
}

h1 {
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: 0.12em;
}

.updated {
  color: var(--dim);
  font-size: 13px;
  margin-bottom: 36px;
}

h2 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 36px 0 12px;
  letter-spacing: -0.01em;
}

p, li {
  color: #c8c8dc;
  font-size: 15px;
  margin-bottom: 14px;
}

ul, ol { padding-left: 22px; margin-bottom: 14px; }
li { margin-bottom: 6px; }

.summary {
  background: var(--surface);
  border: 1px solid rgba(124,92,191,0.3);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 16px 20px;
  margin: 24px 0 32px;
}
.summary strong { color: #fff; }

strong { color: #fff; font-weight: 600; }

hr {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

/* Footer */
.doc-footer {
  border-top: 1px solid var(--border);
  padding: 24px var(--pad);
  text-align: center;
  color: var(--dim);
  font-size: 12px;
}
