:root {
  --bg: #0F1B1E;
  --panel: #16262A;
  --panel-alt: #1C2E32;
  --gold: #C9A24B;
  --burgundy: #8C3B3B;
  --text: #F2EFE9;
  --text-muted: #9FB3B0;
  --border: rgba(201, 162, 75, 0.25);
  --radius: 4px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; }
h2 { font-size: clamp(1.4rem, 3vw, 1.9rem); color: var(--gold); }

p { color: var(--text-muted); margin: 0 0 14px; }

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

.mono {
  font-family: 'IBM Plex Mono', monospace;
  letter-spacing: -0.01em;
}

/* ===== Header ===== */
.site-header {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.lang-switch a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  margin-left: 12px;
  text-transform: uppercase;
}
.lang-switch a.active { color: var(--gold); }

/* ===== Hero ===== */
.hero {
  padding: 72px 0 56px;
  text-align: center;
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
}

/* Signature element: verification ticket stub */
.ticket {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--panel);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 14px 24px;
  margin: 0 auto 36px;
  position: relative;
}
.ticket::before,
.ticket::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
  background: var(--bg);
  border-radius: 50%;
  transform: translateY(-50%);
}
.ticket::before { left: -8px; }
.ticket::after { right: -8px; }
.ticket-stamp {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid var(--gold);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
  flex-shrink: 0;
}
.ticket-text {
  text-align: left;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.ticket-text strong { color: var(--text); display: block; font-size: 0.95rem; }

.cta-button {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-weight: 600;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: transform 0.15s ease;
}
.cta-button:hover { transform: translateY(-1px); }
.cta-note {
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ===== Sections ===== */
.section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

/* ===== Payment table ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}
th, td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
th {
  color: var(--gold);
  font-weight: 600;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
td.mono { color: var(--text); }

/* ===== FAQ ===== */
details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 10px;
}
summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}
details p { margin-top: 10px; margin-bottom: 0; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0 48px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.responsible-gaming {
  background: var(--panel-alt);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 20px;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .cta-button { transition: none; }
}

@media (max-width: 600px) {
  .hero { padding: 48px 0 40px; }
  .ticket { flex-direction: row; text-align: left; }
}
