/* ============================================================
   style.css-5baf — Static SEO Site template (gambling/affiliate)
   Version: 1.1  |  2026-02-13
   JINJA: CSS variables overridden per-theme by pick_theme()
   ============================================================ */

/* ============================================================
   CSS VARIABLES — JINJA VAR: theme.palette-5baf
   Theme: Blue Corporate — palette_01
   ============================================================ */
:root {
  --color-primary:        #dc2626;
  --color-primary-dark:   #b91c1c;
  --color-primary-light:  #fee2e2;
  --color-secondary:      #f59e0b;
  --color-bg:             #fff1f2;
  --color-bg-alt:         #ffe4e6;
  --color-bg-accent:      #fff1f2;
  --color-text:           #1f2937;
  --color-text-muted:     #6b7280;
  --color-border:         #fecdd3;
  --color-footer-bg:      #450a0a;
  --color-footer-text:    #fca5a5;
  --color-footer-muted:   #f87171;
  --color-success:        #059669;
  --color-success-light:  #d1fae5;
  --color-danger:         #dc2626;
  --color-danger-light:   #fee2e2;
  --color-warning:        #f59e0b;
  --color-text-on-light:  #1f2937;
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --shadow-sm:  0 2px 6px rgba(0,0,0,.12);
  --shadow-md:  0 6px 18px rgba(0,0,0,.15);
  --shadow-lg:  0 12px 32px rgba(0,0,0,.20);
  --content-width: 1120px;
  --line-height:   1.8;
  --font-heading:  'Bitter', Georgia, serif;
  --font-body:     'Source Sans 3', sans-serif;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--line-height);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
#main-content { flex: 1; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--color-text);
}
h1 { font-size: clamp(1.75rem, 4.5vw, 2.5rem); font-weight: 800; }
h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }
a  { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.sr-only-5baf {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

.skip-link-5baf {
  position: absolute; top: -100%; left: 0;
  padding: 8px 16px;
  background: var(--color-primary); color: #fff;
  font-weight: 600; z-index: 9999;
  border-radius: 0 0 var(--radius-md) 0;
  transition: top .2s;
}
.skip-link-5baf:focus { top: 0; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container-5baf {
  width: 100%; max-width: var(--content-width);
  margin: 0 auto; padding: 0 16px;
}
@media (min-width: 768px) { .container-5baf { padding: 0 24px; } }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#nav-toggle { display: none; }

.site-header-5baf {
  background: var(--color-primary);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow-md);
}
.header-inner-5baf {
  display: flex; align-items: center;
  justify-content: space-between; height: 60px;
}

/* Logo */
.site-logo-5baf {
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-weight: 800; font-size: 1.2rem;
  letter-spacing: -.02em; text-decoration: none; flex-shrink: 0;
}
.site-logo-5baf:hover { text-decoration: none; opacity: .9; }
.logo-icon-5baf {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.18); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* Desktop nav */
.site-nav-5baf {
  display: none;
  align-items: center; gap: 2px; list-style: none;
}
.site-nav-5baf a {
  display: block; color: rgba(255,255,255,.85);
  font-size: .88rem; font-weight: 500; padding: 6px 11px;
  border-radius: var(--radius-md); transition: background .15s, color .15s;
}
.site-nav-5baf a:hover,
.site-nav-5baf a.active-5baf { background: rgba(255,255,255,.16); color: #fff; text-decoration: none; }

/* Hamburger */
.hamburger-label-5baf {
  display: flex; flex-direction: column; justify-content: space-between;
  width: 26px; height: 20px; cursor: pointer; flex-shrink: 0;
}
.hamburger-label-5baf span {
  display: block; height: 2px; background: #fff;
  border-radius: 2px; transition: transform .25s, opacity .25s;
}

/* Mobile nav panel */
.mobile-nav-5baf {
  max-height: 0; overflow: hidden;
  background: var(--color-primary-dark);
  transition: max-height .3s ease;
}
.mobile-nav-5baf a {
  display: block; color: rgba(255,255,255,.9);
  padding: 13px 20px; font-size: .93rem; font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08); transition: background .15s;
}
.mobile-nav-5baf a:hover { background: rgba(255,255,255,.1); text-decoration: none; }
.mobile-nav-5baf a.active-5baf { color: #fff; font-weight: 600; }

/* Checkbox open-state */
#nav-toggle:checked ~ .site-header-5baf .mobile-nav-5baf                            { max-height: 400px; }
#nav-toggle:checked ~ .site-header-5baf .hamburger-label-5baf span:nth-child(1)    { transform: translateY(9px) rotate(45deg); }
#nav-toggle:checked ~ .site-header-5baf .hamburger-label-5baf span:nth-child(2)    { opacity: 0; }
#nav-toggle:checked ~ .site-header-5baf .hamburger-label-5baf span:nth-child(3)    { transform: translateY(-9px) rotate(-45deg); }

@media (min-width: 768px) {
  .site-nav-5baf        { display: flex; }
  .hamburger-label-5baf { display: none; }
  .mobile-nav-5baf      { display: none !important; }
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section-5baf { padding: 52px 0; }
.section-5baf + .section-5baf { border-top: 1px solid var(--color-border); }
.section--alt-5baf    { background: var(--color-bg-alt); }
.section--accent-5baf { background: var(--color-bg-accent); }

.section-header-5baf { margin-bottom: 28px; }
.section-header-5baf h2 { margin-bottom: 8px; }
.section-header-5baf p  { color: var(--color-text-muted); font-size: .93rem; margin: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero-5baf {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff; padding: 60px 0 52px;
}
.hero-badge-5baf {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.95); font-size: .78rem; font-weight: 700;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 16px;
  letter-spacing: .05em; text-transform: uppercase;
}
.hero-5baf h1 { color: #fff; margin-bottom: 16px; max-width: 700px; }
.hero-intro-5baf {
  font-size: 1.08rem; color: rgba(255,255,255,.85);
  max-width: 580px; margin-bottom: 30px; line-height: 1.6;
}
.hero-cta-5baf { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

/* Hero stat pills */
.hero-stats-5baf { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-stat-5baf {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-md); padding: 10px 18px; min-width: 110px;
}
.hero-stat__value-5baf { font-size: 1.45rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat__label-5baf {
  font-size: .74rem; color: rgba(255,255,255,.68); margin-top: 4px;
  text-transform: uppercase; letter-spacing: .05em;
}

.article-byline-5baf {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: #6b7280;
  margin: 8px 0 16px;
}
.article-byline-5baf a {
  color: #374151;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-byline-5baf svg {
  flex-shrink: 0;
  opacity: .6;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-5baf {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px; border-radius: var(--radius-md);
  font-size: .93rem; font-weight: 700;
  cursor: pointer; border: 2px solid transparent;
  transition: background .18s, color .18s, transform .1s, box-shadow .18s;
  text-decoration: none; white-space: nowrap; line-height: 1.2;
}
.btn-5baf:hover   { text-decoration: none; transform: translateY(-1px); }
.btn-5baf:active  { transform: translateY(0); }
.btn-5baf:focus-visible { outline: 3px solid rgba(255,255,255,.6); outline-offset: 2px; }

.btn--cta-5baf {
  background: var(--color-secondary); color: #1a1a2e;
  box-shadow: 0 4px 14px rgba(245,158,11,.4);
}
.btn--cta-5baf:hover { background: #d97706; box-shadow: 0 6px 18px rgba(245,158,11,.5); color: #1a1a2e; }

.btn--ghost-white-5baf {
  background: transparent; color: #fff; border-color: rgba(255,255,255,.45);
}
.btn--ghost-white-5baf:hover { background: rgba(255,255,255,.1); border-color: #fff; color: #fff; }

.btn--primary-5baf {
  background: var(--color-primary); color: #fff; box-shadow: var(--shadow-sm);
}
.btn--primary-5baf:hover { background: var(--color-primary-dark); box-shadow: var(--shadow-md); color: #fff; }

.btn--calc-5baf {
  background: rgba(255,255,255,.12); color: #fff;
  border-color: rgba(255,255,255,.35); font-size: .9rem;
  letter-spacing: .02em;
}
.btn--calc-5baf:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.7); color: #fff; }

.calc-cta-5baf { text-align: center; margin-top: 24px; }
.calc-cta-5baf .btn--primary-5baf { padding: 14px 40px; font-size: 1.05rem; box-shadow: 0 4px 16px rgba(99,102,241,.35); }
.calc-cta-5baf .btn--primary-5baf:hover { box-shadow: 0 6px 22px rgba(99,102,241,.45); }

/* ============================================================
   PROS & CONS
   ============================================================ */
.pros-cons-grid-5baf { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 580px) { .pros-cons-grid-5baf { grid-template-columns: 1fr 1fr; } }

.pros-card-5baf, .cons-card-5baf { border-radius: var(--radius-lg); padding: 20px 22px; }
.pros-card-5baf { background: var(--color-success-light); border: 1px solid #a7f3d0; }
.cons-card-5baf { background: var(--color-danger-light);  border: 1px solid #fecaca; }

.pros-card-5baf h3 { color: var(--color-success); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.cons-card-5baf h3 { color: var(--color-danger);  margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }

.pros-list-5baf, .cons-list-5baf { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pros-list-5baf li, .cons-list-5baf li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; line-height: 1.45; color: var(--color-text-on-light); }
.pros-list-5baf li svg, .cons-list-5baf li svg { flex-shrink: 0; margin-top: 2px; color: var(--color-text-on-light); }

/* ============================================================
   INFOGRAPHIC — CSS stat cards + rating bars
   ============================================================ */
.stat-cards-5baf { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 560px) { .stat-cards-5baf { grid-template-columns: repeat(4, 1fr); } }

.stat-card-5baf {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 20px 14px;
  text-align: center; position: relative; overflow: hidden;
}
.stat-card-5baf::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--color-primary);
}
.stat-card__value-5baf { font-size: 1.9rem; font-weight: 800; color: var(--color-primary); line-height: 1; margin-bottom: 6px; }
.stat-card__label-5baf { font-size: .73rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: .05em; }

.infographic-split-5baf { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 28px; }
@media (min-width: 720px) { .infographic-split-5baf { grid-template-columns: 1fr 1fr; } }

.rating-bars-5baf { display: flex; flex-direction: column; gap: 15px; }
.rating-bar__header-5baf { display: flex; justify-content: space-between; align-items: center; margin-bottom: 5px; }
.rating-bar__label-5baf { font-size: .875rem; font-weight: 500; }
.rating-bar__score-5baf { font-size: .875rem; font-weight: 700; color: var(--color-primary); }
.rating-bar__track-5baf { height: 8px; background: var(--color-border); border-radius: 20px; overflow: hidden; }
.rating-bar__fill-5baf  { height: 100%; border-radius: 20px; background: linear-gradient(90deg, var(--color-primary), #60a5fa); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.table-wrap-5baf {
  overflow-x: auto; border-radius: var(--radius-lg);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-sm);
}
.cmp-table-5baf { width: 100%; border-collapse: collapse; font-size: .88rem; }
.cmp-table-5baf caption { caption-side: top; text-align: left; font-weight: 700; padding: 0 0 10px; }
.cmp-table-5baf thead th {
  background: var(--color-primary); color: #fff;
  padding: 11px 15px; text-align: left; font-weight: 600; white-space: nowrap;
}
.cmp-table-5baf thead th:first-child { border-radius: var(--radius-md) 0 0 0; }
.cmp-table-5baf thead th:last-child  { border-radius: 0 var(--radius-md) 0 0; }
.cmp-table-5baf tbody tr:nth-child(even) { background: var(--color-bg-alt); }
.cmp-table-5baf tbody td { padding: 11px 15px; border-bottom: 1px solid var(--color-border); vertical-align: top; }
.cmp-table-5baf tbody tr:last-child td { border-bottom: none; }
.cmp-table-5baf tbody td:first-child    { font-weight: 600; white-space: nowrap; }

/* Badges */
.badge-5baf { display: inline-block; padding: 2px 8px; border-radius: 20px; font-size: .76rem; font-weight: 600; }
.badge--green-5baf { background: var(--color-success-light); color: var(--color-success); }
.badge--red-5baf   { background: var(--color-danger-light);  color: var(--color-danger); }
.badge--gray-5baf  { background: var(--color-bg-alt); color: var(--color-text-muted); border: 1px solid var(--color-border); }

/* ============================================================
   PAYMENTS FILTER TABLE
   ============================================================ */
.filter-tabs-5baf { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.filter-btn-5baf {
  padding: 7px 18px; border: 2px solid var(--color-border);
  background: var(--color-bg); color: var(--color-text-muted);
  border-radius: 20px; font-size: .86rem; font-weight: 600;
  cursor: pointer; transition: all .15s;
}
.filter-btn-5baf:hover { border-color: var(--color-primary); color: var(--color-primary); }
.filter-btn-5baf.active-5baf,
.filter-btn-5baf[aria-pressed="true"] { background: var(--color-primary); border-color: var(--color-primary); color: #fff; }

.pay-table-5baf { width: 100%; border-collapse: collapse; font-size: .86rem; }
.pay-table-5baf thead th {
  background: var(--color-bg-alt); padding: 9px 13px; text-align: left;
  font-weight: 600; font-size: .76rem; text-transform: uppercase;
  letter-spacing: .05em; color: var(--color-text-muted);
  border-bottom: 2px solid var(--color-border); white-space: nowrap;
}
.pay-table-5baf tbody td { padding: 11px 13px; border-bottom: 1px solid var(--color-border); vertical-align: middle; }
.pay-table-5baf tbody tr:last-child td { border-bottom: none; }
.pay-table-5baf tbody tr:hover { background: var(--color-bg-alt); }

.pay-method-5baf { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.pay-icon-5baf {
  width: 34px; height: 22px; background: var(--color-bg-alt);
  border: 1px solid var(--color-border); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: .58rem; color: var(--color-text-muted); font-weight: 800; flex-shrink: 0;
}
.speed-badge-5baf { display: inline-flex; align-items: center; font-size: .76rem; font-weight: 600; padding: 2px 8px; border-radius: 20px; }
.speed--instant-5baf { background: var(--color-success-light); color: var(--color-success); }
.speed--fast-5baf    { background: #dbeafe; color: #1d4ed8; }
.speed--medium-5baf  { background: #fef3c7; color: #92400e; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list-5baf { border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; }
.faq-item-5baf { border-bottom: 1px solid var(--color-border); }
.faq-item-5baf:last-child { border-bottom: none; }

.faq-question-5baf {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 17px 20px; background: var(--color-bg); border: none;
  cursor: pointer; text-align: left;
  font-size: .93rem; font-weight: 600; color: var(--color-text);
  transition: background .15s; line-height: 1.4;
}
.faq-question-5baf:hover { background: var(--color-bg-alt); }
.faq-question-5baf[aria-expanded="true"] { background: var(--color-primary-light); color: var(--color-primary); }

.faq-icon-5baf { flex-shrink: 0; width: 20px; height: 20px; color: var(--color-text-muted); transition: transform .25s; }
.faq-question-5baf[aria-expanded="true"] .faq-icon-5baf { transform: rotate(45deg); color: var(--color-primary); }

/* Answer panel — JS controls max-height for smooth animation */
.faq-answer-5baf {
  overflow: hidden;
  /* max-height managed by JS: 0 (closed) or scrollHeight (open) */
  transition: max-height .28s ease, padding .28s ease;
  padding: 0 20px 17px;
  font-size: .88rem; color: var(--color-text-muted); line-height: 1.65;
}

/* ============================================================
   WAGER CALCULATOR
   ============================================================ */
.calc-card-5baf {
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-xl); padding: 28px;
  box-shadow: var(--shadow-md); max-width: 520px;
}
.form-group-5baf { margin-bottom: 18px; }
.form-group-5baf label { display: block; font-size: .875rem; font-weight: 600; color: var(--color-text); margin-bottom: 6px; }
.form-hint-5baf { display: block; font-size: .76rem; color: var(--color-text-muted); margin-top: 4px; }

input[type="number"], select {
  width: 100%; height: 48px; padding: 0 14px;
  border: 1.5px solid var(--color-border); border-radius: var(--radius-md);
  font-size: 1rem; color: var(--color-text); background: var(--color-bg);
  transition: border-color .15s, box-shadow .15s;
  appearance: none; -webkit-appearance: none;
}
input[type="number"]:focus, select:focus {
  outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px var(--color-primary-light);
}

.calc-result-5baf {
  background: linear-gradient(135deg, var(--color-primary-light), #dbeafe);
  border: 1px solid #bfdbfe; border-radius: var(--radius-lg);
  padding: 20px 22px; margin-top: 20px; text-align: center;
}
.result-value-5baf  {
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 800; color: var(--color-primary); line-height: 1.1; margin-bottom: 6px;
  min-width: 0; font-variant-numeric: tabular-nums; letter-spacing: .01em;
}
.result-label-5baf  { font-size: .86rem; color: var(--color-text-muted); }
.result-hint-5baf   { font-size: .76rem; color: var(--color-text-muted); margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(0,0,0,.07); }

/* ============================================================
   LEGAL DISCLAIMER
   ============================================================ */
.legal-block-5baf {
  background: #fffbeb; border: 1px solid #fde68a;
  border-left: 4px solid var(--color-warning);
  border-radius: var(--radius-lg); padding: 20px 22px;
}
.legal-block-5baf h2 { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 1rem; color: #92400e; }
.legal-block-5baf p  { font-size: .86rem; color: #78350f; margin-bottom: 8px; }
.legal-block-5baf a  { color: #92400e; font-weight: 600; }

/* ============================================================
   USEFUL LINKS
   ============================================================ */
.useful-grid-5baf { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 480px) { .useful-grid-5baf { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .useful-grid-5baf { grid-template-columns: repeat(3, 1fr); } }

.useful-card-5baf {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 15px; background: var(--color-bg);
  border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  color: var(--color-text); text-decoration: none;
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.useful-card-5baf:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.useful-card__icon-5baf {
  width: 38px; height: 38px; background: var(--color-primary-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--color-primary);
}
.useful-card__body-5baf  { flex: 1; min-width: 0; }
.useful-card__title-5baf { font-weight: 600; font-size: .88rem; margin-bottom: 3px; }
.useful-card__desc-5baf  { font-size: .76rem; color: var(--color-text-muted); line-height: 1.4; }
.useful-card--ext-5baf .useful-card__title-5baf::after { content: ' ↗'; font-size: .68rem; color: var(--color-text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer-5baf { background: var(--color-primary); color: rgba(255,255,255,.9); padding: 44px 0 24px; }
.footer-grid-5baf { display: grid; grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
@media (min-width: 640px) { .footer-grid-5baf { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand__name-5baf { font-size: 1.05rem; font-weight: 800; color: #fff; margin-bottom: 10px; }
.footer-brand__desc-5baf { font-size: .8rem; color: rgba(255,255,255,.7); line-height: 1.6; max-width: 280px; }

.footer-trust-5baf { display: flex; align-items: center; gap: 10px; margin-top: 16px; }
.footer-trust__img-5baf {
  /* Placeholder — replaced by real <img> in production (schema.org-5baf ImageObject) */
  width: 62px; height: 38px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; font-size: .58rem;
  color: rgba(255,255,255,.35); text-transform: uppercase; letter-spacing: .02em; font-weight: 700;
}
.footer-trust__text-5baf { font-size: .72rem; color: rgba(255,255,255,.7); }

.footer-col-title-5baf { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.4); margin-bottom: 14px; }
.footer-links-5baf { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links-5baf a { font-size: .86rem; color: rgba(255,255,255,.75); transition: color .15s; }
.footer-links-5baf a:hover { color: #fff; text-decoration: none; }

.footer-bottom-5baf {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}
.footer-bottom__copy-5baf { font-size: .78rem; color: rgba(255,255,255,.7); }
.footer-policy-5baf { display: flex; flex-wrap: wrap; gap: 16px; }
.footer-policy-5baf a { font-size: .76rem; color: rgba(255,255,255,.75); transition: color .15s; }
.footer-policy-5baf a:hover { color: #fff; text-decoration: none; }
/* Legal disclaimer: non-affiliation with reviewed brand */
.footer-disclaimer-5baf { border-top: 1px solid rgba(255,255,255,.08); padding: 14px 0 6px; }
.footer-disclaimer-5baf p { font-size: .72rem; color: rgba(255,255,255,.65); line-height: 1.55; }

/* ============================================================
   HEADER VARIANT: minimal
   White bg, colored border-bottom, dark text/logo.
   ============================================================ */
.site-header--minimal-5baf {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  box-shadow: none;
}
.site-logo--dark-5baf { color: var(--color-text); }
.site-logo--dark-5baf:hover { opacity: .85; }
.logo-icon--colored-5baf {
  background: var(--color-primary-light);
  color: var(--color-primary);
}

.site-nav--dark-5baf a {
  color: var(--color-text-muted);
}
.site-nav--dark-5baf a:hover,
.site-nav--dark-5baf a.active-5baf {
  background: var(--color-primary-light); color: var(--color-primary);
}

.hamburger-label--dark-5baf span { background: var(--color-text); }

.mobile-nav--light-5baf {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
}
.mobile-nav--light-5baf a {
  color: var(--color-text-muted);
  border-bottom-color: var(--color-border);
}
.mobile-nav--light-5baf a:hover { background: var(--color-primary-light); color: var(--color-primary); }
.mobile-nav--light-5baf a.active-5baf { color: var(--color-primary); font-weight: 600; }

/* Open-state for minimal/underline (dark hamburger variants) */
#nav-toggle:checked ~ .site-header--minimal-5baf .mobile-nav--light-5baf,
#nav-toggle:checked ~ .site-header--underline-5baf .mobile-nav--light-5baf { max-height: 400px; }
#nav-toggle:checked ~ .site-header--minimal-5baf .hamburger-label--dark-5baf span:nth-child(1),
#nav-toggle:checked ~ .site-header--underline-5baf .hamburger-label--dark-5baf span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
#nav-toggle:checked ~ .site-header--minimal-5baf .hamburger-label--dark-5baf span:nth-child(2),
#nav-toggle:checked ~ .site-header--underline-5baf .hamburger-label--dark-5baf span:nth-child(2) { opacity: 0; }
#nav-toggle:checked ~ .site-header--minimal-5baf .hamburger-label--dark-5baf span:nth-child(3),
#nav-toggle:checked ~ .site-header--underline-5baf .hamburger-label--dark-5baf span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ============================================================
   HEADER VARIANT: underline
   White bg, 3px primary bottom border, centered nav.
   ============================================================ */
.site-header--underline-5baf {
  background: var(--color-bg);
  border-bottom: 3px solid var(--color-primary);
  box-shadow: none;
}
.site-nav--centered-5baf { justify-content: center; }

/* ============================================================
   HEADER VARIANT: dark
   Always-dark (#111827), reuses existing white-text rules.
   ============================================================ */
.site-header--dark-5baf { background: #111827; }

/* ============================================================
   FOOTER VARIANT: minimal — single row
   ============================================================ */
.footer--minimal-5baf { padding: 22px 0; }
.footer--minimal-5baf .footer-bottom-5baf { border-top: none; padding-top: 0; }

/* ============================================================
   FOOTER VARIANT: two_column
   ============================================================ */
.footer--two-col-5baf { padding: 36px 0 24px; }
.footer-two-col-5baf {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 24px;
  margin-bottom: 24px;
}
.footer-links--inline-5baf { flex-direction: row; flex-wrap: wrap; gap: 6px 16px; }
.footer-bottom--border-5baf { border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px; }

/* ============================================================
   LAYOUT B — SIDEBAR (900px+ two-column, below = single column)
   ============================================================ */
.layout-b-5baf {
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--content-width);
  margin: 0 auto;
}
@media (min-width: 900px) {
  .layout-b-5baf { grid-template-columns: 1fr 280px; align-items: start; padding: 0 16px; }
}
.layout-b__content-5baf { min-width: 0; }
.layout-b__sidebar-5baf { padding: 36px 0 36px 24px; }
@media (max-width: 899px) { .layout-b__sidebar-5baf { display: none; } }

.sidebar-widget-5baf {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: 18px 20px;
  position: sticky; top: 76px;
}
.sidebar-widget__title-5baf {
  font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--color-text-muted); margin-bottom: 14px;
}
.sidebar-nav-5baf { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.sidebar-nav-5baf a {
  display: block; padding: 7px 10px;
  border-radius: var(--radius-md); font-size: .86rem;
  color: var(--color-text-muted); transition: all .15s;
}
.sidebar-nav-5baf a:hover { background: var(--color-primary-light); color: var(--color-primary); text-decoration: none; }
.sidebar-nav-5baf a.active-5baf { background: var(--color-primary-light); color: var(--color-primary); font-weight: 600; }

/* ============================================================
   NEW CALCULATORS — Bonus / RTP / Odds
   ============================================================ */

/* Bonus Calculator — 3-column result grid */
.bc-result-grid-5baf {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--color-border);
}
@media (max-width: 640px) { .bc-result-grid-5baf { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .bc-result-grid-5baf { grid-template-columns: 1fr; } }
.bc-result-item-5baf { text-align: center; min-width: 0; overflow: hidden; }
.bc-result-item--main-5baf { grid-column: 1 / -1; margin-top: 8px; }
.result-value--accent-5baf {
  font-size: clamp(1.1rem, 4vw, 1.75rem);
  color: var(--color-primary);
}

/* RTP Calculator — 3-column result grid + bar */
.rtp-result-grid-5baf {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--color-border);
}
@media (max-width: 580px) { .rtp-result-grid-5baf { grid-template-columns: 1fr; } }
.rtp-result-item-5baf { text-align: center; min-width: 0; }
.rtp-result-item--return-5baf .result-value-5baf { color: #10b981; }
.rtp-result-item--loss-5baf .result-value-5baf { color: #ef4444; }

.rtp-bar-wrap-5baf {
  position: relative; height: 32px; background: var(--color-border);
  border-radius: var(--radius-md); overflow: hidden; margin-top: 20px;
}
.rtp-bar-5baf {
  position: absolute; top: 0; left: 0; bottom: 0;
  background: linear-gradient(90deg, #10b981, #34d399);
  transition: width .3s ease; border-radius: var(--radius-md);
}
.rtp-bar-label-5baf {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: .8rem; font-weight: 600; color: #000; z-index: 1;
}
.rtp-disclaimer-5baf { font-size: .82rem; color: var(--color-text-muted); margin-top: 12px; text-align: center; }

/* Odds Converter — 3-column input grid */
.odds-grid-5baf {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
@media (max-width: 720px) { .odds-grid-5baf { grid-template-columns: 1fr; } }

/* Radio buttons — fieldset styling */
.form-group--radio-5baf { border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 16px; }
.form-group--radio-5baf legend { font-weight: 600; font-size: .88rem; margin-bottom: 10px; }
.radio-label-5baf {
  display: flex; align-items: center; gap: 8px; padding: 8px 10px;
  border-radius: var(--radius-sm); cursor: pointer; transition: background .15s;
}
.radio-label-5baf:hover { background: var(--color-primary-light); }
.radio-label-5baf input[type="radio"] { cursor: pointer; margin: 0; }

/* ============================================================
   CALCULATOR PAIR — 2-up on desktop, stacked+centered on mobile
   ============================================================ */
.calc-pair-5baf { display: flex; flex-direction: column; }
.calc-pair-5baf .calc-card-5baf { margin-left: auto; margin-right: auto; }
@media (min-width: 900px) {
  .calc-pair-5baf {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
  }
  .calc-pair-5baf > .section-5baf {
    flex: 0 1 540px;
    min-width: 0;
    padding: 44px 32px;
    display: flex;
    flex-direction: column;
    border: none !important;
    background: transparent;
  }
  .calc-pair-5baf > .section-5baf + .section-5baf {
    border-left: 1px solid var(--color-border) !important;
  }
  .calc-pair-5baf > .section-5baf > .container-5baf {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: none;
    padding: 0;
    margin: 0;
  }
  .calc-pair-5baf .calc-card-5baf {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: none;
    margin: 0;
  }
  .calc-pair-5baf .calc-cta-5baf { margin-top: auto; padding-top: 16px; }
}

/* ============================================================
   HERO — calculator anchor links (below CTA row)
   ============================================================ */
.hero-calc-links-5baf { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.hero-calc-link-5baf {
  font-size: .82rem; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.28); border-radius: 20px;
  padding: 4px 14px; text-decoration: none;
  transition: background .15s, color .15s, border-color .15s;
}
.hero-calc-link-5baf:hover {
  background: rgba(255,255,255,.14); color: #fff;
  border-color: rgba(255,255,255,.6); text-decoration: none;
}

/* ============================================================
   SEO TEXT — collapsible section before footer
   ============================================================ */
.seo-text-body-5baf { font-size: .9rem; line-height: 1.75; color: var(--color-text-muted); }
.seo-text-inner-5baf {}
.seo-text-body-5baf p { margin-bottom: .9rem; }
.seo-text-body--collapsed-5baf { max-height: 12em; overflow: hidden; position: relative; }
.seo-text-body--collapsed-5baf::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 44px;
  background: linear-gradient(transparent, var(--color-bg-alt)); pointer-events: none;
}
.seo-text-body--collapsed-5baf table,
.seo-text-body--collapsed-5baf .seo-text-inner-5baf { overflow: hidden; }
.seo-text-toggle-5baf {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 12px;
  font-size: .86rem; font-weight: 600; color: var(--color-primary);
  background: none; border: none; cursor: pointer; padding: 0; transition: opacity .15s;
}
.seo-text-toggle-5baf:hover { opacity: .78; }
.seo-text-toggle-5baf svg { transition: transform .25s; }
.seo-text-toggle-5baf[aria-expanded="true"] svg { transform: rotate(180deg); }

/* ============================================================
   GUIDES GRID — "More Guides" block (replaces Useful Resources)
   ============================================================ */
.guides-grid-5baf { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 480px) { .guides-grid-5baf { grid-template-columns: repeat(3, 1fr); } }
.guide-card-5baf {
  display: block; padding: 18px 16px;
  background: var(--color-bg); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); color: var(--color-text);
  text-decoration: none; transition: border-color .15s, box-shadow .15s, transform .15s;
}
.guide-card-5baf:hover { border-color: var(--color-primary); box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.guide-card__title-5baf { font-weight: 700; font-size: .93rem; margin-bottom: 5px; color: var(--color-primary); }
.guide-card__desc-5baf  { font-size: .8rem; color: var(--color-text-muted); line-height: 1.45; }

/* ============================================================
   SLOT PICKER
   ============================================================ */
.slot-picker-section-5baf {
  content-visibility: auto;
  contain-intrinsic-size: 0 800px;
}

/* --- Chip filter groups --- */
.slot-filter-groups-5baf {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.slot-filter-group-5baf {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.slot-filter-group__label-5baf {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--color-text-muted);
  min-width: 62px;
  flex-shrink: 0;
  padding-top: 7px;
}
.slot-chips-row-5baf {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.slot-chip-5baf {
  padding: 5px 13px;
  border: 1.5px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: .78rem;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background .14s ease, border-color .14s ease, color .14s ease, transform .1s ease;
  line-height: 1.4;
}
.slot-chip-5baf:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}
.slot-chip-5baf:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
.slot-chip-5baf.is-active-5baf {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.slot-chip-5baf.is-active-5baf:hover { transform: none; }

/* Count line */
.slot-count-line-5baf {
  margin-top: 16px;
  font-size: .8rem;
  color: var(--color-text-muted);
  text-align: right;
}
.slot-count-line-5baf #sp-count {
  font-weight: 700;
  color: var(--color-text);
}

/* CTA for reg cluster */
.slot-picker-cta-5baf {
  text-align: center;
  margin-top: 28px;
}

/* --- Grid --- */
.slot-grid-5baf {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .slot-grid-5baf { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .slot-grid-5baf { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* --- Card --- */
.slot-card-5baf {
  position: relative;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: opacity .18s ease, transform .2s ease, box-shadow .2s ease;
  cursor: pointer;
}
@media (hover: hover) {
  .slot-card-5baf:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
  }
}

/* Stretched link — whole card clickable */
.slot-card__link-5baf {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.slot-card__link-5baf:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: -3px;
}

/* --- Image with shimmer placeholder --- */
@keyframes sp-shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position:  400px 0; }
}
.slot-card__img-wrap-5baf {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  background: linear-gradient(
    90deg,
    var(--color-bg-alt) 25%,
    var(--color-border) 50%,
    var(--color-bg-alt) 75%
  );
  background-size: 800px 100%;
  animation: sp-shimmer 1.4s infinite linear;
}
.slot-card__img-wrap-5baf.is-loaded-5baf {
  animation: none;
  background: var(--color-bg-alt);
}
.slot-card__img-5baf {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
.slot-card__img-5baf.is-loaded-5baf {
  opacity: 1;
}
@media (hover: hover) {
  .slot-card-5baf:hover .slot-card__img-5baf { transform: scale(1.06); }
}

/* Play overlay — desktop hover only */
.slot-card__overlay-5baf {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.48);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s ease;
  pointer-events: none;
}
@media (hover: hover) {
  .slot-card-5baf:hover .slot-card__overlay-5baf { opacity: 1; }
}
.slot-card__overlay-text-5baf {
  color: #fff;
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .04em;
  background: var(--color-primary);
  padding: 7px 18px;
  border-radius: 20px;
}

/* Card body */
.slot-card__body-5baf {
  position: relative;
  z-index: 2;
  padding: 10px 12px 12px;
}
.slot-card__name-5baf {
  font-size: .875rem;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text);
}
.slot-card__provider-5baf {
  font-size: .75rem;
  color: var(--color-text-muted);
  margin-bottom: 7px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.slot-card__badges-5baf { display: flex; flex-wrap: wrap; gap: 4px; }
.slot-badge-5baf {
  font-size: .68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.slot-badge--rtp-5baf   { background: rgba(22,163,74,.12); color: #15803d; }
.slot-badge--vol-5baf   { background: var(--color-bg-accent); color: var(--color-text-muted); }
.slot-badge--theme-5baf { background: var(--color-primary-light); color: var(--color-primary-dark); }

/* Filter out animation: fade → hide */
.slot-card-5baf.is-fading-out-5baf {
  opacity: 0;
  transform: scale(.97);
  pointer-events: none;
}
.slot-card-5baf.is-hidden-5baf { display: none; }
/* JS-only dynamic card marker — no visual styles */
.slot-card--dyn-5baf {}

/* No results */
.slot-no-results-5baf {
  grid-column: 1 / -1;
  text-align: center;
  padding: 40px 20px;
  color: var(--color-text-muted);
  font-size: .9rem;
}

/* --- Mobile: less visual noise --- */
@media (max-width: 600px) {
  /* Hide overlay on touch devices */
  .slot-card__overlay-5baf { display: none; }
  /* Hide theme chip group — too many options for small screen */
  .slot-filter-group--theme-5baf { display: none; }
  /* Smaller card body */
  .slot-card__body-5baf { padding: 7px 8px 10px; }
  .slot-card__name-5baf { font-size: .8rem; }
  .slot-card__provider-5baf { margin-bottom: 5px; }
  /* Hide theme badge in card — saves space */
  .slot-badge--theme-5baf { display: none; }
  /* Count line left-aligned */
  .slot-count-line-5baf { text-align: left; }
}


/* ============================================================
   STEPS - Numbered step-by-step guide
   ============================================================ */
.steps-list-5baf {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.step-item-5baf {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  align-items: start;
}

.step-number-5baf {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-icon-5baf {
  grid-column: 1;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.step-icon-5baf svg {
  width: 2rem;
  height: 2rem;
}

.step-content-5baf {
  grid-column: 2;
}

.step-title-5baf {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.step-content-5baf p {
  margin: 0 0 0.75rem;
  color: var(--color-text);
  line-height: var(--line-height);
}

.step-content-5baf p:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .step-item-5baf {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }

  .step-number-5baf {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
  }
}

/* ============================================================
   BREADCRUMB — Navigation trail above hero
   ============================================================ */
.breadcrumb-5baf {
  padding: 10px 0 0;
}
.breadcrumb__list-5baf {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .82rem;
  color: var(--color-text-muted);
}
.breadcrumb__item-5baf + .breadcrumb__item-5baf::before {
  content: '›';
  margin-right: 4px;
  color: var(--color-text-muted);
  opacity: .6;
}
.breadcrumb__item-5baf a {
  color: var(--color-primary);
  text-decoration: none;
}
.breadcrumb__item-5baf a:hover {
  text-decoration: underline;
}
.breadcrumb__item-5baf [aria-current] {
  color: var(--color-text-muted);
}
