:root {
  --fbc-bg: #131317;
  --fbc-bg-2: #181820;
  --fbc-bg-3: #1e1e28;
  --fbc-surface: #1a1a22;
  --fbc-surface-soft: #20202a;
  --fbc-line: #292932;
  --fbc-line-strong: #353541;
  --fbc-ink: #f4f3f7;
  --fbc-ink-soft: #c6c4d0;
  --fbc-muted: #898797;
  --fbc-rose: #fb7185;
  --fbc-rose-soft: #fda4af;
  --fbc-amber: #fbbf24;
  --fbc-amber-soft: #fcd34d;
  --fbc-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);
  --fbc-glow: 0 0 24px rgba(251, 113, 133, 0.4);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body.fbc-body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 10% 0%, rgba(251, 113, 133, 0.1), transparent 45%),
    radial-gradient(ellipse at 100% 30%, rgba(251, 191, 36, 0.06), transparent 50%),
    var(--fbc-bg);
  color: var(--fbc-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
img { max-width: 100%; height: auto; }

h1, h2, h3 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  color: var(--fbc-ink);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(28px, 4vw, 44px); line-height: 1.15; margin: 0 0 16px; }
h2 { font-size: clamp(22px, 2.6vw, 30px); line-height: 1.25; margin: 0 0 14px; }
h3 { font-size: 18px; line-height: 1.35; margin: 0 0 8px; }

.fbc-container { width: min(1220px, calc(100% - 32px)); margin: 0 auto; position: relative; }

/* Header */
.fbc-header {
  position:static; top: 0; z-index: 50;
  background: rgba(19, 19, 23, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--fbc-line);
}
.fbc-header__inner {
   margin: 0 auto; min-height:78px;
  display: flex; align-items: center; gap: 24px;
 flex-wrap: wrap; row-gap: 6px; justify-content: space-between; max-width: 1000px; margin-inline: auto; width: 100%;}

.fbc-logo {
  display: inline-flex; align-items: center; gap: 12px;
  text-decoration: none; font-family: "Space Grotesk", sans-serif; font-weight: 700;
  color: var(--fbc-ink); font-size: 20px; min-width: 0;
}
.fbc-logo__mark, .fbc-logo__img, .fbc-footer__brand-mark, .fbc-footer__brand-img {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fbc-logo__img, .fbc-footer__brand-img { object-fit: cover; border-radius: 12px; }
.fbc-logo__text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.fbc-logo__text-accent {
  background: linear-gradient(135deg, var(--fbc-rose), var(--fbc-amber));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.fbc-nav { display: flex; align-items: center; gap: 22px; }
.fbc-nav a {
  text-decoration: none; color: var(--fbc-ink-soft);
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 15px;
  padding: 6px 0; position: relative; transition: color 0.18s ease;
}
.fbc-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--fbc-rose);
  transform: scaleX(0); transform-origin: left center; transition: transform 0.2s ease;
}
.fbc-nav a:hover { color: var(--fbc-rose); }
.fbc-nav a:hover::after { transform: scaleX(1); }

.fbc-header__cta-group {
  margin-left: auto; display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0;
}

.fbc-lang {
  display: inline-flex; gap: 4px;
  border: 1px solid var(--fbc-line-strong);
  border-radius: 8px; padding: 3px;
}
.fbc-lang__link {
  text-decoration: none; color: var(--fbc-ink-soft);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 12px;
  padding: 6px 12px; border-radius: 6px;
  transition: background 0.18s ease, color 0.18s ease;
}
.fbc-lang__link.is-active { background: var(--fbc-rose); color: #131317; }
.fbc-lang__link:not(.is-active):hover { color: var(--fbc-rose); }

.fbc-btn, .fbc-header__cta {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; min-height: 46px; padding: 12px 22px;
  border-radius: 8px; text-decoration: none;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 14px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.fbc-header__cta, .fbc-btn--primary {
  background: linear-gradient(135deg, var(--fbc-rose) 0%, var(--fbc-amber) 100%);
  color: #131317;
  box-shadow: var(--fbc-glow);
}
.fbc-header__cta:hover, .fbc-btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 32px rgba(251, 113, 133, 0.5);
}
.fbc-btn--ghost {
  background: transparent; color: var(--fbc-rose); border-color: var(--fbc-rose);
}
.fbc-btn--ghost:hover { background: rgba(251, 113, 133, 0.1); }
.fbc-btn--wide { width: 100%; margin-top: 18px; }

.fbc-burger {
  display: none; width: 46px; height: 46px; margin-left: 6px;
  border: 1px solid var(--fbc-line-strong); border-radius: 8px;
  background: var(--fbc-surface); cursor: pointer;
  flex-direction: column; padding: 0; align-items: center; justify-content: center; gap: 4px;
}
.fbc-burger span { display: block; width: 22px; height: 2px; background: var(--fbc-ink); border-radius: 2px; }

.fbc-mobile {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--fbc-bg);
  display: none; flex-direction: column; gap: 22px;
  padding: 88px 24px 32px;
  overflow-y: auto;
}
.fbc-mobile a {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 22px;
  text-decoration: none; color: var(--fbc-ink);
  padding: 10px 0; border-bottom: 1px solid var(--fbc-line);
}
.fbc-mobile__cta {
  margin-top: 12px; text-align: center; background: var(--fbc-rose);
  color: #131317; border-radius: 8px; padding: 14px 22px; border: none;
}
.fbc-mobile__close {
  position: absolute; top: 18px; right: 18px;
  width: 44px; height: 44px;
  background: var(--fbc-surface); color: var(--fbc-ink);
  border: 1px solid var(--fbc-line-strong); border-radius: 8px;
  font-size: 26px; line-height: 1; cursor: pointer;
}

/* Eyebrow */
.fbc-eyebrow {
  display: inline-flex;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fbc-rose); margin: 0 0 14px;
}
.fbc-section__eyebrow {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fbc-amber); margin: 0 0 10px;
}

/* Hero */
.fbc-hero {
  position: relative; padding: 80px 0 70px; overflow: hidden;
}
.fbc-hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(251, 113, 133, 0.18), transparent 50%),
    radial-gradient(circle at 0% 80%, rgba(251, 191, 36, 0.12), transparent 50%);
  pointer-events: none;
}
.fbc-hero__grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 48px; align-items: start;
}
.fbc-hero__content > p { color: var(--fbc-ink-soft); }
.fbc-hero__lead { font-size: 18px; color: var(--fbc-ink-soft); margin: 0 0 22px; max-width: 58ch; }
.fbc-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 22px 0 30px; }

.fbc-hero__stats {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px; margin: 0; padding: 22px 0 0;
  border-top: 1px solid var(--fbc-line);
}
.fbc-hero__stats dt {
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fbc-muted); margin-bottom: 4px;
}
.fbc-hero__stats dd { font-weight: 700; color: var(--fbc-ink); margin: 0; font-size: 16px; }

.fbc-byline {
  display: flex; align-items: center; gap: 14px; margin: 18px 0 6px;
  padding: 16px;
  background: rgba(251, 113, 133, 0.06);
  border: 1px solid var(--fbc-line);
  border-radius: 14px;
}
.fbc-byline__avatar {
  width: 52px; height: 52px; border-radius: 12px; object-fit: cover;
  flex-shrink: 0; border: 2px solid var(--fbc-rose);
}
.fbc-byline__avatar--placeholder {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: "Space Grotesk", sans-serif; font-weight: 700;
  background: var(--fbc-bg-3); color: var(--fbc-rose);
}
.fbc-byline__body { display: flex; flex-direction: column; gap: 2px; color: var(--fbc-ink-soft); font-size: 14px; }
.fbc-byline__by { font-weight: 600; color: var(--fbc-ink); }
.fbc-byline__by a { color: var(--fbc-rose); text-decoration: none; }
.fbc-byline__role { font-weight: 500; color: var(--fbc-muted); margin-left: 6px; font-size: 12px; }
.fbc-byline__bio { color: var(--fbc-ink-soft); font-size: 13px; }
.fbc-byline__date { color: var(--fbc-muted); font-size: 12px; }

/* Summary card */
.fbc-summary-card {
  background: linear-gradient(160deg, var(--fbc-surface) 0%, var(--fbc-surface-soft) 100%);
  border: 1px solid var(--fbc-line-strong);
  border-radius: 22px; padding: 24px;
  box-shadow: var(--fbc-shadow);
}
.fbc-summary-card__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.fbc-summary-card__tag {
  background: var(--fbc-bg-3); color: var(--fbc-rose);
  padding: 4px 10px; border-radius: 8px;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.14em;
}
.fbc-summary-card__pulse {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--fbc-ink-soft); font-weight: 600;
}
.fbc-summary-card__pulse span {
  width: 8px; height: 8px; background: var(--fbc-rose); border-radius: 50%;
  animation: fbcPulse 1.6s infinite;
}
@keyframes fbcPulse {
  0% { box-shadow: 0 0 0 0 rgba(251, 113, 133, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(251, 113, 133, 0); }
  100% { box-shadow: 0 0 0 0 rgba(251, 113, 133, 0); }
}
.fbc-summary-card__list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 8px;
}
.fbc-summary-card__list li {
  display: flex; justify-content: space-between; gap: 10px;
  padding: 12px 14px; border-radius: 8px;
  background: rgba(251, 113, 133, 0.07);
}
.fbc-summary-card__list span:first-child {
  color: var(--fbc-muted); font-family: "Space Grotesk", sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
}
.fbc-summary-card__list strong { color: var(--fbc-ink); font-size: 14px; font-weight: 700; text-align: right; }
.fbc-summary-card__legal { font-size: 12px; color: var(--fbc-muted); margin: 14px 0 0; }

/* Strip */
.fbc-strip {
  background: var(--fbc-bg-2);
  border-top: 1px solid var(--fbc-line);
  border-bottom: 1px solid var(--fbc-line);
  padding: 20px 0;
}
.fbc-strip__grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.fbc-strip__grid > div { text-align: center; }
.fbc-strip__grid strong { display: block; color: var(--fbc-rose); font-family: "Space Grotesk", sans-serif; font-size: 18px; }
.fbc-strip__grid span { color: var(--fbc-ink-soft); font-size: 13px; }

/* Sections */
.fbc-section { padding: 60px 0; }
.fbc-section--soft { background: var(--fbc-bg-2); }
.fbc-section--dark {
  background: linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0)), var(--fbc-bg-3);
  border-top: 1px solid var(--fbc-line); border-bottom: 1px solid var(--fbc-line);
}
.fbc-section p { color: var(--fbc-ink-soft); }

.fbc-two-col {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 36px; align-items: start;
}
.fbc-verdict {
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 18px; padding: 22px; display: grid; gap: 6px;
}
.fbc-verdict__score {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 44px;
  color: var(--fbc-rose);
}
.fbc-verdict__label {
  font-family: "Space Grotesk", sans-serif; font-weight: 600; font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fbc-muted);
}
.fbc-verdict p { margin: 8px 0 0; color: var(--fbc-ink-soft); }

.fbc-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px; margin-top: 18px;
}
.fbc-card {
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 16px; padding: 22px;
}
.fbc-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 28px;
  border-radius: 8px; padding: 0 8px;
  background: rgba(251, 113, 133, 0.15); color: var(--fbc-rose);
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 13px;
  margin-bottom: 10px;
}

.fbc-bonus-layout {
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 28px; align-items: start;
}
.fbc-bonus-box, .fbc-steps {
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 18px; padding: 24px;
}
.fbc-steps h3 { margin-bottom: 12px; }
.fbc-steps ol { padding-left: 18px; color: var(--fbc-ink-soft); display: grid; gap: 6px; }
.fbc-table { display: grid; gap: 8px; margin-top: 14px; }
.fbc-table > div {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 12px; border-radius: 10px;
  background: rgba(251, 113, 133, 0.07);
}
.fbc-table span { color: var(--fbc-muted); font-size: 14px; font-weight: 600; }
.fbc-table strong { color: var(--fbc-ink); font-size: 15px; }

.fbc-payment-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px; margin-top: 14px;
}
.fbc-payment-grid > div {
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 10px; padding: 12px 14px; text-align: center;
  color: var(--fbc-ink); font-weight: 600;
}

.fbc-note {
  color: var(--fbc-ink-soft);
  background: rgba(251, 191, 36, 0.07);
  border-left: 3px solid var(--fbc-amber);
  padding: 12px 14px; border-radius: 8px; margin-top: 18px;
}

.fbc-check-list {
  list-style: none; padding: 0; margin: 0; display: grid; gap: 6px;
  color: var(--fbc-ink-soft);
}
.fbc-check-list li { position: relative; padding-left: 26px; }
.fbc-check-list li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 14px; height: 8px; border-left: 2px solid var(--fbc-rose);
  border-bottom: 2px solid var(--fbc-rose); transform: rotate(-45deg);
}

.fbc-page-toc { background: var(--fbc-bg-2); padding: 30px 0; }
.fbc-page-toc ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.fbc-page-toc a {
  text-decoration: none; background: var(--fbc-surface);
  border: 1px solid var(--fbc-line); color: var(--fbc-ink);
  padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
  transition: background 0.18s ease, color 0.18s ease;
}
.fbc-page-toc a:hover { background: var(--fbc-rose); color: #131317; }

.fbc-faq { display: grid; gap: 10px; }
.fbc-faq details {
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 14px; padding: 14px 18px;
}
.fbc-faq summary {
  list-style: none; cursor: pointer;
  font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--fbc-ink);
  position: relative; padding-right: 24px;
}
.fbc-faq summary::-webkit-details-marker { display: none; }
.fbc-faq summary::after {
  content: "+"; position: absolute; right: 0; top: 0;
  color: var(--fbc-rose); font-size: 20px; line-height: 1;
}
.fbc-faq details[open] summary::after { content: "−"; }
.fbc-faq p { color: var(--fbc-ink-soft); margin: 10px 0 0; }

/* CTA */
.fbc-cta {
  text-align: center; padding: 70px 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(251, 113, 133, 0.18), transparent 70%), var(--fbc-bg-2);
  border-top: 1px solid var(--fbc-line);
}
.fbc-cta h2 { font-size: clamp(24px, 3vw, 32px); }
.fbc-cta p { color: var(--fbc-ink-soft); margin: 0 0 22px; }

/* Footer */
.fbc-footer {
  background: #0c0c10; border-top: 1px solid var(--fbc-line); margin-top: 40px;
}
.fbc-footer__inner {
  width: min(1220px, calc(100% - 32px)); margin: 0 auto; padding: 48px 0 32px;
}
.fbc-footer__top {
  display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 28px; margin-bottom: 32px;
}
.fbc-footer__brand {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 12px; font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 18px;
  color: var(--fbc-ink);
}
.fbc-footer__brand-block p { color: var(--fbc-ink-soft); max-width: 60ch; }
.fbc-footer__cta-card {
  background: linear-gradient(155deg, var(--fbc-bg-3), var(--fbc-surface));
  border: 1px solid var(--fbc-line-strong);
  border-radius: 18px; padding: 22px;
  display: flex; flex-direction: column; gap: 10px;
}
.fbc-footer__cta-card a {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--fbc-rose); color: #131317;
  padding: 10px 18px; border-radius: 8px;
  text-decoration: none; font-weight: 700;
}
.fbc-footer__cta-meta {
  font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--fbc-amber);
}
.fbc-footer__columns {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px; padding: 28px 0;
  border-top: 1px solid var(--fbc-line); border-bottom: 1px solid var(--fbc-line);
}
.fbc-footer__group h2 {
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fbc-muted); margin: 0 0 10px;
}
.fbc-footer__group a {
  display: block; text-decoration: none; color: var(--fbc-ink); padding: 4px 0; font-size: 14px;
}
.fbc-footer__group a:hover { color: var(--fbc-rose); }
.fbc-footer__bottom {
  display: flex; justify-content: space-between;
  gap: 16px; padding-top: 22px; font-size: 13px;
  color: var(--fbc-ink-soft); flex-wrap: wrap;
}

/* Simple page */
.fbc-simple-page { padding-top: 20px; }
.fbc-simple-hero { padding: 60px 0 36px; }
.fbc-simple-hero h1 { max-width: 24ch; }
.fbc-simple-hero p { color: var(--fbc-ink-soft); max-width: 60ch; margin: 0 0 18px; }
.fbc-simple-hero .fbc-btn { margin-top: 8px; }

/* Download */
.fbc-download__buttons {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px; margin-top: 16px;
}
.fbc-store-btn {
  display: flex; align-items: center; gap: 12px;
  background: var(--fbc-surface);
  border: 1px solid var(--fbc-line-strong);
  border-radius: 14px; padding: 14px 18px;
  text-decoration: none; color: var(--fbc-ink);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}
.fbc-store-btn:hover { transform: translateY(-1px); background: var(--fbc-bg-3); border-color: var(--fbc-rose); }
.fbc-store-btn__icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(251, 113, 133, 0.15); color: var(--fbc-rose); flex-shrink: 0;
}
.fbc-store-btn__body { display: flex; flex-direction: column; }
.fbc-store-btn__caption {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--fbc-muted); font-weight: 700;
}
.fbc-store-btn__label { font-weight: 700; color: var(--fbc-ink); font-size: 16px; }
.fbc-download__note { color: var(--fbc-ink-soft); font-size: 13px; margin-top: 12px; }

/* TOC */
.fbc-content-grid { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 32px; }
.fbc-toc {
  position: sticky; top: 96px;
  background: var(--fbc-surface); border: 1px solid var(--fbc-line);
  border-radius: 14px; padding: 16px; align-self: start;
}
.fbc-toc__title {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--fbc-muted); margin: 0 0 10px;
}
.fbc-toc__nav { display: flex; flex-direction: column; gap: 4px; }
.fbc-toc__nav a {
  text-decoration: none; color: var(--fbc-ink-soft);
  font-size: 13px; padding: 4px 6px; border-radius: 6px;
}
.fbc-toc__nav a:hover { background: rgba(251, 113, 133, 0.1); color: var(--fbc-rose); }
.fbc-toc__nav-sub { padding-left: 16px !important; font-size: 12px !important; }

/* Rich text */
/* CMS body compatibility guard */
.fbc-landing-body .rich-text,
.fbc-body main.container .legal-rich-text {
  contain: layout paint style;
  isolation: isolate;
  position: relative;
  z-index: 0;
  min-width: 0;
}
.fbc-landing-body .rich-text {
  color: var(--fbc-ink);
  line-height: 1.7;
}
.fbc-landing-body .rich-text,
.fbc-landing-body .rich-text *,
.fbc-landing-body .rich-text *::before,
.fbc-landing-body .rich-text *::after,
.fbc-body main.container .legal-rich-text,
.fbc-body main.container .legal-rich-text *,
.fbc-body main.container .legal-rich-text *::before,
.fbc-body main.container .legal-rich-text *::after { box-sizing: border-box; }
.fbc-landing-body .rich-text :where(img, video, iframe, svg, canvas),
.fbc-body main.container .legal-rich-text :where(img, video, iframe, svg, canvas) { max-width: 100%; height: auto; }
.fbc-landing-body .rich-text :where(.fbc-header, .fbc-mobile, .fbc-footer),
.fbc-body main.container .legal-rich-text :where(.fbc-header, .fbc-mobile, .fbc-footer) { display: none !important; }
.fbc-landing-body .rich-text :where(header, footer, nav, [class*="sticky"], [style*="position: sticky"], [style*="position:sticky"], [style*="position: fixed"], [style*="position:fixed"]),
.fbc-body main.container .legal-rich-text :where(header, footer, nav, [class*="sticky"], [style*="position: sticky"], [style*="position:sticky"], [style*="position: fixed"], [style*="position:fixed"]) {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  z-index: auto !important;
}
.fbc-landing-body .rich-text :where(.container),
.fbc-body main.container .legal-rich-text :where(.container) {
  width: auto !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* CMS body compatibility – width/overflow normalization */
.fbc-landing-body .rich-text,
.fbc-body main.container .legal-rich-text {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}
.fbc-landing-body .rich-text :where(.container, .wrap, .wrapper, .content, .article, .article-wrap, .section, .hero, .img-wrap),
.fbc-body main.container .legal-rich-text :where(.container, .wrap, .wrapper, .content, .article, .article-wrap, .section, .hero, .img-wrap) {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.fbc-landing-body .rich-text :where(img, figure, picture, .media-image, .media-image__img, .img-wrap),
.fbc-body main.container .legal-rich-text :where(img, figure, picture, .media-image, .media-image__img, .img-wrap) {
  max-width: 100% !important;
  height: auto !important;
  display: block;
  object-fit: contain;
}
.fbc-landing-body .rich-text :where(figure, picture, .media-image, .img-wrap),
.fbc-body main.container .legal-rich-text :where(figure, picture, .media-image, .img-wrap) {
  width: 100% !important;
}
.fbc-landing-body .rich-text :where(table),
.fbc-body main.container .legal-rich-text :where(table) {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}
@media (max-width: 767px) {
  .fbc-landing-body .rich-text,
  .fbc-body main.container .legal-rich-text {
    overflow-x: hidden;
  }
  .fbc-landing-body .rich-text :where(.container, .wrap, .wrapper, .content, .article, .article-wrap, .section, .hero, .img-wrap),
  .fbc-body main.container .legal-rich-text :where(.container, .wrap, .wrapper, .content, .article, .article-wrap, .section, .hero, .img-wrap) {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .fbc-landing-body .rich-text :where(img, picture, figure, .media-image, .media-image__img),
  .fbc-body main.container .legal-rich-text :where(img, picture, figure, .media-image, .media-image__img) {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }
}
.fbc-landing-body .rich-text h2 { margin-top: 28px; }
.fbc-landing-body .rich-text h3 { margin-top: 22px; color: var(--fbc-rose); }
.fbc-landing-body .rich-text p { color: var(--fbc-ink); }
.fbc-landing-body .rich-text a { color: var(--fbc-rose); text-decoration: underline; }
.fbc-landing-body .rich-text ul, .fbc-landing-body .rich-text ol { color: var(--fbc-ink); }

/* Writer page contrast override */
main.writer-page { color: var(--fbc-ink); }
.writer-profile-hero { color: var(--fbc-ink); }
.writer-profile-hero__eyebrow { color: var(--fbc-rose); }
.writer-profile-card {
  background: var(--fbc-surface) !important;
  border: 1px solid var(--fbc-line) !important;
  color: var(--fbc-ink) !important;
}
.writer-profile-card__bio, .writer-profile-card__details dd { color: var(--fbc-ink-soft); }
.writer-profile-card__type { color: var(--fbc-rose); }
.writer-profile-card__placeholder {
  background: var(--fbc-bg-3); color: var(--fbc-rose); font-family: "Space Grotesk", sans-serif;
}
.writer-profile-empty { color: var(--fbc-ink-soft); text-align: center; padding: 40px 16px; }

/* 404 */
.fbc-error { padding: 80px 0 60px; text-align: center; }
.fbc-error h1 { max-width: 18ch; margin-left: auto; margin-right: auto; }
.fbc-error p { color: var(--fbc-ink-soft); max-width: 46ch; margin: 8px auto 22px; }
.fbc-error__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }

.fbc-page-faq { padding: 50px 0; }
.fbc-page-faq .container { width: min(1220px, calc(100% - 32px)); margin: 0 auto; }

/* Responsive */
@media (max-width: 960px) {
  .fbc-hero { padding: 60px 0 50px; }
  .fbc-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 28px; }
  .fbc-two-col { grid-template-columns: minmax(0, 1fr); }
  .fbc-bonus-layout { grid-template-columns: minmax(0, 1fr); }
  .fbc-content-grid { grid-template-columns: minmax(0, 1fr); }
  .fbc-toc { position: static; }
  .fbc-footer__top { grid-template-columns: minmax(0, 1fr); }
  .fbc-footer__columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fbc-nav { display: none; }
  .fbc-burger { display: inline-flex; }
  .fbc-hero__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fbc-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .fbc-logo__text { font-size: 16px; }
  .fbc-logo__text-accent { display: none; }
  .fbc-header__inner { gap: 10px; }
  .fbc-header__cta { padding: 9px 14px; font-size: 13px; min-height: 42px; }
  .fbc-lang { display: none; }
  .fbc-download__buttons { grid-template-columns: minmax(0, 1fr); }
  .fbc-footer__columns { grid-template-columns: minmax(0, 1fr); }
  .fbc-footer__bottom { flex-direction: column; }
}
@media (max-width: 420px) {
  .fbc-logo__text { font-size: 15px; }
  .fbc-logo__img, .fbc-logo__mark { width: 40px; height: 40px; }
  .fbc-logo__mark svg { width: 40px; height: 40px; }
  .fbc-header__inner { gap: 8px; }
  .fbc-header__cta { padding: 8px 12px; font-size: 12px; min-height: 40px; }
}

@media (min-width: 961px) {
  .fbc-burger { display: none !important; }
  .fbc-mobile { display: none !important; }
}
@media (max-width: 960px) {
  .fbc-mobile[hidden] { display: none !important; }
  .fbc-mobile:not([hidden]) { display: flex; }
  .fbc-mobile__cta {
    align-self: stretch;
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
    min-height: 48px;
  }
}

/* Minimal editorial layout */
.fbc-minimal {
  color: var(--fbc-ink);
  background: #0e0e12;
}
.fbc-eyebrow {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fbc-rose);
  margin: 0 0 12px;
}
.fbc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.02em;
  border: 1px solid var(--fbc-line-strong);
  background: transparent;
  color: var(--fbc-ink);
  transition: all 0.18s ease;
}
.fbc-btn--primary {
  background: var(--fbc-rose);
  color: #131317;
  border-color: var(--fbc-rose);
}
.fbc-btn--primary:hover { background: transparent; color: var(--fbc-rose); }
.fbc-btn--text {
  border: none;
  background: transparent;
  color: var(--fbc-ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  padding: 12px 4px;
}

.fbc-asym {
  padding: 72px 0 0;
  background: #0e0e12;
  position: relative;
}
.fbc-asym__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  padding-bottom: 40px;
}
.fbc-asym__lede h1 { margin: 0 0 18px; }
.fbc-asym__title {
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 600;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--fbc-ink);
  max-width: 16ch;
}
.fbc-asym__deck {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.55;
  color: var(--fbc-ink-soft);
  max-width: 54ch;
  margin: 0 0 22px;
}
.fbc-byline {
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  color: var(--fbc-muted);
  margin: 0 0 24px;
  letter-spacing: 0.02em;
}
.fbc-byline__name { color: var(--fbc-ink); text-decoration: none; font-weight: 600; }
.fbc-byline__name:hover { color: var(--fbc-rose); }
.fbc-byline__sep { margin: 0 8px; color: var(--fbc-line-strong); }
.fbc-byline__date { color: var(--fbc-ink-soft); }
.fbc-byline__role {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--fbc-rose);
}
.fbc-asym__cta { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

.fbc-asym__quote {
  padding: 28px 28px 24px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 1px solid var(--fbc-line-strong);
  position: relative;
}
.fbc-mark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  line-height: 0.6;
  color: var(--fbc-rose);
  position: absolute;
  top: 12px;
  left: 20px;
}
.fbc-asym__quote-text {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--fbc-ink);
  margin: 30px 0 14px;
}
.fbc-asym__quote-source {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fbc-muted);
  margin: 0;
}

.fbc-asym__divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fbc-line-strong) 20%, var(--fbc-line-strong) 80%, transparent);
}
.fbc-asym--sub { padding: 56px 0 0; }

.fbc-chapter { padding: 56px 0; }
.fbc-chapter--alt { background: rgba(255, 255, 255, 0.015); border-top: 1px solid var(--fbc-line); border-bottom: 1px solid var(--fbc-line); }
.fbc-chapter__grid {
  display: grid;
  grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}
.fbc-chapter__num {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: clamp(72px, 8vw, 120px);
  line-height: 1;
  color: var(--fbc-line-strong);
  letter-spacing: -0.04em;
}
.fbc-chapter__kicker {
  font-family: "Space Grotesk", sans-serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--fbc-rose);
  margin: 8px 0 8px;
}
.fbc-chapter__body h2 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  max-width: 28ch;
}
.fbc-chapter__body p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--fbc-ink-soft);
  margin: 0 0 14px;
  max-width: 64ch;
}

.fbc-pullquote-block { padding: 40px 0; }
.fbc-pullquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3.2vw, 38px);
  font-style: italic;
  line-height: 1.3;
  color: var(--fbc-ink);
  border-top: 1px solid var(--fbc-line-strong);
  border-bottom: 1px solid var(--fbc-line-strong);
  padding: 38px 0;
  margin: 0;
  max-width: 26ch;
  text-align: left;
}

.fbc-compare { padding: 56px 0; }
.fbc-compare__table {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--fbc-line);
  background: rgba(255, 255, 255, 0.02);
}
.fbc-compare__col, .fbc-compare__row {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--fbc-line);
  font-family: "Space Grotesk", sans-serif;
}
.fbc-compare__row:last-child { border-bottom: none; }
.fbc-compare__col--head {
  background: rgba(255, 255, 255, 0.04);
  color: var(--fbc-muted);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
}
.fbc-compare__row { font-size: 14px; color: var(--fbc-ink-soft); }
.fbc-compare__row > span:first-child { color: var(--fbc-ink); font-weight: 600; }
.fbc-yes { color: var(--fbc-rose); font-weight: 600; }
.fbc-maybe { color: var(--fbc-muted); font-style: italic; }
.fbc-foot {
  font-family: "Space Grotesk", sans-serif;
  font-size: 12px;
  color: var(--fbc-muted);
  margin-top: 14px;
  letter-spacing: 0.02em;
}

.fbc-stripe-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: stripe;
}
.fbc-stripe-list li {
  counter-increment: stripe;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) minmax(0, 1.4fr);
  gap: 18px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--fbc-line);
  font-family: "Space Grotesk", sans-serif;
}
.fbc-stripe-list li::before {
  content: counter(stripe, decimal-leading-zero);
  font-size: 12px;
  color: var(--fbc-rose);
  letter-spacing: 0.06em;
}
.fbc-stripe-list__name { color: var(--fbc-ink); font-weight: 600; font-size: 15px; }
.fbc-stripe-list__desc { color: var(--fbc-ink-soft); font-size: 14px; }

.fbc-minimal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.fbc-minimal-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--fbc-line);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  color: var(--fbc-ink-soft);
  position: relative;
  padding-left: 28px;
}
.fbc-minimal-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 14px;
  color: var(--fbc-rose);
  font-family: "Space Grotesk", sans-serif;
}

.fbc-link {
  color: var(--fbc-rose);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid var(--fbc-rose);
  padding-bottom: 1px;
}
.fbc-link:hover { color: var(--fbc-ink); border-color: var(--fbc-ink); }

.fbc-app-rail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 18px 0 8px;
  border-top: 1px solid var(--fbc-line-strong);
  border-bottom: 1px solid var(--fbc-line-strong);
}
.fbc-app-link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  padding: 20px;
  text-decoration: none;
  color: var(--fbc-ink);
  background: transparent;
  border-right: 1px solid var(--fbc-line);
  transition: background 0.18s ease;
}
.fbc-app-link:last-child { border-right: none; }
.fbc-app-link:hover { background: rgba(244, 114, 182, 0.06); }
.fbc-app-link__num {
  grid-row: span 2;
  font-family: "Space Grotesk", sans-serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--fbc-rose);
  align-self: center;
}
.fbc-app-link__label { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: 16px; color: var(--fbc-ink); }
.fbc-app-link__meta { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-size: 13px; color: var(--fbc-ink-soft); }
.fbc-app-link--ios .fbc-app-link__num { color: var(--fbc-ink); }

.fbc-faq-block { padding: 56px 0; background: rgba(255, 255, 255, 0.015); border-top: 1px solid var(--fbc-line); border-bottom: 1px solid var(--fbc-line); }
.fbc-faq { display: flex; flex-direction: column; }
.fbc-faq details {
  padding: 18px 0;
  border-bottom: 1px solid var(--fbc-line);
}
.fbc-faq summary {
  cursor: pointer;
  list-style: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  color: var(--fbc-ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.fbc-faq summary::after { content: "→"; color: var(--fbc-rose); transition: transform 0.18s ease; }
.fbc-faq details[open] summary::after { transform: rotate(90deg); }
.fbc-faq summary::-webkit-details-marker { display: none; }
.fbc-faq p {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  color: var(--fbc-ink-soft);
  max-width: 60ch;
}

.fbc-outro {
  padding: 56px 0;
  border-top: 1px solid var(--fbc-line-strong);
}
.fbc-outro__inner { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.fbc-outro__line {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  color: var(--fbc-ink-soft);
  margin: 0;
  max-width: 30ch;
}

@media (max-width: 960px) {
  .fbc-asym__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .fbc-chapter__grid { grid-template-columns: minmax(0, 1fr); gap: 12px; }
  .fbc-chapter__num { font-size: 56px; }
  .fbc-compare__col, .fbc-compare__row { grid-template-columns: minmax(0, 1fr); gap: 6px; padding: 12px 16px; }
  .fbc-compare__col--head { display: none; }
  .fbc-app-rail { grid-template-columns: minmax(0, 1fr); }
  .fbc-app-link { border-right: none; border-bottom: 1px solid var(--fbc-line); }
  .fbc-app-link:last-child { border-bottom: none; }
  .fbc-stripe-list li { grid-template-columns: 36px minmax(0, 1fr); gap: 10px; }
  .fbc-stripe-list__desc { grid-column: 2 / span 1; }
}

/* Utility pages rendered via templates/casino_reviews/legal.html */
body.fbc-body main.container {
  width: min(960px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 72px;
}
.fbc-body main.container .rich-text {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(32, 32, 42, 0.98), rgba(26, 26, 34, 0.98));
  border: 1px solid var(--fbc-line);
  box-shadow: var(--fbc-shadow);
  color: var(--fbc-ink);
}
.fbc-body main.container .rich-text > :first-child { margin-top: 0; }
.fbc-body main.container .rich-text > :last-child { margin-bottom: 0; }
.fbc-body main.container .rich-text h1,
.fbc-body main.container .rich-text h2 { color: var(--fbc-ink); }
.fbc-body main.container .rich-text h3 { color: var(--fbc-rose); }
.fbc-body main.container .rich-text p,
.fbc-body main.container .rich-text li,
.fbc-body main.container .rich-text td,
.fbc-body main.container .rich-text th { color: var(--fbc-ink-soft); }
.fbc-body main.container .rich-text a { color: var(--fbc-rose); text-decoration: underline; }
.fbc-body main.container .rich-text ul,
.fbc-body main.container .rich-text ol { padding-left: 20px; }
.fbc-body main.container .rich-text blockquote {
  margin: 24px 0;
  padding: 16px 18px;
  border-left: 3px solid var(--fbc-rose);
  background: rgba(19, 19, 23, 0.56);
  border-radius: 14px;
}
.fbc-body main.container .rich-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
}
.fbc-body main.container .rich-text th,
.fbc-body main.container .rich-text td {
  padding: 12px 14px;
  border: 1px solid var(--fbc-line);
}
.fbc-body main.container .rich-text th { background: rgba(30, 30, 40, 0.92); }
.fbc-body main.container .page-faq {
  margin-top: 24px;
  padding: 24px 28px;
  border-radius: 22px;
  background: rgba(26, 26, 34, 0.92);
  border: 1px solid var(--fbc-line);
}
.fbc-body main.container .page-faq__title,
.fbc-body main.container .page-faq__q { color: var(--fbc-ink); }
.fbc-body main.container .page-faq__a { color: var(--fbc-ink-soft); }
.fbc-body main.container .contact-form {
  margin-top: 24px;
  padding: 24px 28px 28px;
  border-radius: 22px;
  background: rgba(26, 26, 34, 0.96);
  border: 1px solid var(--fbc-line);
}
.fbc-body main.container .contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.fbc-body main.container .contact-form__label {
  color: var(--fbc-ink);
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.fbc-body main.container .contact-form__req { color: var(--fbc-amber); }
.fbc-body main.container .contact-form__input,
.fbc-body main.container .contact-form__textarea {
  width: 100%;
  border: 1px solid var(--fbc-line-strong);
  border-radius: 12px;
  background: rgba(19, 19, 23, 0.9);
  color: var(--fbc-ink);
  padding: 14px 16px;
  font: inherit;
}
.fbc-body main.container .contact-form__textarea { min-height: 160px; resize: vertical; }
.fbc-body main.container .contact-form__input:focus,
.fbc-body main.container .contact-form__textarea:focus {
  outline: none;
  border-color: var(--fbc-rose);
  box-shadow: 0 0 0 3px rgba(251, 113, 133, 0.14);
}
.fbc-body main.container .contact-form__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--fbc-rose) 0%, var(--fbc-amber) 100%);
  color: #131317;
  font-family: "Space Grotesk", "Inter", sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--fbc-glow);
}
.fbc-body main.container .contact-form__btn:hover { transform: translateY(-1px); }
.fbc-body main.container .contact-form__btn:disabled { opacity: 0.6; cursor: not-allowed; }
.fbc-body main.container .contact-form__status { margin: 14px 0 0; }
.fbc-body main.container .contact-form__status.is-success { color: var(--fbc-amber-soft); }
.fbc-body main.container .contact-form__status.is-error { color: #fecaca; }
@media (max-width: 560px) {
  body.fbc-body main.container { padding: 28px 0 56px; }
  .fbc-body main.container .rich-text,
  .fbc-body main.container .page-faq,
  .fbc-body main.container .contact-form { padding: 20px; border-radius: 18px; }
  .fbc-body main.container .contact-form__btn { width: 100%; }
}
/* Horizontal overflow guard — viewport-level mobile stability */
html,
body.fbc-body {
  max-width: 100%;
  overflow-x: hidden;
}
body.fbc-body {
  position: relative;
}
.fbc-landing-body,
.fbc-landing-body .rich-text,
.fbc-body main.container,
.fbc-body main.container .legal-rich-text {
  max-width: 100%;
  overflow-x: hidden;
}
.fbc-landing-body .rich-text > *,
.fbc-body main.container .legal-rich-text > * {
  max-width: 100%;
  box-sizing: border-box;
}
.fbc-landing-body .rich-text :where(pre, code, table, iframe, video, canvas, svg),
.fbc-body main.container .legal-rich-text :where(pre, code, table, iframe, video, canvas, svg) {
  max-width: 100%;
  overflow-x: auto;
}
@media (max-width: 767px) {
  body.fbc-body {
    width: 100%;
    overflow-x: hidden;
  }
  .fbc-landing-body .rich-text,
  .fbc-body main.container .legal-rich-text {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .fbc-landing-body .rich-text :where([style*="width"], [style*="min-width"], [style*="max-width"]),
  .fbc-body main.container .legal-rich-text :where([style*="width"], [style*="min-width"], [style*="max-width"]) {
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
}
/* CMS body mobile adaptation — prevent in-content clipping */
.fbc-landing-body .rich-text,
.fbc-body main.container .legal-rich-text {
  overflow-wrap: anywhere;
  word-break: normal;
}
.fbc-landing-body .rich-text :where(h1, h2, h3, h4, p, li, blockquote),
.fbc-body main.container .legal-rich-text :where(h1, h2, h3, h4, p, li, blockquote) {
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
  box-sizing: border-box;
}
.fbc-landing-body .rich-text :where(.info-table, table),
.fbc-body main.container .legal-rich-text :where(.info-table, table) {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  table-layout: auto;
}
@media (max-width: 767px) {
  .fbc-landing-body .rich-text :where(h1, h2) {
    font-size: clamp(24px, 8vw, 34px) !important;
    line-height: 1.12 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
  }
  .fbc-landing-body .rich-text :where(h3, h4) {
    font-size: clamp(19px, 6vw, 26px) !important;
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    max-width: 100% !important;
  }
  .fbc-landing-body .rich-text :where(p, li) {
    font-size: clamp(15px, 4.4vw, 18px) !important;
    line-height: 1.65 !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }
  .fbc-landing-body .rich-text :where(.info-table, table),
  .fbc-body main.container .legal-rich-text :where(.info-table, table) {
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
  .fbc-landing-body .rich-text :where(.info-table th, .info-table td, table th, table td),
  .fbc-body main.container .legal-rich-text :where(.info-table th, .info-table td, table th, table td) {
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    min-width: 0 !important;
  }
  .fbc-landing-body .rich-text :where(figure, .media-image, .img-wrap, picture) {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    overflow: hidden !important;
  }
  .fbc-landing-body .rich-text :where(img, .media-image__img) {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
  }
}
/* CMS body mobile table width fix — viewport-safe info-table */
@media (max-width: 767px) {
  .fbc-landing-body .rich-text :where(.info-table, table),
  .fbc-body main.container .legal-rich-text :where(.info-table, table) {
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
  }
}

/* Author avatar on home hero/meta */
.fbc-byline__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.fbc-byline__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(164, 112, 255, 0.55);
  box-shadow: 0 0 0 2px rgba(19, 19, 23, 0.9);
  flex: 0 0 auto;
}

/* Author byline avatar alignment fix */
.fbc-byline {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.fbc-byline__author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}

.fbc-byline__author span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.fbc-byline__avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.fbc-byline__sep,
.fbc-byline__date,
.fbc-byline__role {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

/* === universal-header support (added: theme CSS didn't define these) === */
:root{--uc-accent:#f0a500;--uc-accent-ink:#1a1100;--uc-container:1120px;--uc-header-bg:#121826;--uc-header-ink:#e9ecf3;--uc-header-ink-soft:#aeb6c5;--uc-radius-sm:6px;}
.universal-container {
  width: 100%;
  max-width: var(--uc-container);
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}
.universal-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--uc-accent);
  color: var(--uc-accent-ink);
  padding: 8px 14px;
  z-index: 1000;
  border-radius: var(--uc-radius-sm);
  font-weight: 600;
}
.universal-skip:focus {
  left: 16px;
  top: 16px;
}
/* ---------- Header ------------------------------------------------------- */

.universal-header {
  background: var(--uc-header-bg);
  color: var(--uc-header-ink);
  position:static;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  /* Длинный бренд не должен создавать горизонтальный скролл. */
  max-width: 100%;
  overflow: hidden;
}
.universal-header__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 12px 16px;
  box-sizing: border-box; flex-wrap: wrap; row-gap: 8px; justify-content: space-between;  max-width: 1000px; margin-inline: auto; width: 100%;}
.universal-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--uc-header-ink);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.01em;
  /* Бренд слева по ширине контента: не растёт, чтобы nav стоял рядом с ним,
     но может сжиматься (длинный бренд переносится — см. mobile-правила). */
  min-width: 0;
  flex: 0 1 auto;
  overflow: hidden;
}
.universal-header__brand-mark {
  display: inline-block;
  flex: 0 0 auto;
  width: 10px;
  min-height:10px;
  border-radius: 50%;
  background: var(--uc-accent);
  box-shadow: 0 0 0 3px rgba(240, 165, 0, 0.18);
 flex-wrap: wrap; row-gap: 6px; }
.universal-header__brand-text {
  min-width: 0;
  overflow-wrap: anywhere;
  display: block;
  overflow: visible;
}
/* Логотип бренда из «Ассетов тем» (domain-specific или общий ThemeAsset).
   Показывается как компактная марка СЛЕВА от текста бренда (logo + текст
   вместе, логотип не заменяет текст). */
.universal-header__brand-logo {
  display: block;
  flex: 0 0 auto;
  min-height:32px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
 flex-wrap: wrap; row-gap: 6px; }
/* Навигация и CTA не сжимаются и не перекрываются длинным брендом. */
.universal-header__nav,
.universal-header__right {
  flex: 0 0 auto;
}
.universal-header__nav {
  display: flex;
  gap: 4px;
  /* nav стоит сразу за брендом; вправо уходит только CTA-группа. */
  margin-left: 8px; flex-wrap: wrap; row-gap: 8px; justify-content: space-between;}
.universal-header__nav a {
  color: var(--uc-header-ink-soft);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 12px;
  border-radius: var(--uc-radius-sm);
  transition: background-color 0.15s ease, color 0.15s ease;
}
.universal-header__nav a:hover,
.universal-header__nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--uc-header-ink);
  outline: none;
}
.universal-header__right {
  display: flex;
  align-items: center;
  gap: 10px;
  /* CTA-группа (Login/Register) прижата к правому краю шапки. */
  margin-left: auto; flex-wrap: wrap; row-gap: 8px; justify-content: space-between;}
.universal-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--uc-accent);
  color: var(--uc-accent-ink);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: var(--uc-radius-sm);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}
.universal-cta:hover,
.universal-cta:focus-visible {
  transform: translateY(-1px);
  outline: none;
}
/* Register — основная accent-кнопка (наследует базовый accent-стиль). */
.universal-cta--register {
  background: var(--uc-accent);
  color: var(--uc-accent-ink);
}
/* Login — вторичная outline-кнопка на тёмном header. */
.universal-cta--login {
  background: transparent;
  color: var(--uc-header-ink);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}
.universal-cta--login:hover,
.universal-cta--login:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.45);
}
.universal-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  padding: 9px 8px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--uc-radius-sm);
  cursor: pointer;
  box-sizing: border-box;
}
.universal-burger span {
  display: block;
  height: 2px;
  background: var(--uc-header-ink);
  border-radius: 2px;
}
/* ---------- Mobile drawer ------------------------------------------------ */

.universal-mobile {
  position: fixed;
  inset: 0;
  background: var(--uc-header-bg);
  color: var(--uc-header-ink);
  padding: 64px 24px 24px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
}
.universal-mobile[hidden] {
  display: none;
}
.universal-mobile__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--uc-radius-sm);
  color: var(--uc-header-ink);
  font-size: 1.4rem;
  cursor: pointer;
}
.universal-mobile__nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.universal-mobile__nav a {
  color: var(--uc-header-ink);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 8px;
  border-radius: var(--uc-radius-sm);
  border: 1px solid transparent;
}
.universal-mobile__nav a:hover,
.universal-mobile__nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  outline: none;
}
.universal-mobile__ctas {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.universal-mobile__cta {
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: var(--uc-radius-sm);
  box-sizing: border-box;
}
.universal-mobile__cta--register {
  background: var(--uc-accent);
  color: var(--uc-accent-ink);
}
.universal-mobile__cta--login {
  background: transparent;
  color: var(--uc-header-ink);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.universal-mobile__cta--login:hover,
.universal-mobile__cta--login:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  outline: none;
}
/* ---------- Main / Content wrapper -------------------------------------- */
/*
 * .universal-main and .universal-content are deliberately minimal.
 * No background, no shadow, no padding, no rules for headings/text/lists/
 * tables/links. The CMS body controls its own typography and layout.
 *
 * scope_inline_styles:".universal-content" rewrites any manager <style>
 * block so its selectors only match inside .universal-content. That keeps
 * manager CSS isolated from .universal-header / .universal-footer / popup.
 */

.universal-main {
  padding: 0;
}
/* На мобильной версии header не sticky — длинный бренд не должен
     перекрывать контент и занимать пол-экрана. */
  .universal-header {
    position: static;
  }
.universal-header__nav {
    display: none;
  }
/* Плотная mobile-шапка как на старом сайте: бренд слева, кнопки справа,
     без пустой зоны и без отдельной широкой строки с CTA.
       col1 — бренд (слева, на всю высоту, переносится в 2 строки);
       col2 — CTA-группа (Entrar/Registrar) справа сверху;
       col2 — burger справа снизу, под кнопками.
     Грид-колонка бренда (minmax(0,1fr)) сжимается и переносит текст,
     CTA/burger справа по размеру контента — горизонтального скролла нет. */
  .universal-header__bar {
    display: flex;
    
    
    align-items: center;
    gap: 12px;
    row-gap: 8px;
    min-height: 56px;
    padding: 9px 14px; flex-wrap: wrap; justify-content: space-between;  max-width: 1000px; margin-inline: auto; width: 100%;}
/* Бренд слева, на всю высоту шапки, выровнен по верхнему краю,
     чтобы при переносе в 2 строки текст шёл от верха рядом с кнопками. */
  .universal-header__brand {
    grid-area: brand;
    align-self: center;
    font-size: 1rem;
    /* Разрешаем тексту бренда переноситься внутри своей зоны,
       не обрезаем его родительским overflow. */
    overflow: visible;
  }
/* burger справа снизу, под CTA-группой. */
  .universal-burger {
    display: inline-flex;
    grid-area: burger;
    justify-self: end;
    margin: 0;
  }
/* Логотип в мобильной шапке — компактнее, чтобы не теснить CTA/burger. */
  .universal-header__brand-logo {
    min-height:28px;
    max-width: 96px;
   flex-wrap: wrap; row-gap: 6px; }
/* CTA-группа справа сверху — компактная, по размеру контента (НЕ full-width). */
  .universal-header__right {
    grid-area: cta;
    width: auto;
    margin: 0;
    justify-self: end;
    justify-content: flex-end;
    gap: 8px;
  }
/* Кнопки по размеру контента (не full-width), слим, без тяжёлой тени,
     одинаковая высота (у accent — прозрачная рамка той же толщины,
     что outline-рамка у login). */
  .universal-header__right .universal-cta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    padding: 7px 14px;
    font-size: 0.84rem;
    line-height: 1.1;
    border-radius: 10px;
    box-shadow: none;
  }
.universal-header__right .universal-cta--register {
    border: 1px solid transparent;
  }
/* На мобильном бренд показываем полностью: перенос строк без обрезания
     и многоточия. Register и burger остаются справа (flex:0 0 auto),
     header растёт в высоту при необходимости. Горизонтального скролла нет,
     т.к. текст переносится, а не расширяет шапку. */
  .universal-header__brand-text {
    display: block;
    -webkit-line-clamp: none;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    overflow-wrap: anywhere;
    line-height: 1.25;
  }
