
/* Base */
*{box-sizing:border-box}html,body{margin:0;padding:0}
html[dir="rtl"] body{direction:rtl}
:root{
  --bg:#0b0f1a;
  --card:#101625;
  --border:rgba(255,255,255,.08);
  --text:#e6edf3;
  --muted:#9fb0cf;
  --primary:#ffd000;
  --primary-ink:#111;
  --danger:#ff4d4f;
  --info:#1f6feb;
}
body{
  background:var(--bg);
  color:var(--text);
  font-family:"Tajawal","Cairo","Noto Sans Arabic",ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none}
.container{width:min(980px,92vw);margin:0 auto}

/* Header */
.header{position:sticky;top:0;z-index:20;background:rgba(5,8,14,.6);backdrop-filter:blur(8px);border-bottom:1px solid var(--border)}
.header-inner{display:flex;align-items:center;gap:12px;padding:12px 0}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:44px;width:auto;border-radius:12px;display:block}
.brand .name{font-weight:800;letter-spacing:.3px}

/* Hero */
.hero{padding:32px 0 14px;background:
 radial-gradient(600px 280px at 85% -10%,rgba(255,208,0,.12),transparent),
 radial-gradient(800px 360px at 10% -20%,rgba(51,122,255,.10),transparent)}
.title{margin:10px 0 6px;font-size:clamp(22px,3.2vw,34px);font-weight:900;letter-spacing:.2px}
.sub{margin:0;color:var(--muted);font-size:15px}

/* Actions (stacked) */
.actions{display:flex;flex-direction:column;gap:12px;margin:18px 0}
.btn{
  display:flex;align-items:center;justify-content:center;gap:8px;
  padding:14px 16px;border-radius:16px;border:1px solid var(--border);
  background:var(--primary);color:var(--primary-ink);font-weight:900;cursor:pointer;
  transition:transform .15s ease, box-shadow .15s ease, filter .2s;
  box-shadow:0 0 0 0 rgba(0,0,0,0);
}
.btn:hover{transform:translateY(-2px);filter:brightness(1.02);box-shadow:0 8px 24px rgba(0,0,0,.25)}

/* Sections */
.section{padding:24px 0}
.card{
  background:linear-gradient(180deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:16px;padding:18px
}
.card h2{margin:0 0 10px}
.list{display:flex;flex-wrap:wrap;gap:8px}
.badge{display:inline-flex;align-items:center;gap:8px;background:#0f1524;border:1px solid var(--border);border-radius:999px;padding:8px 12px;color:#dbe6ff}

/* Footer */
.footer{margin-top:28px;border-top:1px solid var(--border);padding:16px 0;color:var(--muted);text-align:center}

/* Notices */
.notice{border-radius:14px;padding:10px 12px;margin:10px 0;font-weight:700}
.notice.info{background:rgba(31,111,235,.10);border:1px solid rgba(31,111,235,.35);color:#cfe2ff}
.notice.danger{background:rgba(255,77,79,.10);border:1px solid rgba(255,77,79,.35);color:#ffb3b3}

/* Countdown */
.count-wrap{min-height:52vh;display:grid;place-items:center;text-align:center}
.count{font-size:clamp(40px,7vw,64px);font-weight:900;margin-bottom:8px;letter-spacing:.5px}
