:root {
  --bg: #050605;
  --bg-2: #080b09;
  --surface: #101714;
  --surface-2: #16201b;
  --gold: #e8c547;
  --gold-2: #c9a227;
  --gold-deep: #8f7018;
  --green: #2ecf70;
  --green-2: #1aa355;
  --green-deep: #0e6d38;
  --text: #f4f1e6;
  --text-muted: #b8c2b5;
  --border: rgba(232, 197, 71, 0.16);
  --radius: 18px;
  --header-h: 76px;
  --container: 1160px;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --z-header: 40;
  --z-toast: 80;
  --z-nav: 50;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--green);
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--gold);
  color: #1a1404;
  font-weight: 700;
  border-radius: 10px;
}

.skip-link:focus {
  top: 12px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(5, 6, 5, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  min-height: 44px;
}

.logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px var(--gold-2);
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.logo-text span {
  color: var(--text-muted);
  font-size: 11px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  padding: 10px 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  border-radius: 10px;
  transition: color 200ms var(--ease), background 200ms var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(232, 197, 71, 0.08);
}

.nav a[aria-current="page"] {
  color: var(--gold);
}

.header-cta {
  display: flex;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  touch-action: manipulation;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), filter 180ms var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-green {
  background: linear-gradient(180deg, #3ee081 0%, var(--green-2) 100%);
  color: #062413;
  box-shadow: 0 8px 24px rgba(46, 207, 112, 0.28);
}

.btn-green:hover {
  color: #062413;
  filter: brightness(1.05);
}

.btn-gold {
  background: linear-gradient(180deg, #f3d56a 0%, var(--gold-2) 100%);
  color: #1a1404;
  box-shadow: 0 8px 24px rgba(201, 162, 39, 0.28);
}

.btn-gold:hover {
  color: #1a1404;
  filter: brightness(1.05);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--gold);
  border-color: var(--gold-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  margin-inline: auto;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 48px 0 32px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% 10% auto auto;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(46, 207, 112, 0.18), transparent 68%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -10% -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(232, 197, 71, 0.14), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  line-height: 1.2;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(28px, 4vw, 44px);
  max-width: 18ch;
}

h2 {
  font-size: clamp(22px, 3vw, 30px);
}

h3 {
  font-size: 18px;
  color: var(--gold);
}

.lead {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--text-muted);
  font-size: 14px;
}

.hero-meta strong {
  color: var(--text);
  display: block;
  font-size: 18px;
}

.mascot-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.mascot-wrap::before {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 207, 112, 0.22), transparent 70%);
  filter: blur(8px);
}

.mascot {
  position: relative;
  width: min(100%, 460px);
  aspect-ratio: 1;
  object-fit: contain;
}

.wins-panel {
  margin-top: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  min-height: 118px;
}

.wins-panel h2 {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.wins-feed {
  display: grid;
  gap: 8px;
}

.win-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  color: var(--text-muted);
}

.win-item b {
  color: var(--green);
  font-variant-numeric: tabular-nums;
}

.win-item span:last-child {
  color: #8d978a;
  font-size: 12px;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: linear-gradient(180deg, rgba(16, 23, 20, 0.7), transparent);
}

.prose {
  max-width: 72ch;
}

.prose p {
  margin: 0 0 16px;
  color: #d8ddd4;
}

.prose ul,
.prose ol {
  margin: 0 0 20px;
  padding-left: 22px;
  color: #d8ddd4;
}

.prose li + li {
  margin-top: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 160px;
  transition: transform 200ms var(--ease), border-color 200ms var(--ease);
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 197, 71, 0.4);
}

.card h3 {
  margin-bottom: 8px;
}

.card p {
  margin: 0;
  color: var(--text-muted);
}

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.game-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  min-height: 210px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 6, 5, 0.92) 100%),
    radial-gradient(circle at 30% 20%, rgba(46, 207, 112, 0.35), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(232, 197, 71, 0.28), transparent 40%),
    var(--surface-2);
  transition: transform 200ms var(--ease);
}

.game-card:nth-child(2n) {
  background:
    linear-gradient(180deg, transparent 20%, rgba(5, 6, 5, 0.92) 100%),
    radial-gradient(circle at 70% 30%, rgba(232, 197, 71, 0.32), transparent 48%),
    var(--surface-2);
}

.game-card:hover {
  transform: translateY(-4px);
  color: var(--text);
}

.game-card small {
  color: var(--gold);
  font-weight: 700;
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: 16px;
  overflow: hidden;
}

.bonus-table th,
.bonus-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.bonus-table th {
  background: var(--surface-2);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 20px;
  align-items: center;
  background: linear-gradient(90deg, #13241b, #1c1608);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
}

.cta-band img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 4px 16px;
  margin-bottom: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.faq-list details p {
  color: var(--text-muted);
  margin: 0 0 14px;
}

.site-footer {
  margin-top: 40px;
  padding: 36px 0 88px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  min-height: 32px;
}

.footer-links a:hover {
  color: var(--gold);
}

.disclaimer {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 800;
  margin-right: 10px;
}

.toast-stack {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: var(--z-toast);
  display: grid;
  gap: 8px;
  width: min(360px, calc(100% - 24px));
  pointer-events: none;
}

.toast {
  background: #132018;
  border: 1px solid rgba(46, 207, 112, 0.35);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  animation: toast-in 280ms var(--ease);
}

.toast b {
  color: var(--gold);
}

@keyframes toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: var(--text-muted);
  margin: 20px 0 8px;
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}

.side-mascot {
  position: sticky;
  top: 100px;
}

@media (max-width: 1024px) {
  .cards,
  .game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .split,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .side-mascot {
    position: static;
    max-width: 280px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 12px auto 12px;
    z-index: var(--z-nav);
    display: none;
    flex-direction: column;
    background: #0e1511;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 12px;
  }

  .nav.is-open {
    display: flex;
  }

  .header-cta .btn-gold {
    display: none;
  }

  .cards,
  .game-grid {
    grid-template-columns: 1fr;
  }

  .win-item {
    grid-template-columns: 1fr auto;
  }

  .win-item span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
