:root {
  --bg: #080513;
  --bg-soft: #100b22;
  --panel: rgba(255,255,255,.06);
  --panel-strong: rgba(255,255,255,.1);
  --line: rgba(255,255,255,.1);
  --text: #f4f2ff;
  --muted: #b6b0d6;
  --accent: #a855ff;
  --accent-2: #6366f1;
  --accent-3: #f472b6;
  --green: #4ade80;
  --shadow: 0 24px 60px rgba(0,0,0,.42);
  --radius: 24px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(168,85,255,.22), transparent 34%),
    radial-gradient(circle at top right, rgba(244,114,182,.12), transparent 28%),
    linear-gradient(180deg, #0c0818 0%, #06030f 100%);
  font: 16px/1.6 Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
button, input, textarea, select { font: inherit; }

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

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel--wide { padding: 28px; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8,5,19,.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .02em;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 30px rgba(168,85,255,.35);
}

.brand__text { text-transform: uppercase; font-size: 15px; }

.menu,
.topbar__actions,
.hero__actions,
.promo-card__buttons,
.footer__inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu { flex-wrap: wrap; }
.menu a {
  color: var(--muted);
  padding: 9px 12px;
  border-radius: 999px;
  transition: .2s ease;
}
.menu a:hover { color: var(--text); background: rgba(255,255,255,.06); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--main {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 32px rgba(99,102,241,.3);
}
.btn--alt {
  color: #08110c;
  background: linear-gradient(135deg, #86efac, var(--green));
  box-shadow: 0 16px 32px rgba(74,222,128,.22);
}
.btn--ghost {
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}

.hero { padding: 36px 0 18px; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 24px;
}
.hero__copy,
.hero__promo,
.info-card { padding: 30px; }
.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #ded9ff;
  font-size: 14px;
}
h1 {
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.05;
  margin-bottom: 14px;
}
.hero__lead,
.section-head p,
.info-card p,
.feature-list,
.jackpot__text,
.faq-item__body p,
.footer p { color: var(--muted); }
.hero__lead { font-size: 18px; margin-bottom: 22px; }
.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 20px;
}
.metrics__item {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.metrics__item strong { display: block; margin-bottom: 4px; font-size: 19px; }

.hero__promo {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}
.promo-card {
  min-height: 100%;
  padding: 22px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top left, rgba(168,85,255,.28), transparent 30%),
    radial-gradient(circle at bottom right, rgba(244,114,182,.18), transparent 34%),
    linear-gradient(135deg, #18112f 0%, #0d091a 100%);
  border: 1px solid rgba(255,255,255,.08);
}
.promo-card__label { color: #e9e2ff; font-size: 14px; margin-bottom: 8px; }
.promo-card__value {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 14px;
}
.mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mini-points span,
.chip {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #e7e2ff;
  font-size: 14px;
}
.chip--active {
  background: linear-gradient(135deg, rgba(168,85,255,.22), rgba(99,102,241,.22));
}

.section { padding: 18px 0; }
.section--compact { padding-top: 6px; }
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.section-head h2,
.info-card h2,
.jackpot__value { margin-bottom: 8px; }

.ticker {
  overflow: hidden;
  position: relative;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, rgba(12,8,24,1), rgba(12,8,24,0)); }
.ticker::after { right: 0; background: linear-gradient(270deg, rgba(12,8,24,1), rgba(12,8,24,0)); }
.ticker__track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 4px 0;
}
.ticker-card {
  min-width: 240px;
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.08);
}
.ticker-card strong { display: block; margin-bottom: 4px; font-size: 16px; }
.ticker-card span { color: var(--muted); font-size: 14px; }

.game-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.game-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
.game-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
}
.game-card__media {
  height: 140px;
  margin-bottom: 16px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 25% 25%, rgba(168,85,255,.35), transparent 28%),
    radial-gradient(circle at 75% 35%, rgba(99,102,241,.24), transparent 22%),
    linear-gradient(135deg, #1b1431, #0c0917);
  border: 1px solid rgba(255,255,255,.08);
}
.game-card h3 { margin-bottom: 8px; }
.game-card p { color: var(--muted); min-height: 72px; }

.jackpot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background:
    radial-gradient(circle at top left, rgba(168,85,255,.32), transparent 34%),
    radial-gradient(circle at bottom right, rgba(244,114,182,.18), transparent 28%),
    linear-gradient(135deg, #17112c 0%, #090512 100%);
}
.jackpot__label {
  margin-bottom: 6px;
  color: #ede7ff;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12px;
}
.jackpot__value { font-size: clamp(28px, 5vw, 44px); }

.feature-list {
  margin: 0;
  padding-left: 18px;
}
.feature-list li + li { margin-top: 8px; }
.info-grid--reverse { grid-template-columns: .95fr 1.05fr; }

.faq-list { display: grid; gap: 12px; }
.faq-item {
  border-radius: 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}
.faq-item__trigger {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  color: var(--text);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-weight: 700;
}
.faq-item__body { display: none; padding: 0 20px 18px; }
.faq-item[data-open="true"] .faq-item__body { display: block; }

.footer {
  padding: 16px 0 32px;
}
.footer__inner {
  justify-content: space-between;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer p { margin: 6px 0 0; }

@media (max-width: 1024px) {
  .hero__grid,
  .game-grid,
  .info-grid,
  .info-grid--reverse {
    grid-template-columns: 1fr 1fr;
  }
  .game-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 840px) {
  .menu { display: none; }
  .hero__grid,
  .info-grid,
  .info-grid--reverse,
  .metrics,
  .game-grid,
  .jackpot {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }
  .topbar__inner,
  .footer__inner { align-items: flex-start; }
}

@media (max-width: 560px) {
  .shell { width: min(calc(100% - 24px), var(--container)); }
  .hero__copy,
  .hero__promo,
  .info-card,
  .panel--wide { padding: 20px; }
  .topbar__inner { min-height: 68px; }
  .brand__text { font-size: 14px; }
  .topbar__actions .btn { min-height: 40px; padding: 0 14px; }
  .hero { padding-top: 24px; }
  .hero__lead { font-size: 16px; }
  .promo-card__buttons,
  .hero__actions,
  .topbar__actions,
  .footer__inner {
    flex-wrap: wrap;
  }
  .game-grid { grid-template-columns: 1fr; }
  .ticker-card { min-width: 210px; }
}

.game-card__media {
  width: 100%;
  height: 160px;
  overflow: hidden;
  border-radius: 12px;
}

.game-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.promo-card__image {
  width: 100%;
  max-height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin: 12px 0;
}