/* ==========================================================
   GATES OF OLYMPUS — TR Landing (full SEO layout)
   Container 1140 • Logo 72px
   ========================================================== */

:root {
  --navy-0: #060620;
  --navy-1: #0c0c2e;
  --navy-2: #131542;
  --navy-3: #1b1d55;
  --navy-card: #181a4e;
  --purple-1: #2a1666;
  --purple-2: #46219e;
  --blue: #38bdf8;
  --gold-soft: #f5e7a1;
  --gold: #ffd24a;
  --gold-2: #b8860b;
  --gold-deep: #6e3f0e;
  --red: #e23b3b;
  --white: #f6f7fb;
  --muted: #a5a9c8;
  --line: rgba(255,255,255,0.08);
  --line-2: rgba(255,210,74,0.25);

  --container: 1140px;
  --font-display: "Cinzel", "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;

  --shadow-soft: 0 6px 18px rgba(0,0,0,0.3);
  --shadow-glow: 0 0 28px rgba(255,210,74,0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse at 50% -10%, #2a1666 0%, transparent 50%),
    linear-gradient(180deg, #0c0c2e 0%, #060620 100%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }

.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 32px);
  text-align: center;
  margin: 0 0 10px;
  letter-spacing: .3px;
  line-height: 1.2;
  color: var(--white);
}
.section__title .hl,
.section__title .text-gold {
  background: linear-gradient(180deg, #fff2b3 0%, #ffd24a 50%, #c79518 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.section__sub {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 28px;
  max-width: 720px;
  font-size: 15px;
}
.section__head { margin-bottom: 24px; }
.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  margin: 0 0 8px;
}

/* ==========================================================
   PRELOADER
   ========================================================== */
.preloader {
  position: fixed; inset: 0;
  background: radial-gradient(ellipse at center, #1a1457, #060620 70%);
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__lightning svg {
  width: 60px; height: 120px;
  filter: drop-shadow(0 0 24px rgba(255,210,74,.7));
  animation: bolt 1.1s ease-in-out infinite alternate;
}
.preloader__text { font-family: var(--font-display); letter-spacing: 3px; color: var(--gold); font-size: 12px; }
@keyframes bolt {
  0% { transform: scale(.92) rotate(-3deg); }
  100% { transform: scale(1.08) rotate(3deg); }
}

/* ==========================================================
   HEADER
   ========================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12, 12, 46, 0.85);
  -webkit-backdrop-filter: blur(14px);
          backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 84px; gap: 18px;
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand__logo {
  display: block;
  height: 72px; width: auto;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,.5));
}
.brand--footer .brand__logo { height: 60px; }

.nav {
  display: flex; gap: 22px; align-items: center;
  font-size: 13px; font-weight: 500;
}
.nav a {
  color: var(--muted);
  transition: color .2s;
  padding: 4px 0;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.nav a:hover { color: var(--gold); }

.site-header__actions { display: inline-flex; align-items: center; gap: 8px; }
.flag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 5px 8px; border-radius: 6px;
  font-size: 11px; font-weight: 700;
  background: rgba(227,10,23,.12); border: 1px solid rgba(227,10,23,.35);
}

.burger { display: none; width: 36px; height: 36px; padding: 8px; flex-direction: column; justify-content: space-around; }
.burger span { display: block; height: 2px; background: var(--gold); border-radius: 2px; transition: transform .3s, opacity .3s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================
   BUTTONS
   ========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 11px 20px;
  border-radius: 999px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .15s ease, filter .2s, background-color .2s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 7px 14px; font-size: 11px; }
.btn--lg { padding: 14px 28px; font-size: 14px; }
.btn--block { display: flex; width: 100%; }

.btn--gold {
  background: linear-gradient(180deg, #ffe27a 0%, #ffd24a 50%, #c79518 100%);
  color: #2a1a04;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(255,210,74,.22), inset 0 1px 0 rgba(255,255,255,.4);
}
.btn--ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(255,210,74,.5);
}
.btn--ghost:hover { background: rgba(255,210,74,.08); }
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline:hover { background: rgba(255,210,74,.08); }

/* ==========================================================
   HERO
   ========================================================== */
.hero {
  position: relative;
  padding: 60px 0 50px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__sky {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(70,33,158,.55) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(56,189,248,.18) 0%, transparent 60%);
}
.hero__clouds {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 280px 80px at 18% 22%, rgba(180,160,220,.18), transparent 70%),
    radial-gradient(ellipse 380px 100px at 75% 28%, rgba(160,180,220,.15), transparent 70%);
  filter: blur(6px);
}
.hero__bolt {
  position: absolute; width: 3px;
  background: linear-gradient(180deg, transparent, var(--blue), #fff, var(--blue), transparent);
  filter: blur(.5px);
  box-shadow: 0 0 16px var(--blue), 0 0 28px rgba(56,189,248,.5);
  opacity: 0;
  animation: boltFlash 5s ease-in-out infinite;
}
.hero__bolt--1 { left: 16%; top: 0; height: 42%; transform: rotate(-8deg); animation-delay: .2s; }
.hero__bolt--2 { right: 18%; top: 4%; height: 36%; transform: rotate(10deg); animation-delay: 1.6s; }
@keyframes boltFlash {
  0%, 94%, 100% { opacity: 0; }
  95%, 99% { opacity: 1; }
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 40px; align-items: center;
  min-height: 420px;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(255,210,74,.08);
  border: 1px solid var(--line-2);
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.2vw, 52px);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: 0;
}
.hero__title .hl {
  background: linear-gradient(180deg, #fff2b3 0%, #ffd24a 50%, #c79518 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero__lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 560px;
}
.hero__lead strong { color: var(--gold); font-weight: 700; }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.hero__trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.hero__trust li { display: inline-flex; align-items: center; gap: 6px; }
.hero__trust svg { width: 16px; height: 16px; flex-shrink: 0; }

.hero__visual {
  position: relative;
  display: grid; place-items: center;
}
.hero__zeus-img {
  display: block;
  width: 100%;
  max-width: 420px;
  height: auto;
  filter:
    drop-shadow(0 16px 40px rgba(0,0,0,.5))
    drop-shadow(0 0 30px rgba(70,33,158,.45));
}

/* ==========================================================
   KEY STATS STRIP
   ========================================================== */
.stats-section { padding: 28px 0; }
.stat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat {
  background: linear-gradient(180deg, var(--navy-card) 0%, rgba(12,12,46,.85) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
  box-shadow: var(--shadow-soft);
}
.stat__label { font-size: 11px; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; }
.stat__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  color: var(--gold);
  line-height: 1;
}
.stat__hint { font-size: 11px; color: var(--muted); }

/* ==========================================================
   DEMO
   ========================================================== */
.demo-section { padding-top: 24px; }
.demo-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  max-width: 920px;
  margin: 24px auto 16px;
  padding: 6px;
  background:
    linear-gradient(135deg, var(--gold-deep), var(--gold) 40%, #fff2b3 50%, var(--gold) 60%, var(--gold-deep));
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.demo-frame > * { border-radius: 11px; overflow: hidden; }
.demo-frame__cover {
  position: absolute; inset: 6px; z-index: 2;
  display: grid; place-items: center; text-align: center;
  border-radius: 11px; overflow: hidden;
  transition: opacity .4s, visibility .4s;
}
.demo-frame.is-playing .demo-frame__cover { opacity: 0; visibility: hidden; pointer-events: none; }
.demo-frame__poster {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.demo-frame__shade {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse at center, rgba(0,0,0,.2) 0%, rgba(0,0,0,.55) 100%);
}
.demo-frame__overlay { position: relative; z-index: 2; padding: 18px; }
.demo-frame__overlay h3 {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  margin: 14px 0 4px;
  color: var(--gold);
  letter-spacing: 1.5px;
}
.demo-frame__overlay p { margin: 0; color: var(--muted); font-size: 12px; }
.demo-frame__iframe { position: absolute; inset: 6px; z-index: 1; }
.demo-frame__iframe iframe { width: 100%; height: 100%; border: 0; display: block; }

.play-big {
  position: relative;
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #ffe27a, #ffd24a, #b8860b);
  display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(255,210,74,.45), inset 0 2px 0 rgba(255,255,255,.4);
  margin: 0 auto;
  transition: transform .15s;
}
.play-big:hover { transform: scale(1.06); }
.play-big__ring {
  position: absolute; inset: -8px;
  border: 2px solid rgba(255,210,74,.55);
  border-radius: 50%;
  animation: ring 2.2s ease-out infinite;
}
@keyframes ring {
  0% { transform: scale(.85); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.demo-cta {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-top: 12px;
}
.demo-cta__note { font-size: 11px; color: var(--muted); }

/* ==========================================================
   PROSE (about / strategy)
   ========================================================== */
.prose-section { padding: 56px 0; }
.prose {
  max-width: 820px;
  margin: 0 auto;
}
.prose .section__title { text-align: center; margin-bottom: 24px; }
.prose p, .prose h3 { color: var(--white); }
.prose p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0 0 16px;
}
.prose p strong { color: var(--gold); font-weight: 700; }
.prose p em { color: var(--white); font-style: italic; }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--gold);
  margin: 28px 0 10px;
  line-height: 1.3;
}
.prose__intro {
  font-size: 16px !important;
  line-height: 1.75;
  color: var(--white) !important;
  padding-left: 14px;
  border-left: 2px solid rgba(255,210,74,.4);
}
.prose-list {
  margin: 14px 0 8px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.prose-list li {
  position: relative;
  padding: 8px 12px 8px 32px;
  background: rgba(20, 22, 64, 0.55);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}
.prose-list li::before {
  content: "";
  position: absolute;
  left: 12px; top: 50%; margin-top: -7px;
  width: 14px; height: 14px;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='%23ffd24a' d='M13 2 4 14h6l-2 8 10-13h-6l1-7z'/></svg>") no-repeat center / contain;
  flex-shrink: 0;
}

/* ==========================================================
   GAME SYMBOLS
   ========================================================== */
.symbol-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.symbol-card {
  background: linear-gradient(180deg, var(--navy-card) 0%, rgba(12,12,46,.85) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 10px;
  text-align: center;
  display: flex; flex-direction: column; gap: 4px; align-items: center;
  box-shadow: var(--shadow-soft);
}
.symbol-card--gold {
  border-color: rgba(255,210,74,.35);
  box-shadow: var(--shadow-soft), 0 0 16px rgba(255,210,74,.15);
}
.symbol-card--placeholder { opacity: .55; }
.symbol-card__img {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: radial-gradient(circle, rgba(70,33,158,.4), rgba(20,22,64,.2));
  border-radius: 50%;
  border: 1px solid var(--line);
  position: relative;
}
.symbol-card__img img {
  width: 80%; height: 80%;
  object-fit: contain;
}
.symbol-card__img img[src=""],
.symbol-card__img img:not([src]),
.symbol-card__img img[src*="symbols/"]:not([src*="data:"]) {
  /* shows a placeholder when image is missing — broken image icon will appear */
}
.symbol-card h3 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin: 6px 0 0;
  letter-spacing: .5px;
}
.symbol-card__role {
  font-size: 10px;
  color: var(--muted);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.symbol-card__pay {
  display: inline-block;
  margin-top: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #2a1a04;
  background: linear-gradient(180deg, #fff2b3, #ffd24a 50%, #b87f1a);
}

/* ==========================================================
   SLOT INFO TABLE
   ========================================================== */
.info-table-wrap {
  background: linear-gradient(180deg, var(--navy-card) 0%, rgba(12,12,46,.85) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.info-table th,
.info-table td {
  padding: 13px 22px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.info-table tr:last-child th,
.info-table tr:last-child td { border-bottom: 0; }
.info-table th {
  color: var(--muted);
  font-weight: 500;
  width: 44%;
  letter-spacing: .3px;
}
.info-table td {
  color: var(--white);
  font-weight: 600;
}
.info-table td strong { color: var(--gold); }
.info-table tr:nth-child(even) {
  background: rgba(255,255,255,0.02);
}

/* ==========================================================
   PROVIDER (Pragmatic Play)
   ========================================================== */
.provider {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}
.provider__copy .section__title { text-align: left; margin-bottom: 14px; }
.provider__copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 14px;
}
.provider__copy p strong { color: var(--gold); }
.provider__copy p em { color: var(--white); font-style: normal; font-weight: 500; }

.provider__card {
  background: linear-gradient(180deg, var(--navy-card) 0%, rgba(12,12,46,.85) 100%);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-soft);
}
.provider__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 13px;
}
.provider__row:last-child { border-bottom: 0; }
.provider__row span { color: var(--muted); }
.provider__row strong { color: var(--gold); font-weight: 600; }

/* ==========================================================
   OTHER GATES OF OLYMPUS GAMES (variants with hero images)
   ========================================================== */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 30px;
}
.variant {
  background: linear-gradient(180deg, var(--navy-card) 0%, rgba(12,12,46,.92) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 0 0 20px;
  box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}
.variant--highlight {
  border-color: rgba(255,210,74,.4);
  background: linear-gradient(180deg, rgba(70,33,158,.4) 0%, rgba(12,12,46,.92) 100%);
  box-shadow: var(--shadow-soft), 0 0 26px rgba(255,210,74,.2);
}
.variant__link {
  display: block;
  text-decoration: none; color: inherit;
  transition: filter .2s;
}
.variant__link:hover { filter: brightness(1.08); }
.variant__link:hover ~ * { /* no chained effects */ }

.variant__media {
  margin: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255,210,74,.22) 0%, transparent 65%),
    linear-gradient(180deg, rgba(70,33,158,.55) 0%, rgba(20,15,55,.85) 100%);
  aspect-ratio: 16 / 10;
  display: grid; place-items: center;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}
.variant__media img {
  max-width: 80%;
  max-height: 86%;
  width: auto; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.55)) drop-shadow(0 0 18px rgba(255,210,74,.18));
  transition: transform .35s ease;
}
.variant__link:hover .variant__media img { transform: scale(1.04); }

.variant__head {
  padding: 16px 20px 8px;
}
.variant__head h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 4px;
  line-height: 1.2;
}
.variant__year { font-size: 11px; color: var(--muted); letter-spacing: 1.5px; text-transform: uppercase; }

.variant__stats {
  margin: 4px 20px 14px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 16px;
}
.variant__stats li {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 5px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 12px;
}
.variant__stats span:first-child { color: var(--muted); }
.variant__val {
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
}

.variant__desc {
  margin: 0 20px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
}

.variants-cta {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-top: 8px;
}
.variants-cta__note { font-size: 12px; color: var(--muted); }

/* ==========================================================
   WHERE TO PLAY
   ========================================================== */
.where-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.where {
  background: linear-gradient(180deg, var(--navy-card) 0%, rgba(12,12,46,.85) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex; gap: 14px;
  align-items: flex-start;
}
.where__num {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffe27a, #ffd24a, #b87f1a);
  color: #2a1a04;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
.where h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 6px;
}
.where p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.where p strong { color: var(--gold); font-weight: 600; }

.where-cta {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.where-cta__note { font-size: 12px; color: var(--muted); }

/* ==========================================================
   JACKPOT + TICKER
   ========================================================== */
.live-section { padding: 48px 0; }
.jackpot-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.jackpot {
  background: linear-gradient(180deg, #ffe27a 0%, #ffd24a 45%, #b87f1a 100%);
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  color: #2a1a04;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -1px 0 rgba(0,0,0,.2);
  display: flex; flex-direction: column; gap: 2px;
}
.jackpot__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .8;
}
.jackpot__value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
}
.jackpot__cur { font-size: 10px; font-weight: 700; letter-spacing: 1px; opacity: .8; }

.ticker {
  display: flex;
  overflow: hidden;
  position: relative;
  -webkit-mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker__track {
  display: flex; gap: 10px;
  animation: tickerScroll 60s linear infinite;
  flex-shrink: 0;
  padding: 4px 0;
}
.ticker__item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 12px;
  background: rgba(20, 22, 64, 0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  white-space: nowrap;
  font-size: 12px;
}
.ticker__avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--purple-2));
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800; color: #fff;
}
.ticker__name { color: var(--white); font-weight: 600; }
.ticker__amount { color: var(--gold); font-weight: 700; }
.ticker__item--big { border-color: rgba(255,210,74,.4); }
@keyframes tickerScroll { to { transform: translateX(-50%); } }

/* ==========================================================
   PAYMENTS
   ========================================================== */
.pay-grid {
  display: grid; grid-template-columns: repeat(8, 1fr);
  gap: 10px;
}
.pay {
  display: grid; place-items: center;
  height: 52px;
  padding: 0 8px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #1a1d4d 0%, #0e1133 100%) padding-box,
    linear-gradient(135deg, var(--gold-deep), var(--gold) 50%, var(--gold-deep)) border-box;
  border: 1.5px solid transparent;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}
.pay__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .5px;
  text-transform: uppercase;
  background: linear-gradient(180deg, #fff2b3 0%, #ffd24a 50%, #b87f1a 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  white-space: nowrap;
}
.pay__name--bold { font-weight: 800; }

/* ==========================================================
   TWO-COLUMN SECTIONS (steps+wheel)
   ========================================================== */
.twocol-section { padding: 56px 0; }
.twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
.twocol__side { display: flex; flex-direction: column; align-items: stretch; }
.twocol__side .section__title { text-align: left; }
.twocol__side--center { align-items: center; }
.twocol__side--center .section__title { text-align: center; }

/* STEPS */
.steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.step {
  background: rgba(20, 22, 64, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex; align-items: flex-start; gap: 14px;
}
.step__num {
  width: 32px; height: 32px; border-radius: 8px;
  background: linear-gradient(180deg, #ffe27a, #ffd24a, #b87f1a);
  color: #2a1a04;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 16px;
  flex-shrink: 0;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 4px;
}
.step p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.5; }

/* ==========================================================
   BONUS WHEEL
   ========================================================== */
.wheel {
  position: relative;
  width: 280px; height: 280px;
  margin: 12px auto 0;
}
.wheel__shadow {
  position: absolute; inset: -10px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,74,.25), transparent 65%);
  filter: blur(14px);
}
.wheel__rim {
  position: absolute; inset: 0; border-radius: 50%;
  background: conic-gradient(#ffd24a, #b87f1a, #ffd24a, #b87f1a, #ffd24a, #b87f1a, #ffd24a, #b87f1a, #ffd24a);
  padding: 10px;
}
.wheel__rim::before {
  content: ""; position: absolute; inset: 4px; border-radius: 50%;
  background: #2a1a04;
}
.wheel__disk {
  position: absolute; inset: 14px; border-radius: 50%;
  background: conic-gradient(
    #b8222b 0deg 45deg,
    #46219e 45deg 90deg,
    #b8222b 90deg 135deg,
    #46219e 135deg 180deg,
    #b8222b 180deg 225deg,
    #46219e 225deg 270deg,
    #b8222b 270deg 315deg,
    #46219e 315deg 360deg
  );
  overflow: hidden;
  transition: transform 5s cubic-bezier(.18,.85,.18,1);
  border: 3px solid #ffd24a;
  box-shadow: inset 0 0 0 1px #6b0d12, inset 0 0 24px rgba(0,0,0,.4);
}
.wheel__slice {
  position: absolute; left: 50%; top: 50%;
  width: 50%; height: 50%;
  transform-origin: 0% 100%;
  display: flex; align-items: flex-start; justify-content: center;
  padding-top: 14px;
}
.wheel__slice em {
  font-style: normal;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px;
  color: var(--gold-soft);
  transform: rotate(22deg);
  letter-spacing: .5px;
  text-shadow: 0 1px 2px rgba(0,0,0,.6);
}
.wheel__slice.s1 { transform: rotate(0deg); }
.wheel__slice.s2 { transform: rotate(45deg); }
.wheel__slice.s3 { transform: rotate(90deg); }
.wheel__slice.s4 { transform: rotate(135deg); }
.wheel__slice.s5 { transform: rotate(180deg); }
.wheel__slice.s6 { transform: rotate(225deg); }
.wheel__slice.s7 { transform: rotate(270deg); }
.wheel__slice.s8 { transform: rotate(315deg); }
.wheel__pointer {
  position: absolute; left: 50%; top: -3px;
  width: 0; height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 22px solid var(--gold);
  transform: translateX(-50%);
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.55));
  z-index: 5;
}
.wheel__btn {
  position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px; border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, #fff2b3 0%, #ffd24a 35%, #b87f1a 80%, #6e3f0e 100%);
  color: #4a1a06;
  font-family: var(--font-display); font-weight: 800; font-size: 12px;
  letter-spacing: 1px;
  text-shadow: 0 1px 0 rgba(255,255,255,.4);
  box-shadow:
    0 0 0 2px #6b0d12,
    0 0 0 4px #ffd24a,
    0 6px 14px rgba(0,0,0,.5),
    inset 0 2px 0 rgba(255,255,255,.5);
  z-index: 4;
  transition: transform .15s;
}
.wheel__btn:hover { transform: translate(-50%, -50%) scale(1.06); }
.wheel__btn:disabled { opacity: .6; cursor: wait; }

.wheel-result {
  text-align: center; margin: 14px 0 0;
  min-height: 20px;
  font-size: 13px;
  color: var(--gold);
}
.wheel-result strong { color: #fff; }

/* ==========================================================
   FAQ (large, just above footer)
   ========================================================== */
.faq-section { padding: 60px 0 70px; }
.faq--wide {
  max-width: 880px;
  margin: 0 auto;
}
.faq__item {
  background: rgba(20, 22, 64, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] { border-color: rgba(255,210,74,.35); }
.faq__item summary {
  list-style: none;
  padding: 16px 56px 16px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  position: relative;
  color: var(--white);
  transition: background-color .15s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background-color: rgba(255,210,74,.04); }
.faq__item summary::after {
  content: "+";
  position: absolute; right: 20px; top: 50%;
  font-size: 24px;
  font-weight: 400;
  color: var(--gold);
  line-height: 0;
  margin-top: 1px;
  transition: transform .2s;
}
.faq__item[open] summary::after {
  content: "−";
}
.faq__body { padding: 0 22px 18px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.faq__body p { margin: 0; }
.faq__body p strong { color: var(--gold); font-weight: 600; }
.faq__body p em { color: var(--white); font-style: normal; }

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: linear-gradient(180deg, #0a0a2a 0%, #060620 100%);
  border-top: 1px solid var(--line);
  padding: 40px 0 0;
  margin-top: 20px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 28px;
  padding-bottom: 28px;
}
.site-footer__brand p { color: var(--muted); font-size: 13px; margin: 12px 0 0; }
.site-footer__col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--gold);
  margin: 0 0 12px;
}
.site-footer__col li { margin-bottom: 6px; }
.site-footer__col a { color: var(--muted); font-size: 13px; transition: color .2s; }
.site-footer__col a:hover { color: var(--gold); }

.age { display: flex; align-items: flex-start; gap: 10px; margin-top: 14px; }
.age__18 {
  display: inline-grid; place-items: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: #e23b3b; color: #fff;
  font-weight: 900; font-size: 13px;
  flex-shrink: 0;
}
.age span:last-child { font-size: 11px; color: var(--muted); line-height: 1.45; }

.site-footer__copy {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  font-size: 12px; color: var(--muted);
}
.site-footer__copy .container {
  display: flex; justify-content: space-between; gap: 14px;
}
.site-footer__providers { letter-spacing: 2px; }

/* ==========================================================
   FLOATING SIDE CTA + STICKY MOBILE CTA + POPUP
   ========================================================== */
.side-cta {
  position: fixed;
  right: -1px;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  background: linear-gradient(180deg, #ffe27a, #ffd24a, #b87f1a);
  color: #2a1a04;
  font-family: var(--font-body); font-weight: 800;
  font-size: 11px; letter-spacing: 1.5px;
  padding: 14px 6px;
  border-radius: 8px 0 0 8px;
  text-transform: uppercase;
  box-shadow: -4px 4px 14px rgba(0,0,0,.4);
  z-index: 80;
  transition: filter .2s;
}
.side-cta:hover { filter: brightness(1.06); }

.sticky-cta {
  position: fixed; left: 50%; bottom: 14px;
  transform: translateX(-50%) translateY(120px);
  display: none;
  align-items: center; gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, #fff2b3, #ffd24a, #b87f1a);
  color: #2a1a04;
  border-radius: 999px;
  font-weight: 800; font-size: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
  z-index: 90;
  transition: transform .35s ease;
  max-width: calc(100% - 28px);
}
.sticky-cta.is-visible { transform: translateX(-50%) translateY(0); }
.sticky-cta__text { display: flex; flex-direction: column; line-height: 1.1; }
.sticky-cta__text strong { font-size: 11px; letter-spacing: .5px; }
.sticky-cta__text em { font-size: 9px; font-style: normal; opacity: .8; }

.bonus-pop {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(5,6,26,.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center;
  padding: 16px;
}
.bonus-pop[hidden] { display: none; }
.bonus-pop__box {
  position: relative;
  max-width: 380px; width: 100%;
  background: linear-gradient(180deg, var(--navy-2), var(--navy-1));
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  text-align: center;
  box-shadow: 0 14px 40px rgba(0,0,0,.5), 0 0 26px rgba(255,210,74,.2);
  animation: popIn .3s ease;
}
@keyframes popIn {
  from { transform: scale(.92); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.bonus-pop__close {
  position: absolute; right: 8px; top: 8px;
  width: 30px; height: 30px; border-radius: 50%;
  font-size: 20px; color: var(--muted);
  background: rgba(255,255,255,.06);
}
.bonus-pop__icon { display: grid; place-items: center; margin: 0 auto 6px; }
.bonus-pop h3 { font-family: var(--font-display); color: var(--gold); margin: 0 0 6px; font-size: 18px; }
.bonus-pop p { color: var(--muted); margin: 0 0 14px; font-size: 14px; }
.bonus-pop p strong { color: var(--gold); }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .symbol-grid { grid-template-columns: repeat(4, 1fr); }
  .variant-grid { grid-template-columns: repeat(2, 1fr); }
  .provider { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .pay-grid { grid-template-columns: repeat(5, 1fr); }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .burger { display: flex; }
  .site-header__inner { height: 72px; }
  .brand__logo { height: 56px; }

  .hero { padding: 36px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 20px; }
  .hero__visual { order: -1; }
  .hero__zeus-img { max-width: 240px; }
  .hero__ctas .btn { flex: 1; }

  .symbol-grid { grid-template-columns: repeat(3, 1fr); }
  .variant-grid { grid-template-columns: 1fr; }
  .where-grid { grid-template-columns: 1fr; }
  .twocol { grid-template-columns: 1fr; gap: 36px; }
  .twocol__side .section__title { text-align: center; }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .jackpot-grid { grid-template-columns: 1fr; }

  .info-table th, .info-table td { padding: 11px 14px; font-size: 13px; }

  .site-footer__inner { grid-template-columns: 1fr 1fr; }
  .site-footer__copy .container { flex-direction: column; text-align: center; }

  .side-cta { display: none; }
  .sticky-cta { display: inline-flex; }

  .nav.is-open {
    display: flex; flex-direction: column;
    position: fixed; left: 0; right: 0; top: 72px;
    background: rgba(6,6,32,.98);
    padding: 18px;
    border-bottom: 1px solid var(--line);
    z-index: 99;
    gap: 4px;
  }
  .nav.is-open a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 36px 0; }
  .hero__title { font-size: 26px; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .pay-grid { grid-template-columns: repeat(3, 1fr); }
  .symbol-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__inner { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
