/* الصفحات القانونية — تنسيق مستقل عن الصفحة الرئيسية وبلا أي اعتماد على
   Firebase أو JavaScript: يجب أن تُقرأ هذه الصفحات حتى لو تعطّل كل شيء آخر،
   ولأن متجر Google Play ولوحة AdSense يزورانها آلياً. */

:root {
  --bg: #040a18;
  --card: #0c1730;
  --line: #1b2f57;
  --text: #e8edf7;
  --muted: #98a7c4;
  --accent: #2e7dff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Sans Arabic", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.85;
}

.wrap { max-width: 820px; margin: 0 auto; padding: 0 20px; }

header.legal-top {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  margin-bottom: 28px;
}
header.legal-top .wrap { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.legal-brand { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; font-weight: 700; }
.legal-brand img { width: 34px; height: 34px; }
.legal-nav { margin-inline-start: auto; display: flex; gap: 14px; flex-wrap: wrap; font-size: 14px; }
.legal-nav a { color: var(--muted); text-decoration: none; }
.legal-nav a:hover, .legal-nav a[aria-current] { color: var(--text); }

h1 { font-size: 28px; line-height: 1.4; margin: 0 0 6px; }
h2 { font-size: 20px; margin: 34px 0 10px; }
h3 { font-size: 17px; margin: 22px 0 8px; }
p, li { color: #d5deef; }
.updated { color: var(--muted); font-size: 14px; margin: 0 0 28px; }
ul, ol { padding-inline-start: 22px; }
li { margin-bottom: 7px; }
a { color: var(--accent); }
code { background: var(--card); padding: 2px 6px; border-radius: 5px; font-size: 14px; }

.box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
  margin: 20px 0;
}
.box.warn { border-color: #b4791f; }
.box p:first-child { margin-top: 0; }
.box p:last-child { margin-bottom: 0; }

/* تبديل اللغة: النصّان في الصفحة نفسها، فلا يضيع الرابط ولا يتعطّل الأرشفة */
.lang-switch { display: flex; gap: 8px; margin-bottom: 24px; }
.lang-switch button {
  font: inherit; font-size: 14px; cursor: pointer;
  background: transparent; color: var(--muted);
  border: 1px solid var(--line); border-radius: 10px; padding: 7px 16px;
}
.lang-switch button[aria-pressed="true"] { background: var(--accent); border-color: var(--accent); color: #fff; }

[lang="en"] { direction: ltr; text-align: left; }
[hidden] { display: none !important; }

footer.legal-foot {
  border-top: 1px solid var(--line);
  margin-top: 48px;
  padding: 24px 0 48px;
  color: var(--muted);
  font-size: 14px;
}
footer.legal-foot nav { display: flex; gap: 8px 18px; flex-wrap: wrap; margin-bottom: 12px; }
footer.legal-foot a { color: var(--muted); text-decoration: none; }

table.legal { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
table.legal th, table.legal td { border: 1px solid var(--line); padding: 9px 12px; text-align: start; vertical-align: top; }
table.legal th { background: var(--card); font-weight: 600; }

@media (max-width: 560px) {
  body { font-size: 15px; }
  h1 { font-size: 23px; }
  table.legal { font-size: 13.5px; }
  table.legal th, table.legal td { padding: 7px 8px; }
}
