/* ── TOKENS ── */
:root {
  --gold: #e8b84b;
  --gold-dim: #a07820;
  --bg: #0d0d12;
  --bg2: #14141c;
  --bg3: #1c1c28;
  --surface: #1f1f2e;
  --border: rgba(232,184,75,.18);
  --text: #e8e6f0;
  --muted: #8a8aab;
  --green: #3ecf6e;
  --red: #e85a5a;
  --radius: 12px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
}

/* UTILITY */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(232,184,75,.12); border: 1px solid var(--border);
  color: var(--gold); font-size: 12px; font-weight: 600;
  letter-spacing: .06em; padding: 4px 10px; border-radius: 30px;
  text-transform: uppercase;
}
.chip {
  display: inline-block;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); font-size: 12px; padding: 3px 10px; border-radius: 20px;
}
.text-gold { color: var(--gold); }
.font-semibold { font-weight: 600; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mt-6 { margin-top: 24px; }
.mb-6 { margin-bottom: 24px; }
.mt-8 { margin-top: 32px; }

/* ── HEADER ── */
header {
  border-bottom: 1px solid var(--border);
  background: rgba(13,13,18,.9);
  backdrop-filter: blur(12px);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-icon img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: .04em;
  color: var(--text);
}
.logo-text span { color: var(--gold); }
nav { display: flex; gap: 24px; align-items: center; }
nav a {
  color: var(--muted); font-size: 14px; text-decoration: none;
  transition: color .2s;
}
nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: #0d0d12 !important;
  font-weight: 600; padding: 6px 16px;
  border-radius: 6px; font-size: 13px !important;
}
.nav-cta:hover { background: #f0c85a !important; }

/* MOBILE MENU */
.mobile-menu-btn {
  display: none;
  background: none; border: none;
  color: var(--text); font-size: 24px;
  cursor: pointer;
}
#mobile-menu {
  display: none;
  flex-direction: column; gap: 16px;
  padding: 20px; background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: absolute; top: 60px; left: 0; right: 0;
  z-index: 99;
}
#mobile-menu.active {
  display: flex;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 14px 0 0;
  font-size: 13px; color: var(--muted);
}
.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 6px; }

/* ── HERO ── */
.hero { padding: 28px 0 40px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  align-items: start;
}
.hero-meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05; letter-spacing: .02em;
  color: #fff;
  margin-bottom: 14px;
}
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-desc {
  color: var(--muted); font-size: 15px; max-width: 540px;
  margin-bottom: 24px;
}

/* KEY STATS BAR */
.stats-bar {
  display: flex; gap: 0; flex-wrap: wrap;
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 24px;
}
.stat-cell {
  flex: 1; min-width: 90px;
  padding: 14px 18px;
  border-right: 1px solid var(--border);
  background: var(--surface);
}
.stat-cell:last-child { border-right: none; }
.stat-cell .label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.stat-cell .value { font-family: var(--font-display); font-size: 22px; color: var(--gold); }
.stat-cell .sub { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* CTA BUTTONS */
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-play {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), #d4a030);
  color: #0d0d12; font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 8px; text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 4px 24px rgba(232,184,75,.35);
  transition: transform .15s, box-shadow .15s;
}
.btn-play:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,184,75,.5); }
.btn-demo {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--gold); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 8px;
  border: 1px solid var(--border); cursor: pointer; text-decoration: none;
  transition: background .15s, border-color .15s;
}
.btn-demo:hover { background: rgba(232,184,75,.08); border-color: var(--gold); }

/* SIDEBAR CARD */
.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.game-card-title { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 12px; }
.game-card-rows { display: flex; flex-direction: column; gap: 8px; }
.game-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.game-row:last-child { border-bottom: none; }
.game-row .k { color: var(--muted); }
.game-row .v { color: var(--text); font-weight: 500; }
.game-row .v.green { color: var(--green); }
.game-row .v.gold { color: var(--gold); }

/* ── IFRAME SECTION ── */
.slot-section { padding: 0 0 48px; }
.slot-frame-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.slot-frame-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.slot-frame-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: radial-gradient(ellipse at center, rgba(13,13,18,.7) 0%, rgba(13,13,18,.95) 100%);
  z-index: 5;
  transition: opacity .3s;
}
.slot-frame-overlay h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  color: #fff; letter-spacing: .04em; margin-bottom: 8px;
  text-align: center;
}
.slot-frame-overlay p { color: var(--muted); font-size: 14px; margin-bottom: 24px; text-align: center; }
.slot-frame-overlay.hidden { opacity: 0; pointer-events: none; }

/* ── SECTION BASE ── */
section { padding: 48px 0; }
section + section { border-top: 1px solid rgba(255,255,255,.05); }
.section-label {
  font-size: 11px; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gold); margin-bottom: 10px;
}
h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 36px);
  letter-spacing: .03em; color: #fff;
  margin-bottom: 16px;
}
h3 {
  font-size: 20px; font-weight: 600;
  color: var(--text); margin-bottom: 12px; margin-top: 24px;
}
h4 {
  font-size: 18px; font-weight: 600;
  color: var(--text); margin-bottom: 10px; margin-top: 20px;
}
p { color: var(--muted); margin-bottom: 14px; }
li { color: var(--muted); margin-bottom: 8px; margin-left: 20px;}
p:last-child { margin-bottom: 0; }
strong { color: var(--text); }

/* ── TWO COLUMN ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* FEATURE CARDS */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: border-color .2s, transform .2s;
}
.feature-card:hover { border-color: var(--gold-dim); transform: translateY(-3px); }
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(232,184,75,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 14px;
}
.feature-card h3 { font-size: 16px; margin-bottom: 8px; margin-top: 0; }
.feature-card p { font-size: 14px; }

/* ── PAYTABLE ── */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
}
table { width: 100%; border-collapse: collapse; }
thead tr { background: var(--bg3); }
thead th {
  text-align: left; padding: 12px 16px;
  font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); font-weight: 600;
  border-bottom: 1px solid var(--border);
}
tbody tr { border-bottom: 1px solid rgba(255,255,255,.04); transition: background .15s; }
tbody tr:last-child { border-bottom: none; }
tbody tr:hover { background: rgba(232,184,75,.04); }
tbody td { padding: 12px 16px; font-size: 14px; color: var(--text); }
tbody td.gold { color: var(--gold); font-weight: 600; }
tbody td.green { color: var(--green); }
.symbol-icon { display: inline-flex; align-items: center; gap: 8px; }
.sym { font-size: 18px; }

/* RTP indicator */
.rtp-bar-wrap { margin-top: 24px; margin-bottom: 24px; }
.rtp-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.rtp-row .label { font-size: 13px; color: var(--muted); min-width: 140px; }
.rtp-track {
  flex: 1; height: 8px; background: var(--bg3); border-radius: 4px; overflow: hidden;
}
.rtp-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold-dim), var(--gold)); }
.rtp-row .val { font-size: 13px; font-weight: 600; color: var(--gold); min-width: 50px; text-align: right; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px; cursor: pointer;
  font-size: 15px; font-weight: 500; color: var(--text);
  user-select: none;
  transition: background .15s;
}
.faq-q:hover { background: rgba(255,255,255,.03); }
.faq-q .icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--gold);
  flex-shrink: 0; transition: transform .3s;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 18px;}
.faq-a-inner { padding: 0 20px; font-size: 14px; color: var(--muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--bg3) 0%, #1a1a2a 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 500px; height: 260px;
  background: radial-gradient(ellipse, rgba(232,184,75,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 10px; }
.cta-banner p { max-width: 480px; margin: 0 auto 28px; font-size: 15px; }

/* DISCLAIMER */
.disclaimer {
  font-size: 12px; color: var(--muted);
  border-top: 1px solid var(--border);
  padding: 20px 0; margin-top: 8px;
  line-height: 1.6;
}

/* FOOTER */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 36px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px; margin-bottom: 28px;
}
.footer-col h4 { font-size: 13px; color: var(--text); margin-bottom: 12px; margin-top: 0;}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-left: 0;}
.footer-col ul li { margin-left: 0; }
.footer-col ul li a { font-size: 13px; color: var(--muted); text-decoration: none; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 12px; color: var(--muted); margin: 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .game-card { display: none; }
  .two-col, .three-col { grid-template-columns: 1fr; }
  .stats-bar { flex-wrap: wrap; }
  .stat-cell { flex: 1 1 40%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mobile-menu-btn { display: block; }
  nav { display: none; }
}
@media (max-width: 600px) {
  .cta-banner { padding: 32px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
