/* Casino Lab MVP — single CSS, mobile-first, no framework */

:root {
  --lp-bg: #0b1020;
  --lp-bg-soft: #111a33;
  --lp-surface: #19233e;
  --lp-border: #25325a;
  --lp-text: #e8ecf5;
  --lp-text-muted: #9aa6c7;
  --lp-accent: #ffd166;
  --lp-accent-2: #06d6a0;
  --lp-link: #8fc3ff;
  --lp-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  --lp-radius: 12px;
  --lp-radius-sm: 8px;
  --lp-container: 1120px;
  --lp-gap: clamp(16px, 4vw, 32px);
  --lp-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body.lp {
  background: var(--lp-bg);
  color: var(--lp-text);
  font: 16px/1.55 var(--lp-font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: var(--lp-link); }
img { max-width: 100%; height: auto; display: block; }

.lp__container {
  max-width: var(--lp-container);
  margin: 0 auto;
  padding: 0 var(--lp-gap);
}

/* ── Topbar ────────────────────────────────────────────────────────── */
.lp__topbar {
  background: var(--lp-bg-soft);
  border-bottom: 1px solid var(--lp-border);
  padding: 14px 0;
  position: sticky; top: 0; z-index: 10;
}
.lp__topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.lp__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  color: var(--lp-text);
  font-size: 16px;
  flex: 1;
  min-width: 0;
}
.lp__brand-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.lp__brand-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
  display: block;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
}
.lp__brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
  flex: 1;
}
.lp__topbar-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .02em;
  text-decoration: none;
  border-radius: var(--lp-radius-sm);
  flex-shrink: 0;
  transition: transform .12s ease, box-shadow .12s ease;
}
.lp__topbar-cta:hover,
.lp__topbar-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0,0,0,.3);
  outline: none;
}
@media (max-width: 480px) {
  .lp__topbar-cta { padding: 7px 12px; font-size: 12px; }
}

/* ── Section base ─────────────────────────────────────────────────── */
.lp__main { padding: 0; }
.lp__main > section { padding: clamp(28px, 6vw, 56px) 0; }
.lp__main > section + section { border-top: 1px solid var(--lp-border); }

.lp__h2 {
  font-size: clamp(22px, 3.2vw, 30px);
  margin: 0 0 18px;
  line-height: 1.25;
}

/* ── Hero ─────────────────────────────────────────────────────────── */
.lp__hero {
  background:
    radial-gradient(900px 320px at 20% -10%, rgba(6,214,160,.18), transparent 60%),
    radial-gradient(900px 320px at 90% -10%, rgba(255,209,102,.18), transparent 60%),
    var(--lp-bg);
}
.lp__hero-inner { max-width: 880px; }
.lp__hero-title {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.15;
  margin: 0 0 16px;
}
.lp__hero-text {
  color: var(--lp-text-muted);
  margin: 0 0 12px;
  font-size: clamp(15px, 1.6vw, 17px);
}
.lp__hero-text:last-child { margin-bottom: 0; }
.lp__hero-text strong { color: var(--lp-text); }

/* ── Rating table ─────────────────────────────────────────────────── */
.lp__rating { background: var(--lp-bg); }
.lp__table-wrap {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.lp__table-wrap::-webkit-scrollbar { height: 8px; }
.lp__table-wrap::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
}
.lp__table-wrap::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--lp-accent) 55%, transparent);
  border-radius: 999px;
}
.lp__table-wrap::-webkit-scrollbar-thumb:hover {
  background: var(--lp-accent);
}
.lp__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 880px;
}
.lp__table thead th {
  background: var(--lp-bg-soft);
  color: var(--lp-text);
  text-align: left;
  font-weight: 600;
  padding: 12px 14px;
  border-bottom: 1px solid var(--lp-border);
  white-space: nowrap;
}
.lp__table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--lp-border);
  color: var(--lp-text-muted);
  vertical-align: top;
}
.lp__table tbody tr:last-child td { border-bottom: none; }
.lp__table tbody tr:hover td { background: rgba(255,255,255,.03); }
/* I1: rating table outputs only 6 essential columns
   (Rank | Casino | Best for | Main bonus | Editorial rating | CTA).
   The renderer no longer emits the legacy 5 hidden columns. */
/* H1: rating-table per-row CTA button */
.lp__rating-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: var(--lp-accent);
  color: #000;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
  border-radius: var(--lp-radius-sm);
  white-space: nowrap;
  transition: transform .12s ease, box-shadow .12s ease;
}
.lp__rating-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(0,0,0,.25);
}
.lp__rating-cta--internal {
  background: var(--lp-bg-soft);
  color: var(--lp-text);
  border: 1px solid var(--lp-border);
}
.lp__rating-cta-cell { text-align: right; }
.lp__rating-table tbody tr {
  font-size: 15px;
}
.lp__rating-table tbody td {
  padding: 16px 14px;  /* taller rows */
}
.lp__rating-table tbody tr:first-child td {
  background: rgba(255, 209, 102, .04);
  border-left: 3px solid var(--lp-accent);
}
.lp__rating-table tbody tr:first-child .lp__rating-rank {
  font-size: 22px;
}

.lp__rating-rank {
  font-weight: 700;
  color: var(--lp-accent);
  font-size: 18px;
  text-align: center;
  width: 56px;
}
.lp__rating-name { color: var(--lp-text); white-space: nowrap; }
.lp__rating-score { color: var(--lp-accent-2); font-weight: 600; min-width: 140px; }
.lp__rating-explain {
  color: var(--lp-text-muted);
  margin: 16px 0 0;
  font-size: 14px;
}

/* ── SEO prose ────────────────────────────────────────────────────── */
.lp__seo { background: var(--lp-bg-soft); }
.lp__seo-text {
  color: var(--lp-text);
  margin: 0 0 14px;
  max-width: 900px;
}
.lp__seo-text:last-child { margin-bottom: 0; }
/* G2: bulleted criteria list + callout cards inside why-rating block */
.lp__seo-list-title {
  margin: 20px 0 8px;
  color: var(--lp-text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.lp__seo-criteria-list {
  margin: 0 0 20px;
  padding-left: 22px;
  color: var(--lp-text);
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .lp__seo-criteria-list { grid-template-columns: 1fr 1fr; gap: 4px 24px; }
}
.lp__seo-criteria-list li::marker { color: var(--lp-accent); }
.lp__seo-callouts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}
@media (min-width: 720px) {
  .lp__seo-callouts { grid-template-columns: repeat(3, 1fr); }
}
.lp__seo-callout {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-left: 3px solid var(--lp-accent-2);
  padding: 12px 14px;
  border-radius: var(--lp-radius-sm);
  font-size: 14px;
  color: var(--lp-text);
}

/* ── G4: Pre-table blocks (Payments mini-cards, Mobile checklist) ──── */
.lp__pre-table {
  padding: 18px 0 0;
}
.lp__pre-table-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--lp-muted);
  margin: 0 0 12px;
}
.lp__mini-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .lp__mini-cards { grid-template-columns: repeat(3, 1fr); }
}
.lp__mini-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px 18px;
  box-shadow: var(--lp-shadow);
  position: relative;
}
.lp__mini-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 209, 102, .15);
  color: var(--lp-accent);
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 10px;
}
.lp__mini-card-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--lp-text);
}
.lp__mini-card-text {
  font-size: 14px;
  line-height: 1.5;
  color: var(--lp-muted);
  margin: 0;
}
.lp__mobile-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 720px) {
  .lp__mobile-checklist { grid-template-columns: 1fr 1fr; gap: 8px 18px; }
}
.lp__mobile-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-left: 3px solid var(--lp-accent);
  border-radius: var(--lp-radius-sm);
  padding: 10px 14px;
  font-size: 14px;
  color: var(--lp-text);
}
.lp__mobile-checklist .lp__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--lp-accent);
  color: #000;
  font-weight: 800;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── H3: Real casino logo (replaces letter badge / card art) ──────── */
.lp__card-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: contain;
  background: var(--lp-bg-soft);
  padding: 6px;
  flex-shrink: 0;
}
.lp__mobile-list-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  background: var(--lp-bg-soft);
  padding: 4px;
  flex-shrink: 0;
}

/* ── H1: Mobile casino list (replaces table) ─────────────────────── */
.lp__mobile-list {
  padding: clamp(28px, 6vw, 56px) 0;
  background: var(--lp-bg);
  border-top: 1px solid var(--lp-border);
}
.lp__mobile-list-intro {
  font-size: 15px;
  line-height: 1.6;
  color: var(--lp-muted);
  margin: 0 0 18px;
}
.lp__mobile-list-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 720px) {
  .lp__mobile-list-items { grid-template-columns: 1fr 1fr; gap: 14px 18px; }
}
.lp__mobile-list-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 14px 16px;
  box-shadow: var(--lp-shadow);
}
.lp__mobile-list-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 8px;
  font-weight: 800;
  color: #fff;
  font-size: 15px;
}
.lp__mobile-list-body { flex: 1; min-width: 0; }
.lp__mobile-list-name {
  display: block;
  font-weight: 700;
  font-size: 16px;
  color: var(--lp-text);
  text-decoration: none;
  margin-bottom: 4px;
}
.lp__mobile-list-name:hover { color: var(--lp-accent); }
.lp__mobile-list-blurb {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--lp-muted);
}

/* ── FAQ ──────────────────────────────────────────────────────────── */
.lp__faq { background: var(--lp-bg); }
.lp__faq-list { margin: 0; padding: 0; }
.lp__faq-item {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px 18px;
  margin: 0 0 10px;
  box-shadow: var(--lp-shadow);
}
.lp__faq-q {
  font-weight: 600;
  font-size: 17px;
  color: var(--lp-text);
}
.lp__faq-a {
  margin: 8px 0 0;
  color: var(--lp-text-muted);
}

/* ── Rating filters (Phase E6) ──────────────────────────────────── */
.lp__filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  font-size: 13px;
}
.lp__filters-label {
  color: var(--lp-text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-right: 4px;
}
.lp__filter-chip {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  color: var(--lp-text);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.lp__filter-chip:hover { border-color: var(--lp-accent); }
.lp__filter-chip--active {
  background: var(--lp-accent);
  border-color: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  font-weight: 700;
}

/* ── FAQ accordion (E6) ─────────────────────────────────────────── */
.lp__faq-item { padding: 0; }
.lp__faq-q {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-weight: 600;
  font-size: 16px;
  color: var(--lp-text);
}
.lp__faq-q::-webkit-details-marker { display: none; }
.lp__faq-q::marker { content: ''; }
.lp__faq-q-text { flex: 1; }
.lp__faq-q-icon {
  flex: 0 0 auto;
  color: var(--lp-accent);
  font-size: 20px;
  font-weight: 700;
  transition: transform .2s ease;
  width: 22px;
  text-align: center;
}
.lp__faq-item[open] .lp__faq-q-icon { transform: rotate(45deg); }
.lp__faq-a {
  padding: 0 18px 14px;
  color: var(--lp-text-muted);
}

/* ── Card "Show more" toggle (E6) ───────────────────────────────── */
.lp__card-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--lp-border);
  color: var(--lp-text);
  padding: 8px 14px;
  border-radius: var(--lp-radius-sm);
  font-size: 13px;
  cursor: pointer;
  margin-top: 4px;
}
.lp__card-toggle-less { display: none; }
.lp__card--expanded .lp__card-toggle-less { display: inline; }
.lp__card--expanded .lp__card-toggle-more { display: none; }

/* On mobile, collapse description+pros/cons by default; toggle reveals them. */
@media (max-width: 719px) {
  .lp__card-toggle { display: inline-block; align-self: flex-start; }
  .lp__card[data-card-expandable]:not(.lp__card--expanded) .lp__card-desc,
  .lp__card[data-card-expandable]:not(.lp__card--expanded) .lp__card-procon {
    display: none;
  }
}

/* ── Hero badges / CTA / trust note ──────────────────────────────── */
.lp__hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 8px;
  padding: 0;
  list-style: none;
}
.lp__hero-badges li {
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--lp-border);
  color: var(--lp-text);
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp__hero-badge-check {
  color: var(--lp-accent-2);
  font-weight: 700;
  font-size: 13px;
}

/* Visually-hidden helper (accessibility) */
.lp__visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Rating: score chip + per-row CTA (E2) ───────────────────────── */
.lp__score-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}
.lp__score-chip-of { font-size: 11px; opacity: .7; }
.lp__score-chip--great { background: rgba(6, 214, 160, .18); color: #5eead4; }
.lp__score-chip--good  { background: rgba(255, 209, 102, .18); color: #ffd166; }
.lp__score-chip--ok    { background: rgba(251, 146, 60, .18); color: #fb923c; }
.lp__score-chip--weak  { background: rgba(248, 113, 113, .18); color: #f87171; }
.lp__score-na          { color: var(--lp-text-muted); font-size: 12px; }

.lp__rating-cta {
  display: inline-block;
  background: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: var(--lp-radius-sm);
  white-space: nowrap;
}
.lp__rating-cta:hover { transform: translateY(-1px); }
.lp__rating-cta-cell { text-align: center; }

/* ── Footer extension (E2) ───────────────────────────────────────── */
.lp__footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 0 0 12px;
  font-size: 13px;
}
.lp__footer-nav a {
  color: var(--lp-link);
  text-decoration: none;
}
.lp__footer-nav a:hover { text-decoration: underline; }
.lp__footer-sep {
  color: var(--lp-border);
  margin: 0 10px;
}
.lp__affiliate-note {
  color: var(--lp-text-muted);
  font-size: 12px;
  font-style: italic;
  margin: 8px 0 0;
}
.lp__hero-actions {
  margin: 22px 0 12px;
}
.lp__hero-cta {
  display: inline-block;
  background: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.lp__hero-cta:hover,
.lp__hero-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .35);
  outline: none;
}
.lp__hero-trust {
  color: var(--lp-text-muted);
  font-size: 13px;
  margin: 6px 0 0;
  max-width: 720px;
}

/* ── Final CTA (before footer) ───────────────────────────────────── */
.lp__final-cta {
  background: var(--lp-bg-soft);
  border-top: 1px solid var(--lp-border);
  padding: clamp(32px, 6vw, 56px) 0;
}
.lp__final-cta-inner {
  text-align: center;
  max-width: 720px;
}
.lp__final-cta-inner.lp__final-cta-inner {
  margin: 0 auto;
}
.lp__final-cta-title {
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 12px;
  color: var(--lp-text);
}
.lp__final-cta-text {
  color: var(--lp-text-muted);
  margin: 0 0 22px;
  font-size: clamp(14px, 1.6vw, 16px);
}
.lp__final-cta-btn {
  display: inline-block;
  background: var(--lp-accent-2);
  color: var(--lp-bg);
  font-weight: 700;
  font-size: clamp(15px, 1.7vw, 17px);
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  transition: transform .15s ease;
}
.lp__final-cta-btn:hover,
.lp__final-cta-btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

/* ── Sticky mobile CTA ───────────────────────────────────────────── */
.lp__sticky-cta {
  display: none;
}
@media (max-width: 720px) {
  .lp__sticky-cta {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    background: var(--lp-accent);
    color: var(--lp-accent-fg, #1a1407);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    padding: 14px 18px;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .35);
  }
  .lp__sticky-cta:active { background: var(--lp-accent-2); }
  /* prevent footer text from being hidden under sticky CTA */
  body.lp { padding-bottom: 64px; }
}

/* ── Table of contents — sticky right sidebar (Phase F1) ─────────── */
/* Mobile: collapsible <details> block under hero in normal flow.
   Desktop ≥980px: position fixed on the right; body gets padding-right
   to reserve space. Scroll-spy via lp.js adds .lp__toc-active. */
.lp__toc-side {
  background: var(--lp-bg-soft);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lp__toc-details { padding: 0; }
.lp__toc-summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px var(--lp-gap);
  color: var(--lp-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  user-select: none;
}
.lp__toc-summary::-webkit-details-marker { display: none; }
.lp__toc-summary::marker { content: ''; }
.lp__toc-title { color: var(--lp-text-muted); }
.lp__toc-toggle {
  color: var(--lp-text-muted);
  transition: transform .2s ease;
  font-size: 18px;
}
.lp__toc-details[open] .lp__toc-toggle { transform: rotate(90deg); }
.lp__toc-list {
  margin: 0;
  padding: 6px var(--lp-gap) 14px;
  list-style: none;
  counter-reset: toc;
  font-size: 14px;
}
.lp__toc-list li {
  counter-increment: toc;
  padding: 5px 0 5px 10px;
  border-left: 3px solid transparent;
  transition: border-color .15s ease, color .15s ease;
}
.lp__toc-list li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--lp-text-muted);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  margin-right: 6px;
}
.lp__toc-list a { color: var(--lp-text); text-decoration: none; }
.lp__toc-list a:hover { color: var(--lp-link); }
.lp__toc-list li.lp__toc-active-li {
  border-left-color: var(--lp-accent);
  background: rgba(255, 209, 102, .08);
  border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
}
.lp__toc-list a.lp__toc-active {
  color: var(--lp-accent);
  font-weight: 700;
}
.lp__toc-list li.lp__toc-active-li::before {
  color: var(--lp-accent);
}

/* G7: Nested casino list under "Casino-Beschreibungen" */
.lp__toc-sublist {
  list-style: none;
  counter-reset: toc-sub;
  margin: 4px 0 2px 0;
  padding: 0;
  font-size: 13px;
}
.lp__toc-sublist li {
  counter-increment: toc-sub;
  padding: 3px 0 3px 14px;
  border-left: 2px solid transparent;
  margin-left: 4px;
}
.lp__toc-sublist li::before {
  content: "›";
  color: var(--lp-text-muted);
  font-weight: 600;
  display: inline-block;
  width: 14px;
  margin-right: 4px;
  text-align: center;
  font-size: 12px;
}
.lp__toc-sublist a {
  color: var(--lp-text-muted);
  text-decoration: none;
}
.lp__toc-sublist a:hover { color: var(--lp-link); }
.lp__toc-sublist li.lp__toc-active-li {
  border-left-color: var(--lp-accent);
  background: rgba(255, 209, 102, .06);
  border-radius: 0 var(--lp-radius-sm) var(--lp-radius-sm) 0;
}
.lp__toc-sublist a.lp__toc-active {
  color: var(--lp-accent);
  font-weight: 600;
}
.lp__toc-sublist li.lp__toc-active-li::before {
  color: var(--lp-accent);
}

@media (min-width: 980px) {
  body.lp { padding-right: 260px; }
  .lp__toc-side {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 260px;
    padding-top: 70px; /* clears sticky topbar */
    background: var(--lp-bg-soft);
    border: none;
    border-left: 1px solid var(--lp-border);
    overflow-y: auto;
    z-index: 5;
  }
  .lp__toc-summary {
    cursor: default;
    pointer-events: none;
    padding: 16px 18px 6px;
  }
  .lp__toc-toggle { display: none; }
  .lp__toc-details > .lp__toc-list { display: block !important; }
  .lp__toc-list { padding: 4px 18px 24px; }
}

/* Section number markers removed (F1) — clean H2 only. */

/* ── SEO intro (E5) ──────────────────────────────────────────────── */
.lp__seo-intro {
  background: var(--lp-bg);
  padding: clamp(20px, 4vw, 32px) 0 0;
}
.lp__seo-intro-lead {
  color: var(--lp-text);
  margin: 0 0 14px;
  max-width: 900px;
  font-size: clamp(15px, 1.7vw, 16px);
}
.lp__seo-intro-list {
  margin: 0;
  padding-left: 22px;
  color: var(--lp-text-muted);
  display: grid;
  gap: 4px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .lp__seo-intro-list { grid-template-columns: 1fr 1fr; gap: 4px 32px; }
}
.lp__seo-intro-list li::marker { color: var(--lp-accent); }

/* ── "Was macht ein gutes Online Casino aus?" (E5) ──────────────── */
.lp__what-good {
  background: var(--lp-bg-soft);
  padding: clamp(28px, 6vw, 52px) 0;
  border-top: 1px solid var(--lp-border);
}
.lp__what-good-lead {
  color: var(--lp-text);
  margin: 0 0 16px;
  max-width: 800px;
}
.lp__what-good-list {
  margin: 0;
  padding-left: 22px;
  color: var(--lp-text-muted);
  display: grid;
  gap: 8px 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .lp__what-good-list { grid-template-columns: 1fr 1fr; }
}
.lp__what-good-list li::marker { color: var(--lp-accent); }

/* ── "Transparenz unserer Bewertung" (E5) ────────────────────────── */
.lp__transparency {
  background: var(--lp-bg);
  padding: clamp(28px, 6vw, 52px) 0;
  border-top: 1px solid var(--lp-border);
}
.lp__transparency-lead {
  color: var(--lp-text);
  margin: 0 0 16px;
  max-width: 800px;
}
.lp__transparency-list {
  margin: 0;
  padding-left: 22px;
  color: var(--lp-text-muted);
}
.lp__transparency-list li::marker { color: var(--lp-accent-2); }

/* ── RG warning box (H2: inline 18+ heading, dense layout, balanced padding) ── */
.lp__rg {
  background: linear-gradient(0deg, rgba(248,113,113,.07), rgba(248,113,113,.07)), var(--lp-bg);
  border: 1px solid rgba(248, 113, 113, .28);
  border-left: 4px solid #f87171;
  border-radius: var(--lp-radius);
  margin: 24px auto 8px; /* H2: reduced bottom margin so FAQ is closer */
  max-width: 760px;
  padding: 18px 24px;
}
.lp__rg > .lp__container {
  position: relative;
  padding: 0;
  max-width: none;
}
.lp__rg .lp__h2 {
  font-size: 18px;
  color: #fca5a5;
  margin: 0 0 10px;
  line-height: 1.3;
  letter-spacing: .01em;
  font-weight: 700;
}
/* Removed the floating ::before badge — 18+ is now inline in the heading text. */
.lp__rg-intro {
  color: var(--lp-text);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0 0 10px;
  font-weight: 400;
}
.lp__rg-points {
  padding-left: 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--lp-text);
}
.lp__rg-points li {
  margin: 4px 0;
}
.lp__rg-points li::marker { color: #fca5a5; }
@media (max-width: 540px) {
  .lp__rg { padding: 16px 18px; margin: 20px var(--lp-gap) 6px; }
}
/* H2: pull FAQ closer to RG block — override top padding on the FAQ section. */
.lp__rg + .lp__faq { padding-top: clamp(20px, 4vw, 32px); }

/* ── Horizontal casino cards (F3) ────────────────────────────────── */
.lp__cards-grid { grid-template-columns: 1fr; gap: 14px; }
.lp__card-left,
.lp__card-main,
.lp__card-right { display: flex; flex-direction: column; gap: 10px; }
.lp__card-meta { display: flex; gap: 8px; align-items: center; }
.lp__card-label {
  display: inline-block;
  background: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 999px;
  margin-top: 4px;
  align-self: flex-start;
}
.lp__card-bonus {
  background: rgba(255, 209, 102, .08);
  border-left: 3px solid var(--lp-accent);
  padding: 10px 14px;
  border-radius: var(--lp-radius-sm);
  font-size: 14px;
  color: var(--lp-text);
}
.lp__card-bonus strong { color: var(--lp-accent); margin-right: 6px; }
.lp__card-useful {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px 16px;
  font-size: 13px;
}
@media (min-width: 720px) {
  .lp__card-useful { grid-template-columns: 1fr 1fr; }
}
.lp__card-useful-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 2px 0;
  border: none;
  background: transparent;
}
.lp__card-useful dt {
  color: var(--lp-text-muted);
  font-size: 12px;
  min-width: 120px;
  flex: 0 0 auto;
}
.lp__card-useful dd {
  margin: 0;
  color: var(--lp-text);
  font-weight: 500;
}
.lp__card-terms-note {
  color: var(--lp-text-muted);
  font-size: 12px;
  margin: 0;
  font-style: italic;
  line-height: 1.4;
}

@media (min-width: 720px) {
  .lp__card {
    display: grid;
    grid-template-columns: minmax(180px, 220px) 1fr minmax(220px, 260px);
    gap: 24px;
    align-items: start;
    padding: 24px;
  }
  .lp__card-right {
    justify-content: center;
    align-self: stretch;
    border-left: 1px solid var(--lp-border);
    padding-left: 24px;
    gap: 14px;
  }
  .lp__card-right .lp__card-cta { width: 100%; text-align: center; }
  .lp__card-procon { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 719px) {
  .lp__card-right { border-top: 1px solid var(--lp-border); padding-top: 12px; }
}

/* ── How to choose (Phase D) ─────────────────────────────────────── */
.lp__how {
  background: var(--lp-bg);
  border-top: 1px solid var(--lp-border);
  padding: clamp(28px, 6vw, 56px) 0;
}
.lp__how-intro {
  color: var(--lp-text-muted);
  margin: 0 0 22px;
  max-width: 900px;
}
.lp__how-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
  counter-reset: how;
}
.lp__how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px 18px;
}
.lp__how-num {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp__how-title {
  margin: 0 0 4px;
  font-size: 16px;
  color: var(--lp-text);
}
.lp__how-text {
  margin: 0;
  color: var(--lp-text-muted);
  font-size: 14px;
}

/* (older RG styles removed — superseded by H1 compact box above) */
.lp__rg-points li::marker { color: var(--lp-accent); }

/* ── Review info (Phase D) ────────────────────────────────────────── */
.lp__review-info {
  background: var(--lp-bg);
  border-top: 1px solid var(--lp-border);
  padding: 18px 0;
  font-size: 13px;
  color: var(--lp-text-muted);
}
.lp__review-info strong { color: var(--lp-text); font-weight: 600; }
.lp__review-line { margin: 0; }
.lp__review-policy { margin: 6px 0 0; }
.lp__review-verify { margin: 6px 0 0; font-style: italic; }

/* ── Casino cards (Phase C) ───────────────────────────────────────── */
.lp__cards {
  background: var(--lp-bg);
  padding: clamp(28px, 6vw, 56px) 0;
  border-top: 1px solid var(--lp-border);
}
.lp__cards-grid {
  display: grid;
  grid-template-columns: 1fr;  /* G1: full-width single column — no more 3-column grid */
  gap: 18px;
}
.lp__card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 18px;
  box-shadow: var(--lp-shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.lp__card--priority {
  border-color: var(--lp-accent);
  box-shadow: 0 0 0 1px var(--lp-accent), var(--lp-shadow);
}
.lp__card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp__card-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  flex: 0 0 auto;
}
.lp__card-art {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  flex: 0 0 auto;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface-2, #12182a);
}
.lp__card-title-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 10px;
}
.lp__card-title {
  margin: 0;
  font-size: 18px;
  color: var(--lp-text);
}
.lp__card-rating {
  color: var(--lp-accent-2);
  font-weight: 700;
  font-size: 14px;
}
.lp__card-rank {
  color: var(--lp-text-muted);
  font-size: 13px;
}
.lp__card-featured {
  background: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 3px 8px;
  border-radius: 999px;
}
.lp__card-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
  color: var(--lp-text-muted);
  display: grid;
  gap: 4px;
}
.lp__card-facts strong { color: var(--lp-text); font-weight: 600; }
.lp__card-desc p {
  margin: 0 0 8px;
  color: var(--lp-text);
  font-size: 14px;
}
.lp__card-desc p:last-child { margin-bottom: 0; }
.lp__card-procon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 13px;
}
.lp__card-procon h4 {
  margin: 0 0 6px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--lp-text-muted);
}
.lp__card-pros,
.lp__card-cons {
  padding: 12px 14px;
  border-radius: var(--lp-radius-sm);
}
.lp__card-pros { background: rgba(30, 180, 100, .12); border: 1px solid rgba(30, 180, 100, .25); }
.lp__card-cons { background: rgba(255, 160, 40, .12); border: 1px solid rgba(255, 160, 40, .25); }
.lp__card-pros h4,
.lp__card-cons h4 { margin: 0 0 6px; }
.lp__card-pros h4 { color: #6ee7b7; }
.lp__card-cons h4 { color: #fdba74; }
.lp__card-pros ul,
.lp__card-cons ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  color: var(--lp-text);
}
.lp__card-pros li,
.lp__card-cons li {
  padding-left: 22px;
  position: relative;
  margin: 4px 0;
}
.lp__card-pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #6ee7b7;
  font-weight: 700;
}
.lp__card-cons li::before {
  content: '!';
  position: absolute;
  left: 0;
  color: #fdba74;
  font-weight: 700;
}
.lp__card-actions { margin-top: auto; }
.lp__card-cta {
  display: inline-block;
  background: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: .02em;
  padding: 16px 22px;
  border-radius: var(--lp-radius);
  text-decoration: none;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35), 0 0 0 3px rgba(255, 209, 102, .15);
  transition: transform .15s, box-shadow .15s, background .15s;
  text-align: center;
}
.lp__card-cta:hover,
.lp__card-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, .4), 0 0 0 4px rgba(255, 209, 102, .25);
  outline: none;
}
/* H1: internal-fallback CTA (no affiliate URL configured) — softer style */
.lp__card-cta--internal {
  background: transparent;
  color: var(--lp-text);
  border: 2px solid var(--lp-accent);
  box-shadow: none;
}
.lp__card-cta--internal:hover,
.lp__card-cta--internal:focus-visible {
  background: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}
@media (max-width: 520px) {
  .lp__card-procon { grid-template-columns: 1fr; }
}

/* ── Compare tables (bonus / payment / mobile-games) ─────────────── */
.lp__compare {
  background: var(--lp-bg);
  padding: clamp(28px, 6vw, 56px) 0;
  border-top: 1px solid var(--lp-border);
}
.lp__compare--bonus       { background: var(--lp-bg); }
.lp__compare--payment     { background: var(--lp-bg-soft); }
.lp__compare--mobile_games { background: var(--lp-bg); }

.lp__compare-intro {
  color: var(--lp-text-muted);
  margin: 0 0 18px;
  max-width: 900px;
  font-size: 14px;
}
.lp__compare-table tbody td:first-child {
  color: var(--lp-text);
  font-weight: 600;
  white-space: nowrap;
}

/* ── Top 3 Recommendations (Phase E3) ────────────────────────────── */
.lp__top3 {
  background: var(--lp-bg);
  padding: clamp(24px, 5vw, 44px) 0;
  border-top: 1px solid var(--lp-border);
}
.lp__top3-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.lp__top3-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp__top3-card--1 { border-color: var(--lp-accent); box-shadow: 0 0 0 1px var(--lp-accent), var(--lp-shadow); }
.lp__top3-head {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp__top3-rank {
  font-weight: 700;
  color: var(--lp-accent);
  font-size: 18px;
}
.lp__top3-rank-label {
  color: var(--lp-text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.lp__top3-casino {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp__top3-casino .lp__card-badge { width: 36px; height: 36px; font-size: 16px; border-radius: 10px; }
.lp__top3-name {
  margin: 0;
  font-size: 16px;
  color: var(--lp-text);
}
.lp__top3-bestfor {
  margin: 0;
  color: var(--lp-text-muted);
  font-size: 13px;
}
.lp__top3-cta {
  display: inline-block;
  text-align: center;
  background: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 14px;
  border-radius: var(--lp-radius-sm);
  margin-top: auto;
}
.lp__top3-cta--alt {
  background: transparent;
  color: var(--lp-link);
  border: 1px solid var(--lp-border);
}
.lp__top3-cta:hover { transform: translateY(-1px); }

/* ── Rating criteria overview (Phase E3) ─────────────────────────── */
.lp__criteria {
  background: var(--lp-bg-soft);
  padding: clamp(28px, 6vw, 52px) 0;
  border-top: 1px solid var(--lp-border);
}
.lp__criteria-intro {
  color: var(--lp-text-muted);
  margin: 0 0 22px;
  max-width: 800px;
}
.lp__criteria-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.lp__criteria-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 16px;
  position: relative;
}
.lp__criteria-num {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  border-radius: 50%;
  background: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  font-weight: 700;
  font-size: 13px;
  margin: 0 0 8px;
}
.lp__criteria-title {
  margin: 0 0 6px;
  font-size: 15px;
  color: var(--lp-text);
}
.lp__criteria-desc {
  margin: 0;
  color: var(--lp-text-muted);
  font-size: 13px;
  line-height: 1.4;
}

/* ── Kurzfazit (Phase E3) ────────────────────────────────────────── */
.lp__kurzfazit {
  background: var(--lp-bg);
  padding: clamp(22px, 5vw, 40px) 0;
  border-top: 1px solid var(--lp-border);
}
.lp__kurzfazit-intro {
  color: var(--lp-text-muted);
  margin: 0 0 16px;
  max-width: 800px;
}
.lp__kurzfazit-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.lp__kurzfazit-list li {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-left: 3px solid var(--lp-accent-2);
  padding: 12px 16px;
  border-radius: var(--lp-radius-sm);
  color: var(--lp-text);
  font-size: 15px;
}
.lp__kurzfazit-lead {
  color: var(--lp-text);
  margin: 0 0 16px;
  max-width: 900px;
  font-size: clamp(15px, 1.7vw, 16px);
}
.lp__kurzfazit-bullets-title {
  color: var(--lp-text-muted);
  margin: 18px 0 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.lp__kurzfazit-bullets {
  margin: 0;
  padding-left: 22px;
  color: var(--lp-text);
  display: grid;
  gap: 6px;
}
.lp__kurzfazit-bullets li::marker { color: var(--lp-accent); }

/* ── Casino match table (Phase E3) ───────────────────────────────── */
.lp__match {
  background: var(--lp-bg-soft);
  padding: clamp(24px, 5vw, 44px) 0;
  border-top: 1px solid var(--lp-border);
}
.lp__match-intro {
  color: var(--lp-text-muted);
  margin: 0 0 18px;
  max-width: 800px;
}
.lp__match-table tbody td:first-child {
  color: var(--lp-text);
  font-weight: 600;
}

/* ── Priority CTA (above footer) ─────────────────────────────────── */
.lp__priority-cta {
  background:
    radial-gradient(900px 320px at 50% 50%, rgba(255,209,102,.18), transparent 60%),
    var(--lp-bg);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: clamp(28px, 6vw, 48px) 0;
}
.lp__priority-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.lp__priority-cta-text {
  color: var(--lp-text);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 720px;
  margin: 0;
  line-height: 1.45;
}
.lp__priority-cta-btn {
  display: inline-block;
  background: var(--lp-accent);
  color: var(--lp-accent-fg, #1a1407);
  font-weight: 700;
  font-size: clamp(16px, 2vw, 18px);
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  white-space: nowrap;
}
.lp__priority-cta-btn:hover,
.lp__priority-cta-btn:focus-visible {
  background: #ffdc8b;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 209, 102, .25);
  outline: none;
}
.lp__priority-cta-btn:active {
  transform: translateY(0);
}

/* ── Footer ───────────────────────────────────────────────────────── */
.lp__footer {
  background: var(--lp-bg-soft);
  border-top: 1px solid var(--lp-border);
  padding: 22px 0;
  margin-top: 24px;
}
.lp__disclaimer {
  color: var(--lp-text-muted);
  font-size: 13px;
  margin: 0;
  max-width: 900px;
}

.lp__editorial-meta,
.lp__editorial {
  color: var(--lp-text-muted);
  font-size: 13px;
  margin: 0 0 10px;
  max-width: 900px;
}

.lp__editorial strong {
  color: var(--lp-text);
}

/* ── Mobile: collapse rating table to cards ──────────────────────── */
@media (max-width: 720px) {
  .lp__table {
    min-width: 0;
    display: block;
  }
  .lp__table thead { display: none; }
  .lp__table tbody, .lp__table tr, .lp__table td { display: block; width: 100%; }
  .lp__table tbody tr {
    border-bottom: 1px solid var(--lp-border);
    padding: 12px 0;
  }
  .lp__table tbody tr:last-child { border-bottom: none; }
  .lp__table tbody td {
    border-bottom: none;
    padding: 4px 14px;
    display: flex;
    gap: 12px;
  }
  .lp__table tbody td::before {
    content: attr(data-label);
    color: var(--lp-text);
    font-weight: 600;
    flex: 0 0 130px;
  }
  .lp__rating-rank { width: auto; text-align: left; }
  .lp__rating-name { white-space: normal; }
}
