/* ===========================================================================
   BOB CASINO — design system (satellite build)
   Re-created from bobcasino.com screenshots. Brand palette in :root.
   =========================================================================== */

:root {
  --bc-cream:      #f4efe0;
  --bc-cream-2:    #efe6cf;
  --bc-header:     #37271a;
  --bc-header-2:   #291c12;
  --bc-brown:      #4a3320;
  --bc-brown-soft: #6b5233;
  --bc-green:      #7ab52f;
  --bc-green-2:    #5f9a22;
  --bc-gold:       #f2a900;
  --bc-gold-2:     #ffc42a;
  --bc-yellow:     #f5c518;
  --bc-red:        #e5352b;
  --bc-orange:     #e8891c;
  --bc-text:       #41372b;
  --bc-muted:      #6f6455;
  --bc-card:       #ffffff;
  --bc-card-bd:    #e7ddc3;
  --bc-line:       #e2d7bd;
  --bc-footer:     #1c1a17;
  --bc-footer-2:   #131211;
  --bc-footer-tx:  #b7ae9c;

  --bc-max: 1180px;
  --bc-radius: 12px;
  --bc-header-h: 64px;

  --bc-shadow: 0 10px 30px -14px rgba(50,35,15,.35);
  --bc-shadow-sm: 0 4px 14px -8px rgba(50,35,15,.4);

  --bc-font: "Segoe UI", "Open Sans", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --bc-display: "Trebuchet MS", "Segoe UI", var(--bc-font);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }

body {
  margin: 0;
  font-family: var(--bc-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--bc-text);
  background-color: var(--bc-cream);
  background-image: url(../img/pattern.svg);
  background-size: 130px 130px;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.bc-container { width: 100%; max-width: var(--bc-max); margin: 0 auto; padding: 0 20px; }

/* ---- Scalloped orange trim (signature Bob divider) ---------------------- */
.bc-wave {
  height: 22px;
  background: url(../img/wave.svg) repeat-x left top;
  background-size: 40px 22px;
  position: relative; z-index: 6;
}
.bc-wave--up { transform: scaleY(-1); }

/* ---- Section + headings ------------------------------------------------- */
.bc-section { padding: 46px 0; }
.bc-section--tight { padding: 30px 0; }

.bc-h1 {
  font-family: var(--bc-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 2.9rem);
  line-height: 1.08;
  color: var(--bc-brown);
  margin: 0 0 .5em;
  letter-spacing: .3px;
}
.bc-h2 {
  font-family: var(--bc-display);
  font-weight: 800;
  font-size: clamp(1.35rem, 3vw, 1.95rem);
  color: var(--bc-brown);
  margin: 1.6em 0 .55em;
  line-height: 1.15;
}
.bc-h3 {
  font-family: var(--bc-display);
  font-weight: 800;
  font-size: 1.18rem;
  color: var(--bc-brown);
  margin: 1.3em 0 .4em;
}
.bc-section-title {
  text-align: center;
  font-family: var(--bc-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 3.2vw, 2.1rem);
  color: var(--bc-brown);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin: 0 0 .35em;
}
.bc-section-title::after {
  content: "";
  display: block;
  width: 150px; height: 10px;
  margin: 12px auto 0;
  background: url(../img/squiggle.svg) repeat-x center / 60px 10px;
  opacity: .95;
}
.bc-prose p { margin: 0 0 1em; color: var(--bc-text); }
.bc-prose ul { margin: 0 0 1.1em; padding-left: 1.2em; }
.bc-prose li { margin: .3em 0; }
.bc-lead { font-size: 1.06rem; color: var(--bc-muted); }

/* =========================================================================
   HEADER
   ========================================================================= */
.bc-sticky-root { position: sticky; top: 0; z-index: 200; }

.bc-header {
  background: linear-gradient(180deg, var(--bc-header) 0%, var(--bc-header-2) 100%);
  border-bottom: 2px solid #1c130c;
  box-shadow: 0 3px 12px rgba(0,0,0,.28);
}
.bc-header-inner {
  height: var(--bc-header-h);
  display: flex;
  align-items: center;
  gap: 18px;
}
.bc-logo { display: flex; align-items: center; flex: 0 0 auto; }
.bc-logo img { height: 30px; width: auto; }

.bc-nav { display: flex; align-items: center; gap: 22px; margin-left: 8px; }
.bc-nav a {
  color: #e9dfc6;
  font-weight: 600;
  font-size: .95rem;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
}
.bc-nav a:hover { color: #fff; }
.bc-nav a.is-active { color: var(--bc-gold-2); border-bottom-color: var(--bc-gold-2); }

.bc-vip {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(180deg,#4a3623,#33241681);
  border: 1px solid #6b4f30;
  color: var(--bc-gold-2);
  font-weight: 700; font-size: .82rem; letter-spacing: .4px;
  text-transform: uppercase;
  padding: 7px 14px; border-radius: 8px;
}
.bc-vip svg { width: 18px; height: 18px; }

.bc-header-spacer { flex: 1 1 auto; }

.bc-header-cta { display: flex; align-items: center; gap: 10px; }

/* Buttons */
.bc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--bc-font);
  font-weight: 700; font-size: .92rem;
  line-height: 1; white-space: nowrap;
  padding: 11px 22px; border-radius: 999px;
  border: 0; cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, filter .15s ease;
}
.bc-btn:hover { transform: translateY(-1px); filter: brightness(1.04); }
.bc-btn:active { transform: translateY(0); }

.bc-btn-green {
  background: linear-gradient(180deg, var(--bc-green) 0%, var(--bc-green-2) 100%);
  color: #fff;
  box-shadow: 0 6px 16px -6px rgba(95,154,34,.7), inset 0 1px 0 rgba(255,255,255,.35);
}
.bc-btn-gold {
  background: linear-gradient(180deg, var(--bc-gold-2) 0%, var(--bc-gold) 100%);
  color: #3a2812;
  box-shadow: 0 6px 16px -7px rgba(242,169,0,.75);
}
.bc-btn-ghost {
  background: transparent;
  color: #e9dfc6;
  border: 2px solid #7f8b3e;
  padding: 9px 20px;
}
.bc-btn-ghost:hover { background: rgba(127,139,62,.18); color:#fff; }
.bc-btn-lg { padding: 15px 40px; font-size: 1.05rem; }
.bc-btn-block { width: 100%; }

.bc-lang {
  display: inline-flex; align-items: center; gap: 5px;
  color: #d9cfb6; font-size: .85rem; cursor: pointer;
  padding: 6px 8px; border-radius: 8px;
}
.bc-lang:hover { background: rgba(255,255,255,.06); }
.bc-lang svg { width: 18px; height: 18px; }

/* Hamburger (mobile) */
.bc-burger {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 42px; height: 42px; border-radius: 8px;
  color: #eaddc2;
}
.bc-burger:hover { background: rgba(255,255,255,.08); }
.bc-burger svg { width: 24px; height: 24px; }

/* Mobile drawer */
.bc-drawer-overlay {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(20,12,6,.55);
  opacity: 0; visibility: hidden; transition: opacity .25s;
}
.bc-drawer-overlay.open { opacity: 1; visibility: visible; }
.bc-drawer {
  position: fixed; top: 0; right: 0; z-index: 310;
  width: min(82vw, 320px); height: 100%;
  background: linear-gradient(180deg, var(--bc-header) 0%, var(--bc-header-2) 100%);
  box-shadow: -10px 0 30px rgba(0,0,0,.4);
  transform: translateX(100%); transition: transform .28s ease;
  padding: 18px; display: flex; flex-direction: column; gap: 14px;
  overflow-y: auto;
}
.bc-drawer.open { transform: translateX(0); }
.bc-drawer-close {
  align-self: flex-end; background: transparent; border: 0; color: #eaddc2;
  width: 40px; height: 40px; cursor: pointer;
}
.bc-drawer-close svg { width: 24px; height: 24px; }
.bc-drawer a.bc-nav-link {
  color: #eadfc6; font-weight: 600; font-size: 1.05rem;
  padding: 12px 6px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.bc-drawer .bc-btn { width: 100%; margin-top: 6px; }
/* ---- Mobile drawer language switcher ---------------------------------- */
.bc-drawer-lang { padding-top: 12px; border-top: 1px solid rgba(255,255,255,.12); }
.bc-drawer-lang-head { display: flex; align-items: center; gap: 8px; color: #c9bfa6; font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 10px; padding: 0 2px; }
.bc-drawer-lang-head svg { width: 20px; height: 20px; flex: 0 0 auto; }
.bc-drawer-lang-list { display: grid; grid-template-columns: 1fr; gap: 4px; max-height: 44vh; overflow-y: auto; padding-right: 5px; scrollbar-width: thin; scrollbar-color: var(--bc-gold) rgba(255,255,255,.06); }
.bc-drawer-lang-list::-webkit-scrollbar { width: 8px; }
.bc-drawer-lang-list::-webkit-scrollbar-track { background: rgba(255,255,255,.05); border-radius: 999px; }
.bc-drawer-lang-list::-webkit-scrollbar-thumb { border-radius: 999px; border: 2px solid transparent; background-clip: padding-box; background-color: var(--bc-gold); background-image: linear-gradient(180deg, var(--bc-gold-2), var(--bc-gold)); }
.bc-drawer-lang-list a { display: flex; align-items: center; gap: 8px; padding: 8px 9px; border-radius: 8px; color: #e9dfc6; font-size: .82rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bc-drawer-lang-list a:hover { background: rgba(255,255,255,.07); }
.bc-drawer-lang-list a.is-active { background: rgba(242,169,0,.18); color: var(--bc-gold-2); font-weight: 600; }
.bc-drawer-lang-list a img { width: 22px; height: 15px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.2); flex: 0 0 auto; }
/* ---- Player reviews / testimonials ------------------------------------ */
.bc-reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr)); gap: 16px; margin: 12px 0 6px; }
.bc-review { background: var(--bc-card); border: 1px solid var(--bc-card-bd); border-radius: var(--bc-radius); padding: 18px; box-shadow: var(--bc-shadow-sm); display: flex; flex-direction: column; gap: 11px; }
.bc-review-top { display: flex; align-items: center; gap: 12px; }
.bc-review-av { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; color: #fff; font-size: 1.15rem; background: linear-gradient(135deg, var(--bc-green), var(--bc-green-2)); flex: 0 0 auto; }
.bc-review:nth-child(3n+2) .bc-review-av { background: linear-gradient(135deg, var(--bc-gold-2), var(--bc-orange)); }
.bc-review:nth-child(3n) .bc-review-av { background: linear-gradient(135deg, var(--bc-orange), var(--bc-red)); }
.bc-review-id { display: flex; flex-direction: column; gap: 2px; }
.bc-review-name { font-size: 1rem; color: var(--bc-text); }
.bc-review-stars { color: var(--bc-gold); font-size: .92rem; letter-spacing: 2px; }
.bc-review-text { margin: 0; font-size: .95rem; color: var(--bc-muted); line-height: 1.6; }
.bc-reviews-agg { grid-column: 1 / -1; display: flex; align-items: baseline; gap: 8px; margin: 0 0 4px; flex-wrap: wrap; }
.bc-agg-stars { color: var(--bc-gold); letter-spacing: 2px; font-size: 1.1rem; }
.bc-agg-score { font-size: 1.5rem; font-weight: 800; color: var(--bc-text); }
.bc-agg-out { color: var(--bc-muted); font-weight: 600; }
.bc-agg-count { color: var(--bc-muted); font-size: .9rem; align-self: center; }

/* =========================================================================
   HERO (video background)
   ========================================================================= */
.bc-hero {
  position: relative;
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #241a12;
}
.bc-hero-video, .bc-hero-poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.bc-hero-poster {
  background:
    radial-gradient(120% 120% at 70% 20%, #6c4a2a 0%, #2a1c11 60%, #180f08 100%);
}
.bc-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(15,9,4,.62) 0%, rgba(15,9,4,.30) 45%, rgba(15,9,4,.62) 100%);
}
.bc-hero-inner {
  position: relative; z-index: 2;
  padding: 54px 20px;
  color: #fff;
}
.bc-hero-kicker {
  font-size: clamp(1rem, 2.4vw, 1.4rem);
  font-weight: 600; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  margin: 0 0 6px;
}
.bc-hero-amount {
  font-family: var(--bc-display); font-weight: 900;
  font-size: clamp(3rem, 9vw, 5.4rem); line-height: .96;
  color: var(--bc-gold-2);
  text-shadow: 0 3px 0 #a5710f, 0 6px 18px rgba(0,0,0,.55);
  letter-spacing: 1px;
}
.bc-hero-amount .cur { font-size: .5em; vertical-align: super; }
.bc-hero-fs {
  font-family: var(--bc-display); font-weight: 800;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  color: #fff; text-shadow: 0 2px 8px rgba(0,0,0,.6);
  margin-top: 2px;
}
.bc-hero-sub {
  text-transform: uppercase; letter-spacing: 3px;
  font-size: .82rem; color: #f0e6cf; opacity: .9; margin: 6px 0 22px;
}
.bc-hero .bc-btn-lg { box-shadow: 0 10px 26px -8px rgba(95,154,34,.9), inset 0 1px 0 rgba(255,255,255,.4); }

.bc-age {
  position: absolute; right: 16px; bottom: 46px; z-index: 3;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bc-red); color: #fff;
  font-size: .72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 8px rgba(0,0,0,.4);
}

/* =========================================================================
   WINNERS TICKER
   ========================================================================= */
.bc-ticker {
  background: linear-gradient(180deg,#5a4632,#4a3826);
  border-top: 1px solid #6b543a; border-bottom: 1px solid #2e2114;
  overflow: hidden;
}
.bc-ticker-track {
  display: flex; align-items: center; gap: 30px;
  padding: 8px 0;
  white-space: nowrap;
  animation: bc-marquee 34s linear infinite;
  width: max-content;
}
.bc-ticker-item { display: inline-flex; align-items: center; gap: 8px; color: #efe4cf; font-size: .82rem; }
.bc-ticker-item b { color: #fff; }
.bc-ticker-item .win { color: var(--bc-gold-2); font-weight: 700; }
.bc-ticker-item .win.big { color: #ffe64d; font-weight: 800; text-shadow: 0 0 9px rgba(255,220,70,.75); }
.bc-ticker-item .game { color: #cdbf9f; }
.bc-ticker-cup { color: var(--bc-gold-2); font-size: 1rem; }
@keyframes bc-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* =========================================================================
   BONUS PACKAGE BAND
   ========================================================================= */
.bc-bonusband { background: var(--bc-cream-2); position: relative; }
.bc-bonusband-inner { padding: 40px 20px 48px; text-align: center; }
.bc-bonusband-head {
  font-family: var(--bc-display); font-weight: 900;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--bc-brown); text-transform: uppercase; letter-spacing: .5px;
}
.bc-bonusband-amount { color: var(--bc-red); }
.bc-bonusband-fs { color: var(--bc-green-2); font-size: .8em; }
.bc-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 900px; margin: 28px auto 0;
}
.bc-step {
  background: var(--bc-card); border: 1px solid var(--bc-card-bd);
  border-radius: 16px; padding: 22px 18px; box-shadow: var(--bc-shadow-sm);
  position: relative;
}
.bc-step-badge {
  width: 58px; height: 58px; border-radius: 50%;
  margin: -50px auto 12px;
  background: radial-gradient(circle at 35% 30%, #a4dd5a, var(--bc-green-2));
  border: 3px solid #fff; box-shadow: var(--bc-shadow-sm);
  color: #fff; font-family: var(--bc-display); font-weight: 900; font-size: 1.5rem;
  display: flex; align-items: center; justify-content: center;
}
.bc-step h4 { margin: 0 0 6px; font-size: 1.05rem; color: var(--bc-brown); font-family: var(--bc-display); }
.bc-step p { margin: 0; font-size: .9rem; color: var(--bc-muted); }
.bc-step .code { color: var(--bc-green-2); font-weight: 700; }

/* =========================================================================
   TABLES
   ========================================================================= */
.bc-table-wrap { overflow-x: auto; border-radius: var(--bc-radius); box-shadow: var(--bc-shadow-sm); margin: 18px 0; }
.bc-table {
  width: 100%; min-width: 460px;
  border-collapse: separate; border-spacing: 0;
  background: var(--bc-card);
  font-size: .95rem;
}
.bc-table thead th {
  background: linear-gradient(180deg,#463019,#37251360 ), var(--bc-header);
  background: var(--bc-header);
  color: #f4e9cf; text-align: left;
  font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .6px;
  padding: 14px 16px;
}
.bc-table th, .bc-table td { padding: 12px 16px; border-bottom: 1px solid var(--bc-line); vertical-align: top; }
.bc-table tbody th { text-align: left; font-weight: 700; color: var(--bc-brown); width: 38%; background: #faf6ea; }
.bc-table tbody td { color: var(--bc-muted); }
.bc-table tbody tr:last-child th, .bc-table tbody tr:last-child td { border-bottom: 0; }
.bc-table tbody tr:hover td, .bc-table tbody tr:hover th { background: #fbf3df; }
.bc-table--zebra tbody tr:nth-child(even) td { background: #faf6ea; }

/* score highlight */
.bc-score { font-weight: 800; color: var(--bc-green-2); white-space: nowrap; }

/* =========================================================================
   PROS / CONS
   ========================================================================= */
.bc-proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.bc-pc {
  background: var(--bc-card); border: 1px solid var(--bc-card-bd);
  border-radius: 14px; padding: 20px 22px; box-shadow: var(--bc-shadow-sm);
}
.bc-pc h3 { margin: 0 0 12px; font-size: 1.15rem; font-family: var(--bc-display); }
.bc-pc--pro { border-top: 4px solid var(--bc-green); }
.bc-pc--con { border-top: 4px solid var(--bc-red); }
.bc-pc ul { list-style: none; margin: 0; padding: 0; }
.bc-pc li { position: relative; padding-left: 28px; margin: 9px 0; color: var(--bc-text); font-size: .95rem; }
.bc-pc li::before {
  position: absolute; left: 0; top: 1px; font-weight: 900; font-size: 1rem;
}
.bc-pc--pro li::before { content: "✓"; color: var(--bc-green-2); }
.bc-pc--con li::before { content: "✕"; color: var(--bc-red); }

/* =========================================================================
   FEATURE GRID (What makes Bob the best)
   ========================================================================= */
.bc-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.bc-feature {
  background: var(--bc-card); border: 1px solid var(--bc-card-bd);
  border-radius: 14px; padding: 20px; box-shadow: var(--bc-shadow-sm);
}
.bc-feature-ic {
  width: 46px; height: 46px; border-radius: 12px; margin-bottom: 12px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg,#ffe08a,#f2a900); color: #3a2812;
  font-size: 1.4rem;
}
.bc-feature h4 { margin: 0 0 6px; font-size: 1.02rem; color: var(--bc-brown); font-family: var(--bc-display); }
.bc-feature p { margin: 0; font-size: .9rem; color: var(--bc-muted); }

/* =========================================================================
   REWARDS LADDER (styled from the level table)
   ========================================================================= */
.bc-ladder { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 22px; }
.bc-rung {
  display: flex; align-items: center; gap: 14px;
  background: var(--bc-card); border: 1px solid var(--bc-card-bd);
  border-left: 5px solid var(--bc-green); border-radius: 12px;
  padding: 12px 16px; box-shadow: var(--bc-shadow-sm);
}
.bc-rung-lvl {
  flex: 0 0 auto; width: 46px; height: 46px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #a4dd5a, var(--bc-green-2));
  color: #fff; font-family: var(--bc-display); font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid #fff; box-shadow: var(--bc-shadow-sm);
}
.bc-rung-body { min-width: 0; }
.bc-rung-pts { font-weight: 700; color: var(--bc-brown); font-size: .92rem; }
.bc-rung-rew { color: var(--bc-muted); font-size: .88rem; }
.bc-rung--top { border-left-color: var(--bc-gold); }
.bc-rung--top .bc-rung-lvl { background: radial-gradient(circle at 35% 30%, #ffe08a, var(--bc-gold)); color: #3a2812; }

/* =========================================================================
   FAQ ACCORDION
   ========================================================================= */
.bc-faq { max-width: 860px; margin: 22px auto 0; }
.bc-faq-item { background: var(--bc-card); border: 1px solid var(--bc-card-bd); border-radius: 12px; margin: 10px 0; overflow: hidden; box-shadow: var(--bc-shadow-sm); }
.bc-faq-q {
  width: 100%; text-align: left; background: transparent; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 18px; font-size: 1rem; font-weight: 700; color: var(--bc-brown);
  font-family: var(--bc-font);
}
.bc-faq-q .chev { flex: 0 0 auto; color: var(--bc-gold); transition: transform .25s; font-size: 1.1rem; }
.bc-faq-item.open .chev { transform: rotate(180deg); }
.bc-faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.bc-faq-a-inner { padding: 0 18px 16px; color: var(--bc-muted); }
.bc-faq-head-ic {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(180deg,#a4dd5a,var(--bc-green-2)); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; margin-right: 10px; vertical-align: middle;
}

/* =========================================================================
   MASCOT / SPLIT ROW
   ========================================================================= */
.bc-split { display: grid; grid-template-columns: 220px 1fr; gap: 26px; align-items: start; }
.bc-split .bc-mascot { width: 100%; }

/* =========================================================================
   REVIEW META (author box)
   ========================================================================= */
.bc-meta {
  margin-top: 24px; padding: 16px 20px;
  background: #faf6ea; border: 1px solid var(--bc-card-bd);
  border-left: 4px solid var(--bc-gold); border-radius: 10px;
  font-size: .9rem; color: var(--bc-muted);
}
.bc-meta b { color: var(--bc-brown); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.bc-footer { background: var(--bc-footer); color: var(--bc-footer-tx); }
.bc-footer-top { padding: 30px 0 6px; }
.bc-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 26px; padding: 6px 0 18px; }
.bc-logos span { color: #8f8674; font-weight: 700; font-size: .8rem; letter-spacing: .5px; opacity: .7; text-transform: uppercase; }
.bc-brand-logo {
  height: 24px; width: auto; max-width: 152px; object-fit: contain;
  filter: brightness(0) invert(1); opacity: .7;   /* force greyscale/white on the dark footer */
  transition: opacity .2s ease;
}
.bc-brand-logo:hover { opacity: 1; }
.bc-footer-line { height: 1px; background: rgba(255,255,255,.08); margin: 8px 0 18px; }
.bc-footer-main { display: flex; gap: 26px; align-items: flex-start; flex-wrap: wrap; padding-bottom: 16px; }
.bc-footer-brand { flex: 0 0 auto; }
.bc-footer-brand img { height: 34px; }
.bc-footer-text { flex: 1 1 300px; font-size: .78rem; line-height: 1.6; color: #8f8674; }
.bc-footer-nav { display: flex; flex-wrap: wrap; gap: 8px 16px; padding: 14px 0 6px; justify-content: center; }
.bc-footer-nav a { color: #cfc7b6; font-size: .82rem; }
.bc-footer-nav a:hover { color: var(--bc-gold-2); }
.bc-footer-bottom { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 12px 0 26px; font-size: .82rem; color: #8f8674; }
.bc-badge-18 { background: var(--bc-red); color: #fff; font-weight: 800; font-size: .72rem; width: 30px; height: 30px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 900px) {
  .bc-steps { grid-template-columns: 1fr; max-width: 420px; }
  .bc-step-badge { margin-top: -46px; }
  .bc-features { grid-template-columns: 1fr; }
  .bc-ladder { grid-template-columns: 1fr; }
  .bc-split { grid-template-columns: 1fr; }
  .bc-split .bc-mascot { max-width: 200px; margin: 0 auto; }
}
@media (max-width: 860px) {
  .bc-nav, .bc-vip, .bc-header-cta .bc-btn, .bc-header-cta .bc-lang { display: none; }
  .bc-burger { display: inline-flex; align-items: center; justify-content: center; }
  .bc-header-spacer { flex: 1 1 auto; }
}
@media (max-width: 620px) {
  .bc-proscons { grid-template-columns: 1fr; }
  .bc-section { padding: 34px 0; }
  .bc-hero { min-height: 320px; }
  .bc-table { font-size: .9rem; }
}
@media (min-width: 861px) {
  .bc-drawer, .bc-drawer-overlay { display: none; }
}

/* =========================================================================
   ANIMATIONS + HOVER + CLICKABLE HERO
   ========================================================================= */

/* Whole hero clickable -> referral (button keeps its own hover) */
.bc-hero-hit { position: absolute; inset: 0; z-index: 2; display: block; }
.bc-hero-inner { z-index: 3; pointer-events: none; }
.bc-hero-inner a, .bc-hero-inner button { pointer-events: auto; }

/* Hero amount soft glow pulse */
@keyframes bc-glow {
  0%,100% { text-shadow: 0 3px 0 #a5710f, 0 6px 18px rgba(0,0,0,.55); }
  50%     { text-shadow: 0 3px 0 #a5710f, 0 0 26px rgba(255,196,42,.75), 0 6px 18px rgba(0,0,0,.55); }
}
.bc-hero-amount { animation: bc-glow 2.6s ease-in-out infinite; }

/* Hero CTA: highlight + shine sweep on hover */
.bc-hero .bc-btn-lg { position: relative; overflow: hidden; }
.bc-hero .bc-btn-lg::after {
  content: ""; position: absolute; top: 0; left: -130%;
  width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); transition: left .6s ease;
}
.bc-hero .bc-btn-lg:hover::after { left: 150%; }
.bc-hero .bc-btn-lg:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 16px 36px -8px rgba(95,154,34,1), 0 0 0 4px rgba(123,190,60,.28);
}

/* Generic button shine on hover (header/bonus) */
.bc-btn-gold:hover, .bc-btn-green:hover { filter: brightness(1.07); }
.bc-vip { transition: filter .15s, transform .15s; }
.bc-vip:hover { filter: brightness(1.12); transform: translateY(-1px); }

/* Card / tile hover lift */
.bc-step, .bc-feature, .bc-rung, .bc-faq-item, .bc-pc { transition: transform .18s ease, box-shadow .25s ease; }
.bc-step:hover, .bc-feature:hover, .bc-rung:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px -14px rgba(50,35,15,.5);
}
.bc-faq-item:hover { box-shadow: 0 10px 26px -14px rgba(50,35,15,.45); }
.bc-table tbody tr { transition: background-color .15s ease; }

/* Scroll reveal — varied fragments (content visible without JS) */
.js [data-animate] { opacity: 0; transition: opacity .6s ease, transform .7s cubic-bezier(.2,.75,.2,1); transition-delay: var(--d, 0s); }
.js [data-animate="up"]    { transform: translateY(30px); }
.js [data-animate="pop"]   { transform: translateY(22px) scale(.9); }
.js [data-animate="left"]  { transform: translateX(-48px); }
.js [data-animate="right"] { transform: translateX(48px); }
.js [data-animate="zoom"]  { transform: scale(.85); }
.js [data-animate].bc-in   { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js [data-animate] { opacity: 1 !important; transform: none !important; transition: none; }
  .bc-hero-amount, .bc-wheel-launcher, .bc-wheel-launcher-disc, .bc-wheel-launcher-pulse { animation: none !important; }
  .bc-hero .bc-btn-lg::after { display: none; }
}

/* =========================================================================
   POLISH: hero->trim fade, section-title accent, language flags + dropdown
   ========================================================================= */

/* Smooth video -> content transition (dark vignette at hero bottom) */
.bc-hero-fade {
  position: absolute; left: 0; right: 0; bottom: 0; height: 96px; z-index: 1;
  background: linear-gradient(to bottom, rgba(20,12,6,0) 0%, rgba(20,12,6,.5) 70%, rgba(20,12,6,.72) 100%);
  pointer-events: none;
}
/* lift the scalloped trim up onto the hero bottom for a soft transition */
.bc-hero + .bc-wave { margin-top: -22px; }
/* seamless two-color footer divider: scalloped on BOTH edges so neither the
   cream/orange nor the orange/dark boundary is a straight line.
   .bc-foot-top = wave--up sitting in the cream (cream shows in the notches);
   .bc-foot-bot = wave sitting in the dark footer (dark shows in the notches);
   their solid orange bars overlap into one continuous band. */
.bc-foot-top { margin-top: -34px; margin-bottom: -9px; }
.bc-footer > .bc-foot-bot { margin-top: 0; }
/* seat the scallop just under inner-page title banners (payments/bonuses/legal) */
.bc-pagehero + .bc-wave { margin-top: -20px; }

/* Section-title accent underline */
.bc-h2 { position: relative; }
.bc-h2::after {
  content: ""; display: block; width: 56px; height: 4px; margin-top: 9px;
  background: linear-gradient(90deg, var(--bc-gold), var(--bc-red));
  border-radius: 3px;
}

/* Language selector: flag + dropdown */
.bc-lang { position: relative; gap: 6px; }
.bc-lang-cur { display: inline-flex; align-items: center; gap: 6px; }
.bc-lang-flag { width: 21px; height: 14px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.3); object-fit: cover; display: block; }
.bc-lang-caret { transition: transform .2s; }
.bc-lang.open .bc-lang-caret { transform: rotate(180deg); }
.bc-lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; z-index: 260;
  background: var(--bc-header); border: 1px solid #5a4227; border-radius: 12px;
  box-shadow: 0 16px 34px rgba(0,0,0,.45); padding: 7px; min-width: 196px;
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s, transform .18s, visibility .18s;
  max-height: 62vh; overflow-y: auto;
}
.bc-lang.open .bc-lang-menu { opacity: 1; visibility: visible; transform: none; }
.bc-lang-menu a {
  display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 8px;
  color: #e9dfc6; font-size: .88rem; white-space: nowrap;
}
.bc-lang-menu a:hover { background: rgba(255,255,255,.08); color: #fff; }
.bc-lang-menu a.is-active { background: rgba(242,169,0,.18); color: var(--bc-gold-2); font-weight: 600; }
.bc-lang-menu img { width: 22px; height: 15px; border-radius: 2px; box-shadow: 0 0 0 1px rgba(255,255,255,.2); flex: 0 0 auto; }

/* Bonus package graphic (official artwork) */
.bc-bonus-graphic { display: block; width: 100%; max-width: 800px; height: auto; margin: 0 auto 8px; }
.bc-bonus-link {
  display: block; width: 100%; max-width: 800px; margin: 0 auto 8px;
  cursor: pointer; border-radius: 14px;
  transition: transform .25s ease, filter .25s ease;
}
.bc-bonus-link .bc-bonus-graphic { margin: 0; }
.bc-bonus-link:hover { transform: translateY(-4px) scale(1.02); filter: drop-shadow(0 12px 24px rgba(0,0,0,.28)); }
.bc-bonus-link:active { transform: translateY(-1px) scale(1.005); }
@media (prefers-reduced-motion: reduce) { .bc-bonus-link { transition: none; } .bc-bonus-link:hover { transform: none; } }

/* Reviewer meta with Bob avatar */
.bc-meta--author { display: flex; align-items: center; gap: 14px; }
.bc-meta-av { width: 54px; height: 54px; border-radius: 50%; flex: 0 0 auto; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.2); object-fit: cover; }

/* =========================================================================
   PAGE TITLE (payments/inner pages), PROMO CARDS, VIP TILES, PAY TABLE
   ========================================================================= */
.bc-page-head { text-align: center; padding: 44px 20px 6px; }
.bc-page-head h1 {
  font-family: var(--bc-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 2.8rem); color: var(--bc-brown); margin: 0;
}
.bc-page-head h1::after {
  content: ""; display: block; width: 150px; height: 10px; margin: 12px auto 0;
  background: url(../img/squiggle.svg) repeat-x center / 60px 10px;
}
.bc-page-head p { max-width: 760px; margin: 12px auto 0; color: var(--bc-muted); }

/* Dark page hero (inner pages) */
.bc-pagehero {
  position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(130% 150% at 50% -25%, #5c4028 0%, #2a1c11 68%, #1d130a 100%);
  color: #fff; padding: 48px 20px 44px;
}
.bc-pagehero::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: url(../img/pattern.svg); background-size: 130px 130px;
  mix-blend-mode: overlay; pointer-events: none;
}
.bc-pagehero > * { position: relative; z-index: 1; }
.bc-pagehero-title {
  font-family: var(--bc-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2rem, 5.2vw, 3rem); color: var(--bc-gold-2); margin: 0;
  text-shadow: 0 3px 0 #7a5211, 0 6px 18px rgba(0,0,0,.5);
}
.bc-pagehero-title::after {
  content: ""; display: block; width: 160px; height: 10px; margin: 14px auto 0;
  background: url(../img/squiggle.svg) repeat-x center / 60px 10px;
}
.bc-pagehero-sub { max-width: 780px; margin: 12px auto 0; color: #e9dcc0; }

/* "last updated" freshness line */
.bc-updated { text-align: center; font-size: .85rem; color: var(--bc-muted); margin: 2px 0 0; }

/* Lightning icon for section headers */
.bc-flash { display: inline-flex; vertical-align: -0.12em; margin-right: 8px; color: var(--bc-gold); }
.bc-flash svg { width: 1.05em; height: 1.05em; }

/* Promo cards (bonus page) */
.bc-promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin: 26px 0; }
.bc-promo-card {
  background: var(--bc-card); border: 1px solid var(--bc-card-bd);
  border-radius: 16px; overflow: hidden; box-shadow: var(--bc-shadow);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .25s ease;
}
.bc-promo-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -16px rgba(50,35,15,.5); }
.bc-promo-head { padding: 22px 20px; text-align: center; color: #3a2812; }
.bc-promo-head--gold { background: linear-gradient(135deg, #ffdd6b, #f2a900); }
.bc-promo-head--green { background: linear-gradient(135deg, #a4dd5a, var(--bc-green-2)); color: #123; }
.bc-promo-head--red { background: linear-gradient(135deg, #ff8a5c, var(--bc-red)); color: #fff; }
.bc-promo-amount { font-family: var(--bc-display); font-weight: 900; font-size: 1.9rem; line-height: 1.04; }
.bc-promo-amount small { display: block; font-size: .95rem; font-weight: 800; margin-top: 4px; }
.bc-promo-body { padding: 18px 20px; flex: 1; }
.bc-promo-body h3 { margin: 0 0 8px; font-family: var(--bc-display); color: var(--bc-brown); font-size: 1.1rem; }
.bc-promo-body p { margin: 0 0 10px; font-size: .92rem; color: var(--bc-muted); }
.bc-promo-code { font-weight: 700; color: var(--bc-brown); font-size: .92rem; }
.bc-promo-code b { color: var(--bc-green-2); }
.bc-promo-foot { display: flex; align-items: center; gap: 16px; padding: 14px 20px; background: #faf6ea; border-top: 1px solid var(--bc-line); }
.bc-promo-terms { font-size: .82rem; color: var(--bc-muted); text-decoration: underline; }
.bc-promo-terms:hover { color: var(--bc-brown); }

/* VIP benefit tiles */
.bc-vip-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 13px; margin: 20px 0; }
.bc-vip-tile {
  background: var(--bc-card); border: 1px solid var(--bc-card-bd);
  border-left: 4px solid var(--bc-gold); border-radius: 12px; padding: 15px 16px;
  font-weight: 600; color: var(--bc-brown); box-shadow: var(--bc-shadow-sm);
  display: flex; align-items: center; gap: 10px; transition: transform .18s ease, box-shadow .25s ease;
}
.bc-vip-tile:hover { transform: translateY(-3px); box-shadow: 0 14px 28px -14px rgba(50,35,15,.45); }
.bc-vip-tile::before { content: "★"; color: var(--bc-gold); font-size: 1.05rem; flex: 0 0 auto; }

/* Payments table: sign-up button cell */
.bc-pay-method { font-weight: 800; color: var(--bc-brown); white-space: nowrap; }
.bc-table .bc-btn { padding: 9px 22px; font-size: .82rem; }
.bc-table td.bc-pay-cta { text-align: right; white-space: nowrap; }

@media (max-width: 760px) {
  .bc-promo-grid { grid-template-columns: 1fr; }
}
