:root {
  --surface: #f8f3ee;
  --surface-low: #f4eee8;
  --surface-card: #ffffff;
  --surface-line: #ececec;
  --surface-high: #e8e8e8;
  --text: #17181a;
  --muted: #62544c;
  --primary: #9f2f18;
  --primary-fill: #d94f26;
  --primary-fill-hover: #b93c17;
  --primary-gold: #f3ba45;
  --primary-rose: #9b173f;
  --primary-violet: #6f2fb8;
  --primary-teal: #0e7c79;
  --primary-tint: #fff0e4;
  --primary-tint-border: #efb995;
  --outline: #e3bda9;
  --footer: #121212;

  --font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Montserrat", Arial, sans-serif;

  --r-tile: 18px;
  --r-inner: 12px;
  --r-pill: 999px;

  --shadow-soft: 0 1px 2px rgba(37, 17, 8, 0.05), 0 10px 26px -14px rgba(37, 17, 8, 0.26);
  --shadow-hover: 0 16px 34px -16px rgba(37, 17, 8, 0.38);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--surface-low);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  padding: 72px 0 64px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

button, summary, a { -webkit-tap-highlight-color: transparent; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  border-radius: 2px;
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

h1, h2, h3,
.brand, .footer-brand,
.button, .eyebrow {
  font-family: var(--font-display);
}

.skip-link {
  background: var(--text);
  color: #fff;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.material-symbols-outlined {
  direction: ltr;
  display: inline-block;
  font-family: "Material Symbols Outlined";
  font-feature-settings: "liga";
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
}

/* ---------------- Header ---------------- */
.site-header {
  background: linear-gradient(90deg, #8f2515 0%, var(--primary-fill) 48%, #ef8b2b 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  height: 72px;
  inset: 0 0 auto;
  position: fixed;
  z-index: 50;
}
.site-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1040px;
  padding: 0 16px;
}
.site-header__brandline,
.site-header__actions {
  align-items: center;
  display: flex;
  gap: 8px;
}
.brand {
  align-items: center;
  display: inline-flex;
  height: 58px;
  justify-content: center;
  min-width: 152px;
}

.brand img {
  border-radius: 8px;
  filter: drop-shadow(0 4px 10px rgba(54, 15, 2, 0.28));
  height: 54px;
  object-fit: cover;
  object-position: center;
  width: 150px;
}
.icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  padding: 0;
  width: 40px;
}
.desktop-nav { align-self: stretch; display: none; gap: 18px; }
.desktop-nav a {
  align-items: end;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 0 0 17px;
  text-transform: uppercase;
}
.desktop-nav a:hover,
.desktop-nav a.is-active { color: #fff; }
.desktop-nav a.is-active { border-bottom: 3px solid #fff; padding-bottom: 14px; }

/* ---------------- Canvas ---------------- */
.page-bg {
  background-image:
    radial-gradient(rgba(159, 47, 24, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 47, 184, 0.035), transparent 28%, transparent 72%, rgba(14, 124, 121, 0.04));
  background-size: 24px 24px;
}
.page-shell { margin: 0 auto; max-width: 1160px; padding: 28px 16px; }

.game-block,
.casino-section,
.article-flow,
.faq { margin: 0 0 32px; }

.casino-section,
.note-panel,
.faq { scroll-margin-top: 92px; }

.eyebrow {
  color: #7a736c;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}

/* ---------------- BENTO ---------------- */
.bento {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 32px;
}
.bento__tile {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-tile);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.bento__hero,
.bento__live,
.bento__results { grid-column: 1 / -1; }

/* Hero tile */
.bento__hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 380px;
  color: #fff;
}
.bento__hero-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 0;
}
.bento__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20, 6, 3, 0.1) 0%, rgba(20, 6, 3, 0.28) 42%, rgba(20, 6, 3, 0.68) 100%);
}
.bento__hero-body { position: relative; z-index: 2; padding: 22px; width: 100%; }

.bento__hero-copy {
  background: linear-gradient(135deg, rgba(45, 14, 4, 0.78), rgba(14, 6, 4, 0.62));
  border: 1px solid rgba(246, 183, 60, 0.38);
  border-radius: 16px;
  box-shadow: 0 18px 38px -20px rgba(0, 0, 0, 0.75);
  max-width: 560px;
  padding: 22px;
}

@supports (backdrop-filter: blur(10px)) {
  .bento__hero-copy {
    backdrop-filter: blur(8px);
  }
}

.bento__hero h1 {
  color: #fff7dc;
  font-size: clamp(30px, 7vw, 42px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 8px 0 10px;
  text-shadow: 0 2px 0 rgba(106, 31, 9, 0.55), 0 10px 22px rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
}
.bento__hero .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin: 0 0 18px;
  max-width: 54ch;
}
.eyebrow--on-dark {
  color: #ffd384;
  display: inline-flex;
  background: rgba(255, 211, 132, 0.14);
  border: 1px solid rgba(255, 211, 132, 0.24);
  border-radius: var(--r-pill);
  padding: 6px 10px;
}

/* Stat tiles */
.bento__stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.bento__stat--accent {
  background: linear-gradient(160deg, var(--primary-tint), var(--surface-card) 62%);
  border-color: var(--primary-tint-border);
}
.bento__stat > .material-symbols-outlined { color: var(--primary-fill); font-size: 30px; }
.bento__stat-badge { width: 46px; height: auto; }
.bento__stat-foot { margin-top: auto; }
.bento__stat-label {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 3px;
  text-transform: uppercase;
}
.bento__stat-value {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(19px, 5vw, 22px);
  font-weight: 800;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}

/* Live tiles */
.bento__live {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.bento__live .eyebrow { display: inline-flex; align-items: center; }
.bento__live-value {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin: 8px 0 4px;
  text-transform: uppercase;
}
.bento__live-note { color: var(--muted); font-size: 13px; margin: 0; }

/* Bonus side panel */
.bento__promo {
  background:
    linear-gradient(160deg, rgba(78, 13, 38, 0.97), rgba(25, 7, 29, 0.97) 54%, rgba(10, 67, 72, 0.96)),
    var(--text);
  border-color: rgba(243, 186, 69, 0.34);
  color: #fff;
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  padding: 18px;
}

.bento__promo-copy .eyebrow {
  color: var(--primary-gold);
  margin: 0 0 8px;
}

.bento__promo-copy strong {
  color: #fff7dc;
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.bento__promo-copy span {
  color: rgba(255, 255, 255, 0.74);
  display: block;
  font-size: 13px;
  line-height: 1.45;
  margin-top: 8px;
}

.bento__promo-visual {
  background:
    linear-gradient(180deg, rgba(255, 247, 220, 0.12), rgba(255, 247, 220, 0.03)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 223, 142, 0.24);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 18px 30px -24px rgba(0, 0, 0, 0.9);
  padding: 8px;
}

.bento__promo-visual img {
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.42));
  height: auto;
  object-fit: contain;
  width: 100%;
}

.bento__promo-list {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.promo-ticket {
  align-items: center;
  color: #fff7dc;
  display: flex;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  gap: 7px;
  line-height: 1;
  min-height: 38px;
  overflow: hidden;
  padding: 5px 9px 5px 5px;
  border-radius: 12px;
  text-transform: uppercase;
}

.promo-ticket img {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  flex: 0 0 48px;
  height: 28px;
  object-fit: contain;
  padding: 2px;
  width: 48px;
}

.promo-ticket--coin {
  background: linear-gradient(135deg, rgba(28, 89, 162, 0.94), rgba(17, 42, 91, 0.88));
  border: 1px solid rgba(117, 177, 255, 0.34);
}

.promo-ticket--cash {
  background: linear-gradient(135deg, rgba(23, 119, 66, 0.94), rgba(17, 70, 38, 0.88));
  border: 1px solid rgba(134, 221, 122, 0.34);
}

.promo-ticket--pachinko {
  background: linear-gradient(135deg, rgba(112, 45, 159, 0.94), rgba(72, 24, 103, 0.9));
  border: 1px solid rgba(216, 144, 255, 0.34);
}

.promo-ticket--crazy {
  background: linear-gradient(135deg, rgba(178, 45, 30, 0.96), rgba(111, 19, 20, 0.9));
  border: 1px solid rgba(255, 182, 98, 0.38);
}

@media (min-width: 768px) {
  .bento__promo-list {
    grid-template-columns: 1fr;
  }

  .bento__promo-copy strong {
    font-size: 27px;
  }

  .promo-ticket {
    min-height: 36px;
  }
}
.live-dot {
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin-right: 7px;
  width: 8px;
  animation: live-pulse 1.8s ease-out infinite;
}
@keyframes live-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.bento__stat:hover,
.bento__live:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }

/* Results tile */
.bento__results { padding: 18px; }
.bento__results-title {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.results-strip__track {
  align-items: center;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: none;
}
.results-strip__track::-webkit-scrollbar { display: none; }
.results-strip__track[aria-busy="true"] { opacity: 0.72; }

.number-chip,
.bonus-chip,
.ticket-chip {
  align-items: center;
  border-radius: var(--r-pill);
  display: inline-flex;
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
}
.number-chip {
  color: #fff;
  box-shadow: var(--shadow-soft);
  height: 56px;
  min-width: 44px;
  width: 44px;
}
.number-chip--one { background: linear-gradient(145deg, #5b9cff 0%, #2f75e8 62%, #2464d3 100%); }
.number-chip--two { background: linear-gradient(145deg, #ffd33d 0%, #efb806 58%, #d79a00 100%); }
.number-chip--five { background: linear-gradient(145deg, #ff6464 0%, #ef3f43 58%, #cf2d31 100%); }
.number-chip--ten { background: linear-gradient(145deg, #bd6cff 0%, #9f4aea 58%, #8437cf 100%); }

.api-result-chip { gap: 8px; }
.number-chip.api-result-chip {
  border-radius: 50%;
  box-shadow: 0 13px 24px rgba(43, 27, 17, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-size: 21px;
  height: 64px;
  line-height: 1;
  margin-right: 10px;
  min-width: 64px;
  overflow: visible;
  padding: 0;
  position: relative;
  width: 64px;
}
.number-chip__value {
  position: relative;
  z-index: 1;
}
.result-label {
  flex: 1 1 auto;
  min-width: 0;
}
.result-multiplier {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-height: 24px;
  min-width: 34px;
  padding: 0 8px;
}
.number-chip.api-result-chip .result-multiplier {
  background: #fff8ea;
  border: 1px solid rgba(83, 43, 19, 0.12);
  bottom: 4px;
  box-shadow: 0 6px 14px rgba(48, 24, 12, 0.2);
  color: #3d2115;
  position: absolute;
  right: -12px;
  z-index: 2;
}
.bonus-chip.api-result-chip .result-multiplier {
  background: rgba(255, 246, 229, 0.92);
  border: 1px solid rgba(83, 43, 19, 0.1);
  color: #3d2115;
  margin-left: auto;
}
.api-state--ok { color: var(--text); }
.api-state--error { color: #b42d1b; }

.bonus-chip {
  background: var(--surface-card);
  border: 1px solid var(--outline);
  color: var(--text);
  padding: 0 16px;
}
.bonus-chip--media {
  flex-basis: 178px;
  gap: 10px;
  height: 56px;
  min-height: 56px;
  min-width: 178px;
  overflow: hidden;
  padding: 6px 18px 6px 8px;
  width: 178px;
}
.bonus-chip--media img {
  border-radius: var(--r-pill);
  flex: 0 0 70px;
  height: 42px;
  object-fit: cover;
  width: 70px;
}
.bonus-chip--active {
  background: var(--primary-fill);
  border-color: var(--primary-fill);
  color: #fff;
}
.ticket-chip {
  background: #fff;
  border: 1px solid var(--surface-line);
  color: var(--text);
  flex-basis: 84px;
  height: 56px;
  min-width: 84px;
  overflow: hidden;
  padding: 6px 8px;
  width: 84px;
}
.ticket-chip img {
  height: auto;
  max-height: 42px;
  object-fit: contain;
  width: 100%;
}

/* ---------------- Buttons ---------------- */
.button {
  align-items: center;
  border-radius: var(--r-pill);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1;
  min-height: 48px;
  padding: 15px 28px;
  text-transform: uppercase;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  width: 100%;
}
.button:active { transform: scale(0.98); }
.button--primary { background: var(--primary-fill); color: #fff; box-shadow: 0 6px 18px -8px rgba(232, 93, 36, 0.9); }
.button--primary:hover { background: var(--primary-fill-hover); }
.button--secondary { background: var(--surface-card); border: 2px solid var(--primary-fill); color: var(--primary-fill); }
.button--secondary:hover { background: var(--primary-fill); color: #fff; }

/* ---------------- Second game block (feature card) ---------------- */
.game-block {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-tile);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.game-media { margin: 0; }
.game-media img {
  aspect-ratio: 16 / 9;
  background: var(--surface-high);
  height: auto;
  object-fit: cover;
  width: 100%;
}
.game-media figcaption {
  background: var(--primary-fill);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  padding: 10px 16px;
  text-align: center;
  text-transform: uppercase;
}
.game-heading { display: grid; gap: 14px; margin: 0; padding: 22px; }
.game-heading h2 { font-size: 24px; font-weight: 800; letter-spacing: 0; line-height: 1.2; margin: 0; }
.game-heading p { color: var(--muted); margin: 8px 0 0; }
.game-heading .button { justify-self: start; width: 100%; }

/* ---------------- Section head ---------------- */
.section-head { margin-bottom: 20px; }
.section-head h2 { font-size: 24px; font-weight: 800; letter-spacing: 0; line-height: 1.2; margin: 6px 0 0; }
.section-head p { color: var(--muted); margin: 8px 0 0; }
.lead { font-size: 16px; max-width: 680px; }

/* ---------------- Casino cards ---------------- */
.casino-grid { display: grid; gap: 14px; }
.casino-card {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-tile);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 14px;
  padding: 20px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.casino-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.casino-card p {
  align-self: start;
  background: var(--primary-tint);
  border: 1px solid var(--primary-tint-border);
  border-radius: var(--r-pill);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0;
  padding: 5px 11px;
  text-transform: uppercase;
}
.casino-card h3 { font-size: 24px; font-weight: 800; letter-spacing: 0; line-height: 1.1; margin: -4px 0 0; }
.casino-card dl { display: grid; gap: 8px; margin: 0; }
.casino-card dl div {
  border-bottom: 1px solid var(--surface-line);
  display: grid;
  gap: 12px;
  grid-template-columns: 92px 1fr;
  padding-bottom: 8px;
}
.casino-card dt { color: var(--muted); font-family: var(--font-display); font-size: 12px; font-weight: 600; text-transform: uppercase; }
.casino-card dd { margin: 0; }

/* ---------------- Inner pages ---------------- */
.inner-hero {
  background:
    linear-gradient(135deg, rgba(62, 14, 34, 0.94), rgba(22, 8, 30, 0.96) 54%, rgba(12, 75, 78, 0.92)),
    var(--footer);
  border: 1px solid rgba(243, 186, 69, 0.3);
  border-radius: var(--r-tile);
  box-shadow: var(--shadow-soft);
  color: #fff;
  display: grid;
  gap: 18px;
  margin: 0 0 28px;
  overflow: hidden;
  padding: 22px;
}
.inner-hero__copy h1 {
  color: #fff7dc;
  font-size: clamp(34px, 11vw, 48px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.95;
  margin: 10px 0 12px;
  text-shadow: 0 2px 0 rgba(106, 31, 9, 0.55), 0 12px 28px rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
}
.inner-hero__copy p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 18px;
  max-width: 58ch;
}
.inner-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.inner-hero__media {
  align-content: end;
  background:
    radial-gradient(circle at 50% 42%, rgba(243, 186, 69, 0.34), transparent 48%),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 223, 142, 0.2);
  border-radius: 16px;
  display: grid;
  min-height: 260px;
  overflow: hidden;
  padding: 14px;
}
.inner-hero__media img {
  align-self: center;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.45));
  justify-self: center;
  object-fit: contain;
  width: min(100%, 420px);
}
.hero-score {
  background: rgba(14, 9, 12, 0.78);
  border: 1px solid rgba(255, 223, 142, 0.26);
  border-radius: 14px;
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 14px;
}
.hero-score strong {
  color: #fff7dc;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.hero-score span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.quick-nav {
  display: flex;
  gap: 10px;
  margin: -8px 0 28px;
  overflow-x: auto;
  padding: 2px 0 8px;
  scrollbar-width: none;
}
.quick-nav::-webkit-scrollbar { display: none; }
.quick-nav a {
  background: var(--surface-card);
  border: 1px solid var(--outline);
  border-radius: var(--r-pill);
  color: var(--text);
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  padding: 9px 14px;
  text-transform: uppercase;
}
.quick-nav a.is-active {
  background: var(--primary-fill);
  border-color: var(--primary-fill);
  color: #fff;
}

.review-grid,
.check-grid,
.steps-grid {
  display: grid;
  gap: 14px;
}
.review-card,
.check-card,
.note-panel {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-tile);
  box-shadow: var(--shadow-soft);
}
.review-card {
  display: grid;
  gap: 16px;
  padding: 18px;
}
.review-card__top {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr auto;
}
.review-rank {
  align-items: center;
  background: var(--primary-fill);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  height: 42px;
  justify-content: center;
  width: 42px;
}
.review-brand strong {
  color: var(--text);
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.review-brand span,
.review-card p,
.check-card p,
.note-panel p {
  color: var(--muted);
  margin: 0;
}
.review-score {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-align: right;
}
.review-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.review-list li {
  align-items: center;
  color: var(--text);
  display: flex;
  gap: 8px;
  font-size: 13px;
}
.review-list .material-symbols-outlined {
  color: #22c55e;
  font-size: 18px;
}
.metric-row {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.metric-pill {
  background: var(--primary-tint);
  border: 1px solid var(--primary-tint-border);
  border-radius: 12px;
  padding: 10px;
}
.metric-pill span {
  color: var(--muted);
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.metric-pill strong {
  color: var(--text);
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 3px;
  text-transform: uppercase;
}
.check-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}
.check-card .material-symbols-outlined {
  color: var(--primary-fill);
  font-size: 30px;
}
.check-card h3 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}
.note-panel {
  background:
    linear-gradient(135deg, var(--primary-tint), #fff 70%);
  border-color: var(--primary-tint-border);
  display: grid;
  gap: 14px;
  padding: 20px;
}
.note-panel h2 {
  color: var(--text);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.05;
  margin: 0;
  text-transform: uppercase;
}
.note-panel > div {
  max-width: 620px;
}
.steps-grid {
  counter-reset: step;
  margin: 0;
  padding: 0;
}
.steps-grid li {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-inner);
  box-shadow: var(--shadow-soft);
  color: var(--muted);
  list-style: none;
  padding: 18px 18px 18px 58px;
  position: relative;
}
.steps-grid li::before {
  align-items: center;
  background: var(--primary-fill);
  border-radius: 50%;
  color: #fff;
  content: counter(step);
  counter-increment: step;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  height: 30px;
  justify-content: center;
  left: 18px;
  position: absolute;
  top: 18px;
  width: 30px;
}
.steps-grid strong {
  color: var(--text);
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* ---------------- Live page ---------------- */
.inner-hero__media--live {
  align-content: center;
  gap: 12px;
}
.live-status-panel {
  background: rgba(14, 9, 12, 0.78);
  border: 1px solid rgba(255, 223, 142, 0.24);
  border-radius: 14px;
  display: grid;
  gap: 10px;
  padding: 12px;
}
.live-status-panel div {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 2px;
  grid-template-columns: auto 1fr;
  padding-top: 10px;
}
.live-status-panel div:first-child { border-top: 0; padding-top: 0; }
.live-status-panel span {
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.16);
  height: 10px;
  margin: 0 8px 0 2px;
  width: 10px;
}
.live-status-panel strong {
  color: #fff7dc;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.live-status-panel small {
  color: rgba(255, 255, 255, 0.72);
  grid-column: 2;
  line-height: 1.35;
}
.live-status-panel div:not(:first-child) strong,
.live-status-panel div:not(:first-child) small {
  grid-column: 1 / -1;
}
.live-board-grid {
  display: grid;
  gap: 14px;
}
.live-tile {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-tile);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 10px;
  padding: 18px;
}
.live-tile__icon {
  color: var(--primary-fill);
  font-size: 32px;
}
.live-tile h3 {
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.live-tile p {
  color: var(--muted);
  margin: 0;
}
.live-route {
  display: grid;
  gap: 10px;
}
.live-route span {
  align-items: center;
  background: var(--surface-card);
  border: 1px solid var(--primary-tint-border);
  border-radius: var(--r-inner);
  color: var(--text);
  display: flex;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  gap: 10px;
  padding: 12px;
  text-transform: uppercase;
}
.live-route strong {
  align-items: center;
  background: var(--primary-fill);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 auto;
  height: 32px;
  justify-content: center;
  width: 32px;
}

/* ---------------- Strategy page ---------------- */
.inner-hero__media--strategy {
  align-content: stretch;
  gap: 12px;
}
.strategy-board {
  align-content: center;
  display: grid;
  gap: 14px;
}
.strategy-board__tickets {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.strategy-board__tickets img {
  align-self: center;
  background:
    radial-gradient(circle at center, rgba(255, 247, 220, 0.22), rgba(12, 8, 18, 0.72) 68%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 223, 142, 0.2);
  border-radius: 999px;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.36));
  height: 96px;
  justify-self: center;
  object-fit: cover;
  padding: 4px;
  width: 72px;
}
.strategy-board__meter {
  background: rgba(14, 9, 12, 0.78);
  border: 1px solid rgba(255, 223, 142, 0.24);
  border-radius: 14px;
  display: grid;
  gap: 8px;
  padding: 14px;
  position: relative;
}
.strategy-board__meter::before {
  background: linear-gradient(90deg, #3b82f6, #f0b90b, var(--primary-fill));
  border-radius: 999px;
  content: "";
  height: 8px;
  margin-bottom: 4px;
  width: 100%;
}
.strategy-board__meter span {
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.strategy-board__meter strong {
  color: #fff7dc;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.strategy-profile {
  align-content: start;
}
.strategy-split {
  display: grid;
  gap: 8px;
}
.strategy-split span {
  background:
    linear-gradient(90deg, var(--primary-fill) var(--share), rgba(159, 47, 24, 0.1) var(--share));
  border: 1px solid var(--primary-tint-border);
  border-radius: var(--r-pill);
  color: var(--text);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  text-transform: uppercase;
}
.strategy-ladder {
  display: grid;
  gap: 10px;
}
.strategy-ladder span {
  background: var(--surface-card);
  border: 1px solid var(--primary-tint-border);
  border-radius: var(--r-inner);
  color: var(--muted);
  display: grid;
  gap: 3px;
  padding: 12px;
}
.strategy-ladder strong {
  color: var(--text);
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

/* ---------------- Go pages ---------------- */
.go-panel {
  background:
    linear-gradient(135deg, rgba(62, 14, 34, 0.94), rgba(22, 8, 30, 0.96) 54%, rgba(12, 75, 78, 0.92)),
    var(--footer);
  border: 1px solid rgba(243, 186, 69, 0.3);
  border-radius: var(--r-tile);
  box-shadow: var(--shadow-soft);
  color: #fff;
  display: grid;
  gap: 18px;
  margin: 0 auto;
  max-width: 920px;
  overflow: hidden;
  padding: 22px;
}
.go-panel__copy h1 {
  color: #fff7dc;
  font-size: clamp(42px, 12vw, 68px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 0.9;
  margin: 10px 0 14px;
  text-shadow: 0 2px 0 rgba(106, 31, 9, 0.55), 0 12px 28px rgba(0, 0, 0, 0.42);
  text-transform: uppercase;
}
.go-panel__copy p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 18px;
}
.go-status {
  align-items: center;
  background: rgba(14, 9, 12, 0.78);
  border: 1px solid rgba(255, 223, 142, 0.26);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.76);
  display: grid;
  gap: 8px;
  grid-template-columns: auto auto 1fr;
  margin-bottom: 18px;
  padding: 12px;
}
.go-status .material-symbols-outlined {
  color: #f0b90b;
  font-size: 22px;
}
.go-status strong {
  color: #fff7dc;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}
.go-panel__media {
  align-content: end;
  background:
    radial-gradient(circle at 50% 42%, rgba(243, 186, 69, 0.34), transparent 48%),
    rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 223, 142, 0.2);
  border-radius: 16px;
  display: grid;
  min-height: 240px;
  overflow: hidden;
  padding: 14px;
}
.go-panel__media img {
  align-self: center;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.45));
  justify-self: center;
  object-fit: contain;
  width: min(100%, 360px);
}

/* ---------------- Error pages ---------------- */
.error-panel {
  background:
    radial-gradient(circle at 16% 14%, rgba(247, 189, 48, 0.2), transparent 28%),
    linear-gradient(145deg, #531025 0%, #150b1f 68%, #0d3b3a 100%);
  border: 1px solid rgba(247, 183, 61, 0.42);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-soft);
  color: #fff7dc;
  margin: 0 auto;
  max-width: 760px;
  overflow: hidden;
  padding: clamp(34px, 8vw, 72px);
  position: relative;
}
.error-panel::after {
  background: rgba(255, 255, 255, 0.08);
  content: "";
  height: 220px;
  position: absolute;
  right: -120px;
  top: -80px;
  transform: rotate(18deg);
  width: 260px;
}
.error-panel > * { position: relative; z-index: 1; }
.error-panel strong {
  color: var(--bonus-yellow);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(54px, 14vw, 110px);
  line-height: 0.9;
  margin: 0 0 14px;
}
.error-panel h1 {
  color: #fff7dc;
  font-size: clamp(38px, 8vw, 72px);
  line-height: 0.92;
  margin: 0 0 18px;
  max-width: 620px;
}
.error-panel p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}

/* ---------------- Article + tables ---------------- */
.article-flow { color: var(--muted); font-size: 14px; line-height: 1.55; }
.article-flow section { margin: 0 0 32px; }
.article-flow h2,
.faq h2 { color: var(--text); font-size: 24px; font-weight: 800; letter-spacing: 0; line-height: 1.2; margin: 0 0 16px; }
.article-flow p { margin: 0 0 16px; }
.article-flow em { color: var(--text); }

.table-scroll { overflow-x: auto; border-radius: var(--r-inner); }
table {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-collapse: collapse;
  border-radius: var(--r-inner);
  min-width: 560px;
  overflow: hidden;
  width: 100%;
}
th, td { border-bottom: 1px solid var(--surface-line); padding: 12px 14px; text-align: left; vertical-align: top; }
th { color: var(--text); font-family: var(--font-display); font-size: 12px; font-weight: 600; text-transform: uppercase; }
td { color: var(--muted); }

/* ---------------- Bonus grid ---------------- */
.bonus-grid { display: grid; gap: 14px; }
.bonus-grid article {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-tile);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.bonus-grid article:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.bonus-grid img { aspect-ratio: 16 / 9; object-fit: cover; width: 100%; }
.bonus-grid h3 { color: var(--text); font-size: 18px; font-weight: 800; margin: 14px 14px 6px; }
.bonus-grid p { margin: 0 14px 16px; }

.inner-hero__media--bonus { align-content: stretch; }
.bonus-stack {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bonus-stack__tile {
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(9, 8, 14, 0.62)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 223, 142, 0.22);
  border-radius: 14px;
  color: #fff7dc;
  display: grid;
  gap: 8px;
  min-height: 126px;
  overflow: hidden;
  padding: 10px;
  position: relative;
}
.bonus-stack__tile::after {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  content: "";
  height: 1px;
  inset: auto 12px 42px;
  position: absolute;
}
.bonus-stack__tile img {
  align-self: center;
  filter: drop-shadow(0 12px 16px rgba(0, 0, 0, 0.36));
  justify-self: center;
  max-height: 86px;
  object-fit: contain;
  width: min(100%, 150px);
}
.bonus-stack__tile span {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.bonus-stack__tile--coin { background-color: rgba(0, 78, 145, 0.5); }
.bonus-stack__tile--cash { background-color: rgba(26, 123, 54, 0.46); }
.bonus-stack__tile--pachinko { background-color: rgba(94, 33, 134, 0.48); }
.bonus-stack__tile--crazy { background-color: rgba(146, 34, 24, 0.5); }

.bonus-grid--detail article {
  display: grid;
  grid-template-rows: auto 1fr;
  scroll-margin-top: 92px;
}
.bonus-card__media {
  align-items: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(255, 247, 220, 0.26), transparent 48%),
    var(--footer);
  border-bottom: 1px solid var(--surface-line);
  display: flex;
  min-height: 174px;
  padding: 14px;
}
.bonus-card__media img {
  aspect-ratio: 16 / 9;
  filter: drop-shadow(0 14px 20px rgba(0, 0, 0, 0.28));
  object-fit: contain;
}
.bonus-card__media--coin { background-color: #083f68; }
.bonus-card__media--cash { background-color: #0e5c33; }
.bonus-card__media--pachinko { background-color: #4b176f; }
.bonus-card__media--crazy { background-color: #842016; }
.bonus-card__body {
  display: grid;
  gap: 12px;
  padding: 16px;
}
.bonus-card__body h3 {
  color: var(--text);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  margin: 4px 0 0;
  text-transform: uppercase;
}
.bonus-card__body p { margin: 0; }
.bonus-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.bonus-meta span {
  background: var(--primary-tint);
  border: 1px solid var(--primary-tint-border);
  border-radius: var(--r-pill);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  text-transform: uppercase;
}
.detail-list {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.detail-list li {
  color: var(--muted);
  font-size: 14px;
  padding-left: 18px;
  position: relative;
}
.detail-list li::before {
  background: var(--primary-fill);
  border-radius: 50%;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 0.62em;
  width: 7px;
}

/* ---------------- Multiplier panel ---------------- */
.multiplier-panel {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-tile);
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 16px;
  padding: 20px;
}
.multiplier-panel h2 { font-size: 24px; font-weight: 800; letter-spacing: 0; margin: 0 0 8px; }
.multiplier-panel p { color: var(--muted); margin: 0; }
.multiplier-row { display: grid; gap: 10px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.multiplier-row img {
  align-self: center;
  background: var(--surface-low);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-inner);
  height: 54px;
  justify-self: center;
  object-fit: contain;
  padding: 4px;
  width: 100%;
}

/* ---------------- FAQ ---------------- */
.faq {
  background: var(--surface-card);
  border: 1px solid var(--surface-line);
  border-radius: var(--r-tile);
  box-shadow: var(--shadow-soft);
  padding: 6px 20px 10px;
}
.faq h2 { margin: 18px 0 6px; }
.faq details { border-top: 1px solid var(--surface-line); }
.faq details:first-of-type { border-top: 0; }
.faq summary {
  align-items: center;
  color: var(--text);
  cursor: pointer;
  display: flex;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  justify-content: space-between;
  list-style: none;
  padding: 18px 0;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .material-symbols-outlined { color: var(--primary-fill); transition: transform 160ms ease; }
.faq details[open] summary .material-symbols-outlined { transform: rotate(180deg); }
.faq p { color: var(--muted); margin: -6px 0 18px; }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--footer); color: #fff; padding: 56px 16px 44px; }
.site-footer__inner { margin: 0 auto; max-width: 1040px; text-align: center; }
.footer-brand { color: #fff7dc; font-size: 30px; font-style: normal; font-weight: 800; letter-spacing: 0; margin: 0 0 40px; text-shadow: 0 2px 0 rgba(159, 51, 15, 0.7); }
.footer-grid { display: grid; gap: 28px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 0 0 44px; }
.footer-grid h3 { font-size: 12px; font-weight: 600; letter-spacing: 0; margin: 0 0 14px; text-transform: uppercase; }
.footer-grid a { color: #a4a4a4; display: block; font-size: 12px; margin: 0 0 10px; }
.footer-grid a:hover { color: #fff; }
.compliance-row { align-items: center; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 0 0 28px; }
.compliance-row span {
  align-items: center;
  background: #fff;
  border-radius: 6px;
  color: #111;
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  min-height: 40px;
  padding: 0 12px;
}
.compliance-row span:first-child { min-width: 40px; justify-content: center; }
.compliance-row span:last-child { background: #003b5c; color: #fff; }
.site-footer p { color: #777; font-size: 10px; line-height: 1.6; margin: 0 auto; max-width: 760px; }

/* ---------------- Bottom nav (mobile) ---------------- */
.bottom-nav {
  align-items: center;
  background: var(--surface);
  border-top: 1px solid var(--outline);
  bottom: 0;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  display: flex;
  height: 64px;
  justify-content: space-around;
  left: 0;
  padding: 0 8px;
  position: fixed;
  right: 0;
  z-index: 50;
}
.bottom-nav a {
  align-items: center;
  color: #5f5e5e;
  display: flex;
  flex: 1;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  gap: 4px;
  justify-content: center;
}
.bottom-nav a.is-active { color: var(--primary); }

/* ---------------- Mobile polish ---------------- */
@media (max-width: 767px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    padding-top: 64px;
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }

  .site-header {
    height: 64px;
  }

  .site-header__inner {
    padding: 0 10px;
  }

  .site-header__brandline,
  .site-header__actions {
    gap: 4px;
  }

  .brand {
    height: 50px;
    min-width: 128px;
  }

  .brand img {
    height: 44px;
    width: 126px;
  }

  .icon-button {
    height: 38px;
    width: 38px;
  }

  .page-shell {
    padding: 18px 12px 28px;
  }

  .bento {
    gap: 10px;
    margin-bottom: 28px;
  }

  .bento__tile {
    border-radius: 16px;
  }

  .bento__hero {
    min-height: 346px;
  }

  .bento__hero-body {
    padding: 14px;
  }

  .bento__hero-copy {
    border-radius: 14px;
    padding: 16px;
  }

  .bento__hero h1 {
    font-size: clamp(28px, 8.4vw, 36px);
    margin-bottom: 8px;
  }

  .bento__hero .lead {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 14px;
  }

  .eyebrow--on-dark {
    padding: 5px 9px;
  }

  .bento__stat {
    min-height: 108px;
    padding: 13px;
  }

  .bento__stat > .material-symbols-outlined {
    font-size: 27px;
  }

  .bento__stat-value {
    font-size: clamp(18px, 5.2vw, 21px);
  }

  .bento__live {
    padding: 16px;
  }

  .bento__live-value {
    font-size: 28px;
  }

  .bento__promo {
    gap: 12px;
    padding: 16px;
  }

  .bento__promo-copy strong {
    font-size: clamp(27px, 9vw, 34px);
  }

  .bento__promo-copy span {
    font-size: 12px;
  }

  .bento__promo-visual {
    padding: 7px;
  }

  .bento__promo-visual img {
    margin: 0 auto;
    max-height: 190px;
  }

  .bento__promo-list {
    gap: 7px;
  }

  .promo-ticket {
    border-radius: 11px;
    font-size: 10px;
    gap: 5px;
    min-height: 36px;
    padding: 5px 7px 5px 5px;
  }

  .promo-ticket img {
    flex-basis: 42px;
    height: 26px;
    width: 42px;
  }

  .bento__results {
    padding: 16px 12px 14px;
  }

  .results-strip__track {
    gap: 8px;
    padding-bottom: 6px;
    scroll-padding-inline: 2px;
    -webkit-overflow-scrolling: touch;
  }

  .number-chip {
    height: 50px;
    min-width: 42px;
    width: 42px;
  }

  .number-chip.api-result-chip {
    font-size: 18px;
    height: 56px;
    margin-right: 8px;
    min-width: 56px;
    width: 56px;
  }

  .number-chip.api-result-chip .result-multiplier {
    bottom: 3px;
    font-size: 10px;
    min-height: 21px;
    min-width: 30px;
    padding: 0 7px;
    right: -9px;
  }

  .ticket-chip {
    flex-basis: 76px;
    height: 50px;
    min-width: 76px;
    padding: 5px 7px;
    width: 76px;
  }

  .ticket-chip img {
    max-height: 38px;
  }

  .bonus-chip--media {
    flex-basis: 150px;
    gap: 8px;
    height: 50px;
    min-height: 50px;
    min-width: 150px;
    padding: 6px 12px 6px 7px;
    width: 150px;
  }

  .bonus-chip--media img {
    border-radius: 12px;
    flex-basis: 58px;
    height: 36px;
    object-fit: contain;
    width: 58px;
  }

  .button {
    min-height: 46px;
    padding: 14px 22px;
  }

  .game-block,
  .casino-section,
  .article-flow,
  .faq,
  .inner-hero,
  .note-panel {
    margin-bottom: 28px;
  }

  .game-media img {
    background:
      radial-gradient(circle at center, rgba(243, 186, 69, 0.24), rgba(18, 18, 18, 0.94) 62%),
      var(--footer);
    object-fit: contain;
    padding: 8px;
  }

  .game-heading,
  .casino-card,
  .review-card,
  .check-card,
  .multiplier-panel {
    padding: 18px;
  }

  .inner-hero {
    padding: 18px;
  }

  .inner-hero__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inner-hero__media {
    min-height: 0;
    padding: 10px;
  }

  .inner-hero__media img {
    max-height: 165px;
    width: auto;
  }

  .inner-hero__actions .button {
    font-size: 12px;
    padding-inline: 12px;
    width: 100%;
  }

  .hero-score {
    display: none;
  }

  .review-card__top {
    grid-template-columns: auto 1fr;
  }

  .review-score {
    grid-column: 1 / -1;
    text-align: left;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }

  .casino-card dl div {
    gap: 6px;
    grid-template-columns: 82px 1fr;
  }

  .live-status-panel {
    display: none;
  }

  .live-route span {
    font-size: 16px;
  }

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

  .strategy-board__tickets img {
    height: 74px;
    width: 56px;
  }

  .strategy-board__meter strong {
    font-size: 18px;
  }

  .go-panel {
    padding: 18px;
  }

  .go-status {
    align-items: start;
    grid-template-columns: auto 1fr;
  }

  .go-status span:last-child {
    grid-column: 1 / -1;
  }

  .go-panel__media {
    min-height: 0;
    padding: 10px;
  }

  .go-panel__media img {
    max-height: 170px;
  }

  .article-flow {
    font-size: 15px;
  }

  .table-scroll {
    margin: 0 -12px;
    padding: 0 12px;
  }

  table {
    min-width: 520px;
  }

  th,
  td {
    padding: 11px 12px;
  }

  .bonus-grid img {
    object-fit: contain;
  }

  .bonus-stack__tile {
    min-height: 100px;
    padding: 8px;
  }

  .bonus-stack__tile img {
    max-height: 60px;
  }

  .bonus-stack__tile span {
    font-size: 13px;
  }

  .bonus-card__media {
    min-height: 138px;
  }

  .multiplier-row {
    gap: 8px;
  }

  .multiplier-row img {
    height: 48px;
  }

  .faq {
    padding: 4px 18px 8px;
  }

  .faq summary {
    gap: 14px;
    line-height: 1.15;
  }

  .footer-grid {
    gap: 22px 18px;
  }

  .bottom-nav {
    height: calc(64px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (max-width: 374px) {
  .site-header__actions .icon-button:first-child {
    display: none;
  }

  .brand {
    min-width: 116px;
  }

  .brand img {
    width: 116px;
  }

  .bento__promo-visual img {
    max-height: 160px;
  }

  .promo-ticket {
    font-size: 9px;
    gap: 4px;
    min-height: 34px;
    padding-right: 5px;
  }

  .promo-ticket img {
    flex-basis: 38px;
    height: 24px;
    width: 38px;
  }

  .casino-card dl div {
    grid-template-columns: 1fr;
  }

  .review-card__top {
    gap: 10px;
  }

  .review-rank {
    height: 38px;
    width: 38px;
  }

  .review-brand strong {
    font-size: 24px;
  }
}

/* ---------------- Desktop ---------------- */
@media (min-width: 768px) {
  body { font-size: 18px; padding-bottom: 0; }

  .site-header__inner { padding: 0 24px; }
  .desktop-nav { display: flex; }

  .page-shell { padding: 44px 24px; }

  .game-block,
  .casino-section,
  .article-flow,
  .faq,
  .inner-hero,
  .note-panel { margin-bottom: 64px; }

  /* Bento: wide casino grid with right bonus rail */
  .bento {
    gap: 16px;
    grid-template-areas:
      "hero hero rtp max promo"
      "hero hero volatility category promo"
      "sync sync frequency frequency promo"
      "results results results results results";
    grid-template-columns: 1.25fr 1.25fr 1fr 1fr 0.95fr;
    grid-auto-rows: minmax(136px, auto);
    margin-bottom: 64px;
  }
  .bento__hero { grid-area: hero; min-height: 0; }
  .bento__stat--rtp { grid-area: rtp; }
  .bento__stat--max { grid-area: max; }
  .bento__stat--volatility { grid-area: volatility; }
  .bento__stat--category { grid-area: category; }
  .bento__promo { grid-area: promo; }
  .bento__live--sync { grid-area: sync; }
  .bento__live--frequency { grid-area: frequency; }
  .bento__results { grid-area: results; }
  .bento__hero-body { padding: 32px; }
  .bento__hero .lead { font-size: 16px; }
  .bento__stat { grid-column: auto; }
  .bento__live { grid-column: auto; }

  /* Second game block -> horizontal feature card */
  .game-block { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: stretch; }
  .game-media { display: flex; flex-direction: column; }
  .game-media img { aspect-ratio: auto; flex: 1; min-height: 260px; }
  .game-heading { align-content: center; padding: 30px; }
  .game-heading h2 { font-size: 32px; }
  .game-heading .button { width: auto; }

  .button { width: auto; }

  .section-head h2,
  .article-flow h2,
  .faq h2,
  .multiplier-panel h2 { font-size: 32px; }

  .casino-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .casino-card { align-content: start; }
  .casino-card dl div { grid-template-columns: 1fr; gap: 3px; }

  .inner-hero {
    align-items: stretch;
    grid-template-columns: 1.12fr 0.88fr;
    padding: 28px;
  }
  .inner-hero__copy {
    align-self: center;
  }
  .inner-hero__copy h1 {
    font-size: 54px;
  }
  .inner-hero__media {
    min-height: 360px;
  }
  .review-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .check-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .steps-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .live-board-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .note-panel {
    align-items: start;
    padding: 26px;
  }
  .note-panel > div {
    max-width: 760px;
  }
  .steps-grid li {
    min-height: 150px;
    padding-right: 22px;
  }
  .live-route {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .live-route span {
    justify-content: center;
  }
  .strategy-board__tickets img {
    height: 124px;
    width: 88px;
  }
  .strategy-ladder {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .go-panel {
    align-items: stretch;
    grid-template-columns: 1.05fr 0.95fr;
    padding: 28px;
  }
  .go-panel__copy {
    align-self: center;
  }
  .go-panel__media {
    min-height: 360px;
  }

  .article-flow { font-size: 18px; line-height: 1.6; }
  .article-flow section { margin-bottom: 48px; }

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

  .bonus-stack {
    gap: 12px;
  }

  .bonus-stack__tile {
    min-height: 155px;
  }

  .multiplier-panel { align-items: center; grid-template-columns: 1.1fr 0.9fr; padding: 26px; }

  .footer-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); text-align: left; }

  .bottom-nav { display: none; }
}

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