/** Shopify CDN: Minification failed

Line 126:16 Expected identifier but found whitespace
Line 126:23 Unexpected ";"
Line 329:8 Unexpected "{"
Line 329:17 Expected ":"
Line 337:8 Unexpected "{"
Line 337:17 Expected ":"
Line 341:8 Unexpected "{"
Line 341:17 Expected ":"
Line 349:8 Unexpected "{"
Line 349:17 Expected ":"
... and 57 more hidden warnings

**/
/*************************************************************
 * BC Rapid Ticket Selector v6 — Clean Transparent Cell Build
 * -----------------------------------------------------------
 * - Schema-controlled symbol size (mobile + desktop)
 * - Transparent reels (fintech aesthetic)
 * - Clean unified namespace
 * - No bevels or background tiles
 * - Paylines, audio, summary FX preserved
 *************************************************************/

/* -----------------------------------------------------------
   ROOT + TOKENS
----------------------------------------------------------- */
.bc-rt {
  --bc-rt-radius-card: 20px;
  --bc-rt-radius-hero: 18px;

  --bc-rt-shadow-card: 0 18px 42px rgba(15, 23, 42, 0.9);

  --bc-rt-color-bg: #020617;
  --bc-rt-color-surface: #020617;
  --bc-rt-color-text: #e5e7eb;
  --bc-rt-color-muted: #9ca3af;
  --bc-rt-color-soft: #cbd5f5;

  --bc-rt-color-accent: #3b82f6;
  --bc-rt-color-success: #22c55e;

  /* schema-driven sizes */
  --bc-rt-symbol-size-desktop: var(--bc-rt-symbol-size-desktop-var, 100px);
  --bc-rt-symbol-size-mobile: var(--bc-rt-symbol-size-mobile-var, 72px);

  /* runtime-resolved working size */
  --bc-rt-symbol-size: var(--bc-rt-symbol-size-desktop);
}

@media (max-width: 749px) {
  .bc-rt {
    --bc-rt-symbol-size: var(--bc-rt-symbol-size-mobile);
  }
}

.bc-rt__hero-inner {
  text-shadow: -1px 1px 3px #000000d4;
}

/* Hide excludes panel unless the Manual tab is active */
.bc-rt__excludes {
  display: none;
}

/* When the Manual tab is selected, show the excludes panel */
.bc-rt__left:has(.bc-rt__tab[data-bc-rt-mode-tab="manual"].is-active) .bc-rt__excludes {
  display: block;
}


.bc-rt__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.bc-rt__layout_upper {
  background: radial-gradient(circle at 0 0, #020617, #020617 40%, #000 100%);
  border-radius: var(--bc-rt-radius-card);
  border: 1px solid var(--bc-rt-color-border-soft);
  box-shadow: var(--bc-rt-shadow-card);
  box-sizing: border-box;

  /* Slot symbol sizes – keep names consistent with the section inline vars */
  --bc-rt-symbol-size-desktop: 74px;
  --bc-rt-symbol-size-mobile: 62px;

  max-width: 1200px;
  margin: 11px auto;
  padding: 10px 2px 20px;
}

/* Reset block elements – this is fine as-is */
article,
aside,
details,
div,
dt,
figcaption,
footer,
form,
header,
hgroup,
html,
main,
nav,
search,
section,
summary {
  display: block;
}

/* -----------------------------------------------------------
   HERO
----------------------------------------------------------- */
.bc-rt__hero {
  position: relative;
  border-radius: var(--bc-rt-radius-hero);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
ground-position: center;
}

.bc-rt__hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: var(--bc-rt-hero-overlay-strength, 0.5);
}

/* -----------------------------------------------------------
   HEADER
----------------------------------------------------------- */
.bc-rt__header { margin-bottom: 12px; }
.bc-rt__heading { font-size: 22px; font-weight: 700; color: #f9fafb; }
.bc-rt__subheading { color: var(--bc-rt-color-soft); }

/* -----------------------------------------------------------
   GRID LAYOUT
----------------------------------------------------------- */
.bc-rt__layout {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(0,1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .bc-rt__layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* -----------------------------------------------------------
   AUDIO BAR
----------------------------------------------------------- */
.bc-rt__audio-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.bc-rt__audio-toggle {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,.7);
  background: rgba(15,23,42,.95);
  cursor: pointer;
}

/* -----------------------------------------------------------
   SLOT MACHINE — CLEAN TRANSPARENT MODE
----------------------------------------------------------- */

.bc-rt__slot {
  position: relative;
  padding: 12px;
  border-radius: 16px;
  background: rgba(15,23,42,0.98);
  border: 1px solid rgba(31,41,55,0.8);
  min-height: fit-content;
}

/* 3 reels */
.bc-rt__slot-reels {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
  position: relative;
  overflow: hidden;
}

.bc-rt__slot-reel {
  border-radius: 14px;
  padding: 4px;
  background: rgba(15,23,42,.3);
}

/* window = exactly 3 symbols high */
.bc-rt__slot-reel-window {
  position: relative;
  overflow: hidden;
  height: calc(var(--bc-rt-symbol-size) * 3);
  border-radius: 12px;
}

/* vertical track */
.bc-rt__slot-track {
  display: flex;
  flex-direction: column;
}

/* CLEAN TRANSPARENT CELLS */
.bc-rt__slot-cell {
  height: var(--bc-rt-symbol-size);
  display: flex;
  align-items: center;
  justify-content: center;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0;
  padding: 0;
}

/* symbols float cleanly */
.bc-rt__slot-symbol {
  max-height: 183%;
  max-width: 196% !important;
  object-fit: contain;
  display: block;
  margin: 18px;
  padding-top: 15px;
}

/* -----------------------------------------------------------
   PAYLINE OVERLAYS
----------------------------------------------------------- */
.bc-rt__slot-overlays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.bc-rt__line-overlay {
  position: absolute;
  opacity: 0;
  transition: opacity .16s ease;
}

.bc-rt__line-overlay.active { opacity: 1; }

.bc-rt__line-overlay.active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
     rgba(56,189,248,.05),
     rgba(56,189,248,.6),
     rgba(56,189,248,.05)
  );
  border-radius: 999px;
  box-shadow: 0 0 14px rgba(56,189,248,.9);
}

/* top */
.bc-rt__line-1.active::before { top: 20%; }
/* middle */
.bc-rt__line-2.active::before { top: 50%; transform: translateY(-50%); }
/* bottom */
.bc-rt__line-3.active::before { bottom: 20%; }

/* diagonals & feature lines */
.bc-rt__line-4.active::before { transform: rotate(16deg); top: 20%; }
.bc-rt__line-5.active::before { transform: rotate(-16deg); bottom: 20%; }
.bc-rt__line-6.active::before { transform: rotate(6deg); top: 20%; }
.bc-rt__line-7.active::before { transform: rotate(-6deg); bottom: 20%; }
.bc-rt__line-8.active::before { transform: rotate(12deg); top: 50%; left: -6%; }
.bc-rt__line-9.active::before { transform: rotate(-12deg); top: 50%; left: -6%; }

/* -----------------------------------------------------------
   SLOT TOTAL
----------------------------------------------------------- */
.bc-rt__slot-total {
  display: flex;
  gap: 6px;
  margin: 10px 0 12px;
  align-items: baseline;
}

.bc-rt__slot-total-value {
  font-size: 16px;
  font-weight: 600;
  color: #f3f4f6;
}

.bc-rt__slot-total-value--glow {
  text-shadow: 0 0 12px rgba(96,165,250,.9);
}

/* -----------------------------------------------------------
   BUDGET CONTROLS
----------------------------------------------------------- */
.bc-rt__budget-row {
  display: flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(15,23,42,.9);
  border: 1px solid rgba(55,65,81,.9);
  padding: 6px 10px;
  max-width: 175px;
  max-height: 32px;
  margin-bottom: 15px;
  padding-bottom:6px;
}

/* Budget row — keep input inside the row, no overflow */
#bc-rt-{{ section.id }} .bc-rt__budget-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
}

#bc-rt-{{ section.id }} .bc-rt__currency {
  flex: 0 0 auto;
}

#bc-rt-{{ section.id }} .bc-rt__budget-input {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* When JS hides the field (dropdown mode) */
#bc-rt-{{ section.id }} .bc-rt__budget-input.is-hidden {
  display: none;
}

/* Keep the budget input inside the pill */
#bc-rt-{{ section.id }} .bc-rt__budget-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

#bc-rt-{{ section.id }} .bc-rt__budget-row *,
#bc-rt-{{ section.id }} .bc-rt__budget-input {
  box-sizing: border-box;
}

#bc-rt-{{ section.id }} .bc-rt__currency {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

/* Hammer the input back inside the row */
#bc-rt-{{ section.id }} .bc-rt__budget-input {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  float: none !important;
  margin: 0;
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0.1rem 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

/* When JS hides the field */
#bc-rt-{{ section.id }} .bc-rt__budget-input.is-hidden {
  display: none;
}

/* Mobile: field label → quick buttons → extras → input */
@media (max-width: 640px) {
  #bc-rt-{{ section.id }} .bc-rt__field-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  #bc-rt-{{ section.id }} .bc-rt__field-label {
    order: 1;
  }

  #bc-rt-{{ section.id }} .bc-rt__budget-quick {
    order: 2;
  }

  #bc-rt-{{ section.id }} .bc-rt__budget-extras {
    order: 3;
  }

  #bc-rt-{{ section.id }} .bc-rt__budget-row {
    order: 4;
    width: 100%;
  }

  #bc-rt-{{ section.id }} .bc-rt__budget-input {
    width: 100%;
  }
}



.bc-rt__budget-input {
  display: inline-block;
  min-width: 11px;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  background-image: linear-gradient(130deg, #1d4ed8, #3b82f6, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.16s ease, opacity 0.16s ease, filter 0.16s ease;
  font-weight: 800;
  color: #b3b3b3;
  border-radius: 25px;
}

.bc-rt__quick {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.bc-rt__quick button {
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(15,23,42,.9);
  border: 1px solid rgba(148,163,184,.7);
  color: #e5e7eb;
}

/* -----------------------------------------------------------
   SUMMARY
----------------------------------------------------------- */
.bc-rt__summary {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(15,23,42,.98);
  border: 1px solid rgba(31,41,55,.95);
}

.bc-rt__summary-empty {
  color: var(--bc-rt-color-muted);
}

/* flipboard entry */
.bc-rt__selection-item--flip {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .26s ease, transform .26s ease;
}
.bc-rt__selection-item--flip.is-entered {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------------------------
   MANUAL GRID PANEL
----------------------------------------------------------- */
[data-bc-rt-manual-panel]{ display:none; margin-top:14px; }
[data-bc-rt-manual-panel].is-active{ display:block; }

/* -----------------------------------------------------------
   CTA BUTTONS
----------------------------------------------------------- */
.bc-rt__spin-btn, .bc-rt__complete-btn {
  width: 100%;
  max-width: 260px;
  min-height: 44px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.bc-rt__spin-btn {
  background: #3b82f6;
  color: #fff;
}

.bc-rt__spin-btn:hover { filter: brightness(1.05); }

/* -----------------------------------------------------------
   RESPONSIVE
----------------------------------------------------------- */
@media (max-width:640px){
  .bc-rt__slot-total-value{ font-size:14px; }
  .bc-rt__slot-reel-window{
    height: calc(var(--bc-rt-symbol-size) * 3);
  }
}


/*************************************************************
 * BC Rapid Ticket Selector v2 (bc-rt.css)
 * -----------------------------------------------------------
 * - Dedicated styles for the Rapid Ticket Selector section.
 * - All selectors prefixed .bc-rt* to avoid clashes.
 * - Dark, fintech feel; mobile-first; ASA-safe, no “gamey”
 *   visuals beyond simple slot-style reels + digits.
 *************************************************************/

/* Root section + design tokens */

.bc-rt {
  --bc-rt-radius-card: 20px;
  --bc-rt-radius-hero: 18px;
  --bc-rt-shadow-card: 0 18px 42px rgba(15, 23, 42, 0.9);

  --bc-rt-color-bg: #020617;
  --bc-rt-color-surface: #020617;
  --bc-rt-color-surface-elevated: #020617;
  --bc-rt-color-border-soft: rgba(148, 163, 184, 0.45);
  --bc-rt-color-border-strong: rgba(148, 163, 184, 0.8);

  --bc-rt-color-text: #e5e7eb;
  --bc-rt-color-muted: #9ca3af;
  --bc-rt-color-soft: #cbd5f5;

  --bc-rt-color-accent: #3b82f6;
  --bc-rt-color-accent-soft: #60a5fa;
  --bc-rt-color-accent-strong: #1d4ed8;

  --bc-rt-color-success: #22c55e;
  --bc-rt-color-success-soft: #4ade80;

  margin: 32px 0 40px;
  color: var(--bc-rt-color-text);
}

.bc-rt__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px; /* mobile edge padding so it doesn’t hit the viewport edges */
}

:root {
  --bc-rt-symbol-size: 72px;
}

@media (max-width: 640px) {
  :root {
    --bc-rt-symbol-size: 58px;
  }
}


/* Payment icons in summary card */

.bc-rt__payment-icons {
  margin-top: 12px;
  width: 100%;
}

.bc-rt__payment-icons-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bc-rt__payment-icons-item {
  display: flex;
  align-items: center;
}

/* -----------------------------------------------------------
 * EMBEDDED HERO (inside left card)
 * ---------------------------------------------------------*/

.bc-rt__hero {
  position: relative;
  border-radius: var(--bc-rt-radius-hero);
  overflow: hidden;
  margin-bottom: 14px;
  min-height: 130px;
  background-color: #020617;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bc-rt__hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.bc-rt__hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.bc-rt__hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 14px;
  padding: 12px 14px;
  align-items: center;
}

.bc-rt__hero-copy {
  color: var(--bc-rt-color-text);
}

.bc-rt__hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bc-rt-color-muted);
  margin-bottom: 2px;
}

.bc-rt__hero-heading {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 3px;
}

.bc-rt__hero-subheading {
  font-size: 13px;
  color: var(--bc-rt-color-soft);
  margin-bottom: 4px;
}

.bc-rt__hero-body {
  font-size: 12px;
  color: #d1d5db;
}

.bc-rt__hero-media {
  overflow: hidden;
}

.bc-rt__hero-media video,
.bc-rt__hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

/* -----------------------------------------------------------
 * HEADER BLOCK (intro text inside left card)
 * ---------------------------------------------------------*/

.bc-rt__header {
  margin-bottom: 12px;
}

.bc-rt__header-text {
  max-width: 720px;
}

.bc-rt__kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bc-rt-color-muted);
  margin-bottom: 3px;
}

.bc-rt__heading {
  font-size: 22px;
  font-weight: 700;
  color: #f9fafb;
  margin: 0 0 4px;
}

.bc-rt__subheading {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--bc-rt-color-soft);
}

.bc-rt__steps {
  font-size: 12px;
  color: var(--bc-rt-color-muted);
}

.bc-rt__steps p {
  margin: 0 0 3px;
}

/* -----------------------------------------------------------
 * LAYOUT: LEFT (hero + controls) + RIGHT (slot + summary)
 * ---------------------------------------------------------*/

.bc-rt__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 24px;
  align-items: flex-start;
}

.bc-rt__left,
.bc-rt__right {
  background: radial-gradient(circle at 0 0, #020617, #020617 40%, #000 100%);
  border-radius: var(--bc-rt-radius-card);
  border: 1px solid var(--bc-rt-color-border-soft);
  box-shadow: var(--bc-rt-shadow-card);
  padding: 16px 16px 14px;
}

/* -----------------------------------------------------------
 * MODE TABS (Smart spin / Manual grid)
 * ---------------------------------------------------------*/

.bc-rt__tabs {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(148, 163, 184, 0.55);
  margin-bottom: 12px;
}

.bc-rt__tab {
  border: none;
  background: transparent;
  color: var(--bc-rt-color-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.16s ease,
    color 0.16s ease,
    transform 0.08s ease;
}

.bc-rt__tab.is-active {
  background: radial-gradient(circle at 0 0, #3b82f6, #0f172a);
  color: #f9fafb;
  transform: translateY(-1px);
}

.bc-rt__mode-panels {
  margin-bottom: 14px;
}

.bc-rt__mode-panel {
  display: none;
}

.bc-rt__mode-panel.is-active {
  display: block;
}

/* -----------------------------------------------------------
 * SLOT PANEL (summary card) – reels + digits
 * ---------------------------------------------------------*/

.bc-rt__slot {
  position: relative;          /* NEW: anchor overlays & reels */
  overflow: hidden;            /* NEW: clip anything that overflows */
  border-radius: 16px;
  padding: 10px 12px 12px;
  margin-bottom: 14px;
  background:
    radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 1)),
    linear-gradient(135deg, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.92));
  box-shadow:
    0 0 0 1px rgba(59, 130, 246, 0.9),
    0 16px 32px rgba(15, 23, 42, 0.95);
}

/* Make overlays (paylines) relative to the slot card only */
.bc-rt__slot {
  position: relative;
}


.bc-rt__slot-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 8px;
}

.bc-rt__slot-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bc-rt-color-muted);
}

.bc-rt__slot-copy {
  font-size: 11px;
  color: var(--bc-rt-color-soft);
  text-align: right;
}

/* Reels container */

.bc-rt__slot-reels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 8px;
}

.bc-rt__slot-reel {
  border-radius: 14px;
  background: radial-gradient(circle at 30% 0%, rgba(59, 130, 246, 0.55), rgba(15, 23, 42, 1));
  border: 1px solid rgba(129, 140, 248, 0.9);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.9),
    0 10px 22px rgba(15, 23, 42, 0.9);
  padding: 4px;
}

/* (Optional future 3×3 grid support – harmless if unused) */

.bc-rt__slot-reel-window {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 3.15rem; /* ~3 symbols; JS can snap to actual height */
}

.bc-rt__slot-reel-track {
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}

.bc-rt__slot-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.05rem;
  padding: 4px 0;
}

.bc-rt__audio-ui {
  margin-bottom: 6px;
}

.bc-rt__slot-symbol {
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(148, 163, 184, 0.8));
  transition: transform 0.18s ease, filter 0.18s ease;
}

.bc-rt--spinning .bc-rt__slot-symbol {
  animation: bc-rt-slot-symbol-bob 0.4s ease-in-out infinite;
}

@keyframes bc-rt-slot-symbol-bob {
  0% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
  100% { transform: translateY(0); }
}

/* Bounce when a reel settles (hook if JS adds the class) */

.bc-rt__slot-reel--settled .bc-rt__slot-reel-track {
  animation: bc-rt-slot-reel-bounce 260ms ease-out;
}

@keyframes bc-rt-slot-reel-bounce {
  0%   { transform: translateY(-1.05rem); }
  50%  { transform: translateY(-0.95rem); }
  100% { transform: translateY(-1.05rem); }
}

.bc-rt__slot-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--bc-rt-color-muted);
  margin-bottom: 4px;
}

/* Slot digits */

.bc-rt__slot-digits {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  padding: 6px 10px 8px;
  border-radius: 10px;
  background: radial-gradient(circle at 50% 0, #020617, #020617 45%, #000 100%);
  border: 1px solid rgba(96, 165, 250, 0.9);
}

.bc-rt__digit {
  display: inline-block;
  min-width: 10px;
  text-align: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  background-image: linear-gradient(130deg, #1d4ed8, #3b82f6, #93c5fd);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition: transform 0.16s ease, opacity 0.16s ease, filter 0.16s ease;
  font-weight: 800;
}

.bc-rt__digit--rolling {
  animation: bc-rt-digit-roll 0.9s ease-in-out;
  opacity: 0.95;
  filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.9));
}

.bc-rt--spinning .bc-rt__slot-digits {
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.95),
    0 0 22px rgba(96, 165, 250, 0.9),
    0 18px 40px rgba(15, 23, 42, 0.95);
}

@keyframes bc-rt-digit-roll {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
  80% {
    transform: translateY(2px);
  }
  100% {
    transform: translateY(0);
  }
}


/* Wrap select + input in the same pill row */
.bc-rt__budget-row {
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 6px 10px;
  max-width: 260px;
  position: relative;
}

/* Chevron indicator on the right when select is visible */
.bc-rt__budget-row[data-has-select="true"]::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(148, 163, 184, 0.9);
  transform: translateY(-50%);
  pointer-events: none;
}

/* Keep the numeric input hidden when dropdown is active (JS toggles display) */
.bc-rt__budget-input.is-hidden {
  display: none !important;
}

/* -----------------------------------------------------------
 * SMART SPIN MODE – BUDGET CONTROLS
 * ---------------------------------------------------------*/

/* Wrap select + input in the same pill row */
.bc-rt__budget-row {
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 6px 10px;
  max-width: 260px;
  position: relative;
}

/* Chevron indicator on the right when select is visible */
.bc-rt__budget-row[data-has-select="true"]::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid rgba(148, 163, 184, 0.9);
  transform: translateY(-50%);
  pointer-events: none;
}

/* Keep the numeric input hidden when dropdown is active (JS toggles display) */
.bc-rt__budget-input.is-hidden {
  display: none !important;
}

.bc-rt__field-group {
  margin-bottom: 12px;
}

.bc-rt__field-label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.bc-rt__field-min {
  font-size: 11px;
  font-weight: 400;
  color: var(--bc-rt-color-muted);
  margin-left: 8px;
}

.bc-rt__budget-row {
  display: flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(55, 65, 81, 0.9);
  padding: 6px 10px;
  max-width: 260px;
}

.bc-rt__currency {
  color: var(--bc-rt-color-muted);
  font-size: 14px;
  margin-right: 4px;
}

.bc-rt__budget-input {
  border: none;
  background: transparent;
  color: #f9fafb;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  outline: none;
  -moz-appearance: textfield;
}

.bc-rt__budget-input::-webkit-outer-spin-button,
.bc-rt__budget-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bc-rt__budget-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.bc-rt__budget-button {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 4px 10px;
  font-size: 12px;
  background: radial-gradient(
    circle at 0 0,
    rgba(15, 23, 42, 0.96),
    rgba(15, 23, 42, 0.98)
  );
  color: #e5e7eb;
  cursor: pointer;
  transition:
    background 0.14s ease,
    border-color 0.14s ease,
    transform 0.08s ease;
}

.bc-rt__budget-button.is-active,
.bc-rt__budget-button:hover {
  border-color: rgba(96, 165, 250, 0.95);
  background: radial-gradient(
    circle at 0 0,
    rgba(59, 130, 246, 0.9),
    rgba(15, 23, 42, 0.98)
  );
  transform: translateY(-1px);
}

/* Spin CTA + inline total + “view” link */

.bc-rt__actions {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.bc-rt__inline-total {
  display: none;
  font-size: 13px;
  color: #e5e7eb;
  margin-right: auto;
}

.bc-rt__inline-total-label {
  color: var(--bc-rt-color-muted);
  margin-right: 4px;
}

.bc-rt__inline-total-value {
  font-variant-numeric: tabular-nums;
}

.bc-rt__small-print {
  margin-top: 8px;
  font-size: 12px;
  color: var(--bc-rt-color-muted);
}

/* -----------------------------------------------------------
 * MANUAL GRID MODE
 * ---------------------------------------------------------*/

.bc-rt__manual-intro {
  font-size: 13px;
  color: var(--bc-rt-color-soft);
  margin-bottom: 10px;
}

.bc-rt__manual-grid {
  border-radius: 16px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  background: radial-gradient(
    circle at 0 0,
    rgba(15, 23, 42, 0.98),
    rgba(15, 23, 42, 1)
  );
  padding: 10px 12px;
  max-height: 360px;
  overflow-y: auto;
}

.bc-rt__manual-row {
  padding: 10px 0;
  border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.bc-rt__manual-row:last-child {
  border-bottom: none;
}

.bc-rt__manual-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.bc-rt__manual-tier {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--bc-rt-color-muted);
}

.bc-rt__manual-name {
  font-size: 13px;
  font-weight: 500;
  color: #e5e7eb;
}

.bc-rt__manual-variants {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
}

.bc-rt__manual-variant {
  display: grid;
  grid-template-columns: minmax(0, 2fr) auto auto 72px;
  gap: 8px;
  align-items: center;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(31, 41, 55, 0.9);
  font-size: 12px;
}

.bc-rt__manual-variant-title {
  font-weight: 500;
}

.bc-rt__manual-variant-price {
  font-variant-numeric: tabular-nums;
  color: var(--bc-rt-color-soft);
}

.bc-rt__manual-variant-tickets {
  color: var(--bc-rt-color-muted);
}

.bc-rt__manual-variant-input {
  width: 100%;
  border-radius: 999px;
  border: 1px solid rgba(55, 65, 81, 0.95);
  background: #020617;
  color: #f9fafb;
  font-size: 12px;
  padding: 4px 6px;
  text-align: center;
  outline: none;
}

/* -----------------------------------------------------------
 * EXCLUDE LIST (draw checkboxes)
 * ---------------------------------------------------------*/

.bc-rt__excludes {
  margin-top: 14px;
}

.bc-rt__excludes-heading {
  font-size: 12px;
  color: var(--bc-rt-color-soft);
  margin-bottom: 6px;
}

/* New pill-style controls */

.bc-rt__excludes-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.bc-rt__excludes-toggle {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 500;
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.2), transparent 55%)
              rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 120ms ease;
}

.bc-rt__excludes-toggle:hover,
.bc-rt__excludes-toggle:focus-visible {
  border-color: rgba(56, 189, 248, 0.9);
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.3), transparent 60%)
              rgba(15, 23, 42, 1);
  transform: translateY(-0.5px);
}

.bc-rt__excludes-toggle--secondary {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(148, 163, 184, 0.6);
  color: #cbd5f5;
}

.bc-rt__excludes-toggle--secondary:hover,
.bc-rt__excludes-toggle--secondary:focus-visible {
  background: rgba(15, 23, 42, 0.95);
  border-color: rgba(148, 163, 184, 0.9);
}

.bc-rt__excludes-hint {
  font-size: 0.8rem;
  color: #9ca3af;
  margin-bottom: 6px;
}

/* Expand / collapse tab for draw list */

.bc-rt__draw-list-toggle {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(148, 163, 184, 0.7);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 500;
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.25), transparent 55%)
              rgba(15, 23, 42, 0.96);
  color: #e5e7eb;
  cursor: pointer;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 120ms ease;
}

.bc-rt__draw-list-toggle:hover,
.bc-rt__draw-list-toggle:focus-visible {
  border-color: rgba(56, 189, 248, 0.9);
  background: radial-gradient(circle at 0% 0%, rgba(56, 189, 248, 0.35), transparent 60%)
              rgba(15, 23, 42, 1);
  transform: translateY(-1px);
}

/* Scrollable draw list core */

.bc-rt__draw-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 220px;
  overflow-y: auto;
  position: relative;
  border-radius: 0.9rem;
  border: 1px solid rgba(30, 64, 175, 0.75);
  background: radial-gradient(circle at 0% 0%, rgba(30, 64, 175, 0.25), transparent 55%)
              rgba(15, 23, 42, 0.96);
  padding-right: 0.4rem;
}

/* Expanded state – let big screens see everything */

.bc-rt__draw-list.bc-rt__draw-list--expanded {
  max-height: none;
  overflow-y: visible;
}

.bc-rt__draw-item + .bc-rt__draw-item {
  margin-top: 4px;
}

.bc-rt__draw-label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(31, 41, 55, 0.95);
  font-size: 12px;
  cursor: pointer;
}

.bc-rt__draw-checkbox {
  accent-color: #38bdf8;
}

.bc-rt__draw-title {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bc-rt__draw-tier {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bc-rt-color-muted);
}

.bc-rt__draw-name {
  font-size: 12px;
  color: #e5e7eb;
}

.bc-rt__draw-price {
  font-size: 11px;
  color: var(--bc-rt-color-soft);
}

/* Scrollbar styling – always-visible */

.bc-rt__draw-list {
  scrollbar-width: auto;
  scrollbar-color: rgba(56, 189, 248, 0.8) rgba(10, 15, 30, 1);
  background: rgba(10, 15, 30, 1);
}

.bc-rt__draw-list::-webkit-scrollbar {
  width: 9px;
  background-color: rgba(10, 15, 30, 1);
}

.bc-rt__draw-list::-webkit-scrollbar-track {
  background-color: rgba(10, 15, 30, 1);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(20, 30, 50, 0.7);
}

.bc-rt__draw-list::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    rgba(56, 189, 248, 0.6),
    rgba(56, 189, 248, 1)
  );
  border-radius: 999px;
  box-shadow:
    0 0 3px rgba(56, 189, 248, 0.7),
    inset 0 0 4px rgba(255, 255, 255, 0.15);
}

.bc-rt__draw-list::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    rgba(96, 200, 255, 0.8),
    rgba(96, 200, 255, 1)
  );
}

/* -----------------------------------------------------------
 * SUMMARY & SELECTION LIST (right card)
 * ---------------------------------------------------------*/

.bc-rt__summary {
  margin: 4px 0 10px;
  border-radius: 14px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(31, 41, 55, 0.98);
}

.bc-rt__summary-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: #e5e7eb;
}

.bc-rt__summary-line + .bc-rt__summary-line {
  margin-top: 4px;
}

.bc-rt__summary-label {
  color: var(--bc-rt-color-muted);
}

.bc-rt__summary-value {
  font-variant-numeric: tabular-nums;
}

.bc-rt__selection {
  margin-top: 10px;
}

.bc-rt__selection-empty {
  font-size: 12px;
  color: var(--bc-rt-color-muted);
  margin: 0;
}

.bc-rt__selection-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.bc-rt__selection-item {
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(31, 41, 55, 0.95);
}

/* Animated entry for spin-built lines */

.bc-rt__selection-item--enter {
  opacity: 0;
  transform: translateY(4px);
  animation: bc-rt-selection-enter 260ms ease-out forwards;
}

@keyframes bc-rt-selection-enter {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.bc-rt__selection-title {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 2px;
}

.bc-rt__selection-meta {
  font-size: 12px;
  color: var(--bc-rt-color-muted);
}

/* Apostle / subscription mount */

.bc-rt__subscription {
  margin-top: 10px;
  font-size: 12px;
  color: var(--bc-rt-color-muted);
}

/* Error + note */

.bc-rt__error {
  margin: 8px 0 4px;
  font-size: 12px;
  color: #fecaca;
}

.bc-rt__note {
  margin: 8px 0 0;
  font-size: 11px;
  color: var(--bc-rt-color-muted);
}

/* -----------------------------------------------------------
 * CTA ALIGNMENT – Spin / Complete / View link
 * ---------------------------------------------------------*/

.bc-rt__spin-btn,
.bc-rt__complete-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 260px;
  min-height: var(--bc-height-cta, 44px);

  padding: 0 18px;
  border-radius: var(--bc-radius-pill, 999px);

  font-size: 14px;
  font-weight: 600;

  border: none;
  cursor: pointer;
  text-decoration: none;

  transition:
    transform 120ms ease,
    box-shadow 120ms ease,
    background 160ms ease,
    color 160ms ease,
    filter 120ms ease;
}

/* Primary action – “Spin & build my selection” */
.bc-rt__spin-btn {
  background: var(--bc-cta-primary-bg, #2d61b8);
  color: var(--bc-cta-primary-fg, #fff);
  box-shadow: var(--bc-shadow-cta-strong, 0 10px 22px #0f172ae5);
}

.bc-rt__spin-btn:hover,
.bc-rt__spin-btn:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.95);
}

.bc-rt__spin-btn:disabled {
  opacity: 0.55;
  cursor: default;
  box-shadow: none;
}

/* Complete button – secondary CTA in summary card */

.bc-rt__complete-btn {
  background: var(--bc-cta-secondary-bg, #2d61b8);
  color: var(--bc-cta-secondary-fg, #e5e7eb);
  border: 1px solid #94a3b8b2;
  box-shadow: 0 8px 18px #0f172ad9;
}

.bc-rt__complete-btn:hover,
.bc-rt__complete-btn:focus-visible {
  transform: translateY(-1px);
  background: #2d61b8;
}

.bc-rt__complete-btn:disabled {
  opacity: 0.55;
  cursor: default;
  box-shadow: none;
}

.bc-rt__complete-btn.is-loading {
  opacity: 0.7;
}

/* View selection link */

.bc-rt__view-summary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: var(--bc-rt-radius-pill, 999px);
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.875rem;
  line-height: 1.2;
  text-decoration: none;
  background: rgba(15, 23, 42, 0.7);
  color: var(--bc-rt-text-muted, #9ca3af);
  cursor: default;
  opacity: 0.6;
  pointer-events: none;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease,
    opacity 160ms ease,
    transform 120ms ease;
}

.bc-rt__view-summary-link.is-active {
  border-color: var(--bc-rt-accent, #38bdf8);
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.16),
    rgba(129, 140, 248, 0.22)
  );
  color: var(--bc-rt-text, #f9fafb);
  cursor: pointer;
  opacity: 1;
  pointer-events: auto;
}

.bc-rt__view-summary-link.is-active:hover,
.bc-rt__view-summary-link.is-active:focus-visible {
  border-color: var(--bc-rt-accent, #38bdf8);
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.26),
    rgba(129, 140, 248, 0.3)
  );
  text-decoration: none;
  transform: translateY(-0.5px);
}

.bc-rt__view-summary-link.is-active:focus-visible {
  outline: 2px solid var(--bc-rt-accent, #38bdf8);
  outline-offset: 2px;
}

/* Small-screen: let buttons go full width without feeling cramped */
@media (max-width: 640px) {
  .bc-rt__spin-btn,
  .bc-rt__complete-btn {
    max-width: 100%;
  }
}

  .bc-rt__inline-total {
    display: block;
  }
}

/* -----------------------------------------------------------
 * RESPONSIVE
 * ---------------------------------------------------------*/

@media (max-width: 960px) {
  .bc-rt__layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .bc-rt__left,
  .bc-rt__right {
    padding: 14px 14px 12px;
  }

  .bc-rt__manual-grid {
    max-height: 300px;
  }

  .bc-rt__draw-list {
  /*max-height: 180px;*/
  list-style: none;
  padding: 0;
  padding-right: 0px;
  margin: 0;
  max-height: fit-content;
  }

  .bc-rt__hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .bc-rt {
    margin: 24px 0 32px;
  }

  .bc-rt__heading {
    font-size: 20px;
  }

  .bc-rt__manual-variant {
    grid-template-columns: minmax(0, 1.8fr) auto;
    grid-template-rows: auto auto;
  }

  .bc-rt__manual-variant-price,
  .bc-rt__manual-variant-tickets {
    font-size: 11px;
  }

  .bc-rt__slot-digits {
    width: 100%;
    justify-content: center;
  }

  .bc-rt__slot-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .bc-rt__slot-copy {
    text-align: left;
  }
}

/* -----------------------------------------------------------
 * HERO OVERLAY MESH (background video only)
 * ---------------------------------------------------------*/

.bc-rt__hero-overlay {
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.06) 0,
      rgba(255, 255, 255, 0.02) 40%,
      transparent 30%
    ),
    linear-gradient(
      225deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.02) 30%,
      transparent 30%
    ),
    linear-gradient(
      120deg,
      var(--bc-rt-hero-overlay-color, #020617),
      rgba(15, 23, 42, 0.7)
    );
  background-size:
    2px 2px,
    6px 6px,
    cover;
  background-position:
    0 0,
    0 0,
    center;
  background-repeat: repeat, repeat, no-repeat;
  opacity: var(--bc-rt-hero-overlay-strength, 0.5);
}

/* -----------------------------------------------------------
 * SLOT MACHINE – 9-LINE OVERLAYS (3×3)
 * ---------------------------------------------------------*/

.bc-rt__slot-overlays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4; /* above symbols, below UI */
}

.bc-rt__line-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.bc-rt__line-overlay.active {
  opacity: 1;
}

/* Shared glow effect */
.bc-rt__line-overlay.active::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    rgba(56, 189, 248, 0.05) 0%,
    rgba(56, 189, 248, 0.6) 50%,
    rgba(56, 189, 248, 0.05) 100%
  );
  box-shadow: 0 0 18px rgba(56, 189, 248, 0.95);
  border-radius: 999px;
  transform-origin: center;
}

/* -----------------------------------------------------------
 * ROW LINES (top / mid / bottom)
 * ---------------------------------------------------------*/

.bc-rt__line-1.active::before {
  top: 18%;
}

.bc-rt__line-2.active::before {
  top: 50%;
  transform: translateY(-50%);
}

.bc-rt__line-3.active::before {
  bottom: 18%;
}

/* -----------------------------------------------------------
 * DIAGONALS (TL→BR, BL→TR) — lines 4 & 5
 * ---------------------------------------------------------*/

.bc-rt__line-4.active::before {
  top: 18%;
  left: -10%;
  width: 120%;
  height: 4px;
  transform: rotate(18deg);
}

.bc-rt__line-5.active::before {
  bottom: 18%;
  left: -10%;
  width: 120%;
  height: 4px;
  transform: rotate(-18deg);
}

/* -----------------------------------------------------------
 * FEATURE / FUNKY LINES (6–9)
 * These match shapes defined in PAYLINES array.
 * ---------------------------------------------------------*/

.bc-rt__line-6.active::before {
  top: 18%;
  left: -5%;
  width: 110%;
  transform: rotate(6deg);
}

.bc-rt__line-7.active::before {
  bottom: 18%;
  left: -5%;
  width: 110%;
  transform: rotate(-6deg);
}

.bc-rt__line-8.active::before {
  top: 50%;
  transform: translateY(-50%) rotate(12deg);
  left: -8%;
  width: 116%;
}

.bc-rt__line-9.active::before {
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  left: -8%;
  width: 116%;
}

.bc-rt__slot-reel-window {
  height: calc(var(--bc-rt-symbol-size, 48px) * 3);
  overflow: hidden;
}
.bc-rt__slot-cell {
  height: var(--bc-rt-symbol-size, 48px);
}

/* -----------------------------------------------------------
 * TARGET SPEND INPUT – iPhone-safe numeric
 * ---------------------------------------------------------*/
.bc-rt__budget-input {
  font-size: 16px; /* prevent iOS zoom */
  padding: 6px 4px;
  line-height: 1.4;
}

/* -----------------------------------------------------------
 * SLOT TOTAL – ET1-A glow animation
 * ---------------------------------------------------------*/
.bc-rt__slot-total {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 8px;
  margin-bottom: 12px;
}

.bc-rt__slot-total-label {
  font-size: 12px;
  color: var(--bc-rt-color-muted);
}

.bc-rt__slot-total-value {
  font-size: 14px;
  font-weight: 600;
  color: #f3f4f6;
  transition: color 200ms ease, text-shadow 200ms ease;
}

.bc-rt__slot-total-value--glow {
  color: #ffffff;
  text-shadow: 0 0 12px rgba(96,165,250,0.9);
}

/* -----------------------------------------------------------
 * FLIPBOARD SUMMARY (F1)
 * ---------------------------------------------------------*/
.bc-rt__selection-item--flip {
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.bc-rt__selection-item--flip.is-entered {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------------------------
 * SLOT 3×3 ALIGNMENT POLISH
 * ---------------------------------------------------------*/
.bc-rt__slot-reel-window {
  height: calc(var(--bc-rt-symbol-size, 48px) * 3);
  overflow: hidden;
}

.bc-rt__slot-cell {
  height: var(--bc-rt-symbol-size, 48px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bc-rt__slot-symbol {
  object-fit: contain;
}

/* -----------------------------------------------------------
 * SPIN BUTTON SPACING
 * ---------------------------------------------------------*/
.bc-rt__actions {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* -----------------------------------------------------------
 * MANUAL GRID PANEL (hidden by default)
 * ---------------------------------------------------------*/
[data-bc-rt-manual-panel] {
  margin-top: 12px;}
[data-bc-rt-manual-panel] { display: none; }
[data-bc-rt-manual-panel].is-active { display: block; 
}

/* -----------------------------------------------------------
 * MOBILE LAYOUT ADJUSTMENTS
 * ---------------------------------------------------------*/
@media (max-width: 640px) {
  .bc-rt__slot-total {
    margin-bottom: 10px;
  }

  .bc-rt__slot-total-label {
    font-size: 11px;
  }

  .bc-rt__slot-total-value {
    font-size: 13px;
  }

  .bc-rt__slot-reel-window {
    height: calc(var(--bc-rt-symbol-size, 44px) * 3);
  }

  .bc-rt__slot-cell {
    height: var(--bc-rt-symbol-size, 44px);
  }
}

/* -----------------------------------------------------------
 * MANUAL GRID LINK (minimal)
 * ---------------------------------------------------------*/
.bc-rt__manual-link-wrap {
  margin-top: 8px;
  text-align: left;
}

.bc-rt__selection-item--flip {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 260ms ease, transform 260ms ease;
}
.bc-rt__selection-item--flip.is-entered {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------
   Rapid Ticket Selector – visual polish
   ----------------------------------------- */

/* Give us a bigger symbol size and make it tunable */
.bc-rt {
  --bc-rt-symbol-size: 60px;
}

@media (max-width: 749px) {
  .bc-rt {
    /* ~25–30% bigger than before on mobile */
    --bc-rt-symbol-size: 54px;
  }
}

/* Make the visible window respect the new symbol size
   (3 rows high) and give it a stronger 3D “well” */
.bc-rt__slot-reel-window {
  height: calc(var(--bc-rt-symbol-size, 60px) * 3);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(148, 163, 184, 0.22), transparent 60%),
    radial-gradient(circle at 50% 120%, rgba(15, 23, 42, 0.95), #020617);
  box-shadow:
    0 0 0 1px rgba(148, 163, 184, 0.18),
    0 18px 40px rgba(15, 23, 42, 0.9),
    inset 0 0 24px rgba(15, 23, 42, 0.85);
  overflow: hidden;
}

/* Make the symbols fill the cells properly at the new size */
.bc-rt__slot-cell {
  height: var(--bc-rt-symbol-size, 60px);
}


/* Extra glow when a reel is doing its little landing bounce */
.bc-rt__slot-reel--settling .bc-rt__slot-symbol {
  filter: drop-shadow(0 0 6px rgba(59, 130, 246, 0.85));
}

/* Spin button – “Selecting your tickets” state */
.bc-rt__spin-btn--active {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #e5fbe9;
  box-shadow:
    0 0 0 1px rgba(22, 163, 74, 0.6),
    0 12px 24px rgba(22, 163, 74, 0.55);
}

/* Keep it feeling pressed instead of jumping on hover */
.bc-rt__spin-btn--active:hover {
  transform: translateY(0);
}

.bc-rt__slot-cell {
  background: linear-gradient(145deg, #0f172a, #1e293b);
  border-radius: 12px;
  margin: 2px 0;
  box-shadow: inset 0 1px 2px rgba(255,255,255,0.05),
              inset 0 -2px 4px rgba(0,0,0,0.7);
}

/* ---- BC-RT: emergency UI + mobile-touch fixes ---- */

/* Prevent iOS weird text-zoom + remove tap highlight */
html, body, .bc-rt {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Make currency symbol visually equal-weight to amount */
.bc-rt__currency {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
}

/* Prevent elements physically jumping when tapped (limit transforms) */
.bc-rt__tab,
.bc-rt__spin-btn,
.bc-rt__budget-button,
.bc-rt__excludes-toggle,
.bc-rt__draw-list-toggle {
  backface-visibility: hidden;
  transform-origin: center;
  will-change: transform, opacity;
}

/* Active state for Select / Deselect pills */
.bc-rt__excludes-toggle.is-active {
  background: linear-gradient(135deg, rgba(56,189,248,0.12), rgba(59,130,246,0.06));
  border-color: rgba(96,165,250,0.9);
  color: #eaf6ff;
  box-shadow: 0 6px 14px rgba(14, 30, 60, 0.45);
}

/* Payment icon layout: always max 7 per row, flexible */
.bc-rt__payment-icons-list {
  gap: 8px;
  justify-content: flex-start;
}
.bc-rt__payment-icons-item {
  box-sizing: border-box;
  flex: 0 0 calc((100% - 6 * 8px) / 7);
  max-width: calc((100% - 6 * 8px) / 7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

/* Slot symbol sizing: scope to .bc-rt and keep images filling cell vertically */
.bc-rt {
  /*--bc-rt-symbol-size: 60px; desktop baseline */
}
@media (max-width: 749px) {
  .bc-rt {
    --bc-rt-symbol-size: calc(var(--bc-rt-symbol-size) * 1.2); /* +20% on small screens */
  }
}

.bc-rt__slot-cell {
  margin: 5px 0;
}

.bc-rt__slot-reel {
  padding: 1px;
  max-width: fit-content;
}

.bc-rt__slot-symbol {
  max-height: 163%;
  max-width: 208% !important;
  object-fit: contain;
  display: block;
margin: 18px;
}
.bc-rt__slot-reel-window { height: calc(var(--bc-rt-symbol-size) * 3); }
.bc-rt__slot-cell { height: var(--bc-rt-symbol-size); }
.bc-rt__slot-symbol {
  display: block;
  object-fit: contain;
}

/* Hard lock: reel area must always mask its track */
.bc-rt__slot-reels {
  position: relative;
  overflow: hidden;
}

.bc-rt__slot-reel-window {
  position: relative;
  overflow: hidden;
}


/* Ensure slot window doesn't collapse when images are loading */
.bc-rt__slot-reel-window,
.bc-rt__slot-reel-track,
.bc-rt__slot-cell {
  min-height: 1px;
}

/* Subtle overlay / sheen touch for inside vs outside radius to add depth */
.bc-rt__slot-reel-window::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 8px 28px rgba(0,0,0,0.55), inset 0 -8px 20px rgba(255,255,255,0.02);
}

/* Make view-summary link more obviously interactive when active */
.bc-rt__view-summary-link.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Prevent text zoom on small inputs (iOS) */
.bc-rt__budget-input { font-size: 16px !important; }

/* Prevent accidental page-scale double-tap: keep interactive children sized */
.bc-rt__spin-btn, .bc-rt__budget-button { -webkit-user-select: none; user-select: none; }

/* Ensure manual panel is visually sequestered below summary on mobile */
[data-bc-rt-manual-panel] { margin-top: 18px; }

:root {
  --bc-rt-symbol-size: 120px;   /* desktop */
}

@media (max-width: 640px) {
  :root {
    --bc-rt-symbol-size: 80px;  /* mobile */
 }
}

/* === BC RTS — final symbol sizing override ===================== */
/* Keep this at the end of bc-rt.css so it wins the cascade.      */

.bc-rt {
  /* You can tweak these two numbers only if you want bigger/smaller icons */
  --bc-rt-symbol-size-desktop: 110px;
  --bc-rt-symbol-size-mobile: 80px;

  /* Working variable actually used below */
  --bc-rt-symbol-size: var(--bc-rt-symbol-size-desktop);
}

@media (max-width: 749px) {
  .bc-rt {
    --bc-rt-symbol-size: var(--bc-rt-symbol-size-mobile);
  }
}

/* Exactly 3 rows tall */
.bc-rt__slot-reel-window {
  position: relative;
  overflow: hidden;
  height: calc(var(--bc-rt-symbol-size) * 3);
}

/* One symbol cell per row */
.bc-rt__slot-cell {
  height: var(--bc-rt-symbol-size);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Symbols: circular, not squashed */
.bc-rt__slot-symbol {
  width: auto;
  height: 150%;
  max-height: var(--bc-rt-symbol-size);
  max-width: 150%;
  object-fit: contain;
  margin-inline: auto;
}
<style>
  #bc-rt-{{ section.id }} .bc-rt__budget-extras{
    margin-top:10px;
    display:flex;
    align-items:center;
    gap:.5rem;
  }
  #bc-rt-{{ section.id }} .bc-rt__budget-select-label{
    font-size:.85rem;
    opacity:.8;
    white-space:nowrap;
  }
  /* Keep quick pills thumb-friendly; allow horizontal scroll */
  #bc-rt-{{ section.id }} .bc-rt__budget-quick{
    overflow-x:auto; white-space:nowrap; -webkit-overflow-scrolling: touch;
    padding-bottom:2px;
  }
  @media (max-width:640px){
    #bc-rt-{{ section.id }} .bc-rt__budget-extras{ flex-wrap:wrap; }
    #bc-rt-{{ section.id }} .bc-rt__budget-select{ width:100%; max-width:280px; min-width:0; }
  }
/* Fix #3 — Mobile: summary should appear AFTER slot, not mid-stack */
@media(max-width: 989px){
  .bc-rt__layout {
    flex-direction: column;
  }
  .bc-rt__right {
    order: 3;     /* summary goes after slot + budget + manual */
    width: 100%;
  }
  .bc-rt__left {
    order: 1;
  }
}

/* Fix budget wrapping without breaking pill alignment */
.bc-rt__budget-row,
.bc-rt__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.bc-rt__budget-row span {
  flex: 0 0 auto;
}

.bc-rt__budget-input {
  flex: 1 1 auto;       /* allows it to shrink and wrap correctly */
  min-width: 80px;
}

.bc-rt__quick button {
  flex: 0 1 auto;        /* pills wrap cleanly */
  white-space: nowrap;
}


@media(max-width: 540px){
  .bc-rt__budget-row {
    width: 100%;
  }
  .bc-rt__quick {
    width: 100%;
  }
}


/* ============================================================
   FIX #4 — Neutralise legacy v5 slot machine overrides
   so v6 transparent reel engine can run correctly.
   ============================================================ */

#bc-rt-{{ section.id }} .bc-rt__slot-reels,
#bc-rt-{{ section.id }} .bc-rt__slot-reel,
#bc-rt-{{ section.id }} .bc-rt__slot-reel-window,
#bc-rt-{{ section.id }} .bc-rt__slot-track,
#bc-rt-{{ section.id }} .bc-rt__slot-cell,
#bc-rt-{{ section.id }} .bc-rt__slot-symbol {
  /* wipe legacy styling that breaks v6 */
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* ensure v6 geometry takes precedence */
#bc-rt-{{ section.id }} .bc-rt__slot-reel-window {
  height: calc(var(--bc-rt-symbol-size) * 3) !important;
  overflow: hidden !important;
}

#bc-rt-{{ section.id }} .bc-rt__slot-cell {
  height: var(--bc-rt-symbol-size) !important;
  padding: 0 !important;
  margin: 0 !important;
}

#bc-rt-{{ section.id }} .bc-rt__slot-symbol {
  max-height: calc(var(--bc-rt-symbol-size) * 0.95) !important;
  max-width: 95% !important;
  object-fit: contain !important;
}

/*NEW TEST*/
/* ------------------------------------------------------------
   HALO SHIMMER — PREMIUM FINTECH AURA
------------------------------------------------------------ */
.bc-rt__slot {
  position: relative;
  z-index: 0;
}

.bc-rt__slot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: var(--bc-rt-radius);
  pointer-events: none;
  z-index: -1;

  background: conic-gradient(
    from 0deg,
    rgba(96,165,250,0.05),
    rgba(56,189,248,0.10),
    rgba(129,140,248,0.06),
    rgba(56,189,248,0.10),
    rgba(96,165,250,0.05)
  );

  opacity: 0;
  transform: scale(0.94) rotate(0deg);
}

.bc-rt__slot.bc-rt--halo-active::after {
  opacity: 0.22;
  animation:
    bcHaloSpin 14s linear infinite,
    bcHaloPulse 6s ease-in-out infinite alternate;
}

@keyframes bcHaloSpin {
  from { transform: scale(0.94) rotate(0deg); }
  to   { transform: scale(0.94) rotate(360deg); }
}

@keyframes bcHaloPulse {
  0%   { opacity: 0.10; transform: scale(0.92); }
  100% { opacity: 0.22; transform: scale(0.96); }
}

/* ------------------------------------------------------------
   SLOT MACHINE — CINEMATIC DUAL-PHASE BREATHING
------------------------------------------------------------ */
bc-rt__slot-reel {
  padding: var(--bc-rt-padding);
  border-radius: var(--bc-rt-radius);
  background: rgba(15,23,42,0.45);
  backdrop-filter: blur(14px);
  transform-origin: center;
  transition: transform 300ms ease, filter 300ms ease;
}

/* Phase 1 — Inhale (slot expands, reels tighten) */
.bc-rt--spinning .bc-rt__slot {
  animation: bcSlotInhale 260ms ease-out forwards;
}

@keyframes bcSlotInhale {
  0%   { transform: scale(1.00); }
  100% { transform: scale(1.06); }
}

/* Phase 2 — Exhale (slot relaxes, reels expand) */
.bc-rt--spinning.bc-rt--phase2 .bc-rt__slot {
  animation: bcSlotExhale 380ms ease-in-out forwards;
}

@keyframes bcSlotExhale {
  0%   { transform: scale(1.06); }
  100% { transform: scale(0.98); }
}

/* Phase 3 — Snap + Cinematic Bounce */
.bc-rt--snap .bc-rt__slot {
  animation: bcSlotBounce 360ms cubic-bezier(.21,1.4,.42,1) forwards;
}

@keyframes bcSlotBounce {
  0%   { transform: scale(0.98); }
  40%  { transform: scale(1.03); }
  100% { transform: scale(1.00); }
}

/* ------------------------------------------------------------
   REELS — HYBRID TRANSPARENT MODE
------------------------------------------------------------ */
.bc-rt__slot-reels {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  overflow: hidden;
}

/* Reel container */
.bc-rt__slot-reel {
  width: calc(var(--bc-rt-symbol-size) * 1.15);
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.04),
    rgba(255,255,255,0.02)
  );
  box-shadow:
    inset 0 0 6px rgba(255,255,255,0.06),
    0 0 10px rgba(0,0,0,0.35);
  transform-origin: center;
}

/* Reel-only breathing: opposite phase to slot container */
.bc-rt--spinning .bc-rt__slot-reel {
  animation: bcReelInward 260ms ease-out forwards;
}

@keyframes bcReelInward {
  0%   { transform: scale(1.00); }
  100% { transform: scale(0.95); }
}

.bc-rt--spinning.bc-rt--phase2 .bc-rt__slot-reel {
  animation: bcReelExpand 380ms ease-in-out forwards;
}

@keyframes bcReelExpand {
  0%   { transform: scale(0.95); }
  100% { transform: scale(1.05); }
}

/* Reel window */
.bc-rt__slot-reel-window {
  height: calc(var(--bc-rt-symbol-size) * 3);
  overflow: hidden;
  position: relative;
}

/* Track */
.bc-rt__slot-track {
  will-change: transform;
  transform: translate3d(0,0,0);
}

/* ------------------------------------------------------------
   CELLS + SYMBOLS
------------------------------------------------------------ */
.bc-rt__slot-cell {
  width: 100%;
  height: var(--bc-rt-symbol-size);
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  padding: 0;
  margin: 0;
}

.bc-rt__slot-symbol {
  width: auto;
  height: calc(var(--bc-rt-symbol-size) * 0.92);
  object-fit: contain;
  filter: drop-shadow(0 0 1px rgba(0,0,0,0.8));
}

/* ------------------------------------------------------------
   REEL LANDING BOUNCE (per reel)
------------------------------------------------------------ */
.bc-rt__slot-reel.bc-rt--settled {
  animation: bcReelBounce 300ms cubic-bezier(.21,1.4,.42,1);
}

@keyframes bcReelBounce {
  0%   { transform: scale(1.05); }
  60%  { transform: scale(0.97); }
  100% { transform: scale(1.00); }
}

/* ------------------------------------------------------------
   PAYLINE OVERLAYS
------------------------------------------------------------ */
.bc-rt__slot-overlays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.bc-rt__line-overlay {
  position: absolute;
  height: 3px;
  background: var(--bc-rt-payline-color, rgba(56,189,248,0.8));
  box-shadow: 0 0 18px var(--bc-rt-payline-color, rgba(56,189,248,1));
  opacity: 0;
  transform: scaleX(0.3);
  transition: opacity 120ms ease, transform 180ms ease;
}

.bc-rt__line-overlay.active {
  opacity: 1;
  transform: scaleX(1);
}

/* Lines (simplified positions) */
.bc-rt__line-1 { top: 18%; left: 0; right: 0; }
.bc-rt__line-2 { top: 50%; left: 0; right: 0; }
.bc-rt__line-3 { top: 82%; left: 0; right: 0; }

/* ------------------------------------------------------------
   SLOT TOTAL + BUTTON
------------------------------------------------------------ */
.bc-rt__slot-total {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-top: 10px;
  color: #e2e8f0;
}

.bc-rt__spin-btn {
  width: 100%;
  margin-top: 14px;
  padding: 14px 18px;
  font-size: 17px;
  background: linear-gradient(180deg, #38bdf8, #0ea5e9);
  border-radius: 12px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: transform 140ms ease, filter 180ms ease;
}

.bc-rt__spin-btn:hover {
  transform: scale(1.03);
  filter: brightness(1.1);
}

.bc-rt__spin-btn:active {
  transform: scale(0.97);
}

/* ------------------------------------------------------------
   AUDIO BAR
------------------------------------------------------------ */
.bc-rt__audio-bar {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: flex-end;
}

.bc-rt__audio-toggle {
  width: var(--bc-rt-audio-btn-size);
  height: var(--bc-rt-audio-btn-size);
  background: #1f2937;
  color: #a5b4fc;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.bc-rt__audio-toggle.is-muted {
  background: #374151;
  color: #6b7280;
}

/* ------------------------------------------------------------
   LAYOUT — MOBILE FIRST
------------------------------------------------------------ */
.bc-rt__layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bc-rt__slot-bg-video {
  border-radius: 11px;
}

.bc-rt__left,
.bc-rt__right {
  width: 100%;
}
.bc-rt__audio-btn.bc-rt__audio-btn--music {
  margin-bottom: 8px !important;
}
/* Desktop */
@media (min-width: 1024px) {
  .bc-rt__layout {
    flex-direction: row;
    align-items: flex-start;
  }
  .bc-rt__left {
    width: 60%;
  }
  .bc-rt__right {
    width: 40%;
    position: sticky;
    top: 16px;
  }
}

.bc-rt__budget-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Visual highlight for the popular button */
.bc-rt__budget-button--popular {
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.7),
              0 0 18px rgba(56, 189, 248, 0.45);
}

/* Tiny “Most popular” pill */
.bc-rt__budget-button-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
}

/* Layout for extra presets row */
.bc-rt__budget-extras {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

/* Optional: slightly stronger look when open */
.bc-rt__budget-more-btn[aria-expanded="true"] {
  border-color: rgba(56, 189, 248, 0.95);
}

/* Dropdown wrapper */
.bc-rt__budget-select-wrap {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(30, 64, 175, 0.85);
  background: radial-gradient(circle at 0% 0%, rgba(30, 64, 175, 0.6), rgba(15, 23, 42, 0.95));
}

/* Ensure the extra presets dropdown is truly invisible when hidden */
.bc-rt__budget-select-wrap[hidden] {
  display: none !important;
}


/* Flash / hint when switching to custom spend */
.bc-rt__budget-input--hint {
  animation: bc-rt-input-hint 0.3s ease-in-out 0s 3 alternate;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.9);
}

@keyframes bc-rt-input-hint {
  from {
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.0);
  }
  to {
    box-shadow: 0 0 0 2px rgba(56, 189, 248, 0.9);
  }
}

#bc-rt-{{ section.id }} .bc-rt__budget-more-btn:hover {
  border-color: rgba(56, 189, 248, 0.9);
}

.bc-rt__budget-select-label {
  background-color: #0e1628;
}

/* The real "More presets" trigger button */
.bc-rt__budget-extras {
  border-radius: 999px;
  padding: 6.5px !important;
  font-size: 12px;
  border-color: rgba(56, 189, 248, 0.9);
  margin-top: 7px;
  background-color: #0e1628 !important;
  color: #dfdfdf !important;
    align-self: flex-start;
  padding: 0.3rem 0.8rem;
    line-height: 1;
  cursor: pointer;

  .bc-rt__budget-select {
  background-color: #0e1628;
}

.bc-rt__budget-more-btn {
  border-radius: 24px;
  margin-top: 5px;
  border-color: #3d7cc4;
  background: radial-gradient( circle at 0 0, #2f66c1, #122240 );
  transform: translateY(-1px);
  border-width: 2px;
  color: white !important;
  font-weight:400;
  padding: 4px;
  line-height: 13px;
}