:root {
  --bg: #07090c;
  --bg-2: #0c1016;
  --surface: #121821;
  --surface-2: #171e29;
  --text: #f4f1e8;
  --muted: #b7c0cc;
  --gold: #e4c15a;
  --gold-2: #c9a227;
  --gold-ink: #1a1408;
  --green: #22c55e;
  --green-2: #16a34a;
  --green-ink: #06210f;
  --line: rgba(228, 193, 90, 0.22);
  --danger: #f87171;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  --font: "Manrope", system-ui, sans-serif;
  --display: "Unbounded", "Manrope", sans-serif;
  --max: 1160px;
  --header: 76px;
  --z-header: 50;
  --z-toast: 60;
  --z-gate: 80;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(34, 197, 94, 0.12), transparent 50%),
    radial-gradient(900px 420px at 90% 0%, rgba(228, 193, 90, 0.14), transparent 46%),
    var(--bg);
  min-height: 100dvh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #f3dc8a;
}

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

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: var(--gold-ink);
  padding: 8px 12px;
  z-index: 100;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  backdrop-filter: blur(16px);
  background: rgba(7, 9, 12, 0.86);
  border-bottom: 1px solid var(--line);
}

.ticker-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 36px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ticker-bar__label {
  flex: none;
  color: var(--green);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ticker-bar__text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.ticker-bar__text.is-out {
  opacity: 0;
  transform: translateY(-8px);
}

.ticker-bar__text.is-in {
  opacity: 1;
  transform: translateY(0);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(228, 193, 90, 0.25));
}

.site-nav {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 12px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--text);
  background: rgba(228, 193, 90, 0.1);
}

.header-cta {
  display: flex;
  gap: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  position: relative;
  margin: 0 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;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  color: inherit;
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-gold {
  background: linear-gradient(180deg, #f3dc8a, var(--gold) 46%, var(--gold-2));
  color: var(--gold-ink);
  box-shadow: 0 8px 24px rgba(228, 193, 90, 0.28);
}

.btn-green {
  background: linear-gradient(180deg, #4ade80, var(--green) 48%, var(--green-2));
  color: var(--green-ink);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  padding: 48px 0 24px;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 12px;
}

h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin: 0 0 14px;
}

h3 {
  font-size: 20px;
  margin: 28px 0 10px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}

.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  color: var(--gold);
}

.stat span {
  color: var(--muted);
  font-size: 13px;
}

.mascot {
  position: relative;
  display: grid;
  place-items: center;
}

.mascot img {
  width: min(100%, 520px);
  filter: drop-shadow(0 20px 50px rgba(34, 197, 94, 0.18));
  background: transparent;
}

.cta-band img,
.logo img,
.footer-brand img,
.age-gate img,
.go-screen img {
  background: transparent;
}

.mascot::after {
  content: "";
  position: absolute;
  inset: 18% 16% auto;
  height: 55%;
  background: radial-gradient(circle, rgba(228, 193, 90, 0.22), transparent 68%);
  z-index: -1;
}

.section {
  padding: 56px 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  margin-bottom: 24px;
}

.cards,
.games,
.bonus-grid,
.live-grid {
  display: grid;
  gap: 16px;
}

.cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.game-card,
.bonus-card,
.live-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 28%), var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.card h3,
.game-card h3,
.bonus-card h3,
.live-card h3 {
  margin-top: 0;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  margin-bottom: 12px;
}

.icon-badge.gold {
  background: rgba(228, 193, 90, 0.12);
  color: var(--gold);
}

.games {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.game-card {
  padding: 0;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.game-card:hover {
  border-color: rgba(228, 193, 90, 0.5);
  transform: translateY(-2px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.game-thumb {
  min-height: 150px;
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.16), transparent 32%),
    linear-gradient(145deg, #1a2330, #10151d);
}

.game-thumb img {
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.game-card__body {
  padding: 14px 16px 16px;
}

.game-card__meta {
  color: var(--muted);
  font-size: 13px;
}

.rtp {
  color: var(--green);
  font-weight: 700;
}

.wins-panel {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 16px;
  align-items: start;
}

.win-list {
  display: grid;
  gap: 8px;
}

.win-row {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 12px;
  align-items: center;
  background: var(--surface-2);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  padding: 12px 14px;
}

.win-row.is-new {
  animation: pop-in 0.35s ease;
}

.win-row__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

.win-row__sum {
  text-align: right;
  color: var(--gold);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.win-row__sum small {
  display: block;
  color: var(--muted);
  font-weight: 500;
}

.seo {
  max-width: 76ch;
}

.seo p,
.seo li {
  color: #dbe1ea;
}

.seo ul,
.seo ol {
  padding-left: 20px;
}

.seo li + li {
  margin-top: 6px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

th {
  background: rgba(228, 193, 90, 0.08);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.cta-band {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(34, 197, 94, 0.12), rgba(228, 193, 90, 0.08)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 20px 24px;
  overflow: hidden;
}

.cta-band img {
  width: min(100%, 280px);
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  margin-bottom: 10px;
}

.faq-item__q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 16px 18px;
  min-height: 52px;
  cursor: pointer;
}

.faq-item__a {
  display: none;
  padding: 0 18px 16px;
  color: var(--muted);
}

.faq-item.is-open .faq-item__a {
  display: block;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 36px 0 28px;
  color: var(--muted);
  margin-top: 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 24px;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
}

.legal {
  font-size: 13px;
  margin-top: 24px;
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: grid;
  place-items: center;
  z-index: var(--z-gate);
  padding: 16px;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__panel {
  width: min(460px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
  text-align: center;
}

.win-toast-host {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: var(--z-toast);
  width: min(360px, calc(100% - 32px));
}

.win-toast {
  background: var(--surface);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: var(--text);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.win-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-cta {
  display: none;
}

.breadcrumb {
  color: var(--muted);
  font-size: 14px;
  padding-top: 20px;
}

.page-hero {
  padding: 18px 0 8px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: start;
}

.live-grid,
.bonus-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.14);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.no-scroll {
  overflow: hidden;
}

.go-screen {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1024px) {
  .hero,
  .wins-panel,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .games,
  .live-grid,
  .bonus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
  }

  .header-cta .btn-ghost {
    display: none;
  }

  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(var(--header) + 36px);
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 8px;
    flex-direction: column;
  }

  .site-nav.is-open {
    display: flex;
  }

  .stats,
  .cards,
  .games,
  .live-grid,
  .bonus-grid {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: block;
    position: sticky;
    bottom: 0;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: rgba(7, 9, 12, 0.92);
    border-top: 1px solid var(--line);
  }

  .mobile-cta .btn {
    width: 100%;
  }

  .faq-layout {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
