/* ==========================================================================
   ONEPAGE-BRAND — style.css-efe5
   Design: Editorial / Magazine.
   ========================================================================== */

/* --- CSS Custom Properties (overwritten per-domain by builder) --- */
:root {
  --c-primary: #1A2A4A;
  --c-primary-dark: #15223c;
  --c-primary-light: #ecedf0;
  --c-accent: #eab308;
  --c-bg: #ffffff;
  --c-bg-alt: #fafdf7;
  --c-bg-accent: #fefce8;
  --c-text: #1a2e05;
  --c-text-muted: #4d7c0f;
  --c-border: #d9f99d;
  --c-footer-bg: #0e1728;
  --c-footer-text: #bbf7d0;
  --c-footer-muted: #86efac;
  --c-cta: #eab308;
  --c-cta-hover: #ca8a04;
  --c-cta-text: #1a2e05;
  --font-heading: 'Outfit', system-ui, sans-serif;
  --font-body: 'Outfit', system-ui, sans-serif;
  --radius-sm: 0px;
  --radius-md: 0px;
  --radius-lg: 0px;
  --radius-xl: 0px;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --content-width: 960px;
  --line-height: 1.55;
  --section-gap: 56px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: var(--line-height);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body > main { flex: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--c-cta-hover); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-primary-dark);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); font-weight: 800; }
h2 { font-size: clamp(1.3rem, 3.5vw, 1.9rem); margin-bottom: 20px; }
h3 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* --- Accessibility --- */
.skip-to-efe5 { position: absolute; top: -100px; left: 8px; background: var(--c-primary-dark); color: #fff; padding: 8px 16px; z-index: 999; font-size: .875rem; border-radius: var(--radius-sm); }
.skip-to-efe5:focus { top: 8px; outline: 3px solid var(--c-accent); }

.sr-only-efe5 { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Layout --- */
.wrap-efe5 {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}

.cl-section-efe5 {
  padding: var(--section-gap) 0;
}
.cl-section--alt-efe5 {
  background: var(--c-bg-alt);
}
.cl-section--accent-efe5 {
  background: var(--c-bg-accent);
}

/* Divider between sections — thin line, not bg change */
.cl-divider-efe5 {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 0;
}

/* ==========================================================================
   HEADER — clean_left style (default)
   ========================================================================== */
.cl-header-efe5 {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-primary-dark);
  color: #fff;
  padding: 0 20px;
}
.cl-header__inner-efe5 {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}
.cl-header__brand-efe5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.01em;
}
.cl-header__brand-efe5:hover { color: var(--c-accent); }

.cl-header__nav-efe5 { display: flex; gap: 24px; list-style: none; }
.cl-header__nav-efe5 a {
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  transition: color .15s;
}
.cl-header__nav-efe5 a:hover { color: #fff; }

.cl-header__section-link-efe5 {
  font-size: .8rem;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .15s;
  border-left: 1px solid rgba(255,255,255,.2);
  padding-left: 24px;
}
.cl-header__section-link-efe5:hover { color: #fff; }

/* Right-side wrapper: keeps nav + CTA + hamburger on the same flex row.
   On mobile this is what holds CTA next to the burger when nav collapses.
   On desktop the CTA group is lifted out of this row via position:absolute
   (see media query below) so it can pin to the viewport edge while the
   menu stays inside the content-width container. */
.cl-header__right-efe5 {
  display: flex; align-items: center;
  gap: 14px;
}

/* Article byline — author attribution near page bottom, E-E-A-T signal.
   Shows a small user-icon plus a link to the localized /{about-slug}/ page. */
.cl-article-byline-efe5 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: var(--c-text-muted);
  margin: 12px 0 20px;
}
.cl-article-byline-efe5 a {
  color: var(--c-text);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .15s;
}
.cl-article-byline-efe5 a:hover { color: var(--c-primary); }
.cl-article-byline-efe5 svg { flex-shrink: 0; opacity: .65; }

/* Brand logo (when site.brand_logo_url-efe5 is set, _header.html-efe5 renders an <img>
   instead of the plain site name). Sized to fit the 56px header height. */
.cl-header__logo-efe5 {
  display: block;
  height: 36px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

/* Desktop only: brand and CTA are lifted to the viewport edges via absolute
   positioning relative to .cl-header-efe5 (which is position:sticky and therefore
   establishes a positioning context). The inner row reserves symmetric
   padding so the menu can never overlap either of them. Mobile keeps the
   original inline flex flow untouched. */
@media (min-width: 641px) {
  .cl-header__inner-efe5 {
    padding-left: 270px;
    padding-right: 270px;
    justify-content: flex-end;
  }
  .cl-header-efe5 .cl-header__brand-efe5 {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .cl-header-efe5 .header-cta-group-efe5 {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* Mobile hamburger */
.cl-header__toggle-efe5 { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: #fff; }
.cl-header__toggle-efe5 svg { width: 22px; height: 22px; }

/* ──────────────────────────────────────────────────────────────────────
   HEADER CTA — Sign Up + Bonus buttons (always visible, both PC + mobile)
   ────────────────────────────────────────────────────────────────────── */
.header-cta-group-efe5 {
  display: flex; align-items: center;
  gap: 10px;
  flex-shrink: 1; min-width: 0;
}
.header-cta-efe5 {
  position: relative; display: inline-flex; align-items: center;
  gap: clamp(3px, .6vw, 6px);
  padding: clamp(5px, 1vw, 8px) clamp(8px, 1.6vw, 14px);
  font-size: clamp(.72rem, 1.6vw, .88rem); font-weight: 700;
  line-height: 1; white-space: nowrap;
  border-radius: var(--radius-md); text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  flex-shrink: 1; min-width: 0;
}
.header-cta-efe5:hover { text-decoration: none; transform: translateY(-1px); }
.header-cta__icon-efe5 { flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.header-cta__label-efe5 { overflow: hidden; text-overflow: ellipsis; }

.header-cta--register-efe5 {
  background: rgba(255,255,255,.16); color: #fff;
  border: 1px solid rgba(255,255,255,.32);
}
.header-cta--register-efe5:hover { background: rgba(255,255,255,.28); color: #fff; }

.header-cta--bonus-efe5 {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #1a1a2e;
  box-shadow: 0 2px 8px rgba(245,158,11,.45);
  overflow: visible;
}
.header-cta--bonus-efe5:hover {
  color: #1a1a2e;
  box-shadow: 0 4px 14px rgba(245,158,11,.6);
}
.header-cta__gift-efe5 {
  font-size: 1em; line-height: 1;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.2));
  transition: transform .25s ease;
}
.header-cta--bonus-efe5:hover .header-cta__gift-efe5 {
  transform: rotate(-12deg) scale(1.15);
}

/* Coin waterfall particles — spawned by app.js-efe5 on hover/focus.
   Origin sits just below the gift glyph, particles fall downward. */
.coin-particle-efe5 {
  position: absolute; left: 50%; top: 90%;
  font-size: 1rem; line-height: 1;
  pointer-events: none; user-select: none;
  z-index: 5; opacity: 0;
  transform: translate(-50%, -50%);
  animation: coin-fountain 1.1s cubic-bezier(.4, .05, .55, 1) forwards;
  will-change: transform, opacity;
}
@keyframes coin-fountain {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(.5) rotate(0); }
  18%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(-50% + var(--dx, 0)), calc(-50% + var(--dy, 80px))) scale(1) rotate(var(--rot, 360deg)); }
}
@media (prefers-reduced-motion: reduce) {
  .coin-particle-efe5, .header-cta-efe5, .header-cta__gift-efe5 { animation: none !important; transition: none !important; }
}

/* Mobile tightening: compact buttons, same layout */
@media (max-width: 767.98px) {
  .header-cta-group-efe5 { gap: 7px; }
  .header-cta-efe5 { padding: 5px 8px; font-size: .74rem; }
}
@media (max-width: 380px) {
  .header-cta--register-efe5 .header-cta__icon-efe5 { display: none; }
}

@media (max-width: 640px) {
  .cl-header__toggle-efe5 { display: block; }
  .cl-header__nav-efe5 {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: var(--c-primary-dark);
    border-bottom: 2px solid var(--c-accent);
    flex-direction: column;
    padding: 16px 20px;
    gap: 12px;
  }
  .cl-header__nav--open-efe5 { display: flex; }
  .cl-header__section-link-efe5 { border-left: none; padding-left: 0; font-size: .82rem; }
}

/* ==========================================================================
   HERO — editorial style: no gradient, large typography, minimal
   ========================================================================== */
.cl-hero-efe5 {
  padding: 64px 0 48px;
  background: var(--c-bg-accent);
  border-bottom: 2px solid var(--c-accent);
}
.cl-hero__badge-efe5 {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--c-accent);
  margin-bottom: 16px;
}
.cl-hero__title-efe5 {
  max-width: 720px;
  margin-bottom: 16px;
}
.cl-hero__desc-efe5 {
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: 28px;
}
.cl-hero__actions-efe5 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* CTA buttons */
.cl-btn-efe5 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: 10px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, transform .1s;
  line-height: 1.4;
}
.cl-btn-efe5:active { transform: scale(.98); }

.cl-btn--primary-efe5 {
  background: var(--c-cta);
  color: var(--c-cta-text);
  border-color: var(--c-cta);
}
.cl-btn--primary-efe5:hover {
  background: var(--c-cta-hover);
  border-color: var(--c-cta-hover);
  color: var(--c-cta-text);
}

.cl-btn--outline-efe5 {
  background: transparent;
  color: var(--c-primary-dark);
  border-color: var(--c-border);
}
.cl-btn--outline-efe5:hover {
  border-color: var(--c-primary-dark);
  color: var(--c-primary-dark);
}

/* Hero stat row — horizontal chips, NOT card-based */
.cl-hero__stats-efe5 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}
.cl-hero__stat-efe5 {
  display: flex;
  flex-direction: column;
}
.cl-hero__stat-val-efe5 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  line-height: 1.1;
}
.cl-hero__stat-label-efe5 {
  font-size: .75rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-top: 2px;
}

/* ==========================================================================
   ANCHOR NAV — horizontal pills bar
   ========================================================================== */
.cl-anchor-bar-efe5 {
  margin: 28px 0 32px;
  padding: 4px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cl-anchor-bar__list-efe5 {
  display: flex;
  gap: 8px;
  list-style: none;
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 20px;
}
.cl-anchor-bar__link-efe5 {
  white-space: nowrap;
  font-size: .85rem;
  font-weight: 600;
  padding: 8px 16px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  color: var(--c-primary);
  text-decoration: none;
  transition: background .15s, color .15s, border-color .15s, box-shadow .15s, transform .15s;
}
.cl-anchor-bar__link-efe5:hover,
.cl-anchor-bar__link--active-efe5 {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  transform: translateY(-1px);
}

/* ==========================================================================
   PROS / CONS — side label style (NOT green/red cards)
   ========================================================================== */
.cl-verdict-efe5 { display: grid; gap: 24px; }
@media (min-width: 640px) {
  .cl-verdict-efe5 { grid-template-columns: 1fr 1fr; }
}

.cl-verdict__col-efe5 { padding: 0; }
.cl-verdict__heading-efe5 {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--c-border);
}
.cl-verdict__heading--pro-efe5 { color: var(--c-success); border-color: var(--c-success); }
.cl-verdict__heading--con-efe5 { color: var(--c-danger); border-color: var(--c-danger); }

.cl-verdict__list-efe5 { list-style: none; }
.cl-verdict__list-efe5 li {
  padding: 8px 0;
  font-size: .92rem;
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.cl-verdict__list-efe5 li:last-child { border-bottom: none; }
.cl-verdict__icon-efe5 {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.cl-verdict__icon--pro-efe5 { color: var(--c-success); }
.cl-verdict__icon--con-efe5 { color: var(--c-danger); }

/* ==========================================================================
   INFOGRAPHIC — minimal stat blocks (NOT cards with borders)
   ========================================================================== */
.cl-info-grid-efe5 {
  display: grid;
  gap: 24px;
}
@media (min-width: 600px) {
  .cl-info-grid-efe5 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
  .cl-info-grid-efe5 { grid-template-columns: 1fr 1fr 1fr; }
}

.cl-info-stat-efe5 {
  padding: 20px 0;
  border-bottom: 1px solid var(--c-border);
}
.cl-info-stat__value-efe5 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--c-primary-dark);
  line-height: 1;
  margin-bottom: 4px;
}
.cl-info-stat__label-efe5 {
  font-size: .8rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* Rating bars — thin line style */
.cl-rating-bar-efe5 {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.cl-rating-bar-efe5:last-child { border-bottom: none; }
.cl-rating-bar__label-efe5 { font-size: .88rem; min-width: 120px; }
.cl-rating-bar__track-efe5 {
  flex: 1;
  height: 4px;
  background: var(--c-border);
  border-radius: 2px;
  overflow: hidden;
}
.cl-rating-bar__fill-efe5 {
  height: 100%;
  background: var(--c-accent);
  border-radius: 2px;
  transition: width .3s;
}
.cl-rating-bar__score-efe5 {
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-primary-dark);
  min-width: 32px;
  text-align: right;
}

/* Quick info — key/value rows */
.cl-quick-info-efe5 { width: 100%; border-collapse: collapse; }
.cl-quick-info-efe5 tr { border-bottom: 1px solid var(--c-border); }
.cl-quick-info-efe5 tr:last-child { border-bottom: none; }
.cl-quick-info-efe5 td { padding: 10px 0; font-size: .9rem; vertical-align: top; }
.cl-quick-info-efe5 td:first-child { color: var(--c-text-muted); padding-right: 16px; white-space: nowrap; }
.cl-quick-info-efe5 td:last-child { font-weight: 500; }

/* ==========================================================================
   TABLE — clean, minimal borders
   ========================================================================== */
.cl-table-wrap-efe5 { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cl-table-efe5 {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}
.cl-table-efe5 thead { border-bottom: 2px solid var(--c-primary-dark); }
.cl-table-efe5 th {
  font-weight: 600;
  text-align: left;
  padding: 10px 12px;
  color: var(--c-primary-dark);
  white-space: nowrap;
}
.cl-table-efe5 td { padding: 10px 12px; border-bottom: 1px solid var(--c-border); }
.cl-table-efe5 tbody tr:hover { background: var(--c-bg-alt); }

.cl-badge-efe5 {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cl-badge--green-efe5 { background: #dcfce7; color: #166534; }
.cl-badge--red-efe5 { background: #fee2e2; color: #991b1b; }
.cl-badge--gray-efe5 { background: #f3f4f6; color: #4b5563; }
.cl-badge--blue-efe5 { background: #dbeafe; color: #1e40af; }

/* ==========================================================================
   STEPS / HOW-TO — timeline style (NOT numbered circles)
   ========================================================================== */
.cl-steps-efe5 { list-style: none; position: relative; padding-left: 28px; }
.cl-steps-efe5::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background: var(--c-border);
}
.cl-step-efe5 {
  position: relative;
  padding-bottom: 28px;
}
.cl-step-efe5:last-child { padding-bottom: 0; }
.cl-step-efe5::before {
  content: '';
  position: absolute;
  left: -22px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  border: 2px solid var(--c-bg);
  box-shadow: 0 0 0 2px var(--c-accent);
}
.cl-step__title-efe5 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.cl-step__body-efe5 { font-size: .9rem; color: var(--c-text-muted); }

/* ==========================================================================
   FAQ — details/summary style (NOT accordion with +/X)
   ========================================================================== */
.cl-faq-list-efe5 { display: flex; flex-direction: column; gap: 0; }

.cl-faq-item-efe5 {
  border-bottom: 1px solid var(--c-border);
}
.cl-faq-item-efe5:first-child { border-top: 1px solid var(--c-border); }

.cl-faq-q-efe5 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px 0;
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  color: var(--c-primary-dark);
  text-align: left;
  line-height: 1.4;
  gap: 12px;
}
.cl-faq-q-efe5:hover { color: var(--c-accent); }

/* Arrow indicator (NOT plus/minus) */
.cl-faq-q__icon-efe5 {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: transform .2s;
  color: var(--c-text-muted);
}
.cl-faq-item--open-efe5 .cl-faq-q__icon-efe5 { transform: rotate(180deg); }

.cl-faq-a-efe5 {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease-out;
}
.cl-faq-a__inner-efe5 {
  padding: 0 0 16px;
  font-size: .88rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   ANCHOR Q&A SECTIONS — editorial blocks
   ========================================================================== */
.cl-anchor-section-efe5 {
  padding: var(--section-gap) 0;
  border-bottom: 1px solid var(--c-border);
}
.cl-anchor-section-efe5:last-child { border-bottom: none; }
.cl-anchor-section-efe5 h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  margin-bottom: 16px;
}
.cl-anchor-section-efe5 p {
  font-size: .92rem;
  color: var(--c-text);
}
.cl-anchor-section-efe5 table {
  width: 100%;
  margin-top: 16px;
}

/* ==========================================================================
   SLOT PICKER — horizontal scroll carousel (NOT grid)
   ========================================================================== */
.cl-slots-efe5 {}

.cl-slots__filters-efe5 {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 10px;
}
.cl-slots__filters--rtp-efe5 { margin-bottom: 20px; }
.cl-slots__filters-label-efe5 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  color: var(--c-text-muted);
  margin-right: 4px;
}
.cl-slots__chip-efe5 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  padding: 5px 12px;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  cursor: pointer;
  color: var(--c-text-muted);
  transition: background .15s, color .15s, border-color .15s;
}
.cl-slots__chip-efe5:hover { border-color: var(--c-text-muted); color: var(--c-text); }
.cl-slots__chip--active-efe5 {
  background: var(--c-primary-dark);
  color: #fff;
  border-color: var(--c-primary-dark);
}

/* Horizontal scroll track */
.cl-slots__track-efe5 {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-border) transparent;
}
.cl-slots__track-efe5::-webkit-scrollbar { height: 6px; }
.cl-slots__track-efe5::-webkit-scrollbar-track { background: transparent; }
.cl-slots__track-efe5::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 3px; }

/* Slot card — portrait orientation (NOT landscape 3:2) */
.cl-slot-card-efe5 {
  flex: 0 0 160px;
  scroll-snap-align: start;
  text-decoration: none;
  color: var(--c-text);
  transition: transform .15s;
}
.cl-slot-card-efe5:hover { transform: translateY(-3px); }

.cl-slot-card__img-efe5 {
  width: 160px;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--c-bg-alt);
}
.cl-slot-card__name-efe5 {
  font-size: .82rem;
  font-weight: 600;
  margin-top: 8px;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cl-slot-card__provider-efe5 {
  font-size: .72rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.cl-slot-card__meta-efe5 {
  display: flex;
  gap: 6px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cl-slot-card__tag-efe5 {
  font-size: .65rem;
  font-weight: 500;
  padding: 1px 6px;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  color: var(--c-text-muted);
}

/* No results */
.cl-slots__empty-efe5 {
  text-align: center;
  padding: 40px 20px;
  color: var(--c-text-muted);
  font-size: .88rem;
}

/* Slot count (hidden by default) */
.cl-slots__count-efe5 { font-size: .78rem; color: var(--c-text-muted); margin-top: 8px; }

/* ==========================================================================
   PAYMENT METHODS — inline tag list (NOT filterable table)
   ========================================================================== */
/* Payment methods now rendered as cl-table (see TABLE section) */

/* ==========================================================================
   SEO TEXT — collapsible (under the fold)
   ========================================================================== */
.cl-seo-body-efe5 {
  position: relative;
  overflow: hidden;
  transition: max-height .3s ease;
}
.cl-seo-body--collapsed-efe5 {
  max-height: 14em;
}
.cl-seo-body--collapsed-efe5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, var(--c-bg));
  pointer-events: none;
}
.cl-section--alt-efe5 .cl-seo-body--collapsed-efe5::after {
  background: linear-gradient(transparent, var(--c-bg-alt));
}

.cl-seo-toggle-efe5 {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  color: var(--c-accent);
  padding: 8px 0 0;
}
.cl-seo-toggle-efe5:hover { text-decoration: underline; }
.cl-seo-toggle__icon-efe5 {
  width: 14px;
  height: 14px;
  transition: transform .2s;
}
.cl-seo-toggle--open-efe5 .cl-seo-toggle__icon-efe5 { transform: rotate(180deg); }

.cl-seo-inner-efe5 { }
.cl-seo-inner-efe5 p { font-size: .9rem; color: var(--c-text); margin-bottom: 1em; }
.cl-seo-inner-efe5 h2 { font-size: 1.15rem; margin-top: 1.5em; margin-bottom: .5em; }
.cl-seo-inner-efe5 table { margin: 1em 0; }

/* ==========================================================================
   LEGAL — subtle disclaimer (NOT yellow warning box)
   ========================================================================== */
.cl-legal-efe5 {
  font-size: .78rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  padding: 24px 0;
  border-top: 1px solid var(--c-border);
}
.cl-legal-efe5 p { margin-bottom: .8em; }
.cl-legal-efe5 a { color: var(--c-text-muted); text-decoration: underline; }

/* ==========================================================================
   EEAT PAGE — article body
   ========================================================================== */
.cl-eeat-efe5 { padding: 40px 0; }
.cl-eeat-efe5 h1 { margin-bottom: 24px; }
.cl-eeat__body-efe5 h2 { font-size: 1.2rem; margin: 28px 0 10px; }
.cl-eeat__body-efe5 p { margin-bottom: 1em; line-height: 1.7; color: var(--c-text-muted); }
.cl-eeat__body-efe5 a { color: var(--c-accent); text-decoration: underline; }
.cl-eeat__body-efe5 a:hover { color: var(--c-primary-dark); }

/* ==========================================================================
   USEFUL LINKS / GUIDES — text list (NOT card grid)
   ========================================================================== */
.cl-links-list-efe5 { list-style: none; }
.cl-links-list-efe5 li {
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border);
}
.cl-links-list-efe5 li:last-child { border-bottom: none; }
.cl-links-list-efe5 a {
  font-size: .88rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--c-primary-dark);
}
.cl-links-list-efe5 a:hover { color: var(--c-accent); text-decoration: underline; }
.cl-links-list__desc-efe5 {
  font-size: .78rem;
  color: var(--c-text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   FOOTER — stacked style (default)
   ========================================================================== */
.cl-footer-efe5 {
  background: var(--c-footer-bg);
  color: var(--c-footer-text);
  padding: 40px 20px 24px;
}
.cl-footer__inner-efe5 {
  max-width: var(--content-width);
  margin: 0 auto;
}
.cl-footer__top-efe5 {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.cl-footer__col-efe5 { min-width: 160px; }
.cl-footer__col-title-efe5 {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-footer-muted);
  margin-bottom: 12px;
}
.cl-footer__links-efe5 { list-style: none; }
.cl-footer__links-efe5 li { margin-bottom: 8px; }
.cl-footer__links-efe5 a {
  font-size: .82rem;
  color: var(--c-footer-text);
  text-decoration: none;
}
.cl-footer__links-efe5 a:hover { color: #fff; text-decoration: underline; }

.cl-footer__bottom-efe5 {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.cl-footer__copy-efe5 {
  font-size: .75rem;
  color: var(--c-footer-muted);
}
.cl-footer__badges-efe5 {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cl-footer__badge-img-efe5 { height: 28px; opacity: .7; }

/* ==========================================================================
   BREADCRUMB
   ========================================================================== */
.cl-breadcrumb-efe5 {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  font-size: .78rem;
  color: var(--c-text-muted);
  padding: 12px 0;
}
.cl-breadcrumb-efe5 a { color: var(--c-text-muted); text-decoration: none; }
.cl-breadcrumb-efe5 a:hover { color: var(--c-accent); text-decoration: underline; }
.cl-breadcrumb__sep-efe5 { margin: 0 4px; }

/* ==========================================================================
   PRINT
   ========================================================================== */
@media print {
  .cl-header-efe5, .cl-footer-efe5, .cl-anchor-bar-efe5, .cl-slots__filters-efe5, .cl-seo-toggle-efe5,
  .skip-to-efe5 { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .cl-section-efe5 { padding: 24px 0; }
  a { color: #000; text-decoration: underline; }
}
