:root {
  --bg-abyss: #0A0A0F;
  --bg-mystic: #14141C;
  --gold-empire: #D4AF37;
  --gold-soft: #E8C97A;
  --text-primary: #F5F1E6;
  --text-muted: #8C8A94;
  --border: #26242F;
}

* { box-sizing: border-box; }

body {
  background: var(--bg-abyss);
  color: var(--text-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

header img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

header h1 {
  font-size: 22px;
  margin: 0;
  color: var(--gold-soft);
}

h1, h2 {
  color: var(--gold-soft);
}

h2 {
  font-size: 19px;
  margin-top: 36px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
}

p, li {
  color: var(--text-primary);
  font-size: 15px;
}

.muted {
  color: var(--text-muted);
  font-size: 14px;
}

a {
  color: var(--gold-empire);
}

.card {
  background: var(--bg-mystic);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
  margin-bottom: 16px;
}

.card a {
  text-decoration: none;
  font-weight: 600;
}

footer {
  margin-top: 48px;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
}
