:root{
  /* Slightly darker "light" base */
  --bg:#eef3fb;
  --surface:#ffffff;
  --surface-2:#e9f0fb;
  --text:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,.12);
  --shadow:0 16px 44px rgba(15,23,42,.14);
  --radius:18px;

  /* Light Plinko palette (pastel + neon accents) */
  --teal:#1ee3c2;
  --teal-2:#0fb9a1;
  --pink:#ff3b9b;
  --pink-2:#ff6bb8;
  --pink-deep:#ff1f87;
  --amber:#ffcc66;
  --blue:#6aa8ff;

  --focus:rgba(255, 59, 155, .32);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans Arabic", "Noto Naskh Arabic", sans-serif;
  line-height:1.7;
  color:var(--text);
  /* Smooth full-page gradient (no hard "blobs") */
  background:
    linear-gradient(180deg,
      rgba(255, 59, 155, .10) 0%,
      rgba(255, 204, 102, .08) 28%,
      rgba(30, 227, 194, .06) 58%,
      rgba(238, 243, 251, 1) 100%
    ),
    radial-gradient(1400px 900px at 20% 0%, rgba(255, 59, 155, .10), transparent 70%),
    radial-gradient(1400px 900px at 100% 10%, rgba(30, 227, 194, .08), transparent 72%),
    var(--bg);
  background-attachment: fixed;
}

a{color:inherit}
img{max-width:100%;height:auto;display:block}

.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.container{
  width:min(1100px, calc(100% - 32px));
  margin-inline:auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:20;
  backdrop-filter:saturate(160%) blur(10px);
  background:rgba(238,243,251,.78);
  border-bottom:1px solid var(--line);
}
.topbar__inner{
  display:flex;
  gap:18px;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  min-width:44px;
}
.brand__logo{
    width: 138px;
    height: 38px;
  border-radius:12px;
  box-shadow:0 10px 26px rgba(255,79,163,.15);
}

.nav{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  justify-content:flex-start;
}
.nav a{
  text-decoration:none;
  padding:10px 12px;
  border-radius:999px;
  color:var(--muted);
  border:1px solid transparent;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
}
.nav a:hover{
  background:rgba(255,59,155,.10);
  border-color:rgba(255,59,155,.24);
  color:var(--text);
  transform:translateY(-1px);
}
.nav a[aria-current="page"]{
  background:linear-gradient(90deg, rgba(255,59,155,.20), rgba(30,227,194,.10));
  border-color:rgba(255,59,155,.30);
  color:var(--text);
}

main{padding-bottom:26px}

.hero{
  padding:32px 0 18px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap:18px;
  align-items:stretch;
}
.hero__main{
  position:relative;
  overflow:hidden;
}
.hero__main::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:420px;
  height:420px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,59,155,.34), transparent 56%),
    radial-gradient(circle at 70% 70%, rgba(30,227,194,.18), transparent 56%),
    radial-gradient(circle at 55% 30%, rgba(255,204,102,.16), transparent 58%);
  filter:blur(2px);
  pointer-events:none;
}

.card{
  background:linear-gradient(180deg, rgba(255,255,255,.90), rgba(244,248,255,.82));
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}

.hero .card{padding:22px}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  font-size:13px;
  letter-spacing:.2px;
  color:var(--muted);
  margin-bottom:10px;
}
.dot{
  width:10px;height:10px;border-radius:99px;
  background:linear-gradient(90deg, var(--pink-deep), var(--pink-2));
  box-shadow:0 0 0 6px rgba(255,59,155,.14);
}
h1{margin:0 0 10px;font-size:34px;line-height:1.18}
h2{margin:0 0 10px;font-size:22px;line-height:1.25}
h3{margin:0 0 10px;font-size:18px;line-height:1.25}
p{margin:0 0 12px;color:var(--muted)}

.cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:12px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  text-decoration:none;
  font-weight:700;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
}
.btn:focus{outline:none; box-shadow:0 0 0 4px var(--focus)}
.btn:hover{transform:translateY(-1px)}
.btn--primary{
  border-color:rgba(255,59,155,.34);
  background:linear-gradient(90deg, rgba(255,59,155,.24), rgba(255,204,102,.10));
}
.btn--primary:hover{
  border-color:rgba(255,31,135,.38);
  box-shadow:0 14px 36px rgba(255,59,155,.18);
}
.btn--ghost{
  background:rgba(255,255,255,.65);
}

.stats{display:grid;gap:10px}
.stat{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:12px 14px;
  border-radius:14px;
  border:1px dashed rgba(15,23,42,.16);
  background:rgba(233,240,251,.82);
}
.stat b{font-size:13px}
.stat span{color:var(--muted); font-weight:600}

.section{padding:18px 0}
.grid-2{display:grid; grid-template-columns:1fr 1fr; gap:16px}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.85);
}
.table-wrap{
  width:100%;
  overflow-x:auto;
  -webkit-overflow-scrolling:touch;
}
.table th,.table td{
  padding:12px 14px;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.table tr:last-child td{border-bottom:none}
.table thead th{
  font-weight:800;
  color:var(--text);
  background:linear-gradient(90deg, rgba(30,227,194,.10), rgba(255,79,163,.08));
}
.table td:first-child{color:var(--text); font-weight:800}

ul,ol{margin:0 0 12px; color:var(--muted)}
li{margin:6px 0}

.note{
  border:1px solid rgba(255,204,102,.42);
  background:rgba(255,204,102,.14);
  border-radius:16px;
  padding:14px;
  color:rgba(15,23,42,.86);
}

footer{
  margin-top:26px;
  border-top:1px solid var(--line);
  background:rgba(238,243,251,.88);
}
.footer__inner{
  display:flex;
  gap:12px;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
  color:var(--muted);
  flex-wrap:wrap;
}
.footer__links{display:flex; gap:12px; flex-wrap:wrap}
.footer__links a{color:var(--muted); text-decoration:none}
.footer__links a:hover{color:var(--text); text-decoration:underline}

@media (max-width: 900px){
  .hero__grid{grid-template-columns:1fr}
  html, body{overflow-x:hidden}
  .table{min-width:760px}
}

