:root {
  --bg: #0f0a1e;
  --card: #1a1432;
  --gold: #f5c842;
  --gold-dim: rgba(245, 200, 66, 0.15);
  --text: #e8e0f0;
  --text-secondary: #9b8fb8;
  --accent: #7c4dff;
  --border: rgba(245, 200, 66, 0.12);
  --radius: 16px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

header {
  text-align: center;
  margin-bottom: 48px;
}

header .logo {
  font-family: 'Cinzel', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 3px;
  text-decoration: none;
}

header .logo span { font-size: 32px; margin-right: 8px; }

header h1 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-top: 24px;
}

header p.subtitle {
  color: var(--text-secondary);
  font-size: 15px;
  margin-top: 8px;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
}

h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

h2 .icon { font-size: 24px; }

h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin: 20px 0 8px;
}

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

p + p { margin-top: 12px; }

ul, ol {
  padding-left: 20px;
  margin: 12px 0;
}

li { margin-bottom: 8px; }

a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-item summary {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  color: var(--gold);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item .answer {
  margin-top: 12px;
  padding-left: 4px;
}

.contact-box {
  background: var(--gold-dim);
  border-radius: 12px;
  padding: 20px 24px;
  margin-top: 16px;
  text-align: center;
}

.contact-box a {
  font-weight: 700;
  font-size: 16px;
}

footer {
  text-align: center;
  padding: 32px 0;
  color: var(--text-secondary);
  font-size: 13px;
}

footer a { color: var(--gold); margin: 0 12px; }

@media (max-width: 600px) {
  .container { padding: 24px 16px 60px; }
  .card { padding: 20px; }
  header h1 { font-size: 24px; }
}
