/* ==========================================================================
   PowerUp Casino DE — "vlt-" namespaced VIP-lounge / card-deck theme.
   Mobile-first. Namespace prefix is mandatory anti-footprint (see brief).
   Deliberately NOT the donor's dark-arcade/neon system: different palette
   *logic* (felt-table emerald + brass/gold, not neon pink/cyan/purple),
   different type stack (serif display headings), sharper radii, different
   grid breakpoints/column counts, different page composition (lobby sits
   after the opening text block, not right after the hero).
   ========================================================================== */

:root {
  /* Spacing scale — named steps, not numbered (xs..4xl), still 4/8/12/16/24/32/48/64. */
  --vlt-space-xs: 4px;
  --vlt-space-sm: 8px;
  --vlt-space-md: 12px;
  --vlt-space-lg: 16px;
  --vlt-space-xl: 24px;
  --vlt-space-2xl: 32px;
  --vlt-space-3xl: 48px;
  --vlt-space-4xl: 64px;

  /* Color system — dark felt-table + brass/gold accents (VIP card-lounge, not neon arcade). */
  --vlt-ink: #0b1712;
  --vlt-ink-alt: #11241c90;
  --vlt-panel: #132821;
  --vlt-panel-2: #1b362c;
  --vlt-line: #33543f;
  --vlt-text: #eef6f0;
  --vlt-text-dim: #a2beac;
  --vlt-gold: #d7ad5f;
  --vlt-gold-bright: #f0cc8c;
  --vlt-emerald: #2fae7a;
  --vlt-teal: #3f97a6;
  --vlt-crimson: #b6483f;
  --vlt-mint: #48cf9c;

  /* Named z-index layers — see Layout-Regel, no magic numbers. */
  --vlt-layer-sticky: 20;
  --vlt-layer-nav: 50;
  --vlt-layer-menu: 150;

  /* Sharper corners than the donor's rounded neon cards; a hairline gold/line
     border carries the "premium table" feel instead of a glow. */
  --vlt-radius: 6px;
  --vlt-radius-sm: 3px;
  --vlt-radius-pill: 999px;
  --vlt-header-h: 72px;
  --vlt-max-width: 1220px;
  --vlt-prose-width: 760px;

  /* Serif display face for headings/brand (a "lounge" register), plain
     system sans for body copy — two distinct stacks, not one shared one. */
  --vlt-font-display: Georgia, 'Iowan Old Style', 'Palatino Linotype', 'Book Antiqua', serif;
  --vlt-font-body: 'Trebuchet MS', 'Segoe UI', Verdana, Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--vlt-font-body);
  background: var(--vlt-ink);
  color: var(--vlt-text);
  line-height: 1.65;
  font-size: 16px;
  /* No overflow-x:hidden on body — would disable position:sticky on .vlt-header (Layout-Regel). */
}

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

a { color: var(--vlt-teal); text-decoration: none; }
a:hover, a:focus-visible { text-decoration: underline; }

/* Scroll offset for in-page anchors under sticky header */
[id] { scroll-margin-top: calc(var(--vlt-header-h) + var(--vlt-space-lg)); }

.vlt-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.vlt-skip-link {
  position: absolute;
  left: var(--vlt-space-lg);
  top: -60px;
  background: var(--vlt-emerald);
  color: #04140d;
  font-weight: 700;
  padding: var(--vlt-space-sm) var(--vlt-space-lg);
  border-radius: var(--vlt-radius-sm);
  z-index: 500;
  transition: top .15s ease;
}
.vlt-skip-link:focus { top: var(--vlt-space-sm); }

/* ==========================================================================
   Buttons / CTA
   ========================================================================== */

.vlt-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--vlt-space-sm);
  min-height: 44px;
  padding: var(--vlt-space-md) var(--vlt-space-xl);
  border-radius: var(--vlt-radius-sm);
  background: linear-gradient(135deg, var(--vlt-gold), var(--vlt-emerald));
  color: #0c1f16;
  font-family: var(--vlt-font-display);
  font-weight: 700;
  letter-spacing: .01em;
  border: 1px solid rgba(0,0,0,.15);
  cursor: pointer;
  box-shadow: 0 8px 20px -10px rgba(215,173,95,.55);
  transition: transform .15s ease, box-shadow .15s ease;
}
.vlt-btn:hover, .vlt-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(215,173,95,.7);
  text-decoration: none;
}
.vlt-btn-header { display: none; }
.vlt-btn-hero { margin-top: var(--vlt-space-lg); }

/* ==========================================================================
   Header + navigation (single <nav>, burger toggles visibility/layout)
   ========================================================================== */

.vlt-header {
  position: sticky;
  top: 0;
  z-index: var(--vlt-layer-nav);
  background: rgba(11,23,18,.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--vlt-line);
}

.vlt-header-inner {
  max-width: var(--vlt-max-width);
  margin: 0 auto;
  height: var(--vlt-header-h);
  padding: 0 var(--vlt-space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--vlt-space-lg);
}

.vlt-brand { display: inline-flex; align-items: center; gap: var(--vlt-space-sm); }
.vlt-brand-mark { flex: none; }
.vlt-brand-word {
  font-family: var(--vlt-font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: .01em;
  color: var(--vlt-text);
}
.vlt-brand-word-accent { color: var(--vlt-gold); }

.vlt-nav { position: relative; }

.vlt-nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius-sm);
  cursor: pointer;
}
.vlt-nav-toggle-bars,
.vlt-nav-toggle-bars::before,
.vlt-nav-toggle-bars::after {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--vlt-text);
  border-radius: 2px;
  position: relative;
}
.vlt-nav-toggle-bars::before { position: absolute; top: -6px; }
.vlt-nav-toggle-bars::after { position: absolute; top: 6px; }

.vlt-nav-list {
  list-style: none;
  margin: 0;
  padding: var(--vlt-space-sm);
  display: none;
  flex-direction: column;
  gap: var(--vlt-space-xs);
  position: absolute;
  top: calc(100% + var(--vlt-space-sm));
  right: 0;
  min-width: 220px;
  background: var(--vlt-panel);
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.6);
  z-index: var(--vlt-layer-menu);
}
.vlt-nav-list.is-open { display: flex; }

.vlt-nav-link {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: var(--vlt-space-sm) var(--vlt-space-lg);
  color: var(--vlt-text);
  border-radius: var(--vlt-radius-sm);
}
.vlt-nav-link:hover, .vlt-nav-link:focus-visible { background: var(--vlt-panel-2); text-decoration: none; }
.vlt-nav-link[aria-current="page"] { color: var(--vlt-gold); font-weight: 700; }

@media (min-width: 900px) {
  .vlt-nav-toggle { display: none; }
  .vlt-nav-list {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    gap: var(--vlt-space-sm);
  }
  .vlt-btn-header { display: inline-flex; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.vlt-hero { position: relative; overflow: hidden; }
.vlt-hero-inner { position: relative; max-width: var(--vlt-max-width); margin: 0 auto; min-height: 300px; display: flex; align-items: center; }
/* Decorative background — wrapped in a referral link (aria-hidden, the real
   labelled CTA sits in .vlt-hero-content on top); link takes over the
   positioning the <img> used to have, image just fills it. */
.vlt-hero-link {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
}
.vlt-hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5) saturate(1.05) sepia(.08);
}
.vlt-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,23,18,.15) 0%, rgba(11,23,18,.96) 100%);
  z-index: 0;
  pointer-events: none; /* let clicks fall through to .vlt-hero-link underneath */
}
.vlt-hero-content {
  position: relative;
  z-index: 1;
  padding: var(--vlt-space-3xl) var(--vlt-space-lg) var(--vlt-space-2xl);
  max-width: 720px;
}
.vlt-hero-title {
  font-family: var(--vlt-font-display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  line-height: 1.2;
  margin: 0 0 var(--vlt-space-md);
  color: var(--vlt-text);
}
.vlt-hero-desc {
  color: var(--vlt-text-dim);
  font-size: clamp(.95rem, 1.8vw, 1.05rem);
  margin: 0;
}

/* ==========================================================================
   Opening text block (introHtml) — sits between the hero and the casino-
   lobby showcase (see layout.js). This is deliberately its OWN full-width
   block, not part of the two-column .vlt-layout grid below it, so the lobby
   can slot in right after it without breaking that grid's row structure.
   ========================================================================== */

.vlt-intro { max-width: var(--vlt-prose-width); margin: 0 0 var(--vlt-space-xl); }

/* ==========================================================================
   Casino-lobby showcase (homepage only, src/templates/lobby.js) — conversion
   chrome AFTER the opening text block, not the first screen under the hero
   (see layout.js). "Alive" purely via CSS (pulsing LIVE dot, marquee ticker,
   hover glow, staggered appear) — no gifs, no fake live counters (see brief).
   Full kill-switch under prefers-reduced-motion at the very end of this file.
   Bleeds edge-to-edge within .vlt-main via a negative-margin trick (cancels
   .vlt-main's own horizontal padding) instead of living as a sibling of
   <main> — different technique from the donor, same full-bleed result,
   without the classic 100vw-vs-scrollbar overflow bug (Layout-Regel).
   ========================================================================== */

.vlt-lobby {
  margin: 0 calc(-1 * var(--vlt-space-lg)) var(--vlt-space-2xl);
  background: radial-gradient(120% 160% at 10% -10%, rgba(47,174,122,.22), transparent 60%),
    radial-gradient(120% 160% at 100% 0%, rgba(215,173,95,.16), transparent 55%),
    var(--vlt-panel);
  border-top: 1px solid var(--vlt-line);
  border-bottom: 1px solid var(--vlt-line);
}

.vlt-lobby-inner {
  max-width: var(--vlt-max-width);
  margin: 0 auto;
  padding: var(--vlt-space-2xl) var(--vlt-space-lg);
}

.vlt-lobby-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--vlt-space-lg);
  margin-bottom: var(--vlt-space-lg);
}
.vlt-lobby-eyebrow {
  margin: 0 0 var(--vlt-space-xs);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--vlt-gold);
}
.vlt-lobby-title {
  margin: 0;
  font-family: var(--vlt-font-display);
  font-size: clamp(1.25rem, 3.2vw, 1.9rem);
  color: #fff;
}
.vlt-lobby-auth { display: flex; gap: var(--vlt-space-sm); flex-wrap: wrap; }
.vlt-btn-ghost {
  background: transparent;
  box-shadow: none;
  border: 1px solid var(--vlt-line);
  color: var(--vlt-text);
}
.vlt-btn-ghost:hover, .vlt-btn-ghost:focus-visible { border-color: var(--vlt-gold); color: var(--vlt-gold); }

/* Ticker — two identical spans scroll left in a seamless loop; the second is
   aria-hidden (decorative repeat, not new content) and the whole track just
   sits still, wrapped, under reduced motion (see the kill-switch below). */
.vlt-ticker {
  overflow: hidden;
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius-sm);
  background: var(--vlt-panel-2);
  padding: var(--vlt-space-sm) 0;
  margin-bottom: var(--vlt-space-xl);
}
.vlt-ticker-track {
  display: flex;
  width: max-content;
  gap: var(--vlt-space-3xl);
  animation: vlt-marquee 24s linear infinite;
}
.vlt-ticker-item {
  padding: 0 var(--vlt-space-xl);
  white-space: nowrap;
  font-size: .85rem;
  font-weight: 600;
  color: var(--vlt-gold-bright);
}
@keyframes vlt-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Lobby tile grid — fixed column counts (not auto-fill) chosen so the fixed
   20-tile set (buildLobbyTiles(), src/data/inventory.js) always divides
   evenly: 2 -> 4 -> 5 columns. No partial last row at any breakpoint, and no
   nth-child trimming hack needed (different, simpler approach than the
   donor's 2/3/4/5 ladder with an 18-tile trim on the 3-column band). */
.vlt-lobby-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vlt-space-lg);
}
@media (min-width: 600px) {
  .vlt-lobby-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 1200px) {
  .vlt-lobby-grid { grid-template-columns: repeat(5, 1fr); }
}

.vlt-lobby-tile {
  display: flex;
  flex-direction: column;
  color: var(--vlt-text);
  opacity: 0;
  animation: vlt-tile-in .5s ease forwards;
  animation-delay: var(--vlt-lobby-delay, 0ms);
}
@keyframes vlt-tile-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.vlt-lobby-tile-frame {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius);
  background: var(--vlt-panel);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.vlt-lobby-tile-frame img { width: 100%; height: 100%; object-fit: cover; }
.vlt-lobby-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 23, 18, .78);
  color: #fff;
  font-weight: 700;
  letter-spacing: .03em;
  opacity: 0;
  transition: opacity .18s ease;
}
.vlt-lobby-tile-name {
  margin-top: var(--vlt-space-sm);
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.25;
}
.vlt-lobby-tile-provider { font-size: .72rem; color: var(--vlt-text-dim); }

@media (hover: hover) and (pointer: fine) {
  .vlt-lobby-tile:hover .vlt-lobby-tile-frame,
  .vlt-lobby-tile:focus-visible .vlt-lobby-tile-frame {
    border-color: var(--vlt-gold);
    transform: translateY(-3px);
    box-shadow: 0 16px 28px -14px rgba(215,173,95,.5);
  }
  .vlt-lobby-tile:hover .vlt-lobby-tile-overlay,
  .vlt-lobby-tile:focus-visible .vlt-lobby-tile-overlay { opacity: 1; }
}
.vlt-lobby-tile:focus-visible { outline: 2px solid var(--vlt-gold); outline-offset: 2px; border-radius: var(--vlt-radius); }

/* Badges — LIVE pulses (real state, not a fake number), HOT/NEU are static accents. */
.vlt-lobby-badge {
  position: absolute;
  top: var(--vlt-space-sm);
  left: var(--vlt-space-sm);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: var(--vlt-radius-pill);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .04em;
  color: #fff;
  z-index: 1;
}
.vlt-lobby-badge--live { background: rgba(47,174,122,.92); }
.vlt-lobby-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: vlt-pulse 1.4s ease-in-out infinite;
}
@keyframes vlt-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(1.4); }
}
.vlt-lobby-badge--hot { background: rgba(182,72,63,.92); }
.vlt-lobby-badge--new { background: rgba(215,173,95,.92); color: #291d08; }

.vlt-lobby-foot { display: flex; justify-content: center; margin-top: var(--vlt-space-xl); }
.vlt-btn-lobby-cta { min-width: 220px; font-size: 1rem; }

/* ==========================================================================
   Live-casino full grid (16 tiles, {#live-tische}) — reuses .vlt-game-tile
   from the review body, adds a small category badge in the frame corner.
   ========================================================================== */
.vlt-game-tile { position: relative; }
.vlt-game-tile-category {
  position: absolute;
  top: var(--vlt-space-sm);
  left: var(--vlt-space-sm);
  padding: 2px 8px;
  border-radius: var(--vlt-radius-pill);
  background: rgba(11,23,18,.8);
  border: 1px solid var(--vlt-teal);
  color: var(--vlt-teal);
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  z-index: 1;
}

/* ==========================================================================
   Sportwetten icon row ({#wetten}) — icon card + label, whole card is
   the referral click target (betting intent).
   ========================================================================== */
.vlt-sport-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  gap: var(--vlt-space-md);
  margin: var(--vlt-space-lg) 0 var(--vlt-space-xl);
}
.vlt-sport-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--vlt-space-sm);
  padding: var(--vlt-space-md) var(--vlt-space-sm);
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius);
  background: var(--vlt-panel);
  color: var(--vlt-text);
  text-align: center;
  min-height: 44px;
  transition: border-color .15s ease, transform .15s ease;
}
.vlt-sport-tile:hover, .vlt-sport-tile:focus-visible {
  border-color: var(--vlt-teal);
  transform: translateY(-2px);
  text-decoration: none;
}
.vlt-sport-tile img { width: 100%; max-width: 84px; height: auto; }
.vlt-sport-tile-label { font-size: .78rem; font-weight: 600; }

/* ==========================================================================
   Breadcrumb
   ========================================================================== */

.vlt-breadcrumb { margin: var(--vlt-space-lg) 0; font-size: .875rem; }
.vlt-breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: var(--vlt-space-sm); margin: 0; padding: 0; color: var(--vlt-text-dim); }
.vlt-breadcrumb a { color: var(--vlt-text-dim); }
.vlt-breadcrumb li[aria-current="page"] { color: var(--vlt-text); }
.vlt-breadcrumb-sep { opacity: .5; }

/* ==========================================================================
   Main content typography
   ========================================================================== */

.vlt-main { max-width: var(--vlt-max-width); margin: 0 auto; padding: var(--vlt-space-2xl) var(--vlt-space-lg) var(--vlt-space-4xl); }
.vlt-content { max-width: var(--vlt-prose-width); }

/* ==========================================================================
   Two-column body (Steckbrief onward + FAQ/Fazit onward) + sticky sidebar —
   one <div class="vlt-sidebar"> in the DOM (see partials.js renderSidebar),
   rendered once. The opening text block (.vlt-intro) and the lobby sit
   ABOVE this grid (see layout.js) — only midHtml/tailHtml + the sidebar
   modules live inside it. Mobile: single flex column, sidebar flattens via
   display:contents so its five modules each get their own `order` and
   interleave with the article content — nothing duplicated, only reordered.
   Desktop (>=960px): sidebar becomes one real sticky box next to the
   content column (see Layout-Regel/§5).
   ========================================================================== */

.vlt-layout {
  display: flex;
  flex-direction: column;
  gap: var(--vlt-space-xl);
}

.vlt-sidebar { display: contents; }
.vlt-toc { order: 1; }
.vlt-sidebar-bonus { order: 2; }
.vlt-sidebar-facts { order: 3; }
.vlt-content-b { order: 4; }
.vlt-sidebar-sport { order: 5; }
.vlt-sidebar-crypto { order: 6; }
.vlt-content-c { order: 7; }

@media (min-width: 960px) {
  .vlt-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    column-gap: var(--vlt-space-2xl);
    align-items: start;
  }
  .vlt-content-b { grid-column: 1; grid-row: 1; }
  .vlt-content-c { grid-column: 1; grid-row: 2; }

  /* Not display:contents anymore — one real box, natural child order
     (toc, bonus, facts, sport, crypto) stacked top to bottom. */
  .vlt-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--vlt-space-lg);
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: start;
    position: sticky;
    top: calc(var(--vlt-header-h) + var(--vlt-space-lg));
    /* Safety net (see Layout-Regeloverflow diagnosis): if the sidebar
       modules together are taller than the viewport slot under the header,
       it scrolls internally instead of clipping the bottom module. */
    max-height: calc(100vh - var(--vlt-header-h) - var(--vlt-space-lg) * 2);
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: var(--vlt-layer-sticky);
  }
}

/* Table of contents — collapsed <details> by default (mobile requirement).
   vlt-deck.js force-opens it above the sidebar breakpoint via matchMedia
   and locks the summary so it reads as a plain box, not a toggle. */
.vlt-toc {
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius);
  background: var(--vlt-panel);
}
.vlt-toc-summary {
  cursor: pointer;
  list-style: none;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: var(--vlt-space-md) var(--vlt-space-lg);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vlt-gold);
}
.vlt-toc-summary::-webkit-details-marker { display: none; }
.vlt-toc-summary::after { content: '+'; margin-left: auto; }
.vlt-toc[open] .vlt-toc-summary::after { content: '\2212'; }
.vlt-toc.vlt-locked-open .vlt-toc-summary { cursor: default; pointer-events: none; }
.vlt-toc.vlt-locked-open .vlt-toc-summary::after { content: ''; }
/* Desktop only (locked-open, see vlt-deck.js): the long anchor list on the
   homepage would otherwise push the bonus/facts/sport/crypto cards below the
   sticky viewport slot before the user ever scrolls. Capping it keeps the
   conversion cards visible; the fade mask signals there is more to scroll. */
.vlt-toc.vlt-locked-open .vlt-toc-list {
  max-height: 132px;
  overflow-y: auto;
  mask-image: linear-gradient(to bottom, #000 calc(100% - 20px), transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 20px), transparent 100%);
}
.vlt-toc-list {
  margin: 0;
  padding: 0 var(--vlt-space-lg) var(--vlt-space-lg);
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vlt-toc-link {
  display: block;
  min-height: 32px;
  padding: var(--vlt-space-xs) var(--vlt-space-sm);
  border-radius: var(--vlt-radius-sm);
  color: var(--vlt-text-dim);
  font-size: 0.85rem;
  line-height: 1.4;
}
.vlt-toc-link:hover, .vlt-toc-link:focus-visible { background: var(--vlt-panel-2); color: var(--vlt-text); text-decoration: none; }
.vlt-toc-link.is-active { color: var(--vlt-gold); font-weight: 700; }

/* Sidebar promo cards — bonus / quick facts / sportsbook / crypto. Same
   visual family (panel + border + radius) as .vlt-tile / .vlt-faq-item. */
.vlt-sidebar-card {
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius);
  background: var(--vlt-panel);
  padding: var(--vlt-space-lg);
}
.vlt-sidebar-card-eyebrow {
  margin: 0 0 var(--vlt-space-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vlt-gold);
}
.vlt-sidebar-bonus {
  background: linear-gradient(160deg, var(--vlt-panel-2), var(--vlt-panel));
  border-color: var(--vlt-gold);
}
.vlt-sidebar-card-amount { margin: 0 0 var(--vlt-space-xs); font-family: var(--vlt-font-display); font-size: 1.15rem; font-weight: 700; color: #fff; }
.vlt-sidebar-card-meta { margin: 0 0 var(--vlt-space-md); font-size: 0.78rem; color: var(--vlt-text-dim); }
.vlt-sidebar-card-text { margin: 0 0 var(--vlt-space-md); font-size: 0.85rem; color: var(--vlt-text-dim); }
.vlt-sidebar-cta { width: 100%; }

.vlt-sidebar-fact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--vlt-space-sm); }
.vlt-sidebar-fact-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--vlt-space-md);
  padding-bottom: var(--vlt-space-sm);
  border-bottom: 1px dashed var(--vlt-line);
  font-size: 0.85rem;
}
.vlt-sidebar-fact-list li:last-child { border-bottom: none; padding-bottom: 0; }
.vlt-sidebar-fact-label { color: var(--vlt-text-dim); }
.vlt-sidebar-fact-value { color: #fff; font-weight: 700; text-align: right; }

.vlt-sidebar-crypto-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--vlt-space-sm);
  margin-bottom: var(--vlt-space-sm);
}
/* padding-block pads the tap target up toward the 44px minimum without
   growing the visible logo (icons stay the same visual size). */
.vlt-crypto-link { display: block; padding-block: var(--vlt-space-sm); transition: transform .15s ease; }
.vlt-crypto-link:hover, .vlt-crypto-link:focus-visible { transform: translateY(-1px); }
.vlt-sidebar-crypto-grid img {
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 4px;
  padding: 3px;
}
.vlt-sidebar-card-caption { margin: 0; font-size: 0.75rem; color: var(--vlt-text-dim); text-align: right; }

.vlt-content h2,
.vlt-intro h2 {
  font-family: var(--vlt-font-display);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  margin: var(--vlt-space-3xl) 0 var(--vlt-space-lg);
  padding-top: var(--vlt-space-sm);
  border-top: 1px solid var(--vlt-line);
  color: var(--vlt-gold);
}
.vlt-content h2:first-child,
.vlt-intro h2:first-child { border-top: none; margin-top: var(--vlt-space-lg); }
.vlt-content h3,
.vlt-intro h3 {
  font-family: var(--vlt-font-display);
  font-size: 1.1rem;
  margin: var(--vlt-space-xl) 0 var(--vlt-space-sm);
  color: var(--vlt-teal);
}
.vlt-content p,
.vlt-intro p { margin: 0 0 var(--vlt-space-lg); color: var(--vlt-text); }
.vlt-content ul, .vlt-content ol,
.vlt-intro ul, .vlt-intro ol { margin: 0 0 var(--vlt-space-lg); padding-left: 1.3em; }
.vlt-content li,
.vlt-intro li { margin-bottom: var(--vlt-space-xs); }
.vlt-content strong,
.vlt-intro strong { color: #fff; }

/* ==========================================================================
   Tables — one <table>, cards on mobile via data-label, no duplication
   ========================================================================== */

.vlt-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  min-width: 0;
  margin: 0 0 var(--vlt-space-xl);
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius);
}

.vlt-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  background: var(--vlt-panel);
}
.vlt-table th, .vlt-table td {
  text-align: left;
  padding: var(--vlt-space-md) var(--vlt-space-lg);
  border-bottom: 1px solid var(--vlt-line);
}
.vlt-table thead th {
  background: var(--vlt-panel-2);
  color: var(--vlt-gold);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.vlt-table tbody tr:last-child td { border-bottom: none; }
.vlt-table tbody tr:hover { background: var(--vlt-ink-alt); }

@media (max-width: 680px) {
  .vlt-table-wrap { overflow-x: visible; border: none; }
  .vlt-table { min-width: 0; }
  .vlt-table thead {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
  .vlt-table, .vlt-table tbody, .vlt-table tr, .vlt-table td { display: block; width: 100%; }
  .vlt-table tr {
    margin-bottom: var(--vlt-space-md);
    border: 1px solid var(--vlt-line);
    border-radius: var(--vlt-radius);
    padding: var(--vlt-space-sm) var(--vlt-space-lg);
    background: var(--vlt-panel);
  }
  /* Label stacked above the value (block, not flex-row) — deliberately NOT the
     donor's side-by-side flex row: a `<td>` can hold mixed inline content
     (plain text + a link, e.g. a support e-mail address), and flex items
     default to `min-width:auto`/no-wrap between siblings, which pushed such
     cells wider than the viewport (Layout-Regel overflow). Stacking
     avoids that failure mode entirely regardless of cell content. */
  .vlt-table td {
    border: 0;
    border-bottom: 1px dashed var(--vlt-line);
    padding: var(--vlt-space-sm) 0;
    text-align: left;
    overflow-wrap: anywhere;
  }
  .vlt-table tr td:last-child { border-bottom: none; }
  .vlt-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .03em;
    color: var(--vlt-text-dim);
    margin-bottom: var(--vlt-space-xs);
  }
}

/* ==========================================================================
   Payment method icons — inline in table cells + standalone logo grids
   ========================================================================== */

/* Small icon next to the method name inside a payment table cell. Name text
   stays in the DOM (SEO/a11y) — the icon is additive, never a replacement. */
.vlt-pay-cell {
  display: inline-flex;
  align-items: center;
  gap: var(--vlt-space-sm);
  min-width: 0;
}
.vlt-pay-cell-icon {
  flex: none;
  height: 20px;
  width: auto;
  max-width: 32px;
  background: #fff;
  border-radius: 4px;
  padding: 2px 3px;
}
.vlt-pay-cell-name { min-width: 0; }

/* Compact grid of payment/crypto logos under the payment section — CSS
   grid (not flex), items share equal visual weight regardless of each
   logo's native aspect ratio (frames are 160x100, transparent bg). */
.vlt-pay-logos { margin: 0 0 var(--vlt-space-xl); }
.vlt-pay-logos-caption {
  margin: 0 0 var(--vlt-space-md);
  font-size: .85rem;
  color: var(--vlt-text-dim);
}
.vlt-pay-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: var(--vlt-space-md);
}
.vlt-pay-logo-item {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius-sm);
  padding: var(--vlt-space-sm);
  transition: border-color .15s ease, transform .15s ease;
}
.vlt-pay-logo-item:hover { border-color: var(--vlt-teal); transform: translateY(-1px); }
.vlt-pay-link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.vlt-pay-logo-item img { max-width: 100%; height: 28px; width: auto; }

/* ==========================================================================
   Tile grids — games / providers, plate/card layout
   ========================================================================== */

.vlt-tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--vlt-space-lg);
  margin: var(--vlt-space-lg) 0 var(--vlt-space-xl);
}
@media (min-width: 600px) {
  .vlt-tile-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .vlt-tile-grid { grid-template-columns: repeat(4, 1fr); }
}

.vlt-tile {
  margin: 0;
  background: var(--vlt-panel);
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius);
  padding: var(--vlt-space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  transition: border-color .15s ease, transform .15s ease;
}
.vlt-tile:hover { border-color: var(--vlt-teal); transform: translateY(-2px); }
.vlt-tile-link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.vlt-tile img { max-height: 40px; width: auto; margin: 0 auto; }

/* Game grids — dense casino-lobby tiles (slots/live, see markdown.js insertGameGrids).
   Cover + small name/provider only, no description paragraph. auto-fill/minmax alone
   drives the column count at every width — no per-breakpoint column overrides needed.
   160px minmax (vs the donor's 140px) reads slightly larger/fewer-per-row. */
.vlt-game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: var(--vlt-space-md);
  margin: var(--vlt-space-lg) 0 var(--vlt-space-xl);
}
.vlt-game-tile {
  display: flex;
  flex-direction: column;
  color: var(--vlt-text);
}
.vlt-game-tile-frame {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius-sm);
  background: var(--vlt-panel);
  transition: border-color .15s ease, transform .15s ease;
}
.vlt-game-tile-frame img { width: 100%; height: 100%; object-fit: cover; }
.vlt-game-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 23, 18, .74);
  color: #fff;
  font-weight: 700;
  letter-spacing: .03em;
  opacity: 0;
  transition: opacity .15s ease;
}
.vlt-game-tile-name {
  margin-top: var(--vlt-space-sm);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.25;
}
.vlt-game-tile-provider { font-size: .72rem; color: var(--vlt-text-dim); }

/* Hover only on devices that actually have hover (mouse/trackpad) — on touch
   the tile just navigates on tap, no stuck hover state (Layout-Regel). */
@media (hover: hover) and (pointer: fine) {
  .vlt-game-tile:hover .vlt-game-tile-frame,
  .vlt-game-tile:focus-visible .vlt-game-tile-frame {
    border-color: var(--vlt-teal);
    transform: translateY(-2px);
  }
  .vlt-game-tile:hover .vlt-game-tile-overlay,
  .vlt-game-tile:focus-visible .vlt-game-tile-overlay { opacity: 1; }
}
.vlt-game-tile:focus-visible { outline: 2px solid var(--vlt-gold); outline-offset: 2px; border-radius: var(--vlt-radius-sm); }
.vlt-tile-caption { display: none; } /* alt text still present for a11y/SEO; provider logos are self-explanatory visually */

.vlt-figure {
  margin: var(--vlt-space-lg) 0 var(--vlt-space-xl);
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius);
  overflow: hidden;
  background: var(--vlt-panel);
  max-width: 420px;
}
.vlt-figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.vlt-figure-caption {
  padding: var(--vlt-space-sm) var(--vlt-space-lg);
  font-size: .85rem;
  color: var(--vlt-text-dim);
}

/* Bonus banners (powerup-banner-*.webp, 1200x600 / 2:1): headline, amount and CTA are
   baked INTO the artwork, so unlike the square screenshot/tile figures above, these must
   NEVER be cropped with object-fit:cover — that clips the text at the edges. Rule: banners
   always render whole. width:100% + height:auto takes the ratio straight from the file. */
.vlt-figure--banner {
  max-width: 100%;
}
.vlt-figure--banner img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
}

/* ==========================================================================
   Pros / Cons
   ========================================================================== */

.vlt-proscons {
  border-radius: var(--vlt-radius);
  padding: var(--vlt-space-lg) var(--vlt-space-xl);
  margin: 0 0 var(--vlt-space-lg);
  border: 1px solid var(--vlt-line);
  background: var(--vlt-panel);
}
.vlt-pros { border-left: 4px solid var(--vlt-mint); }
.vlt-cons { border-left: 4px solid var(--vlt-crimson); }
.vlt-proscons-title { margin: 0 0 var(--vlt-space-sm); }
.vlt-proscons-list { margin: 0; padding-left: 1.2em; }

/* ==========================================================================
   FAQ accordion — native <details>, no JS gap-trap
   ========================================================================== */

.vlt-faq { margin: var(--vlt-space-lg) 0 var(--vlt-space-xl); display: flex; flex-direction: column; gap: var(--vlt-space-sm); }
.vlt-faq-item {
  border: 1px solid var(--vlt-line);
  border-radius: var(--vlt-radius);
  background: var(--vlt-panel);
  padding: 0;
}
.vlt-faq-q {
  cursor: pointer;
  list-style: none;
  padding: var(--vlt-space-lg);
  min-height: 44px;
  display: flex;
  align-items: center;
  font-weight: 700;
  gap: var(--vlt-space-sm);
}
.vlt-faq-q::-webkit-details-marker { display: none; }
.vlt-faq-q::after {
  content: '+';
  margin-left: auto;
  color: var(--vlt-gold);
  font-size: 1.2rem;
}
.vlt-faq-item[open] .vlt-faq-q::after { content: '\2212'; }
.vlt-faq-a { padding: 0 var(--vlt-space-lg) var(--vlt-space-lg); color: var(--vlt-text-dim); }
.vlt-faq-a p:last-child { margin-bottom: 0; }

/* ==========================================================================
   404 — not found page (src/templates/not-found.js). Standalone block,
   header/footer shared with the rest of the site (same header/footer
   markup, one <nav> — see Layout-Regel).
   ========================================================================== */

.vlt-404 {
  max-width: var(--vlt-max-width);
  margin: 0 auto;
  padding: var(--vlt-space-4xl) var(--vlt-space-lg);
  text-align: center;
}
.vlt-404-code {
  margin: 0;
  font-family: var(--vlt-font-display);
  font-size: clamp(2.8rem, 11vw, 4.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--vlt-gold);
}
.vlt-404-title {
  margin: var(--vlt-space-lg) 0 var(--vlt-space-md);
  font-family: var(--vlt-font-display);
  font-size: clamp(1.4rem, 3.6vw, 2rem);
  color: var(--vlt-text);
}
.vlt-404-text {
  max-width: 560px;
  margin: 0 auto var(--vlt-space-xl);
  color: var(--vlt-text-dim);
}
.vlt-404-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--vlt-space-md) var(--vlt-space-xl);
  list-style: none;
  margin: 0 0 var(--vlt-space-2xl);
  padding: 0;
}
.vlt-404-links a {
  color: var(--vlt-teal);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

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

.vlt-footer { border-top: 1px solid var(--vlt-line); margin-top: var(--vlt-space-4xl); }
.vlt-footer-inner { max-width: var(--vlt-max-width); margin: 0 auto; padding: var(--vlt-space-2xl) var(--vlt-space-lg); color: var(--vlt-text-dim); font-size: .85rem; }
.vlt-footer-disclaimer { margin: 0 0 var(--vlt-space-md); }
.vlt-footer-copy { margin: 0; opacity: .75; }

/* Links to the dedicated review subpages (no longer in the top nav — see
   site-config.js footerPages / partials.js renderFooterPages) — kept for
   internal linking/indexing. */
.vlt-footer-pages {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--vlt-space-sm) var(--vlt-space-xl);
  margin: 0 0 var(--vlt-space-lg);
  padding: 0;
}
.vlt-footer-pages a {
  color: var(--vlt-text-dim);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.vlt-footer-pages a:hover, .vlt-footer-pages a:focus-visible { color: var(--vlt-gold); }

/* ==========================================================================
   CTA link inline inside prose (from `[CTA: ...]{data-go="play"}`)
   ========================================================================== */

.vlt-content .vlt-cta,
.vlt-intro .vlt-cta { margin: var(--vlt-space-sm) 0; }

/* Баннер / одиночная декоративная фигура целиком кликабельны — рекламный
   креатив и просто иллюстративная картинка одинаково ведут на бренд. */
.vlt-banner-link,
.vlt-figure-link {
  display: block;
  border-radius: inherit;
  transition: transform .18s ease, filter .18s ease;
}
.vlt-banner-link:hover,
.vlt-banner-link:focus-visible,
.vlt-figure-link:hover,
.vlt-figure-link:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* ==========================================================================
   prefers-reduced-motion — global kill-switch (MANDATORY, see brief).
   Freezes/removes every animation and transition site-wide, not just the
   lobby ones: smooth in-page scroll (nav anchors / TOC / footnote links)
   becomes instant, the ticker marquee stops and wraps as static text
   (duplicate half already aria-hidden, see lobby.js), the LIVE pulse dot and
   tile appear/hover animations all freeze on their end state.
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .vlt-lobby-tile { opacity: 1; }
  .vlt-ticker { overflow-x: auto; }
  .vlt-ticker-track { width: auto; flex-wrap: wrap; }
  .vlt-ticker-item[aria-hidden="true"] { display: none; }
}
