/* سياسة الخصوصية — اللعبة | نفس هوية الموقع (أزرق الليل + نيون) */

:root {
  --bg-top: #16264f;
  --bg-mid: #0d1734;
  --bg-bottom: #04091c;
  --surface: #101a38;
  --border: rgba(179, 169, 255, 0.16);
  --cyan: #00e5ff;
  --purple-light: #b3a9ff;
  --gold: #ffc53d;
  --text: #eef1ff;
  --text-dim: rgba(238, 241, 255, 0.72);
  --text-faint: rgba(238, 241, 255, 0.45);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', system-ui, 'Segoe UI', Tahoma, sans-serif;
  background: var(--bg-bottom);
  color: var(--text);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
}

.bg-aura {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 40% at 20% 0%, rgba(108, 92, 231, 0.28), transparent 60%),
    radial-gradient(50% 40% at 90% 5%, rgba(0, 229, 255, 0.14), transparent 60%),
    linear-gradient(180deg, var(--bg-top), var(--bg-mid) 45%, var(--bg-bottom));
}

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

/* ===== NAV ===== */
.nav {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(16px, 5vw, 40px);
  background: rgba(4, 9, 28, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 900; font-size: 20px; }
.brand-mark { font-size: 24px; }
.brand-name { background: linear-gradient(90deg, var(--cyan), var(--purple-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav-back { color: var(--text-dim); font-weight: 700; font-size: 15px; }
.nav-back:hover { color: var(--cyan); text-decoration: none; }

/* ===== DOCUMENT ===== */
.doc {
  max-width: 70ch;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px) clamp(18px, 5vw, 28px) 60px;
}
.eyebrow {
  display: inline-block;
  background: rgba(179, 169, 255, 0.12);
  border: 1px solid var(--border);
  color: var(--purple-light);
  padding: 5px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .5px;
}
.doc h1 { font-size: clamp(26px, 5vw, 38px); font-weight: 900; margin: 16px 0 6px; line-height: 1.25; }
.updated { color: var(--text-faint); font-size: 14px; margin-bottom: 16px; }
.lead { color: var(--text-dim); font-size: 18px; margin-bottom: 10px; }

.doc section { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--border); }
.doc h2 { font-size: 21px; font-weight: 800; margin-bottom: 10px; color: var(--gold); }
.doc h3 { font-size: 18px; font-weight: 800; margin: 22px 0 8px; color: var(--gold); }
.doc p { color: var(--text); margin-bottom: 10px; }
.doc ul { padding-inline-start: 1.4em; margin: 8px 0 12px; }
.doc li { color: var(--text-dim); margin: 6px 0; }
strong { color: #fff; font-weight: 700; }

.contact {
  display: flex; flex-wrap: wrap; gap: 12px 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px 20px; margin-top: 10px;
}
.contact a { font-weight: 700; font-size: 16px; }

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

.en { direction: ltr; text-align: left; }
.en h2 { font-size: 22px; }

/* ===== FOOTER ===== */
.footer {
  text-align: center; color: var(--text-faint); font-size: 14px;
  padding: 30px 20px 46px; border-top: 1px solid var(--border);
  max-width: 70ch; margin: 0 auto;
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
