/* ═══════════════════════════════════════════════
   Buffalo Chief Slot Review — Custom Styles
   Bootstrap 5 override + site-specific rules
   ═══════════════════════════════════════════════ */

/* ── Custom Properties ── */
:root {
  --bc-primary: #300c46;
  --bc-primary-rgb: 48, 12, 70;
  --bc-primary-light: #4a1a6b;
  --bc-secondary: #ffe000;
  --bc-secondary-rgb: 255, 224, 0;
  --bc-hover: #2d2e83;
  --bc-hover-rgb: 45, 46, 131;
  --bc-bg: #ffffff;
  --bc-bg-alt: #f8f5fc;
  --bc-text: #2c2c2c;
  --bc-text-muted: #6b6b7b;
  --bc-border: #e8e4ee;
  --bc-nav-gradient: linear-gradient(90deg, #300c46 0%, #2d2e83 100%);
  --bc-gold-gradient: linear-gradient(135deg, #ffe000 0%, #ffb800 100%);
  --bc-shadow-sm: 0 2px 8px rgba(var(--bc-primary-rgb), 0.08);
  --bc-shadow-md: 0 4px 20px rgba(var(--bc-primary-rgb), 0.12);
  --bc-shadow-lg: 0 8px 40px rgba(var(--bc-primary-rgb), 0.18);
  --bc-radius: 12px;
  --bc-radius-lg: 20px;
  --bc-font-display: 'DM Serif Display', Georgia, serif;
  --bc-font-brand: 'Rye', serif;
  --bc-font-body: 'Outfit', system-ui, sans-serif;
}

/* ── Bootstrap Variable Overrides ── */
:root {
  --bs-primary: #300c46;
  --bs-secondary: #ffe000;
  --bs-body-color: #2c2c2c;
  --bs-body-bg: #ffffff;
  --bs-font-sans-serif: 'Outfit', system-ui, sans-serif;
  --bs-link-color: #300c46;
  --bs-link-hover-color: #2d2e83;
}

/* ── Base ── */
body {
  font-family: var(--bc-font-body);
  color: var(--bc-text);
  background: var(--bc-bg);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--bc-font-display);
  color: var(--bc-primary);
}

a {
  color: var(--bc-primary);
  transition: color 0.2s;
}
a:hover { color: var(--bc-hover); }

/* ── Navbar ── */
.navbar-bc {
  background: var(--bc-nav-gradient);
  padding: .8rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  position: sticky;
  top: 0;
  z-index: 1050;
}
.navbar-bc .navbar-brand {
  font-family: var(--bc-font-brand);
  color: #fff !important;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.navbar-bc .navbar-brand span { color: var(--bc-secondary); }
.navbar-bc .nav-link {
  color: rgba(255,255,255,.85) !important;
  font-weight: 500;
  font-size: .9rem;
  transition: color .2s;
  letter-spacing: .3px;
}
.navbar-bc .nav-link:hover,
.navbar-bc .nav-link.active { color: var(--bc-secondary) !important; }

/* ── Hero ── */
.hero {
  background: var(--bc-nav-gradient);
  position: relative;
  overflow: hidden;
  padding: 4.5rem 0 3.5rem;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(var(--bc-secondary-rgb),.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(var(--bc-hover-rgb),.4) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--bc-bg);
  clip-path: polygon(0 100%, 100% 100%, 100% 0, 50% 100%, 0 0);
}
.hero h1 {
  color: #fff;
  font-family: var(--bc-font-brand);
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.15;
  text-shadow: 0 2px 30px rgba(0,0,0,.3);
  position: relative;
  z-index: 1;
}
.hero .tagline {
  color: rgba(255,255,255,.9);
  font-size: 1.1rem;
  margin-top: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}
.hero-updated {
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ── Buttons ── */
.btn-gold {
  background: var(--bc-secondary);
  color: var(--bc-primary);
  border: none;
  font-weight: 700;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  letter-spacing: .3px;
  transition: all .25s ease;
  box-shadow: 0 4px 15px rgba(var(--bc-secondary-rgb),.35);
}
.btn-gold:hover {
  background: #ffd000;
  color: var(--bc-primary);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(var(--bc-secondary-rgb),.45);
}
.btn-outline-light-c {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  font-weight: 600;
  padding: .85rem 2rem;
  border-radius: 50px;
  font-size: 1rem;
  transition: all .25s ease;
}
.btn-outline-light-c:hover {
  border-color: var(--bc-secondary);
  color: var(--bc-secondary);
  background: rgba(var(--bc-secondary-rgb),.08);
}
.btn-purple {
  background: var(--bc-primary);
  color: #fff;
  border: none;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: 50px;
  transition: all .25s ease;
}
.btn-purple:hover {
  background: var(--bc-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--bc-shadow-md);
}
.btn-gold-sm {
  background: var(--bc-secondary);
  color: var(--bc-primary);
  border: none;
  font-weight: 700;
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-size: .85rem;
  transition: all .25s ease;
}
.btn-gold-sm:hover {
  background: #ffd000;
  color: var(--bc-primary);
  transform: translateY(-1px);
}


/* ── TOC Sidebar ── */
.toc-sidebar {
  position: sticky;
  top: 80px;
  background: var(--bc-bg);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 1.5rem;
  box-shadow: var(--bc-shadow-sm);
}
.toc-sidebar h6 {
  font-family: var(--bc-font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: .72rem;
  color: var(--bc-text-muted);
  margin-bottom: 1rem;
}
.toc-sidebar ul { list-style: none; padding: 0; margin: 0; }
.toc-sidebar li { margin-bottom: .55rem; }
.toc-sidebar a {
  color: var(--bc-text-muted);
  text-decoration: none;
  font-size: .86rem;
  line-height: 1.4;
  display: block;
  padding: .25rem 0 .25rem .75rem;
  border-left: 2px solid transparent;
  transition: all .2s;
}
.toc-sidebar a:hover,
.toc-sidebar a.active {
  color: var(--bc-primary);
  border-left-color: var(--bc-secondary);
}
.toc-sidebar .toc-h3 a {
  font-size: .82rem;
  padding-left: 1.4rem;
}

/* ── Section Helpers ── */
.section-block {
  padding: 3.5rem 0;
}
.section-block + .section-block {
  border-top: 1px solid var(--bc-border);
}
.section-block.alt-bg { background: var(--bc-bg-alt); }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: .5rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--bc-secondary);
  margin-top: .75rem;
  border-radius: 2px;
}
.section-subtitle {
  color: var(--bc-text-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.subsection-title {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

/* ── Card Styles ── */
.feature-card {
  background: var(--bc-bg);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all .3s ease;
  box-shadow: var(--bc-shadow-sm);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bc-shadow-lg);
  border-color: rgba(var(--bc-primary-rgb),.15);
}
.feature-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(var(--bc-primary-rgb),.08), rgba(var(--bc-secondary-rgb),.12));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--bc-primary);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: .75rem; }
.feature-card p {
  color: var(--bc-text-muted);
  font-size: .93rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

/* ── Play Card ── */
.play-card {
  background: var(--bc-bg);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  box-shadow: var(--bc-shadow-sm);
}
.play-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bc-shadow-lg);
}
.play-card-header {
  padding: 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(var(--bc-primary-rgb),.04), rgba(var(--bc-secondary-rgb),.06));
  border-bottom: 1px solid var(--bc-border);
}
.play-card-body { padding: 1.5rem; }

/* ── Symbol Card ── */
.symbol-card {
  background: var(--bc-bg);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 1.25rem;
  text-align: center;
  transition: all .25s ease;
}
.symbol-card:hover {
  border-color: var(--bc-secondary);
  box-shadow: 0 4px 15px rgba(var(--bc-secondary-rgb),.15);
}
.symbol-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto .75rem;
  background: linear-gradient(135deg, rgba(var(--bc-primary-rgb),.06), rgba(var(--bc-secondary-rgb),.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}
.symbol-card h5 { font-size: .95rem; margin-bottom: .3rem; }
.symbol-card .payout { font-size: .82rem; color: var(--bc-text-muted); }

/* ── Stat Item ── */
.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--bc-radius);
  background: linear-gradient(135deg, rgba(var(--bc-primary-rgb),.04), rgba(var(--bc-secondary-rgb),.06));
  border: 1px solid var(--bc-border);
}
.stat-item .stat-value {
  font-family: var(--bc-font-display);
  font-size: 1.8rem;
  color: var(--bc-primary);
  line-height: 1.1;
}
.stat-item .stat-label {
  font-size: .78rem;
  color: var(--bc-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: .3rem;
}

/* ── RTP Gauge ── */
.rtp-gauge {
  background: #f0ecf4;
  border-radius: 999px;
  height: 28px;
  position: relative;
  overflow: hidden;
}
.rtp-gauge-fill {
  background: var(--bc-gold-gradient);
  height: 100%;
  border-radius: 999px;
  position: relative;
}
.rtp-gauge-fill::after {
  content: attr(data-value);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: .85rem;
  color: var(--bc-primary);
}

/* ── Version Card ── */
.version-card {
  background: var(--bc-bg);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  overflow: hidden;
  transition: all .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.version-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--bc-shadow-lg);
}
.version-card-img {
  background: var(--bc-nav-gradient);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.version-card-img .icon-placeholder {
  font-size: 3rem;
  color: rgba(255,255,255,.9);
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.version-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.version-badge.premium { background: var(--bc-secondary); color: var(--bc-primary); }
.version-badge.high-vol { background: #ff4d4d; color: #fff; }
.version-badge.original { background: rgba(255,255,255,.15); color: #fff; }
.version-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.version-card-body p {
  color: var(--bc-text-muted);
  font-size: .92rem;
  line-height: 1.6;
  flex: 1;
}

/* ── Steps ── */
/* ── Step Items ── */
.step-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1rem;
  padding: 1.15rem 1.25rem;
  background: var(--bc-bg);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.step-item:hover {
  border-color: rgba(48,12,70,.25);
  box-shadow: 0 2px 12px rgba(48,12,70,.06);
}
.step-item:last-child { margin-bottom: 0; }
.step-number {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--bc-nav-gradient);
  color: var(--bc-secondary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.step-content h4 { font-size: 1.05rem; margin-bottom: .3rem; color: var(--bc-primary); }
.step-content p { color: var(--bc-text-muted); font-size: .9rem; line-height: 1.65; margin-bottom: 0; }

/* Rules box — left accent column on desktop */
@media (min-width: 992px) {
  .rules-box { position: sticky; top: 2rem; }
}

/* ── Rules Box ── */
.rules-box {
  background: linear-gradient(135deg, rgba(48,12,70,.04), rgba(45,46,131,.06));
  border: 1px solid var(--bc-border);
  border-left: 4px solid var(--bc-secondary);
  border-radius: var(--bc-radius-lg);
  padding: 1.75rem;
}
.rules-box ul { list-style: none; padding: 0; margin-top: .75rem; }
.rules-box li {
  padding: .65rem 0 .65rem 1.75rem;
  position: relative;
  color: var(--bc-text-muted);
  font-size: .9rem;
  line-height: 1.6;
  border-top: 1px solid rgba(0,0,0,.06);
}
.rules-box li:first-child { border-top: none; }
.rules-box li::before {
  content: '';
  position: absolute;
  left: .2rem;
  top: .5rem;
  width: 18px;
  height: 18px;
  background: var(--bc-nav-gradient);
  border-radius: 5px;
  opacity: .15;
}
.rules-box li::after {
  content: '';
  position: absolute;
  left: .45rem;
  top: .55rem;
  width: 8px;
  height: 8px;
  background: var(--bc-secondary);
  border-radius: 2px;
  transform: rotate(45deg);
}

/* ── Flow Steps ── */
.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding: 1.5rem 1rem;
  background: linear-gradient(135deg, rgba(48,12,70,.03), rgba(45,46,131,.05));
  border-radius: var(--bc-radius-lg);
  border: 1px solid var(--bc-border);
}
.flow-step {
  background: var(--bc-nav-gradient);
  color: #fff;
  padding: .55rem 1.2rem;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: .02em;
  transition: transform .2s ease, box-shadow .2s ease;
}
.flow-step:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(48,12,70,.2);
}
.flow-arrow { color: var(--bc-secondary); font-size: 1.2rem; margin: 0 .1rem; }

/* ── Accordion ── */
.accordion-bc .accordion-item {
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius) !important;
  margin-bottom: .75rem;
  overflow: hidden;
}
.accordion-bc .accordion-button {
  font-family: var(--bc-font-display);
  font-size: 1rem;
  color: var(--bc-primary);
  background: var(--bc-bg);
  padding: 1.2rem 1.5rem;
  box-shadow: none;
}
.accordion-bc .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, rgba(var(--bc-primary-rgb),.04), rgba(var(--bc-secondary-rgb),.06));
  color: var(--bc-primary);
}
.accordion-bc .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23300c46' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
}
.accordion-bc .accordion-body {
  color: var(--bc-text-muted);
  font-size: .93rem;
  line-height: 1.7;
  padding: 0 1.5rem 1.25rem;
}

/* ── Jackpot Box ── */
.jackpot-box {
  background: var(--bc-nav-gradient);
  border-radius: var(--bc-radius-lg);
  padding: 2.5rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.jackpot-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 30%, rgba(var(--bc-secondary-rgb),.15), transparent 60%);
}
.jackpot-box .jackpot-amount {
  font-family: var(--bc-font-brand);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--bc-secondary);
  text-shadow: 0 2px 20px rgba(var(--bc-secondary-rgb),.4);
  position: relative;
  z-index: 1;
}
.jackpot-box .jackpot-label {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  margin-bottom: .5rem;
  position: relative;
  z-index: 1;
}
.jackpot-box p {
  color: rgba(255,255,255,.85);
  position: relative;
  z-index: 1;
}

/* ── Casino Item ── */
.casino-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6rem 0;
  border-bottom: 1px solid var(--bc-border);
}
.casino-item:last-child { border-bottom: none; }
.casino-logo {
  width: 80px;
  height: 40px;
  background: var(--bc-bg-alt);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--bc-primary);
  letter-spacing: .5px;
  flex-shrink: 0;
}
.casino-bonus { font-size: .82rem; color: var(--bc-text-muted); }
.casino-bonus strong { color: var(--bc-primary); }

/* ── Comparison Table ── */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--bc-radius);
  overflow: hidden;
  border: 1px solid var(--bc-border);
}
.comparison-table th {
  background: var(--bc-primary);
  color: #fff;
  font-family: var(--bc-font-body);
  font-weight: 600;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 1rem;
}
.comparison-table td {
  padding: .85rem 1rem;
  font-size: .9rem;
  border-bottom: 1px solid var(--bc-border);
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: rgba(var(--bc-primary-rgb),.02); }

/* ── Internal Links ── */
.internal-links {
  background: var(--bc-bg-alt);
  border-radius: var(--bc-radius-lg);
  padding: 2rem;
  border: 1px solid var(--bc-border);
}
.internal-links a {
  display: block;
  padding: .7rem 0;
  color: var(--bc-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--bc-border);
  transition: all .2s;
  font-weight: 500;
}
.internal-links a:last-child { border-bottom: none; }
.internal-links a:hover { color: var(--bc-hover); padding-left: .5rem; }

/* ── Trust Badges ── */
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .82rem;
  color: var(--bc-text-muted);
}
.trust-badge i { color: var(--bc-secondary); font-size: 1.1rem; }

/* ── Footer ── */
.footer-bc {
  background: var(--bc-nav-gradient);
  color: rgba(255,255,255,.7);
  padding: 3rem 0 1.5rem;
  margin-bottom: 56px; /* room for sticky CTA */
}
.footer-bc h5 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.footer-bc a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.footer-bc a:hover { color: var(--bc-secondary); }
.footer-bc hr { border-color: rgba(255,255,255,.1); }

/* ── Sticky CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--bc-border);
  padding: .65rem 0;
  box-shadow: 0 -2px 20px rgba(var(--bc-primary-rgb),.1);
}

/* ── Badge Tag ── */
.badge-tag {
  font-size: .7rem;
  padding: .3rem .75rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-tag-purple { background: var(--bc-primary); color: #fff; }
.badge-tag-gold { background: var(--bc-secondary); color: var(--bc-primary); }

/* ── Feature Highlight Card ── */
.highlight-card {
  background: var(--bc-bg);
  border: 1px solid var(--bc-border);
  border-left: 4px solid var(--bc-secondary);
  border-radius: var(--bc-radius);
  padding: 1.5rem;
}

/* ── Tip Card ── */
.tip-card {
  background: var(--bc-bg);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all .3s ease;
}
.tip-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--bc-shadow-md);
}
.tip-number {
  width: 40px;
  height: 40px;
  background: var(--bc-nav-gradient);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--bc-font-display);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
}

/* ── Risk Level Badges ── */
.risk-low { background: #e6f7e6; color: #2d7a2d; }
.risk-medium { background: #fff8e1; color: #a67c00; }
.risk-high { background: #fce4e4; color: #c0392b; }

/* ── Video Thumbnail Grid ── */
.video-thumb {
  border-radius: var(--bc-radius);
  overflow: hidden;
  position: relative;
  background: #1a1a2e;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s ease;
  cursor: pointer;
}
.video-thumb:hover { transform: scale(1.02); }
.video-thumb .play-overlay {
  position: absolute;
  width: 56px;
  height: 56px;
  background: rgba(var(--bc-primary-rgb),.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bc-secondary);
  font-size: 1.4rem;
  z-index: 2;
}

/* ── Reddit Quote Card ── */
.reddit-card {
  background: var(--bc-bg);
  border: 1px solid var(--bc-border);
  border-radius: var(--bc-radius);
  padding: 1.25rem;
  border-left: 3px solid #ff4500;
}

/* ── Responsive ── */
@media (max-width: 767.98px) {
  .hero { padding: 2.5rem 0 2rem; }
  .section-block { padding: 2.5rem 0; }
  .toc-sidebar { display: none; }
  .flow-steps { gap: .3rem; }
  .flow-step { font-size: .75rem; padding: .5rem .8rem; }
  .jackpot-box { padding: 1.75rem; }
  .hero-slot-overlay { min-height: 280px; }
}

/* ── Hero Slot Demo Container ── */
.hero-slot-container {
  position: relative;
  border-radius: var(--bc-radius);
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.hero-slot-overlay {
  position: relative;
  width: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bc-radius);
  cursor: pointer;
  overflow: hidden;
}

.hero-slot-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(48,12,70,.4), transparent 70%);
  pointer-events: none;
}

.hero-slot-overlay-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
}

.hero-slot-overlay:hover .hero-slot-play-content .btn-gold {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(var(--bc-secondary-rgb),.45);
}

.hero-slot-play-content .btn-gold {
  transition: all .25s ease;
}

/* Fullscreen button — always visible above everything */
.hero-slot-fullscreen-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 20;
  background: rgba(0,0,0,.6);
  border: none;
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s, opacity .2s;
  font-size: 1rem;
}

.hero-slot-fullscreen-btn:hover {
  background: rgba(0,0,0,.85);
}

/* Hide fullscreen button until game is loaded */
.hero-slot-container:not(.game-loaded) .hero-slot-fullscreen-btn {
  opacity: 0;
  pointer-events: none;
}

/* Native browser fullscreen styling */
.hero-slot-container:fullscreen {
  background: #000;
  border-radius: 0;
}

.hero-slot-container:fullscreen #HeroSlotCanvas {
  height: 100vh;
}

.hero-slot-container:fullscreen .hero-slot-overlay {
  display: none;
}

.hero-slot-container:fullscreen .hero-slot-fullscreen-btn {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  background: rgba(0,0,0,.85);
  z-index: 2147483647;
}

/* Webkit fullscreen */
.hero-slot-container:-webkit-full-screen {
  background: #000;
  border-radius: 0;
}

.hero-slot-container:-webkit-full-screen #HeroSlotCanvas {
  height: 100vh;
}

.hero-slot-container:-webkit-full-screen .hero-slot-overlay {
  display: none;
}

.hero-slot-container:-webkit-full-screen .hero-slot-fullscreen-btn {
  position: fixed;
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  background: rgba(0,0,0,.85);
  z-index: 2147483647;
}

/* Iframe inside game container */
#HeroSlotCanvas iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 767.98px) {
  .hero-slot-overlay { min-height: 280px; }
}

@media (max-width: 991.98px) {
  .toc-sidebar { position: static; margin-bottom: 1.5rem; }
}

@media (min-width: 992px) {
  .toc-sidebar { position: sticky; top: 80px; }
}