/* ===== سِيرة — صفحات المعلومات (من نحن، الشروط، الخصوصية، خارطة الطريق) ===== */
:root {
  --bg: #0d1b2a; --bg2: #10243a;
  --gold: #d4af7a; --gold-bright: #f0d9a8;
  --green-light: #3fae8f;
  --text: #eef5f1; --text-dim: #a7c3b7;
  --card: rgba(255,255,255,.05); --card-border: rgba(212,175,122,.25);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Cairo', system-ui, sans-serif;
  background: radial-gradient(ellipse at 50% 0%, var(--bg2), var(--bg) 60%);
  color: var(--text); min-height: 100vh; line-height: 1.9;
}
.stars {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    radial-gradient(1.5px 1.5px at 18% 12%, rgba(240,217,168,.7), transparent),
    radial-gradient(1px 1px at 62% 8%, rgba(240,217,168,.5), transparent),
    radial-gradient(1.5px 1.5px at 82% 16%, rgba(240,217,168,.6), transparent),
    radial-gradient(1px 1px at 40% 20%, rgba(240,217,168,.4), transparent);
  animation: tw 6s ease-in-out infinite alternate;
}
@keyframes tw { from { opacity: .55; } to { opacity: 1; } }

.info-top { position: fixed; top: 16px; right: 16px; z-index: 50; }
.info-home {
  font-weight: 700; font-size: .9rem; color: var(--gold-bright); text-decoration: none;
  background: rgba(13,27,42,.7); border: 1px solid var(--card-border); border-radius: 50px;
  padding: 9px 18px; backdrop-filter: blur(8px); transition: border-color .2s;
}
.info-home:hover { border-color: var(--gold); }

.info-wrap { max-width: 780px; margin: 0 auto; padding: 84px 20px 40px; }
.info-head { text-align: center; margin-bottom: 30px; }
.info-orn { font-size: 2.2rem; color: var(--gold); opacity: .85; }
.info-title {
  font-family: 'Amiri', serif; font-weight: 700; color: var(--gold-bright);
  font-size: clamp(2rem, 7vw, 3rem); margin: 6px 0 4px;
  text-shadow: 0 4px 30px rgba(212,175,122,.3);
}
.info-sub { color: var(--text-dim); font-size: .95rem; }
.info-updated { color: var(--text-dim); font-size: .8rem; margin-top: 8px; opacity: .8; }

.info-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: 18px;
  padding: 26px 24px; margin-bottom: 18px; backdrop-filter: blur(6px);
}
.info-card h2 {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Amiri', serif; font-size: 1.35rem; color: var(--gold-bright);
  padding-bottom: 10px; margin-bottom: 12px;
  border-bottom: 1px solid var(--card-border);
}
.info-ic {
  display: grid; place-items: center; width: 34px; height: 34px; font-size: 1rem;
  border-radius: 9px; background: rgba(212,175,122,.14); border: 1px solid var(--card-border);
}
.info-card p { margin-bottom: 12px; text-align: justify; text-justify: inter-word; }
.info-card p:last-child { margin-bottom: 0; }
.info-card ul, .info-card ol { padding-right: 22px; margin-bottom: 12px; }
.info-card li { margin-bottom: 8px; text-align: justify; }
.info-card a { color: var(--gold-bright); }
.info-note {
  background: rgba(212,175,122,.08); border: 1px solid var(--card-border);
  border-radius: 12px; padding: 12px 16px; font-size: .9rem; color: var(--text-dim);
}

/* خارطة الطريق */
.rm { list-style: none; padding: 0; }
.rm li { position: relative; padding: 0 34px 22px 0; }
.rm li::before {
  content: ""; position: absolute; right: 10px; top: 8px; bottom: -4px; width: 2px;
  background: linear-gradient(var(--gold), transparent);
  opacity: .35;
}
.rm li:last-child::before { display: none; }
.rm li::after {
  content: ""; position: absolute; right: 5px; top: 8px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--bg); border: 2px solid var(--gold);
}
.rm li.done::after { background: var(--green-light); border-color: var(--green-light); }
.rm li.now::after { background: var(--gold-bright); box-shadow: 0 0 12px rgba(240,217,168,.8); }
.rm b { display: block; color: var(--gold-bright); }
.rm span { color: var(--text-dim); font-size: .92rem; }
.rm .tag {
  display: inline-block; font-size: .72rem; font-weight: 700; border-radius: 50px;
  padding: 2px 10px; margin-right: 6px; vertical-align: 2px;
}
.rm .tag.done { color: #0d2b22; background: var(--green-light); }
.rm .tag.now { color: #2b2005; background: var(--gold-bright); }
.rm .tag.next { color: var(--text-dim); background: rgba(255,255,255,.08); }

/* الفوتر */
.info-foot { text-align: center; padding: 26px 20px 34px; color: var(--text-dim); font-size: .85rem; }
.foot-menu { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 10px; margin-bottom: 10px; }
.foot-menu a { color: var(--gold-bright); text-decoration: none; font-weight: 600; }
.foot-menu a:hover { text-decoration: underline; }
.foot-menu span { color: var(--card-border); }
