:root {
  --bg: #f7f5ff;
  --surface: #ffffff;
  --text-primary: #2a2440;
  --text-secondary: #5a5474;
  --accent: #6d28d9;
  --accent-hover: #5d22b8;
  --border: #e6e1f7;
  --accent-secondary: #d928c0;
  --hero-gradient: linear-gradient(135deg, #ede5fa 0%, #ffffff 52%, #fae1f6 100%);
  --glow-accent: 0 8px 24px rgba(109, 40, 217, 0.28);
  --surface-glass: rgba(255, 255, 255, 0.9);
  --shadow-card: 0 10px 28px rgba(65, 24, 130, 0.12);
  --radius-lg: 18px;
  --font-head: "Chakra Petch", sans-serif;
  --font-body: "Titillium Web", sans-serif;
    --header-style: solid-light;
}

.lbw-btn--ghost {
  background: var(--surface);
  color: var(--accent);
  border: 2px solid var(--border);
  box-shadow: none;
}

h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }

.lbw-zib-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--surface);
  box-shadow: 0 2px 14px rgba(65, 24, 130, 0.08);
  border-bottom: 1px solid var(--border);
}

.lbw-zib-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: .9rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.lbw-zib-nav.open { display: flex; }

.lbw-logo {
  font-family: var(--font-head), sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--accent);
  letter-spacing: -.5px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

.lbw-zib-header__toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.lbw-btn--sm { padding: .55rem 1.1rem; font-size: .9rem; }

p { margin-bottom: 1rem; }

h3 { font-size: 1.3rem; }

.lbw-logo:hover { color: var(--accent-secondary); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

a:hover { color: var(--accent-hover); }

body {
  font-family: var(--font-body), sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

.lbw-zib-header__toggle.active span:nth-child(2) { opacity: 0; }

html { scroll-behavior: smooth; }

.lbw-btn {
  display: inline-block;
  font-family: var(--font-head), sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 1.8rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  box-shadow: var(--glow-accent);
  text-align: center;
}

.container--narrow { max-width: 820px; }

a { color: var(--accent); text-decoration: none; transition: color .2s ease; }

.lbw-zib-header__toggle span {
  width: 26px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: .3s;
}

.lbw-zib-header__toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-head), sans-serif;
  line-height: 1.15;
  color: var(--text-primary);
  font-weight: 700;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); }

.lbw-zib-nav {
  display: none;
  flex-basis: 100%;
  flex-direction: column;
  margin-top: .8rem;
  gap: .3rem;
}

.lbw-zib-main { min-height: 60vh; }

.lbw-btn--ghost:hover { background: var(--bg); color: var(--accent-hover); border-color: var(--accent); }

.lbw-zib-header__toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.lbw-zib-nav a:hover, .lbw-zib-nav a.active { color: var(--accent); background: var(--bg); }

.lbw-btn:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(109, 40, 217, 0.36);
}

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

.lbw-zib-nav a {
  font-family: var(--font-head), sans-serif;
  font-weight: 500;
  color: var(--text-primary);
  padding: .6rem .4rem;
  border-radius: 8px;
}

@media (min-width: 900px) {
  .lbw-zib-header__toggle { display: none; }
  .lbw-zib-nav {
    display: flex;
    flex-direction: row;
    flex-basis: auto;
    margin-top: 0;
    align-items: center;
    gap: .4rem;
  }
  .lbw-zib-nav a { padding: .5rem .9rem; }
}

.lbw-hero__eyebrow {
  font-family: var(--font-head), sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--surface-glass);
  padding: .4rem 1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.3rem;
}

.lbw-section--tint { background: var(--surface); }

.lbw-prose h2, .lbw-prose h3 { margin: 1.8rem 0 .8rem; }

.lbw-hero {
  background: var(--hero-gradient);
  padding: 3.5rem 0 3rem;
  text-align: center;
}

.lbw-prose p { color: var(--text-secondary); }

.lbw-prose { max-width: 720px; margin: 0 auto; }

.lbw-hero h1 { margin-bottom: 1rem; max-width: 16ch; }

.lbw-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.lbw-section__head p { color: var(--text-secondary); }

.lbw-prose li { margin-bottom: .5rem; }

.lbw-prose ul, .lbw-prose ol { margin: 0 0 1.2rem 1.3rem; color: var(--text-secondary); }

.lbw-section__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.4rem;
}

.lbw-hero__sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 56ch;
  margin-bottom: 1.8rem;
}

.lbw-section { padding: 3rem 0; }

.lbw-game-embed-wrap {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 2rem auto 0;
  aspect-ratio: 4/3;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--border);
}

.lbw-game-frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 2rem auto 0;
  aspect-ratio: 4/3;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  border: 1px solid var(--border);
}

.lbw-game-embed-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.lbw-game-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

.lbw-hero__inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 680px) { .lbw-benefits-grid { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 960px) { .lbw-benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.lbw-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  margin-bottom: 1rem;
  color: #fff;
}

.lbw-benefit-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(65,24,130,0.18); }

.lbw-benefit-card h3 { margin-bottom: .5rem; }

.lbw-benefit-icon svg { width: 26px; height: 26px; }

.lbw-benefit-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}

.lbw-card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.lbw-benefit-card p { color: var(--text-secondary); margin: 0; font-size: .97rem; }

@media (min-width: 680px) { .lbw-card-grid { grid-template-columns: repeat(2, 1fr); } }

@media (min-width: 980px) { .lbw-card-grid { grid-template-columns: repeat(3, 1fr); } }

.lbw-board-table th, .lbw-board-table td {
  padding: .9rem 1.1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.lbw-cta-banner h2 { color: #fff; margin-bottom: .8rem; }

.lbw-contact-box a { font-weight: 600; }

.lbw-steps { counter-reset: step; list-style: none; margin: 0; padding: 0; }

.lbw-article-card__overlay { position: absolute; inset: 0; z-index: 1; }

.lbw-faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.3rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
}

.lbw-zib-cookie {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 720px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(65,24,130,0.22);
  padding: 1rem 1.2rem;
  display: none;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  z-index: 90;
}

.lbw-article-card__tag {
  display: inline-block;
  font-family: var(--font-head), sans-serif;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  background: var(--bg);
  padding: .3rem .7rem;
  border-radius: 999px;
  margin-bottom: .8rem;
}

.lbw-info-line strong { color: var(--text-primary); font-family: var(--font-head), sans-serif; }

.lbw-info-line { margin-bottom: .8rem; color: var(--text-secondary); }

.lbw-contact-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  max-width: 560px;
  margin: 0 auto;
}

.lbw-steps li {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.2rem 1.4rem 1.2rem 3.8rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-card);
  color: var(--text-secondary);
}

.lbw-board-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  background: var(--surface);
}

.lbw-article-card p { color: var(--text-secondary); font-size: .95rem; margin: 0; }

.lbw-cta-banner .lbw-btn:hover { background: var(--bg); color: var(--accent-hover); }

.lbw-article-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }

.lbw-zib-footer__grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.2rem 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.lbw-board-note {
  background: var(--bg);
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  color: var(--text-secondary);
  font-size: .95rem;
  margin-bottom: 1.5rem;
}

.lbw-zib-cookie p { margin: 0; font-size: .88rem; color: var(--text-secondary); flex: 1 1 240px; }

.lbw-zib-cookie.hidden { display: none; }

.lbw-zib-cookie.show { display: flex; }

.lbw-cta-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: var(--radius-lg);
  padding: 2.6rem 2rem;
  text-align: center;
  color: #fff;
  box-shadow: var(--glow-accent);
}

.lbw-board-table td:first-child {
  font-family: var(--font-head), sans-serif;
  font-weight: 700;
  color: var(--accent);
}

.lbw-board-table tr:last-child td { border-bottom: none; }

.lbw-board-table th {
  font-family: var(--font-head), sans-serif;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  background: var(--bg);
}

.lbw-cta-banner p { color: rgba(255,255,255,.9); max-width: 46ch; margin: 0 auto 1.5rem; }

.lbw-zib-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: 3rem;
}

.lbw-article-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(65,24,130,0.18); }

.lbw-article-card__content { position: relative; z-index: 0; }

.lbw-steps li strong { color: var(--text-primary); display: block; margin-bottom: .2rem; font-family: var(--font-head), sans-serif; }

.lbw-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.1rem;
  top: 1.2rem;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-head), sans-serif;
  font-weight: 700;
}

.lbw-cta-banner .lbw-btn {
  background: #fff;
  color: var(--accent);
  box-shadow: none;
}

.lbw-article-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}

.lbw-faq-item h3 { font-size: 1.1rem; margin-bottom: .5rem; }

.lbw-board-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.lbw-faq-item p { color: var(--text-secondary); margin: 0; }

@media (min-width: 700px) { .lbw-zib-footer__grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.lbw-zib-footer__col h4 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: .9rem;
}

.lbw-mb-2 { margin-bottom: 2rem; }

.lbw-page-hero p { color: var(--text-secondary); max-width: 60ch; margin: .6rem auto 0; }

.lbw-zib-footer__brand {
  font-family: var(--font-head), sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--accent);
  display: block;
  margin-bottom: .6rem;
}

.lbw-page-hero {
  background: var(--hero-gradient);
  padding: 2.6rem 0 2.2rem;
  text-align: center;
}

.lbw-tag-line {
  font-family: var(--font-head), sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .6rem;
}

.lbw-zib-footer__col a {
  display: block;
  color: var(--text-primary);
  font-size: .95rem;
  padding: .25rem 0;
}

.lbw-zib-teaser { position: relative; border-radius: 16px; overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.18); }

.lbw-lead { font-size: 1.12rem; color: var(--text-secondary); }

.lbw-notfound h1 { font-size: clamp(3rem, 10vw, 6rem); color: var(--accent); }

.lbw-zib-preview { position: relative; aspect-ratio: 4/3; max-width: 640px; margin-inline: auto; }

.lbw-stars { color: #ffc107; }

.lbw-zib-footer__col a:hover { color: var(--accent); }

.lbw-zib-preview__hud { position: absolute; top: 4%; left: 4%; right: 4%; display: flex; justify-content: space-between; padding: .5em .9em; background: var(--surface); color: var(--text-primary); border-radius: 8px; font-size: .8rem; }

.lbw-zib-preview__sky { position: absolute; inset: 0 0 62% 0; background: var(--bg); }

.lbw-zib-footer__addr { font-size: .82rem; opacity: .85; }

.lbw-zib-preview__ice { position: absolute; inset: 38% 0 55% 0; background: var(--surface); border-block: 2px solid var(--border); }

.lbw-text-center { text-align: center; }

.lbw-zib-footer__tag { color: var(--text-secondary); font-size: .92rem; margin: 0; }

.lbw-notfound { text-align: center; padding: 4rem 1.2rem; }

.lbw-zib-footer__bar {
  border-top: 1px solid var(--border);
  padding: 1.3rem 1.2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: .85rem;
}

.lbw-zib-preview__water { position: absolute; inset: 45% 0 0 0; background: var(--text-primary); opacity: .85; }

.lbw-zib-footer__bar p { margin: .2rem 0; }

.lbw-mt-2 { margin-top: 2rem; }

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

@media print {
  .lbw-zib-header, .lbw-zib-footer, .lbw-zib-cookie, .lbw-game-embed-wrap, .lbw-game-frame { display: none; }
  body { background: #fff; color: #000; }
}

.lbw-home-embed__btn:hover { background: var(--accent-hover, #1d4ed8); }

.lbw-game-embed-wrap { position: relative; width: 100%; max-width: 960px; margin: 0 auto; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.08); background: #111; }

.lbw-home-embed__btn { display: inline-block; padding: 12px 28px; border-radius: 10px; background: var(--accent, #2563eb); color: #fff; text-decoration: none; font-weight: 600; }

.lbw-game-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.lbw-home-embed__hint { margin: 12px auto 0; max-width: 42rem; font-size: .95rem; opacity: .85; }

.lbw-home-embed__cta { margin-top: 16px; }

.lbw-game-embed-wrap--home { max-width: min(960px, 100%); margin-inline: auto; }

.lbw-home-embed { margin-block: 24px 32px; text-align: center; }

@media (max-width: 640px) { .lbw-game-embed-wrap--home { aspect-ratio: 3 / 4; max-width: 100%; } }

:root { --cookie-banner-h: 0px; }

html, body { overflow-x: hidden; }

.lbw-cookie-consent.is-visible ~ * body,
body.has-cookie-banner { --cookie-banner-h: 120px; }

body { padding-bottom: var(--cookie-banner-h); }

@media (max-width: 768px) {
    body.has-cookie-banner { --cookie-banner-h: 160px; }
}

[id$="GamesContainer"] > *,
[id$="gamesContainer"] > *,
#gamesContainer > * {
    grid-column: unset !important;
    width: 100%;
}

.lbw-provider-section,
.lbw-m-provider-section,
[class*="provider-section"] {
    width: 100%;
    margin-bottom: 24px;
}

[id$="GamesContainer"],
[id$="gamesContainer"],
#gamesContainer {
    display: flex !important;
    flex-direction: column !important;
    gap: 32px;
    width: 100%;
}

@media (max-width: 480px) {
    .lbw-games-grid,
    .lbw-m-games-grid,
    [class*="games-grid"]:not([class*="featured"]) {
        grid-template-columns: 1fr !important;
    }
}

.lbw-m-filter, .lbw-filter-bar, .lbw-filters {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    padding: 4px 12px;
    scrollbar-width: thin;
}

#gameFrame, .lbw-game-iframe, iframe.game {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    border: 0;
    display: block;
}

.lbw-modal, .lbw-m-modal, [class*="modal"][class*="overlay"] { z-index: 9999 !important; }

.lbw-m-filter > *, .lbw-filter-bar > *, .lbw-filters > * { flex-shrink: 0; }

.lbw-modal__overlay, .lbw-m-modal__overlay { z-index: 9998 !important; }

@media (max-width: 480px) {
    .lbw-site-header__inner, .lbw-m-header__inner {
        gap: 8px;
        padding-left: 12px;
        padding-right: 12px;
    }
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    background: #ffffff !important;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 4px;
}

.compliance-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.28);
}

.compliance-badge img {
    display: block;
    height: 28px;
    width: auto;
    opacity: 1 !important;
    filter: none !important;
}
/* theme-contrast-v2.99.5f */
[class*="m-hero"] p,
[class*="m-hero__text"],
[class*="m-hero__subtitle"],
[class*="m-hero__lede"],
[class*="m-hero__badge"] {
    color: var(--text-secondary);
}
[class*="m-footer"] p,
[class*="m-footer__desc"],
[class*="m-footer__disclaimer"] {
    color: var(--text-muted);
}
[class*="age-modal"] p,
[class*="age-modal__text"],
[class*="cookie-banner"] p {
    color: var(--text-primary);
}

/* thematic-embed-frame v0.996 */
.game-embed-wrap { position:relative; width:100%; max-width:960px; margin:0 auto; aspect-ratio:4/3; }
.game-embed-wrap iframe { position:absolute; inset:0; width:100%; height:100%; border:0; border-radius:8px; }

/* thematic-embed-home v0.998.3.3 — shares the game-page embed box */
.game-embed-wrap { position: relative; width: 100%; max-width: 960px; margin: 0 auto; aspect-ratio: 4 / 3; overflow: hidden; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.08); background: #111; }
.game-embed-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.game-embed-wrap--home { max-width: min(960px, 100%); margin-inline: auto; }
.home-embed { margin-block: 24px 32px; text-align: center; }
.home-embed__hint { margin: 12px auto 0; max-width: 42rem; font-size: .95rem; opacity: .85; }
.home-embed__cta { margin-top: 16px; }
.home-embed__btn { display: inline-block; padding: 12px 28px; border-radius: 10px; background: var(--accent, #2563eb); color: #fff; text-decoration: none; font-weight: 600; }
.home-embed__btn:hover { background: var(--accent-hover, #1d4ed8); }
@media (max-width: 640px) { .game-embed-wrap--home { aspect-ratio: 3 / 4; max-width: 100%; } }

/* thematic-faq-boost v0.998.3.3.2 */
.faq-boost__item { margin: 10px 0; padding: 12px 16px; border: 1px solid rgba(0,0,0,.08); border-radius: 10px; }
.faq-boost__item summary { cursor: pointer; font-weight: 600; }
.faq-boost__item p { margin: 10px 0 2px; }

/* thematic-css-floor-pack v0.994 */
/* Thematic CSS floor pack (0.994). Appended by ensureThematicCssFloor only
 * when styles.css is thin on BOTH bytes and rules. Tokens via var() only;
 * 5 is replaced with a per-domain 0..6 deg jitter for fleet variety.
 * Covers the orphan classes pilots leaked (footer__copy, auth user chips) plus
 * hover/focus/print/reduced-motion refinements the model tends to skip. */

.tfp-section { padding: clamp(2rem, 5vw, 4rem) 1rem; }
.tfp-container { width: min(1120px, 100%); margin-inline: auto; padding-inline: clamp(1rem, 3vw, 2rem); }
.tfp-stack > * + * { margin-top: 1rem; }
.tfp-grid { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

/* footer refinements — covers *footer__copy orphan */
[class*="footer__copy"] { color: var(--text-secondary); font-size: .85rem; line-height: 1.6; }
[class*="footer__address"] { color: var(--text-secondary); font-size: .85rem; font-style: normal; }
[class*="footer__age"] { color: var(--text-secondary); font-size: .8rem; letter-spacing: .02em; }
[class*="footer__cols"] { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
[class*="footer__link"] { color: var(--text-secondary); text-decoration: none; }
[class*="footer__link"]:hover { color: var(--accent); }

/* auth chips — covers *auth__*user* orphan */
[class*="auth__user"] { display: inline-flex; align-items: center; gap: .5rem; padding: .3rem .7rem; border: 1px solid var(--border); border-radius: 999px; color: var(--text-primary); font-size: .85rem; }
[class*="auth__avatar"] { width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--accent); opacity: .85; }
[class*="auth__btn"] { cursor: pointer; border-radius: 8px; }

/* teaser hover / focus states */
[class*="teaser"]:hover { transform: translateY(-2px); transition: transform .2s ease; }
[class*="preview"]::after { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px var(--border); pointer-events: none; filter: hue-rotate(5deg); }
[class*="hero"] .tfp-cta { display: inline-block; }

/* buttons */
.tfp-btn { display: inline-block; padding: .7rem 1.4rem; border-radius: 10px; background: var(--accent); color: #fff; text-decoration: none; font-weight: 600; border: 0; cursor: pointer; }
.tfp-btn:hover { background: var(--accent-hover); }
.tfp-btn--ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.tfp-btn--ghost:hover { background: var(--surface); }

/* cards */
.tfp-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.25rem; }
.tfp-card__title { margin: 0 0 .5rem; color: var(--text-primary); font-size: 1.05rem; }
.tfp-card__body { margin: 0; color: var(--text-secondary); line-height: 1.6; }

/* tournament table */
.tfp-table { width: 100%; border-collapse: collapse; }
.tfp-table th, .tfp-table td { padding: .6rem .8rem; text-align: left; border-bottom: 1px solid var(--border); color: var(--text-primary); }
.tfp-table th { color: var(--text-secondary); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }
.tfp-table tbody tr:hover { background: var(--surface); }
[data-lb-me] { background: color-mix(in srgb, var(--accent) 12%, transparent); }

/* blog cards */
.tfp-post { display: flex; flex-direction: column; gap: .5rem; padding: 1.1rem; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
.tfp-post time { color: var(--text-secondary); font-size: .8rem; }
.tfp-post h3 { margin: 0; font-size: 1.05rem; }
.tfp-post a { color: var(--accent); text-decoration: none; }

/* faq accordion look */
.tfp-faq__item { border-bottom: 1px solid var(--border); padding: 1rem 0; }
.tfp-faq__q { margin: 0 0 .4rem; color: var(--text-primary); font-weight: 600; }
.tfp-faq__a { margin: 0; color: var(--text-secondary); line-height: 1.65; }

/* prose */
.tfp-prose { color: var(--text-primary); line-height: 1.7; }
.tfp-prose h2 { margin: 1.6rem 0 .6rem; font-size: 1.25rem; }
.tfp-prose h3 { margin: 1.2rem 0 .4rem; font-size: 1.05rem; }
.tfp-prose p { margin: 0 0 1rem; color: var(--text-secondary); }
.tfp-prose a { color: var(--accent); }

/* cookie bar refinement */
[class*="cookie"] { border-top: 1px solid var(--border); }
[data-cookie-banner] .tfp-btn { padding: .5rem 1rem; }

/* nav */
.tfp-nav__link { color: var(--text-primary); text-decoration: none; padding: .4rem .6rem; border-radius: 6px; }
.tfp-nav__link:hover, .tfp-nav__link.active { color: var(--accent); }

/* utilities */
.tfp-muted { color: var(--text-secondary); }
.tfp-center { text-align: center; }
.tfp-hidden { display: none !important; }
.tfp-divider { height: 1px; background: var(--border); border: 0; margin: 2rem 0; }
.tfp-badge { display: inline-block; padding: .2rem .6rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--text-secondary); font-size: .75rem; }

/* accessibility: focus-visible everywhere */
a:focus-visible, button:focus-visible, [tabindex]:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    [class*="teaser"]:hover { transform: none; }
    * { scroll-behavior: auto !important; }
}

/* small screens */
@media (max-width: 640px) {
    .tfp-grid { grid-template-columns: 1fr; }
    .tfp-table th, .tfp-table td { padding: .5rem .5rem; font-size: .9rem; }
    [class*="footer__cols"] { grid-template-columns: 1fr 1fr; }
}

/* print: clean legal pages */
@media print {
    header, footer, [data-cookie-banner], .tfp-btn, [class*="teaser"] { display: none !important; }
    body { color: #000; background: #fff; }
    .tfp-prose a { color: #000; text-decoration: underline; }
}

/* ── extended component set (0.994): more rules so the rules-axis clears the
 *    floor even when byte math is borderline. All var()-token based. ── */
.tfp-hero { display: grid; gap: 1rem; align-items: center; }
.tfp-hero--split { grid-template-columns: 1.1fr .9fr; }
.tfp-hero--compact { grid-template-columns: 1fr; text-align: center; }
.tfp-hero__title { margin: 0; font-size: clamp(1.8rem, 5vw, 3rem); color: var(--text-primary); line-height: 1.1; }
.tfp-hero__sub { margin: .5rem 0 0; color: var(--text-secondary); font-size: 1.1rem; }
.tfp-hero__actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem; }
.tfp-eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .75rem; color: var(--accent); font-weight: 700; }
.tfp-section__head { max-width: 42rem; margin: 0 auto 2rem; text-align: center; }
.tfp-section__title { margin: 0 0 .5rem; font-size: clamp(1.4rem, 3vw, 2rem); color: var(--text-primary); }
.tfp-section__lead { margin: 0; color: var(--text-secondary); line-height: 1.6; }
.tfp-benefit { text-align: left; }
.tfp-benefit__icon { width: 2.5rem; height: 2.5rem; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); display: grid; place-items: center; margin-bottom: .75rem; }
.tfp-benefit__icon svg { width: 1.4rem; height: 1.4rem; }
.tfp-benefit__title { margin: 0 0 .35rem; font-size: 1.05rem; color: var(--text-primary); }
.tfp-benefit__body { margin: 0; color: var(--text-secondary); line-height: 1.6; }
.tfp-steps { counter-reset: step; display: grid; gap: 1rem; }
.tfp-step { position: relative; padding-left: 2.75rem; }
.tfp-step::before { counter-increment: step; content: counter(step); position: absolute; left: 0; top: 0; width: 2rem; height: 2rem; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; font-weight: 700; }
.tfp-step__title { margin: 0 0 .25rem; color: var(--text-primary); }
.tfp-step__body { margin: 0; color: var(--text-secondary); }
.tfp-cta-band { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 2rem; text-align: center; }
.tfp-cta-band__title { margin: 0 0 .5rem; color: var(--text-primary); font-size: 1.4rem; }
.tfp-cta-band__body { margin: 0 0 1.25rem; color: var(--text-secondary); }
.tfp-empty { text-align: center; color: var(--text-secondary); padding: 2rem 1rem; }
.tfp-empty__title { margin: 0 0 .35rem; color: var(--text-primary); }
.tfp-pill { display: inline-flex; gap: .35rem; align-items: center; padding: .25rem .7rem; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); color: var(--text-secondary); font-size: .78rem; }
.tfp-kpi { display: grid; gap: .2rem; }
.tfp-kpi__num { font-size: 1.6rem; font-weight: 800; color: var(--text-primary); }
.tfp-kpi__label { font-size: .8rem; color: var(--text-secondary); }
.tfp-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.tfp-list li { position: relative; padding-left: 1.5rem; color: var(--text-secondary); line-height: 1.6; }
.tfp-list li::before { content: ""; position: absolute; left: 0; top: .55em; width: .5rem; height: .5rem; border-radius: 50%; background: var(--accent); }
.tfp-note { border-left: 3px solid var(--accent); padding: .5rem 0 .5rem 1rem; color: var(--text-secondary); }
.tfp-tag { font-size: .72rem; color: var(--accent); text-transform: uppercase; letter-spacing: .05em; }
.tfp-author { display: flex; align-items: center; gap: .5rem; color: var(--text-secondary); font-size: .85rem; }
.tfp-toc { border: 1px solid var(--border); border-radius: 12px; padding: 1rem 1.25rem; background: var(--surface); }
.tfp-toc a { color: var(--accent); text-decoration: none; display: block; padding: .2rem 0; }
.tfp-breadcrumb { display: flex; gap: .5rem; color: var(--text-secondary); font-size: .8rem; }
.tfp-breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.tfp-breadcrumb a:hover { color: var(--accent); }
.tfp-social { display: flex; gap: .75rem; }
.tfp-social a { color: var(--text-secondary); }
.tfp-social a:hover { color: var(--accent); }
.tfp-scrolltop { position: fixed; right: 1rem; bottom: 1rem; width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--accent); color: #fff; display: grid; place-items: center; }
.tfp-skip-link { position: absolute; left: -999px; }
.tfp-skip-link:focus { left: 1rem; top: 1rem; background: var(--surface); padding: .5rem 1rem; border-radius: 8px; z-index: 999; }

/* thematic-skin playful-violet v0.999.2.3 — template vivid (family vivid-light) */
header, [class*="site-header"] {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--surface-glass, var(--surface));
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
header nav a {
  position: relative;
  font-weight: 600;
}
header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary, var(--accent)));
  transition: width .2s ease;
}
header nav a:hover::after {
  width: 100%;
}
[class*="hero"]:not([class*="__"]) {
  background: var(--hero-gradient, var(--bg));
  overflow: hidden;
}
[class*="hero"]:not([class*="__"]) h1 {
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary, var(--accent)));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
main section {
  padding-block: clamp(44px, 7vw, 92px);
}
main section:nth-of-type(3n) {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
}
[class*="card"]:not([class*="__"]), article, [class*="benefit"]:not([class*="__"]) {
  background: var(--surface);
  border: 0;
  border-radius: var(--radius-lg, 18px);
  box-shadow: var(--shadow-card);
  transition: transform .2s ease, box-shadow .2s ease;
}
[class*="card"]:not([class*="__"]):hover, article:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--glow-accent), var(--shadow-card);
}
a[class*="btn"], button[class*="btn"] {
  border-radius: 999px;
  padding: 13px 30px;
  font-weight: 700;
  transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
[class*="btn"][class*="primary"], .home-embed__btn {
  background: linear-gradient(90deg, var(--accent), var(--accent-secondary, var(--accent)));
  color: #fff;
  box-shadow: var(--glow-accent);
}
[class*="btn"][class*="primary"]:hover, .home-embed__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
}
.game-embed-wrap {
  border-radius: var(--radius-lg, 18px);
  box-shadow: var(--glow-accent), var(--shadow-card);
}
[class*="faq"] details {
  background: var(--surface);
  border-radius: var(--radius-lg, 18px);
  padding: 8px 18px;
  margin-block: 12px;
  box-shadow: var(--shadow-card);
  border: 0;
}
footer {
  background: var(--surface);
  border-top: 4px solid transparent;
  border-image: linear-gradient(90deg, var(--accent), var(--accent-secondary, var(--accent))) 1;
}

/* thematic-overlay-guard v0.999.2.3 */
[class*="__overlay"] { background: transparent !important; border: none !important; box-shadow: none !important; }

/* thematic-supplemental articles.css v0.999.2.1 */
/* ===== Article tables ===== */
.lbw-article-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.lbw-article-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 360px;
  background: var(--surface);
}

.lbw-article-table th,
.lbw-article-table td {
  padding: .75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: .95rem;
}

.lbw-article-table th {
  font-family: var(--font-head);
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  background: var(--bg);
}

.lbw-article-table tr:last-child td {
  border-bottom: none;
}

.lbw-article-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== Read next block ===== */
.lbw-article-read-next {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.6rem;
  margin-top: 2.5rem;
  box-shadow: var(--shadow-card);
}

.lbw-article-read-next h3 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: .8rem;
}

.lbw-article-read-next ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.lbw-article-read-next ul li a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--accent);
  transition: color .18s ease;
}

.lbw-article-read-next ul li a:hover {
  color: var(--accent-secondary);
}

/* ===== Article page hero date ===== */
.lbw-page-hero time {
  font-size: .88rem;
  color: var(--text-secondary);
}

/* thematic-supplemental home-extra.css v0.999.2.1 */
.lbw-teaser-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1.4rem;
}
.lbw-teaser-head h1 { margin-bottom: .6rem; }

.lbw-benefits-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 620px) { .lbw-benefits-row { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .lbw-benefits-row { grid-template-columns: repeat(5, 1fr); } }

.lbw-benefit-item {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.3rem 1.1rem;
  box-shadow: var(--shadow-card);
}
.lbw-benefit-item h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.lbw-benefit-item p { color: var(--text-secondary); font-size: .9rem; margin: 0; }

.lbw-article-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .lbw-article-list { grid-template-columns: repeat(2, 1fr); } }
.lbw-article-list__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  box-shadow: var(--shadow-card);
}
.lbw-article-list__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.1rem;
  display: block;
}
.lbw-article-list__item time {
  display: block;
  font-size: .78rem;
  color: var(--text-secondary);
  margin: .2rem 0 .4rem;
}
.lbw-article-list__excerpt {
  color: var(--text-secondary);
  font-size: .92rem;
}

.lbw-article-card time {
  display: block;
  font-size: .78rem;
  color: var(--text-secondary);
  margin: .3rem 0 .6rem;
}
