*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
:root {
  --gold: #C9952A;
  --gold-dim: rgba(201,149,42,0.15);
  --bg: #080610;
  --surface: #0E0A1A;
  --border: rgba(201,149,42,0.18);
  --text: #E8E0F0;
  --muted: rgba(232,224,240,0.6);
}
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(61,36,102,0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.wrap {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: auto;
  padding: 60px 24px 100px;
}
header {
  text-align: center;
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.header-tag {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
header h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}
header p { font-size: 0.9rem; color: var(--muted); }
.fill {
  background: rgba(201,149,42,0.08);
  border: 1px solid rgba(201,149,42,0.3);
  border-radius: 6px;
  padding: 2px 8px;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.85em;
}
section { margin-bottom: 44px; }
h2 {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-dim);
}
p { font-size: 0.95rem; color: var(--muted); margin-bottom: 12px; }
ul { padding-left: 20px; margin-bottom: 12px; }
li { font-size: 0.95rem; color: var(--muted); margin-bottom: 6px; }
strong { color: var(--text); font-weight: 600; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.alert {
  background: rgba(204,21,0,0.08);
  border: 1px solid rgba(204,21,0,0.25);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 12px;
}
.alert p { color: rgba(232,224,240,0.75); margin: 0; }
footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 30px 20px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}