
:root{
  --bg0:#170f1c;
  --bg1:#2a1636;
  --bg2:#5b1b63;
  --accent:#d21b77;
  --ink:#f4eef6;
  --muted:rgba(244,238,246,.72);
  --panel:rgba(255,255,255,.06);
  --line:rgba(255,255,255,.18);
  --shadow:0 14px 40px rgba(0,0,0,.55);
  --radius:18px;
  --max:1200px;
}
*{box-sizing:border-box}
body{
  margin:0;
  color:var(--ink);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  line-height:1.45;
  background:
    radial-gradient(1100px 700px at 78% 15%, rgba(210,27,119,.35), rgba(0,0,0,0) 60%),
    radial-gradient(900px 600px at 15% 35%, rgba(91,27,99,.40), rgba(0,0,0,0) 62%),
    linear-gradient(135deg, var(--bg0), var(--bg1) 45%, var(--bg2));
}
a{color:inherit;text-decoration:none}
a:focus{outline:2px solid var(--accent);outline-offset:3px;border-radius:10px}
.wrap{max-width:var(--max);margin:0 auto;padding:24px 16px 44px}
.topbar{display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;margin-bottom:18px}
.brand{display:flex;flex-direction:column;gap:2px}
.brand .title{font-size:22px;font-weight:850;letter-spacing:.3px}
.brand .sub{font-size:12px;color:var(--muted)}
.nav{display:flex;gap:10px;flex-wrap:wrap}
.nav a{padding:10px 16px;border-radius:999px;border:1px solid var(--line);font-weight:750;background:rgba(255,255,255,.04);transition:background .15s ease, transform .08s ease, border-color .15s ease}
.nav a:hover{background:rgba(210,27,119,.14);border-color:rgba(210,27,119,.45)}
.nav a:active{transform:translateY(1px)}
.nav a.active{background:rgba(210,27,119,.22);border-color:rgba(210,27,119,.55)}
.headerpanel{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);padding:18px;margin-bottom:16px}
.headerpanel h1{margin:0 0 6px;font-size:clamp(22px,2.8vw,34px);line-height:1.12}
.headerpanel p{margin:0;color:var(--muted);font-size:14px}

/* Pager on detail pages */
.siteFooter{margin-top:18px}
.siteFooter .pager{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.siteFooter .pager a{
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.10);
  color:var(--text);
  text-decoration:none;
  box-shadow:var(--shadow);
  transition:background .15s ease, transform .08s ease, border-color .15s ease;
}
.siteFooter .pager a:hover{background:rgba(210,27,119,.14);border-color:rgba(210,27,119,.45)}
.siteFooter .pager a:active{transform:translateY(1px)}
.siteFooter .pager a.home{font-weight:600}
.siteFooter .pager .disabled{
  opacity:.45;
  padding:10px 16px;
  border-radius:999px;
  border:1px solid var(--line);
}
