:root {
  --bg: #0f0c16;
  --ink: #f4eef8;
  --muted: rgba(244, 238, 248, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #c9a227;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body {
  font-family: Nunito, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100%;
}
.wrap { max-width: 820px; margin: 0 auto; padding: 32px 20px 64px; }
a { color: var(--accent); }
.back {
  display: inline-block;
  margin-bottom: 24px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
}
.back:hover { color: var(--ink); }
h1 {
  font-family: Marcellus, serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  margin-bottom: 8px;
}
.meta { color: var(--muted); font-size: 0.92rem; margin-bottom: 28px; }
h2 { font-size: 1.15rem; margin: 28px 0 12px; color: #fff; }
h3 { font-family: Marcellus, serif; font-weight: 400; margin-bottom: 12px; }
p, li { color: var(--muted); margin-bottom: 10px; font-size: 0.95rem; }
ul { padding-left: 1.2em; margin-bottom: 12px; }
.box {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.03);
}
.row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 16px;
  font-size: 0.92rem;
}
.row span:first-child { color: rgba(244, 238, 248, 0.45); }
@media (max-width: 640px) {
  .row { grid-template-columns: 1fr; }
}
