/* ==========================================================================
   BetLabel Casino IT - theme
   Dark emerald surface system: squared corners, flat shadows, green-header
   tables, top-accented cards, gradient primary buttons.
   ========================================================================== */

:root {
  /* Brand */
  --accent: #35953C;
  --accent-hi: #2A7A31;
  --accent-soft: #8CC65A;
  --accent-grad: linear-gradient(135deg, #2F8B36 0%, #4FAF3F 100%);

  /* Ink / surfaces */
  --ink-900: #0F1317;
  --ink-850: #12181D;
  --ink-800: #171C22;
  --ink-700: #1C222A;
  --ink-tint: #101C14;

  --white: #FFFFFF;

  /* Guaranteed-light chip surface for near-black logo artwork */
  --chip-bg: #FFFFFF;
  --chip-line: #DCE1E5;
  --chip-ink: #1C222A;

  --accent-veil: rgba(140, 198, 90, .13);
  --accent-veil-hi: rgba(140, 198, 90, .24);

  --line: rgba(255, 255, 255, .11);
  --line-hi: rgba(255, 255, 255, .2);

  --ink-muted: #838A93;
  --ink-soft: #B2B8C1;
  --ink-base: #F1F3F5;

  /* Layout */
  --shell: 1240px;
  --r-xs: 4px;
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 10px;
  --r-btn: 6px;

  --sh-flat: 0 1px 3px rgba(0, 0, 0, .3);
  --sh-soft: 0 4px 14px rgba(0, 0, 0, .34);
  --sh-btn: 0 4px 12px rgba(47, 139, 54, .3);

  --band-gap: 68px;
  --band-gap-md: 46px;
  --band-gap-sm: 34px;
  --gap: 22px;

  --type: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

  --bar-h: 74px;
  --t-fast: 150ms ease;
  --t-base: 220ms ease;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  margin: 0;
  font-family: var(--type);
  color: var(--ink-base);
  background: var(--ink-900);
  line-height: 1.62;
}

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

:where(img[width][height]) { height: auto; }

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

button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }

ul, ol { margin: 0; padding: 0; }

table { border-collapse: collapse; width: 100%; }

h1, h2, h3, h4 { font-weight: 700; line-height: 1.24; margin: 0 0 .6em; color: var(--ink-base); }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 30px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--white);
  padding: 10px 16px;
  z-index: 1000;
  border-radius: 0 0 var(--r-xs) 0;
}

.skip-link:focus { left: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */

.lead-title, h1.lead-title {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -.01em;
  margin: 34px 0 0;
  padding-left: 16px;
  border-left: 5px solid var(--accent);
  color: var(--ink-base);
}

h2 { font-size: 29px; font-weight: 700; }
h3 { font-size: 21px; font-weight: 600; }

/* Section headings carry a short green left rule */
.band h2,
.prose h2 {
  padding-left: 14px;
  border-left: 4px solid var(--accent);
}

.prose h3 {
  padding-left: 12px;
  border-left: 3px solid var(--accent-veil-hi);
}

.prose {
  font-size: 17px;
  line-height: 1.66;
  color: var(--ink-base);
}

.prose h2 { margin-top: 0; }
.prose h3 { margin-top: 1.7em; }
.prose p { color: var(--ink-base); }

.prose ul {
  margin: 0 0 1.2em;
  padding-left: 1.2em;
  list-style: none;
}

.prose ul li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: .5em;
}

.prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .6em;
  width: 9px;
  height: 3px;
  background: var(--accent-soft);
}

.prose ol { margin: 0 0 1.2em; padding-left: 1.4em; }
.prose ol li { padding-left: .4em; margin-bottom: .5em; }
.prose ol li::marker { color: var(--accent-soft); font-weight: 700; }

.prose a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--white); }
.prose a:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 2px; }

.prose-below { margin-top: 40px; }

/* ==========================================================================
   Tables - green header, striped rows, green outer rule
   ========================================================================== */

.data-table { overflow-x: auto; margin: 0 0 1.5em; -webkit-overflow-scrolling: touch; }

.data-table table {
  min-width: 480px;
  border: 1px solid rgba(53, 149, 60, .5);
  border-radius: var(--r-sm);
  overflow: hidden;
  font-size: 15px;
  background: var(--ink-800);
}

.data-table th {
  background: var(--accent);
  color: var(--white);
  text-align: left;
  padding: 13px 16px;
  font-weight: 700;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, .14);
}

.data-table th:last-child { border-right: 0; }

.data-table td {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  color: var(--ink-base);
}

.data-table tbody tr:nth-child(odd) { background: rgba(140, 198, 90, .05); }
.data-table tbody td:first-child { font-weight: 600; }

/* ==========================================================================
   Buttons - gradient primary with a soft green glow
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: var(--r-btn);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  white-space: nowrap;
  transition: filter var(--t-fast), border-color var(--t-fast), background var(--t-fast),
    color var(--t-fast), box-shadow var(--t-fast), transform var(--t-fast);
}

.btn-primary {
  background: var(--accent-grad);
  color: var(--white);
  border: 1px solid rgba(140, 198, 90, .55);
  box-shadow: var(--sh-btn);
}

.btn-primary:hover { filter: brightness(1.09); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 2px; }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(140, 198, 90, .55);
}

.btn-secondary:hover { border-color: var(--accent-soft); background: var(--accent-veil); transform: translateY(-1px); }
.btn-secondary:focus-visible { outline: 2px solid var(--white); outline-offset: 2px; }

/* ==========================================================================
   Site header
   ========================================================================== */

.site-header {
  background: var(--ink-900);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--sh-flat);
  border-bottom: 2px solid var(--accent);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--bar-h);
}

.brand-mark { flex-shrink: 0; display: inline-flex; }

.main-nav { flex: 1; min-width: 0; }

.main-nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  flex-wrap: wrap;
}

.main-nav-item { position: relative; }

.main-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 13px;
  border-radius: var(--r-xs);
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}

.main-nav-link:hover,
.main-nav-link:focus-visible { color: var(--white); background: rgba(255, 255, 255, .05); border-bottom-color: var(--accent-soft); }

.nav-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -3px;
  transition: transform var(--t-fast);
}

.main-nav-item.open .nav-arrow { transform: rotate(-135deg); margin-top: 3px; }

.main-nav-sub {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 246px;
  background: var(--ink-700);
  border: 1px solid var(--line);
  border-top: 2px solid var(--accent);
  border-radius: 0 0 var(--r-md) var(--r-md);
  box-shadow: var(--sh-soft);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity var(--t-base), transform var(--t-base), visibility var(--t-base);
}

.main-nav-item:hover .main-nav-sub,
.main-nav-item.open .main-nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav-sub a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--r-xs);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}

.main-nav-sub a:hover,
.main-nav-sub a:focus-visible { color: var(--accent-soft); background: rgba(255, 255, 255, .05); }

.header-tools { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.gift-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  color: var(--accent-soft);
  background: var(--accent-veil);
  border: 1px solid rgba(140, 198, 90, .28);
  transition: background var(--t-fast), transform var(--t-fast);
}

.gift-btn:hover { background: var(--accent-veil-hi); transform: translateY(-1px); }
.gift-btn:focus-visible { outline: 2px solid var(--accent-soft); outline-offset: 2px; }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--r-xs);
}

.burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 0 auto;
  transition: transform var(--t-base), opacity var(--t-base);
}

.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); }

.drawer {
  display: none;
  background: var(--ink-700);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base);
}

.drawer.open { max-height: 80vh; overflow-y: auto; }

.drawer-list { list-style: none; padding: 8px 20px; }

.drawer-item { border-bottom: 1px solid rgba(255, 255, 255, .08); }

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 4px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.drawer-sub { list-style: none; padding: 0 0 12px 12px; display: none; }

.drawer-item.open .drawer-sub { display: block; }

.drawer-sub a { display: block; padding: 9px 4px; color: var(--ink-soft); font-size: 14px; }

.drawer-actions { display: flex; gap: 12px; padding: 16px 20px 24px; }

.drawer-actions .btn { flex: 1; }

/* ==========================================================================
   Promo hero
   ========================================================================== */

.promo { background: var(--ink-900); padding: 30px 0 34px; }

.promo-visual {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid rgba(140, 198, 90, .22);
  box-shadow: var(--sh-soft);
  aspect-ratio: 1144 / 281;
  background: var(--ink-800);
}

.promo-visual img { width: 100%; height: 100%; object-fit: cover; }

.promo-panel {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  max-width: 452px;
  background: rgba(15, 19, 23, .78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: var(--r-md);
  padding: 24px 26px;
  border: 1px solid var(--line-hi);
  border-top: 3px solid var(--accent);
  box-shadow: var(--sh-flat);
}

.promo-label {
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent-soft);
  margin: 0 0 10px;
}

.promo-offer { margin-bottom: 20px; }

.promo-offer-name {
  display: block;
  font-size: 23px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 6px;
}

.promo-offer-detail {
  display: block;
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-soft);
}

.promo-cta { width: 100%; font-size: 16px; min-height: 50px; }

/* ==========================================================================
   Bands
   ========================================================================== */

.band { padding: var(--band-gap) 0; }
.band-base { background: var(--ink-900); }
.band-alt { background: var(--ink-850); }
.band-tint { background: var(--ink-tint); }

.band h2 { margin-bottom: 28px; }

.shot {
  width: 100%;
  height: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  box-shadow: var(--sh-soft);
  margin-bottom: 30px;
}

/* ==========================================================================
   Game tiles - top-accented cards
   ========================================================================== */

.game-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.game-tile {
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  box-shadow: var(--sh-flat);
  overflow: hidden;
  transition: transform var(--t-fast), border-color var(--t-fast);
}

.game-tile:hover { transform: translateY(-3px); border-top-color: var(--accent-soft); }

.game-tile-media { aspect-ratio: 3 / 2; background: var(--ink-700); }

.game-tile-media img { width: 100%; height: 100%; object-fit: cover; }

.game-tile-body { padding: 14px 16px 16px; }

.game-tile-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--ink-base);
}

.game-tile-meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }

.rtp-tag {
  display: inline-flex;
  align-items: center;
  background: var(--accent-veil);
  border: 1px solid rgba(140, 198, 90, .32);
  color: var(--accent-soft);
  font-size: 12.5px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--r-xs);
}

.game-tile-studio {
  font-size: 12.5px;
  color: var(--ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   Offer cards
   ========================================================================== */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: 40px;
}

.offer-card {
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  overflow: hidden;
  box-shadow: var(--sh-flat);
  transition: transform var(--t-fast), border-color var(--t-fast);
}

.offer-card:hover { transform: translateY(-3px); border-top-color: var(--accent-soft); }

.offer-card-media { aspect-ratio: 16 / 10; background: var(--ink-700); }

.offer-card-media img { width: 100%; height: 100%; object-fit: cover; }

.offer-card-body { padding: 16px 18px 20px; background: rgba(140, 198, 90, .06); }

.offer-card-name { font-size: 16px; font-weight: 700; margin: 0 0 6px; color: var(--white); }

.offer-card-terms { font-size: 14.5px; color: var(--accent-soft); font-weight: 600; margin: 0; }

/* ==========================================================================
   Studio (gaming provider) logos - kept on a light chip surface because the
   source artwork is near-black monochrome.
   ========================================================================== */

.studio-block { margin: 34px 0; }

.studio-block-title {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--ink-soft);
  margin-bottom: 16px;
  padding-left: 12px;
  border-left: 3px solid var(--accent-soft);
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.studio-chip {
  background: var(--chip-bg);
  border: 1px solid var(--chip-line);
  border-bottom: 3px solid var(--accent);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 78px;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}

.studio-chip:hover { transform: translateY(-2px); box-shadow: var(--sh-flat); }

.studio-chip img { max-height: 34px; width: auto; object-fit: contain; }

/* ==========================================================================
   Cashier (payment) chips
   ========================================================================== */

.cashier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  margin-bottom: 40px;
}

.cashier-chip {
  background: var(--chip-bg);
  border: 1px solid var(--chip-line);
  border-bottom: 3px solid var(--accent);
  border-radius: var(--r-sm);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  box-shadow: var(--sh-flat);
  transition: transform var(--t-fast);
}

.cashier-chip:hover { transform: translateY(-2px); }

.cashier-chip-media { height: 40px; display: flex; align-items: center; }

.cashier-chip-media img { max-height: 40px; max-width: 100%; object-fit: contain; }

.cashier-chip-name { font-size: 13.5px; font-weight: 600; color: var(--chip-ink); }

/* ==========================================================================
   Player voices (reviews slider)
   ========================================================================== */

.voice-slider { position: relative; padding: 0 52px; }

.voice-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 2 * var(--gap)) / 3);
  gap: var(--gap);
  overflow: hidden;
  scroll-behavior: smooth;
}

.voice-track.no-anim { scroll-behavior: auto; }

.voice-card {
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent-soft);
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  box-shadow: var(--sh-flat);
  padding: 22px;
  scroll-snap-align: start;
}

.voice-card-head { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 8px; }

.voice-card-name { font-weight: 700; font-size: 15.5px; color: var(--ink-base); }

.voice-card-date { font-size: 12.5px; color: var(--ink-muted); white-space: nowrap; }

.voice-card-rating { margin-bottom: 12px; font-size: 15px; display: flex; align-items: center; gap: 2px; }

.star { color: rgba(255, 255, 255, .17); }
.star.filled { color: var(--accent-soft); }

.voice-card-score { margin-left: 6px; font-size: 12.5px; color: var(--ink-muted); font-weight: 600; }

.voice-card-text { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.6; }

.voice-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  background: var(--ink-800);
  color: var(--ink-base);
  border: 1px solid var(--line-hi);
  box-shadow: var(--sh-flat);
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.voice-nav:hover { background: var(--accent); color: var(--white); border-color: var(--accent); }
.voice-nav-prev { left: 0; }
.voice-nav-next { right: 0; }

.voice-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }

.voice-dots button {
  width: 20px;
  height: 4px;
  border-radius: 2px;
  background: var(--line-hi);
  transition: background var(--t-fast), width var(--t-fast);
}

.voice-dots button.active { background: var(--accent-soft); width: 30px; }

.voices-cta { text-align: center; margin-top: 28px; }

/* ==========================================================================
   Q&A accordion - separated panels with a green left rule
   ========================================================================== */

.qa { display: flex; flex-direction: column; gap: 12px; }

.qa-item {
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  overflow: hidden;
}

.qa-item.open { border-left-color: var(--accent-soft); }

.qa-question-wrap { margin: 0; }

.qa-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  text-align: left;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink-base);
}

.qa-icon { position: relative; flex-shrink: 0; width: 20px; height: 20px; }

.qa-icon::before, .qa-icon::after {
  content: "";
  position: absolute;
  background: var(--accent-soft);
  transition: transform var(--t-base), opacity var(--t-base);
}

.qa-icon::before { top: 9px; left: 2px; width: 16px; height: 2px; }
.qa-icon::after { top: 2px; left: 9px; width: 2px; height: 16px; }

.qa-toggle[aria-expanded="true"] .qa-icon::after { transform: rotate(90deg); opacity: 0; }

.qa-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base), padding var(--t-base);
  font-size: 15px;
  color: var(--ink-soft);
  padding: 0 20px;
}

.qa-panel p:last-child { margin-bottom: 0; }

.qa-item.open .qa-panel { padding-bottom: 20px; }

/* ==========================================================================
   Updated stamp
   ========================================================================== */

.band-stamp { padding: 30px 0; }
.stamp-line { color: var(--ink-muted); font-size: 14.5px; margin: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer { background: var(--ink-700); color: var(--ink-soft); padding: 56px 0 32px; border-top: 3px solid var(--accent); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-brand .brand-mark { margin-bottom: 12px; }

.footer-col h3 {
  color: var(--white);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
  padding-left: 10px;
  border-left: 3px solid var(--accent);
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a { font-size: 14.5px; transition: color var(--t-fast); }
.footer-col a:hover { color: var(--accent-soft); }

.footer-badges { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; padding: 28px 0; }

.footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 42px;
  background: var(--ink-800);
  border: 1px solid var(--line);
  border-radius: var(--r-xs);
  padding: 6px 10px;
  opacity: .9;
  transition: opacity var(--t-fast), transform var(--t-fast), border-color var(--t-fast);
}

.footer-badge:hover { opacity: 1; transform: translateY(-2px); border-color: rgba(140, 198, 90, .45); }

.footer-badge img { max-height: 100%; max-width: 100%; width: auto; height: auto; object-fit: contain; }

.footer-notice {
  font-size: 13.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 14px;
}

.age-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  padding: 2px 9px;
  border-radius: var(--r-xs);
  font-size: 12.5px;
}

.footer-legal { font-size: 13px; margin: 0; color: var(--ink-muted); }

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1199px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .studio-grid { grid-template-columns: repeat(4, 1fr); }
  .cashier-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  :root { --band-gap: var(--band-gap-md); }

  .main-nav { display: none; }
  .site-header .brand-mark img { width: 110px; height: auto; }
  .gift-btn { display: none; }
  .header-tools .btn { display: none; }
  .header-tools .btn-primary { display: inline-flex; }
  .burger { display: flex; }
  .drawer { display: block; }

  .promo-visual { aspect-ratio: 712 / 273; }
  .promo-panel { left: 20px; right: 20px; max-width: none; padding: 22px; }

  .lead-title { font-size: 34px; }
  h2 { font-size: 26px; }

  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .cashier-grid { grid-template-columns: repeat(3, 1fr); }
  .studio-grid { grid-template-columns: repeat(4, 1fr); }

  .voice-track { grid-auto-columns: calc((100% - var(--gap)) / 2); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .container { padding: 0 18px; }

  :root { --band-gap: var(--band-gap-sm); }

  .lead-title { font-size: 28px; margin-top: 24px; padding-left: 12px; }
  h2 { font-size: 23px; }
  h3 { font-size: 19px; }
  .prose { font-size: 16px; }

  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .offer-grid { grid-template-columns: 1fr; }
  .cashier-grid { grid-template-columns: repeat(2, 1fr); }
  .studio-grid { grid-template-columns: repeat(3, 1fr); }

  .game-tile-meta { flex-direction: column; align-items: flex-start; gap: 4px; }
  .game-tile-studio { order: 1; width: 100%; white-space: normal; overflow: visible; text-overflow: clip; }
  .rtp-tag { order: 2; white-space: nowrap; }

  .promo { padding-top: 16px; }

  /* On narrow screens the bonus text wraps onto extra lines, so the panel -
     not a fixed aspect-ratio - drives the banner height. Keeping the panel
     absolutely positioned inside an aspect-ratio box would clip the CTA.
     The image becomes a full-bleed backdrop behind the panel instead. */
  .promo-visual {
    border-radius: var(--r-sm);
    aspect-ratio: auto;
    min-height: 210px;
  }

  .promo-visual img { position: absolute; inset: 0; object-position: 65% 50%; }

  .promo-panel {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 62px 12px 12px;
    max-width: none;
    border-radius: var(--r-sm);
    padding: 18px;
  }
  .promo-offer-name { font-size: 19px; }
  .promo-offer-detail { font-size: 15px; }
  .promo-label { font-size: 12px; margin-bottom: 6px; }
  .promo-offer { margin-bottom: 14px; }

  .voice-slider { padding: 0 8px; }
  .voice-track { grid-auto-columns: 100%; }
  .voice-nav { display: none; }

  .qa-toggle { padding: 16px 14px; font-size: 15.5px; }
  .qa-panel { padding: 0 14px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 40px 0 28px; }
}

@media (max-width: 420px) {
  .studio-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.001ms !important; animation-duration: 0.001ms !important; }
}
