:root {
  --primary-color: #ffd700;
  --bg-dark: #0b0b0d;
  --text-light: #f8fafc;
  --success: #22c55e;
  --primary-hover: #f5c518;
  --primary-ink: #1a1300;
  --bg-elevated: #141418;
  --bg-card: #1a1a20;
  --bg-header: rgba(10, 10, 12, 0.94);
  --text-muted: #9aa3b2;
  --border: rgba(255, 215, 0, 0.18);
  --radius: 16px;
  --header-h: 74px;
  --font-body: "Inter", system-ui, sans-serif;
  --font-display: "Poppins", "Inter", sans-serif;
  --max: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  background: radial-gradient(900px 420px at 72% 0, rgba(240, 162, 28, 0.28), transparent 58%), #0b0b0d;
  color: var(--text-light);
  line-height: 1.65;
  min-width: 320px;
}
img { max-width: 100%; display: block; }
a { color: var(--primary-color); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font-family: inherit; }
[hidden] { display: none !important; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.2; margin: 0 0 0.7em; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.7rem, 4vw, 2.7rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
p { margin: 0 0 1rem; color: #dbe0ea; }
ul, ol { color: #dbe0ea; padding-left: 1.2em; }
li { margin-bottom: 0.45em; }
.container { width: min(100% - 32px, var(--max)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 50; height: var(--header-h);
  display: flex; align-items: center;
  background: var(--bg-header); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  width: min(100% - 24px, var(--max)); margin-inline: auto;
}
.brand { display: flex; align-items: center; }
.brand img { height: 42px; width: auto; }
.brand:hover { text-decoration: none; }
.nav-desktop { display: none; align-items: center; gap: 18px; }
.nav-desktop a { color: var(--text-light); font-size: 0.92rem; font-weight: 600; }
.header-cta { display: flex; gap: 8px; align-items: center; }
.header-cta .btn { display: none; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 44px; padding: 0 18px; border-radius: 999px; border: 2px solid transparent;
  font-weight: 700; font-size: 0.92rem; cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  text-decoration: none !important; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(180deg, #ffe66a, var(--primary-color)); color: var(--primary-ink); }
.btn-ghost { border-color: var(--primary-color); color: var(--primary-color); background: transparent; }
.btn-lg { min-height: 52px; padding: 0 26px; font-size: 1rem; }
.btn-sm { min-height: 38px; padding: 0 14px; font-size: 0.82rem; }

.nav-toggle {
  width: 44px; height: 44px; border: 0; background: transparent;
  display: grid; place-items: center; gap: 5px; padding: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--text-light); transition: 0.25s ease; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.72); z-index: 60;
  opacity: 0; pointer-events: none; transition: opacity .25s ease;
}
body.nav-open .nav-overlay { opacity: 1; pointer-events: auto; }
.nav-drawer {
  position: fixed; top: 0; left: 0; width: min(92vw, 400px); height: 100%;
  background: #111114; z-index: 70; padding: 16px 16px 0;
  transform: translateX(-100%); transition: transform .28s ease;
  display: flex; flex-direction: column;
}
body.nav-open .nav-drawer { transform: translateX(0); }
.drawer-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.drawer-top p { margin: 0; font-weight: 800; font-size: 1.05rem; color: var(--text-light); }
.drawer-close {
  min-height: 44px; min-width: 44px; border: 1px solid var(--border);
  background: transparent; color: var(--text-light); border-radius: 12px;
  font-weight: 700; cursor: pointer;
}
.drawer-scroll {
  flex: 1; overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.drawer-group { padding: 10px 0 6px; }
.drawer-group p {
  margin: 0 0 8px; color: var(--primary-color); font-size: .72rem;
  letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}
.drawer-group a {
  display: block; color: var(--text-light); font-size: 1.02rem; font-weight: 600;
  padding: 11px 4px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.drawer-cta {
  display: grid; gap: 10px; flex-shrink: 0;
  padding: 12px 0 calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border); background: #111114;
}

.hero { padding: 28px 0 12px; }
.hero-grid { display: grid; gap: 20px; align-items: center; }
.eyebrow { color: #cfcfcf; font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.hero-offer { font-size: clamp(2.1rem, 8vw, 4.3rem); font-family: var(--font-display); font-weight: 800; line-height: .95; margin: 0 0 14px; }
.gold { color: var(--primary-color); }
.hero-facts { margin: 0 0 22px; padding: 0; list-style: none; color: #dbe0ea; }
.hero-facts li { margin: 0 0 8px; padding-left: 0; }
.hero-facts strong { color: var(--text-light); }
.empty-panel { background: var(--bg-card); border: 1px dashed var(--border); border-radius: var(--radius); padding: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-art { max-width: 420px; margin-inline: auto; }
.hero-art img { width: 100%; height: auto; }

.section { padding: 42px 0; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 12px; margin-bottom: 20px; }
.muted { color: var(--text-muted); }
.prose p { max-width: 72ch; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.game-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.game-card {
  display: flex; flex-direction: column; height: 100%;
  background: var(--bg-card); border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px; overflow: hidden; transition: transform .2s ease, border-color .2s ease;
}
.game-card:hover { transform: translateY(-3px); border-color: var(--primary-color); }
.game-card .thumb {
  aspect-ratio: 3 / 4; background: #0e0e12;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.game-card img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  background: #0e0e12;
}
.game-body {
  padding: 14px;
  display: flex; flex-direction: column; flex: 1;
}
.game-body h3 { font-size: .95rem; margin-bottom: 4px; }
.game-body h3 a { color: inherit; }
.meta { color: var(--text-muted); font-size: .78rem; margin-bottom: 10px; flex: 1; }
.game-actions { display: flex; gap: 8px; margin-top: auto; }
.game-actions .btn { flex: 1; }

.table-wrap {
  overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--bg-elevated); margin-bottom: 8px;
}
table { width: 100%; border-collapse: collapse; min-width: 640px; }
th, td { padding: 14px 16px; text-align: left; border-bottom: 1px solid rgba(255,255,255,.08); vertical-align: top; }
th { color: var(--primary-color); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }

.pay-grid, .feature-grid { display: grid; gap: 12px; }
.pay-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pay-card, .feature-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,.06); border-radius: var(--radius); padding: 16px; }
.pay-card { min-width: 0; }
.pay-card img { height: 36px; width: auto; max-width: 100%; margin-bottom: 10px; border-radius: 8px; }
.pay-card h3 { font-size: 1.02rem; margin-bottom: 0.4em; }
.pay-card p { font-size: .88rem; }
.pay-note { font-size: .88rem; color: var(--text-muted); margin-top: 18px; }
.ok { color: var(--success); font-weight: 700; }
.tag-local, .tag-card, .tag-wallet, .tag-voucher, .tag-crypto {
  display: inline-block; margin-bottom: 8px; font-size: .7rem; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}
.tag-local { color: var(--success); }
.tag-card { color: #60a5fa; }
.tag-wallet { color: #c4b5fd; }
.tag-voucher { color: #fb923c; }
.tag-crypto { color: #fbbf24; }

.faq details { background: var(--bg-card); border: 1px solid rgba(255,255,255,.06); border-radius: 12px; padding: 4px 16px; margin-bottom: 10px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }

.site-footer { border-top: 1px solid var(--border); padding: 36px 0 110px; background: #08080a; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 18px; margin: 16px 0; }
.footer-links a { color: var(--text-muted); }
.footer-map { display: grid; gap: 18px; margin: 24px 0; }
.footer-map h3 { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--primary-color); margin-bottom: 8px; }
.footer-map a { display: block; color: var(--text-muted); font-size: .9rem; padding: 4px 0; }
.rg-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin: 16px 0; }
.rg-row img { height: 36px; width: auto; background: transparent; border-radius: 0; padding: 0; }
.legal { font-size: .82rem; color: var(--text-muted); }

.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40; display: flex; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(8,8,10,.96); border-top: 1px solid var(--border);
}
.mobile-cta .btn { flex: 1; }

.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.tab {
  border: 1px solid var(--border); background: transparent; color: var(--text-light);
  border-radius: 999px; min-height: 40px; padding: 0 16px; font-weight: 700; cursor: pointer;
}
.tab.is-active { background: var(--primary-color); color: var(--primary-ink); border-color: var(--primary-color); }
.page-hero { padding: 32px 0 8px; }

@media (min-width: 768px) {
  .hero-grid, .feature-grid, .footer-map { grid-template-columns: 1fr 1fr; }
  .pay-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .mobile-cta { display: none; }
  .site-footer { padding-bottom: 40px; }
}
@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
  .nav-toggle { display: none; }
  .header-cta .btn { display: inline-flex; }
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .pay-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-map { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1440px) { :root { --max: 1280px; } }
@media (max-width: 767px) {
  table { min-width: 0; }
  thead { display: none; }
  tr, td { display: block; }
  td { border-bottom: 0; padding: 8px 16px; }
  td::before {
    content: attr(data-label); display: block; color: var(--primary-color);
    font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 4px;
  }
  tr { padding: 10px 0 14px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .section-head { flex-direction: column; align-items: flex-start; }
}
