:root {
  --bg: #101127;
  --violet: #6c4bd6;
  --gold: #e7c66b;
  --text: #f3f0ff;
  --muted: #b9b3d6;
  --card: rgba(255, 255, 255, 0.06);
  --border: rgba(231, 198, 107, 0.25);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 70% -10%, #2a1f63 0%, transparent 60%),
    radial-gradient(900px 500px at 10% 10%, #241a55 0%, transparent 55%),
    var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 760px; margin: 0 auto; padding: 0 22px; }
h1, h2, h3, .serif { font-family: "Cormorant Garamond", Georgia, serif; font-weight: 600; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
header.site {
  display: flex; align-items: center; justify-content: space-between; padding: 22px 0;
  max-width: 760px; margin: 0 auto; padding-left: 22px; padding-right: 22px;
}
.brand { display: flex; align-items: center; gap: 10px; font-size: 21px; color: var(--text); }
.brand img { width: 32px; height: 32px; }
nav.site a { color: var(--muted); margin-left: 18px; font-size: 15px; }
.crumbs { color: var(--muted); font-size: 13px; margin: 18px 0 8px; }
article h1, .blog-title { font-size: clamp(32px, 6vw, 48px); line-height: 1.1; margin: 6px 0 10px; }
.meta { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
article h2 { font-size: 27px; margin: 34px 0 10px; color: var(--gold); }
article h3 { font-size: 21px; margin: 22px 0 6px; }
article p, article li { color: #e7e3fb; font-size: 17px; }
article ul, article ol { margin: 10px 0 10px 22px; }
article li { margin-bottom: 6px; }
.lead { font-size: 19px; color: var(--muted); margin-bottom: 8px; }
.cta-box {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 24px; margin: 34px 0; text-align: center;
}
.btn {
  display: inline-block; background: var(--gold); color: #2a1d04; font-weight: 600;
  padding: 12px 24px; border-radius: 999px; margin-top: 10px;
}
.btn:hover { text-decoration: none; opacity: .92; }
.post-list { list-style: none; margin: 24px 0; padding: 0; display: grid; gap: 16px; }
.post-list li {
  background: var(--card); border: 1px solid rgba(255,255,255,.08); border-radius: 16px; padding: 22px 24px;
}
.post-list h2 { font-size: 24px; margin: 0 0 6px; color: var(--text); }
.post-list p { color: var(--muted); font-size: 15px; }
.arcana { display: grid; gap: 4px; }
.arcana .row { display: grid; grid-template-columns: 42px 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.arcana .num { color: var(--gold); font-weight: 600; }
.arcana .name { font-weight: 600; }
.arcana .mean { color: var(--muted); display: block; font-size: 15px; }
footer.site { text-align: center; color: var(--muted); font-size: 13px; padding: 40px 0 56px; border-top: 1px solid rgba(255,255,255,.07); margin-top: 40px; }
.related { margin-top: 34px; }
.related a { display: block; margin-top: 6px; }
