@import url('https://fonts.googleapis.com/css2?family=Azeret+Mono:wght@500;600;700&family=Bebas+Neue&family=Bruno+Ace+SC&family=Inter:wght@400;500;600;700;800&family=Oswald:wght@400;500;600;700&family=Source+Serif+4:ital,wght@0,400;1,400&family=Dancing+Script:wght@600;700&display=swap');

@font-face {
  font-family: "DSEG14 Classic";
  src: url("../fonts/DSEG14Classic-Regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --black: #030303;
  --cabinet: #090807;
  --panel: #11100e;
  --panel-2: #171410;
  --ink: #f7efe2;
  --muted: rgba(247, 239, 226, 0.68);
  --quiet: rgba(247, 239, 226, 0.42);
  --amber: #f4b247;
  --amber-hot: #ffd17a;
  --orange: #f36b22;
  --rose: #f05a8f;
  --teal: #35d5d0;
  --neon-blue: #24b6ff;
  --electric-blue: #2368ff;
  --violet: #7b3cff;
  --magenta: #ff3bc8;
  --green: #42d37b;
  --chrome: #c9beb0;
  --rule: rgba(244, 178, 71, 0.32);
  --rule-teal: rgba(53, 213, 208, 0.32);
  --shadow: rgba(0, 0, 0, 0.68);
  --display: "Bebas Neue", "Oswald", "Arial Narrow", Impact, sans-serif;
  --gemini: "Bruno Ace SC", "Arial Rounded MT Bold", sans-serif;
  --ocr: "Azeret Mono", "OCR A Std", "OCR A Extended", "OCR-A", "Andale Mono", monospace;
  --lcd: "DSEG14 Classic", "OCR A Std", "Azeret Mono", monospace;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
  --script: "Dancing Script", "Brush Script MT", cursive;
}

*, *::before, *::after { box-sizing: border-box; }
html { background: var(--black); scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(ellipse at 14% 8%, rgba(35,104,255,0.18), transparent 28rem),
    radial-gradient(ellipse at 84% 22%, rgba(255,59,200,0.14), transparent 27rem),
    linear-gradient(180deg, #04030b 0%, #080613 42%, #020203 100%);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  opacity: 0.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
button:disabled, input:disabled { cursor: wait; }
:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 4px;
}
::selection { background: var(--neon-blue); color: #02030b; }

.bvb-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(201, 190, 176, 0.22);
  background: linear-gradient(180deg, rgba(10, 8, 7, 0.92), rgba(5, 4, 3, 0.82));
  backdrop-filter: blur(14px);
}
.bvb-mark {
  display: inline-grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 0.45rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.bvb-mark i {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 0.86rem;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
}
.bvb-topbar p {
  margin: 0;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: right;
}

.bvb-machine {
  position: relative;
  isolation: isolate;
  padding: 0.35rem 0 2rem;
  overflow: hidden;
}
.bvb-machine::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(3,3,9,0.08), rgba(3,3,9,0.82) 48%, #020203 100%),
    repeating-linear-gradient(120deg, rgba(36,182,255,0.045) 0 1px, transparent 1px 18px);
}
.bvb-shell {
  position: relative;
  width: min(100% - 0.5rem, 76rem);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(36, 182, 255, 0.42);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(36,182,255,0.16), transparent 1.5rem, transparent calc(100% - 1.5rem), rgba(255,59,200,0.12)),
    linear-gradient(180deg, #111226 0%, #05050c 100%);
  box-shadow:
    0 2.2rem 5rem var(--shadow),
    0 0 3.5rem rgba(35,104,255,0.16),
    inset 0 0 0 1px rgba(255,255,255,0.05),
    inset 0 0 3rem rgba(36, 182, 255, 0.1);
}
.botr-shake {
  position: absolute;
  top: 0.5rem;
  right: 0.72rem;
  z-index: 6;
  width: 4.3rem;
  height: 3.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(225, 249, 255, 0.78);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow:
    0 0 0.35rem rgba(36,182,255,0.68),
    0 0 0.7rem rgba(255,59,200,0.22);
  transform: rotate(7deg);
  transition: color 180ms ease, filter 180ms ease, transform 180ms ease;
  filter:
    drop-shadow(0 0 0.18rem rgba(36,182,255,0.42))
    drop-shadow(0 0 0.4rem rgba(255,59,200,0.18));
}
.botr-shake::before {
  content: "";
  position: absolute;
  inset: 0.12rem;
  z-index: -2;
  background: linear-gradient(135deg, rgba(36,182,255,0.62), rgba(255,59,200,0.52) 68%, rgba(255,255,255,0.34));
  clip-path: polygon(50% 0%, 59% 25%, 78% 8%, 75% 32%, 100% 30%, 79% 48%, 97% 63%, 72% 63%, 79% 91%, 57% 72%, 45% 100%, 39% 72%, 13% 92%, 25% 64%, 0% 61%, 23% 48%, 4% 29%, 31% 33%, 27% 8%, 45% 27%);
  opacity: 0.66;
}
.botr-shake::after {
  content: "";
  position: absolute;
  inset: 0.28rem;
  z-index: -1;
  background:
    radial-gradient(circle at 42% 36%, rgba(36,182,255,0.1), transparent 40%),
    linear-gradient(155deg, rgba(22,25,43,0.98), rgba(3,4,10,0.98) 68%);
  clip-path: polygon(50% 0%, 59% 25%, 78% 8%, 75% 32%, 100% 30%, 79% 48%, 97% 63%, 72% 63%, 79% 91%, 57% 72%, 45% 100%, 39% 72%, 13% 92%, 25% 64%, 0% 61%, 23% 48%, 4% 29%, 31% 33%, 27% 8%, 45% 27%);
}
.botr-shake span {
  position: relative;
  display: block;
  transform: rotate(-10deg) translateY(0.05rem);
}
.botr-shake:hover,
.botr-shake:focus-visible {
  outline: none;
  color: #fff;
  transform: rotate(4deg) scale(1.04);
  filter:
    drop-shadow(0 0 0.25rem rgba(36,182,255,0.68))
    drop-shadow(0 0 0.55rem rgba(255,59,200,0.34));
}
.botr-shake:hover::before,
.botr-shake:focus-visible::before {
  opacity: 0.9;
}
.botr-shake:active {
  transform: rotate(10deg) scale(0.94);
}
.botr-shake:disabled {
  opacity: 0.38;
}
.bvb-shell.botr-is-shaking {
  animation: botr-cabinet-shake 520ms cubic-bezier(0.36, 0.07, 0.19, 0.97);
}
@keyframes botr-cabinet-shake {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0); }
  16% { transform: translate3d(-2px, 1px, 0) rotate(-0.12deg); }
  32% { transform: translate3d(3px, -1px, 0) rotate(0.14deg); }
  48% { transform: translate3d(-2px, 0, 0) rotate(-0.1deg); }
  64% { transform: translate3d(2px, 1px, 0) rotate(0.08deg); }
  82% { transform: translate3d(-1px, -1px, 0) rotate(-0.04deg); }
}
.bvb-lightbar {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.18rem;
  padding: 0.78rem 0.8rem;
  border-top: 1px solid rgba(36, 182, 255, 0.2);
  border-bottom: 1px solid rgba(36, 182, 255, 0.3);
  background:
    linear-gradient(180deg, #11142b, #03040a),
    #070605;
}
.bvb-lightbar--bottom {
  border-top: 1px solid rgba(36, 182, 255, 0.3);
  border-bottom: 0;
}
.bvb-lightbar span {
  height: 1.55rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 30%, rgba(0,0,0,0.2)),
    repeating-linear-gradient(90deg, #24b6ff 0 0.24rem, #2368ff 0.24rem 0.45rem, #ff3bc8 0.45rem 0.66rem, #08081a 0.66rem 0.9rem);
  box-shadow: 0 0 1rem rgba(36, 182, 255, 0.54), inset 0 0 0.55rem rgba(255,255,255,0.2);
}
.bvb-lightbar span:nth-child(2n) {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), transparent 32%, rgba(0,0,0,0.2)),
    repeating-linear-gradient(90deg, #7b3cff 0 0.24rem, #24b6ff 0.24rem 0.43rem, #ff3bc8 0.43rem 0.64rem, #050512 0.64rem 0.84rem);
}
.bvb-marquee {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 8.25rem;
  overflow: hidden;
  padding: 1.05rem 0.8rem 0.95rem;
  text-align: center;
  background:
    radial-gradient(ellipse, rgba(255,59,200,0.2), transparent 68%),
    radial-gradient(ellipse, rgba(36,182,255,0.24), transparent 68%),
    radial-gradient(ellipse, rgba(123,60,255,0.12), transparent 72%),
    linear-gradient(90deg, rgba(2,3,10,0.98), rgba(9,12,29,0.91) 47%, rgba(2,3,10,0.98)),
    repeating-linear-gradient(90deg, rgba(36,182,255,0.06) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, rgba(36,182,255,0.12), transparent 72%);
  background-size: 48% 185%, 48% 185%, 72% 110%, 100% 100%, auto, 100% 100%;
  background-position: -18% center, 118% center, 46% 118%, center, 0 0, center;
  border-bottom: 1px solid rgba(36, 182, 255, 0.52);
  box-shadow:
    inset 0 -1.4rem 2.6rem rgba(0,0,0,0.56),
    inset 0 0 2rem rgba(36,182,255,0.12);
  animation: bvb-marquee-ambient 31.2s ease-in-out infinite alternate;
}
.bvb-marquee::before {
  content: "";
  position: absolute;
  inset: 0.92rem 1.05rem 0.92rem;
  z-index: 0;
  opacity: 0.76;
  background:
    linear-gradient(90deg, rgba(36,182,255,0.72), rgba(123,60,255,0.3), transparent) left center / 24% 100% no-repeat,
    linear-gradient(270deg, rgba(255,59,200,0.68), rgba(123,60,255,0.28), transparent) right center / 24% 100% no-repeat,
    repeating-linear-gradient(90deg, #24b6ff 0 0.24rem, #17134a 0.24rem 0.5rem, #ff3bc8 0.5rem 0.76rem, #09091b 0.76rem 1.28rem) left center / 19% 86% no-repeat,
    repeating-linear-gradient(90deg, #ff3bc8 0 0.24rem, #17134a 0.24rem 0.5rem, #24b6ff 0.5rem 0.76rem, #09091b 0.76rem 1.28rem) right center / 19% 86% no-repeat,
    linear-gradient(90deg, rgba(36,182,255,0.06), transparent 34%, transparent 66%, rgba(255,59,200,0.06)) center / 100% 100% no-repeat;
  filter: saturate(1.14);
  box-shadow:
    0 0 1.8rem rgba(36, 182, 255, 0.22),
    0 0 2.8rem rgba(255, 59, 200, 0.12);
  animation: bvb-marquee-spill 20.8s ease-in-out infinite alternate;
}
.bvb-marquee::after {
  content: "";
  position: absolute;
  inset: auto 1rem 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--neon-blue), var(--magenta), transparent);
  opacity: 0.54;
  animation: bvb-marquee-rail 10.4s ease-in-out infinite alternate;
}
.bvb-kicker,
.bvb-subhead,
.botr-result__eyebrow,
.botr-result__brand,
.botr-result h3,
.bvb-section__kicker,
.bvb-footer span {
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.bvb-kicker {
  margin: 0;
  color: var(--teal);
  font-size: 0.68rem;
}
.bvb-marquee h1 {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0;
  padding: 0.08em 0.28em 0.04em;
  border: 1px solid rgba(160,220,235,0.16);
  background: linear-gradient(105deg, rgba(2,3,10,0.96), rgba(8,13,28,0.8), rgba(2,3,10,0.96));
  background-size: 180% 100%;
  background-position: 0% center;
  color: #f4f1e9;
  font-family: var(--gemini);
  font-size: clamp(2.05rem, 8.8vw, 4.5rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 0.96;
  text-transform: uppercase;
  transform: scaleX(0.9);
  transform-origin: center;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.4),
    -0.11rem 0 0.62rem rgba(36,182,255,0.54),
    0.11rem 0 0.68rem rgba(255,59,200,0.42),
    0 0 1.35rem rgba(190,230,236,0.18);
  box-shadow:
    inset 0 0 1.5rem rgba(36,182,255,0.04),
    0 0 1.4rem rgba(36,182,255,0.07);
  animation: bvb-marquee-title-glow 20.8s ease-in-out infinite alternate;
}
.bvb-marquee h1::before {
  content: attr(data-title);
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: inherit;
  pointer-events: none;
  background:
    linear-gradient(
      102deg,
      transparent 0%,
      transparent 35%,
      rgba(36,182,255,0.18) 42%,
      rgba(98,226,255,0.88) 47%,
      rgba(255,255,255,0.96) 50%,
      rgba(255,111,220,0.82) 54%,
      rgba(255,59,200,0.14) 60%,
      transparent 67%,
      transparent 100%
    );
  background-size: 260% 100%;
  background-position: 155% center;
  background-repeat: no-repeat;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  filter:
    drop-shadow(-0.08rem 0 0.32rem rgba(36,182,255,0))
    drop-shadow(0.08rem 0 0.38rem rgba(255,59,200,0));
  animation: bvb-marquee-letter-sweep 11.2s ease-in-out infinite;
}
.bvb-marquee h1 i {
  color: var(--teal);
  font-family: var(--serif);
  font-size: 2.35rem;
  font-style: italic;
  font-weight: 400;
  text-shadow: 0 0 1.1rem rgba(53, 213, 208, 0.62);
}
.bvb-subhead {
  max-width: 26rem;
  margin: 0 auto;
  color: var(--ink);
  font-size: 0.78rem;
}
.bvb-console {
  position: relative;
  overflow: hidden;
  padding: clamp(6.15rem, 16.5vw, 8.75rem) 1rem 1rem;
  background:
    linear-gradient(180deg, rgba(36,182,255,0.14), transparent 26%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 3px),
    linear-gradient(180deg, #080a18, #030307);
}
.bvb-console::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0.85rem;
  left: clamp(0.85rem, 3vw, 2.15rem);
  right: clamp(0.85rem, 3vw, 2.15rem);
  height: clamp(4.3rem, 10vw, 6.7rem);
  border: 1px solid rgba(197, 228, 255, 0.32);
  border-radius: 6px;
  background:
    radial-gradient(ellipse at 24% 82%, rgba(36, 182, 255, 0.26), transparent 42%),
    radial-gradient(ellipse at 74% 30%, rgba(255, 59, 200, 0.17), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.2), transparent 16%, rgba(0,0,0,0.24) 72%, rgba(255,255,255,0.09)),
    repeating-linear-gradient(90deg, rgba(208, 236, 255, 0.18) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.1) 0 1px, transparent 1px 3px),
    repeating-linear-gradient(135deg, rgba(41, 66, 94, 0.62) 0 2px, rgba(5, 9, 19, 0.72) 2px 5px, rgba(41, 66, 94, 0.28) 5px 7px),
    linear-gradient(90deg, #090e1b, #233246 46%, #080d18);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    inset 0 0 1.75rem rgba(9, 16, 28, 0.9),
    inset 0 0 2.8rem rgba(36,182,255,0.16),
    0 0 1.5rem rgba(36,182,255,0.16),
    0 0 2.4rem rgba(255,59,200,0.08);
  animation: bvb-grille-glow 7.5s ease-in-out infinite alternate;
}
.bvb-console::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0.42rem;
  left: clamp(0.55rem, 2vw, 1.4rem);
  right: clamp(0.55rem, 2vw, 1.4rem);
  height: clamp(5.3rem, 11.75vw, 8rem);
  pointer-events: none;
  background:
    radial-gradient(circle at 1.25rem 0.55rem, rgba(255,255,255,0.9) 0 0.1rem, rgba(143,164,184,0.86) 0.11rem 0.27rem, rgba(20,25,31,0.72) 0.28rem 0.42rem, transparent 0.43rem),
    radial-gradient(circle at calc(100% - 1.25rem) 0.55rem, rgba(255,255,255,0.9) 0 0.1rem, rgba(143,164,184,0.86) 0.11rem 0.27rem, rgba(20,25,31,0.72) 0.28rem 0.42rem, transparent 0.43rem),
    radial-gradient(circle at 1.25rem calc(100% - 0.55rem), rgba(255,255,255,0.8) 0 0.1rem, rgba(143,164,184,0.82) 0.11rem 0.27rem, rgba(20,25,31,0.72) 0.28rem 0.42rem, transparent 0.43rem),
    radial-gradient(circle at calc(100% - 1.25rem) calc(100% - 0.55rem), rgba(255,255,255,0.8) 0 0.1rem, rgba(143,164,184,0.82) 0.11rem 0.27rem, rgba(20,25,31,0.72) 0.28rem 0.42rem, transparent 0.43rem),
    linear-gradient(90deg, transparent 0 0.85rem, rgba(255,255,255,0.62) 0.85rem 0.92rem, rgba(80,95,112,0.64) 0.92rem 1.08rem, transparent 1.08rem calc(100% - 1.08rem), rgba(80,95,112,0.64) calc(100% - 1.08rem) calc(100% - 0.92rem), rgba(255,255,255,0.62) calc(100% - 0.92rem) calc(100% - 0.85rem), transparent calc(100% - 0.85rem)),
    linear-gradient(180deg, rgba(255,255,255,0.66) 0 0.08rem, rgba(113,128,145,0.62) 0.08rem 0.22rem, rgba(15,18,23,0.08) 0.22rem calc(100% - 0.22rem), rgba(113,128,145,0.58) calc(100% - 0.22rem) calc(100% - 0.08rem), rgba(255,255,255,0.52) calc(100% - 0.08rem));
  filter: drop-shadow(0 0 0.55rem rgba(36,182,255,0.28));
}
.bvb-console > * {
  position: relative;
  z-index: 1;
}
.botr-entry {
  display: grid;
  gap: 1rem;
  align-items: center;
}
.botr-entry__directions {
  position: relative;
  overflow: hidden;
  min-height: 5.5rem;
  display: grid;
  align-items: center;
  padding: 1rem;
  border: 1px solid rgba(36, 182, 255, 0.34);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(36,182,255,0.2), rgba(0,36,58,0.56) 38%, rgba(0,13,25,0.94) 39% 100%),
    repeating-linear-gradient(0deg, rgba(64,225,255,0.08) 0 1px, transparent 1px 4px),
    #02070d;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.8),
    inset 0 0 1.4rem rgba(36,182,255,0.18),
    0 0 0.9rem rgba(36,182,255,0.12);
}
.botr-entry__directions::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(72,225,255,0.13), transparent) 0 1.15rem / 68% 0.34rem no-repeat,
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,0.22) 3px 4px);
  mix-blend-mode: screen;
}
.botr-entry__directions p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #33dcff;
  font-family: var(--lcd);
  font-size: clamp(0.78rem, 2.9vw, 1.04rem);
  font-weight: 400;
  letter-spacing: 0.035em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 0 0.16rem rgba(145, 240, 255, 0.94),
    0 0 0.65rem rgba(36, 182, 255, 0.72);
}
.botr-entry__directions p[data-state="error"] {
  color: #33dcff;
  text-shadow:
    0 0 0.16rem rgba(145, 240, 255, 0.94),
    0 0 0.72rem rgba(36, 182, 255, 0.8);
}
.botr-form {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(5.5rem, 6.5rem) minmax(0, 1fr);
  gap: 0.75rem;
  align-items: center;
  width: min(100%, 27.2rem);
  margin-left: auto;
  padding: 0.72rem;
  border: 1px solid rgba(255, 104, 104, 0.78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.16), transparent 24%),
    linear-gradient(180deg, rgba(118, 8, 8, 0.94), rgba(45, 4, 6, 0.96) 52%, rgba(12, 3, 3, 0.98)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px 10px);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1.2rem 2.2rem rgba(255,130,98,0.18),
    inset 0 -1.5rem 2rem rgba(0,0,0,0.62),
    0 0 1.6rem rgba(255, 49, 49, 0.34),
    0 0 3rem rgba(240, 90, 143, 0.14);
}
.botr-form::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255,255,255,0.18), transparent 22% 72%, rgba(255,255,255,0.08)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: 0.78;
}
.botr-form > * {
  position: relative;
  z-index: 1;
}
.botr-coin-copy {
  position: relative;
  display: grid;
  gap: 0.08rem;
  align-content: center;
  min-height: 4.3rem;
  margin: 0;
  padding: 0.72rem 0.5rem;
  border: 1px solid rgba(255, 91, 91, 0.58);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255,40,40,0.08), transparent 24%),
    #130407;
  color: #d92c35;
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.88;
  text-align: center;
  text-transform: uppercase;
  text-shadow:
    -1px -1px 0 rgba(255, 114, 114, 0.6),
    1px 1px 0 rgba(45, 0, 3, 0.96),
    0 0 0.52rem rgba(255, 30, 42, 0.68);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 0 0.8rem rgba(255, 20, 34, 0.16),
    0 0 0.7rem rgba(255, 25, 42, 0.2);
}
.botr-coin-copy::before,
.botr-coin-copy::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  height: 1px;
  background: #c8373d;
  box-shadow: 0 0 0.35rem rgba(255, 53, 62, 0.6);
}
.botr-coin-copy::before { top: 0.42rem; }
.botr-coin-copy::after { bottom: 0.42rem; }
.botr-coin-copy span {
  display: block;
}
.botr-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 4.25rem;
  gap: 0.7rem;
}
.botr-input {
  width: 100%;
  min-height: 3.65rem;
  padding: 0.85rem 0.8rem;
  border: 1px solid rgba(255, 150, 122, 0.88);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.12), transparent 22%),
    linear-gradient(180deg, rgba(80, 8, 11, 0.95), rgba(10, 3, 4, 0.94));
  color: var(--ink);
  font-family: var(--ocr);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.2;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.78),
    inset 0 0.8rem 1.2rem rgba(255,120,90,0.1),
    0 0 0.95rem rgba(255,72,72,0.32);
}
.botr-input::placeholder { color: rgba(247, 239, 226, 0.32); }
.botr-input:focus {
  border-color: #ffd7c8;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.75),
    inset 0 0.8rem 1.2rem rgba(255,120,90,0.16),
    0 0 1.35rem rgba(255,72,72,0.54),
    0 0 2.3rem rgba(240, 90, 143, 0.24);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--rule);
  border-radius: 6px;
  background: rgba(12, 9, 7, 0.85);
  color: var(--amber-hot);
  font-family: var(--display);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 0 1rem rgba(0,0,0,0.42);
}
.button--gold,
.botr-submit {
  position: relative;
  overflow: hidden;
  min-width: 0;
  padding: 0;
  border-color: rgba(255, 98, 104, 0.92);
  background:
    linear-gradient(140deg, rgba(255,255,255,0.22), transparent 22%),
    linear-gradient(180deg, #ff232d, #b10716 48%, #340306);
  color: #ffd3d3;
  font-family: var(--ocr);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-shadow: 0 0 0.55rem rgba(255, 224, 224, 0.82);
  box-shadow:
    0 0 1.3rem rgba(255, 28, 42, 0.58),
    inset 0 0 0 1px rgba(255,255,255,0.16),
    inset 0 0.9rem 1.5rem rgba(255, 147, 147, 0.22),
    inset 0 -1rem 1.35rem rgba(23,0,3,0.72);
}
.botr-submit::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 0.62rem solid transparent;
  border-bottom: 0.62rem solid transparent;
  border-left: 0.95rem solid #fff2e8;
  filter: drop-shadow(0 0 0.45rem rgba(255, 230, 225, 0.92));
  transform: translateX(0.08rem);
}
.botr-submit::after {
  content: "";
  position: absolute;
  inset: 0.28rem;
  pointer-events: none;
  border: 1px solid rgba(255, 204, 204, 0.2);
  border-radius: 4px;
  box-shadow: inset 0 0 1rem rgba(255,255,255,0.12);
}
.button--ghost {
  border-color: rgba(53, 213, 208, 0.46);
  color: var(--teal);
}
.botr-disclaimer { display: none; }
.bvb-progress {
  display: none;
}
.bvb-progress span {
  display: grid;
  grid-template-columns: 1.9rem 1fr;
  gap: 0.65rem;
  align-items: center;
  color: var(--quiet);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.bvb-progress em {
  display: grid;
  place-items: center;
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 1;
  width: 1.9rem;
  height: 1.9rem;
  color: var(--quiet);
  font-style: normal;
  line-height: 1;
}
.bvb-progress span::before {
  content: "";
  width: 1.9rem;
  height: 1.9rem;
  grid-column: 1;
  grid-row: 1;
  border: 1px solid rgba(247,239,226,0.28);
  border-radius: 50%;
  background: #080604;
}
.bvb-progress span b {
  grid-column: 2;
  font-weight: 800;
}
.bvb-progress .is-lit em,
.botr-is-loading .bvb-progress span:nth-child(2) em,
.botr-has-result .bvb-progress em {
  color: #160a04;
}
.bvb-progress .is-lit::before,
.botr-is-loading .bvb-progress span:nth-child(2)::before,
.botr-has-result .bvb-progress span::before {
  border-color: var(--amber-hot);
  background: radial-gradient(circle, var(--amber-hot), var(--orange) 42%, #140905 70%);
  box-shadow: 0 0 1.1rem rgba(244,178,71,0.68);
}
.botr-is-loading .bvb-progress span {
  color: var(--muted);
}
.botr-status {
  min-height: 2.8rem;
  padding-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}
.botr-status:empty {
  min-height: 0;
  padding-top: 0;
}
.botr-status[data-state="error"] { color: #ffab91; }

.botr-suggestions {
  margin-top: 0.7rem;
  padding: 0.72rem;
  border: 1px solid rgba(255, 104, 104, 0.46);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), transparent 20%),
    linear-gradient(180deg, rgba(58, 6, 11, 0.72), rgba(8, 3, 5, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.035),
    inset 0 0 1.4rem rgba(255, 35, 45, 0.07),
    0 0 1rem rgba(255, 35, 45, 0.08);
}
.botr-suggestions[hidden] { display: none; }
.botr-suggestions__chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}
.botr-suggestions__chip {
  min-width: 0;
  min-height: 3.2rem;
  padding: 0.7rem 0.65rem;
  overflow: hidden;
  border: 1px solid rgba(255, 150, 122, 0.66);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.1), transparent 22%),
    linear-gradient(180deg, rgba(80, 8, 11, 0.92), rgba(10, 3, 4, 0.96));
  color: rgba(247, 239, 226, 0.52);
  font-family: var(--ocr);
  font-size: clamp(0.72rem, 2.5vw, 0.96rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.68),
    inset 0 0.7rem 1rem rgba(255,120,90,0.06),
    0 0 0.7rem rgba(255,72,72,0.16);
}
.botr-suggestions__chip:hover,
.botr-suggestions__chip:focus-visible {
  border-color: #ffd7c8;
  color: rgba(247, 239, 226, 0.8);
  box-shadow:
    inset 0 0 0 1px rgba(0,0,0,0.68),
    inset 0 0.7rem 1rem rgba(255,120,90,0.1),
    0 0 1rem rgba(255,72,72,0.32);
}
.bvb-lightwall {
  position: relative;
  min-height: clamp(12rem, 62vw, 20rem);
  margin-top: 1rem;
  overflow: hidden;
  border: 1px solid rgba(36,182,255,0.42);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), transparent 12%, rgba(0,0,0,0.5) 84%),
    repeating-linear-gradient(104deg, transparent 0 0.75rem, rgba(255,255,255,0.09) 0.75rem 0.9rem, transparent 0.9rem 1.95rem),
    repeating-linear-gradient(90deg, #050510 0 0.42rem, #24b6ff 0.42rem 0.6rem, #111bff 0.6rem 0.8rem, #ff3bc8 0.8rem 1.02rem, #160827 1.02rem 1.28rem, #050510 1.28rem 1.52rem);
  background-size: 100% 100%, 160% 100%, auto;
  background-position: center, 0 0, 0 0;
  box-shadow:
    0 0 2.4rem rgba(36, 182, 255, 0.24),
    inset 0 0 0 1px rgba(255,255,255,0.06),
    inset 0 -2.4rem 3.6rem rgba(0,0,0,0.58),
    inset 0 0 3rem rgba(36,182,255,0.18);
  animation:
    bvb-lightwall-breathe 5.2s ease-in-out infinite,
    bvb-lightwall-shift 13s ease-in-out infinite alternate;
}
.bvb-lightwall::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 28%, transparent 0 2.6rem, rgba(255,59,200,0.82) 2.7rem 2.95rem, transparent 3.05rem),
    radial-gradient(circle at 35% 40%, transparent 0 3.6rem, rgba(36,182,255,0.72) 3.72rem 4.02rem, transparent 4.15rem),
    radial-gradient(circle at 62% 25%, transparent 0 2.25rem, rgba(190,106,255,0.72) 2.4rem 2.66rem, transparent 2.8rem),
    radial-gradient(circle at 77% 53%, transparent 0 4.1rem, rgba(36,182,255,0.6) 4.22rem 4.55rem, transparent 4.72rem),
    linear-gradient(180deg, transparent 0 56%, rgba(36, 182, 255, 0.24) 82%, rgba(255, 59, 200, 0.18) 100%),
    radial-gradient(ellipse at 24% 84%, rgba(36, 182, 255, 0.44), transparent 31%),
    radial-gradient(ellipse at 62% 74%, rgba(255, 59, 200, 0.44), transparent 32%),
    radial-gradient(ellipse at 78% 92%, rgba(123, 60, 255, 0.42), transparent 27%);
  mix-blend-mode: screen;
  transform: scale(1.02) translate3d(0, 0, 0);
  transform-origin: center bottom;
  animation: bvb-lava-drift 8s ease-in-out infinite alternate;
}
.bvb-lightwall::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(0,0,0,0.28) 0 0.18rem, transparent 0.18rem 1.1rem),
    linear-gradient(90deg, rgba(0,0,0,0.62), transparent 7%, transparent 93%, rgba(0,0,0,0.62));
}
.botr-has-result .bvb-lightwall {
  display: none;
}
@keyframes bvb-lightwall-breathe {
  0%, 100% {
    box-shadow:
      0 0 1.8rem rgba(36, 182, 255, 0.2),
      inset 0 0 0 1px rgba(255,255,255,0.06),
      inset 0 -2.4rem 3.6rem rgba(0,0,0,0.58),
      inset 0 0 2.4rem rgba(36,182,255,0.16);
  }
  50% {
    box-shadow:
      0 0 3.8rem rgba(255, 59, 200, 0.34),
      inset 0 0 0 1px rgba(255,255,255,0.08),
      inset 0 -2.4rem 3.6rem rgba(0,0,0,0.48),
      inset 0 0 4.3rem rgba(36,182,255,0.32);
  }
}

@keyframes bvb-lightwall-shift {
  0% {
    background-position: center, 0 0, 0 0;
  }
  100% {
    background-position: center, 18% 0, 0.42rem 0;
  }
}

@keyframes bvb-lava-drift {
  0% {
    opacity: 0.72;
    transform: scale(1.02) translate3d(-1.5%, 1.5%, 0);
  }
  45% {
    opacity: 0.96;
    transform: scale(1.09) translate3d(2.4%, -2.2%, 0);
  }
  100% {
    opacity: 0.82;
    transform: scale(1.05) translate3d(-0.6%, -1.2%, 0);
  }
}

@keyframes bvb-grille-glow {
  0% {
    filter: saturate(1) brightness(0.86);
    background-position: center, center, center, 0 0, 0 0, 0 0, center;
  }
  100% {
    filter: saturate(1.28) brightness(1.08);
    background-position: 8% 0, 88% 0, center, 0.24rem 0, 0 0.18rem, 0.36rem 0, center;
  }
}

@keyframes bvb-marquee-ambient {
  0% {
    background-position: -18% center, 118% center, 46% 118%, center, 0 0, center;
    box-shadow:
      inset 0 -1.4rem 2.6rem rgba(0,0,0,0.58),
      inset 0 0 1.8rem rgba(36,182,255,0.09);
  }
  100% {
    background-position: -2% center, 102% center, 55% 96%, center, 12px 0, center;
    box-shadow:
      inset 0 -1.4rem 2.6rem rgba(0,0,0,0.52),
      inset 0 0 2.4rem rgba(255,59,200,0.11);
  }
}

@keyframes bvb-marquee-spill {
  0% {
    opacity: 0.68;
    background-size: 22% 100%, 26% 100%, 19% 86%, 19% 86%, 100% 100%;
    filter: saturate(1.06) brightness(0.92);
  }
  100% {
    opacity: 0.88;
    background-size: 29% 100%, 22% 100%, 19% 86%, 19% 86%, 100% 100%;
    filter: saturate(1.18) brightness(1.02);
  }
}

@keyframes bvb-marquee-title-glow {
  0% {
    border-color: rgba(160,220,235,0.15);
    background-position: 0% center;
    text-shadow:
      0 1px 0 rgba(255,255,255,0.42),
      -0.12rem 0 0.68rem rgba(36,182,255,0.58),
      0.08rem 0 0.56rem rgba(255,59,200,0.3),
      0 0 1.25rem rgba(190,230,236,0.16);
    box-shadow:
      inset 0 0 1.7rem rgba(36,182,255,0.045),
      0 0 1.3rem rgba(36,182,255,0.07);
  }
  100% {
    border-color: rgba(235,175,225,0.17);
    background-position: 100% center;
    text-shadow:
      0 1px 0 rgba(255,255,255,0.42),
      -0.08rem 0 0.56rem rgba(36,182,255,0.3),
      0.12rem 0 0.7rem rgba(255,59,200,0.54),
      0 0 1.35rem rgba(230,205,235,0.18);
    box-shadow:
      inset 0 0 1.7rem rgba(255,59,200,0.04),
      0 0 1.4rem rgba(255,59,200,0.065);
  }
}

@keyframes bvb-marquee-letter-sweep {
  0%, 24% {
    opacity: 0;
    background-position: 155% center;
    filter:
      drop-shadow(-0.08rem 0 0.32rem rgba(36,182,255,0))
      drop-shadow(0.08rem 0 0.38rem rgba(255,59,200,0));
  }
  31% {
    opacity: 0.2;
  }
  45% {
    opacity: 0.72;
    filter:
      drop-shadow(-0.08rem 0 0.38rem rgba(36,182,255,0.3))
      drop-shadow(0.08rem 0 0.45rem rgba(255,59,200,0.22));
  }
  67% {
    opacity: 0.62;
  }
  77% {
    opacity: 0;
    background-position: -55% center;
    filter:
      drop-shadow(-0.08rem 0 0.32rem rgba(36,182,255,0))
      drop-shadow(0.08rem 0 0.38rem rgba(255,59,200,0));
  }
  100% {
    opacity: 0;
    background-position: -55% center;
  }
}

@keyframes bvb-marquee-rail {
  0% {
    opacity: 0.42;
    transform: scaleX(0.92);
  }
  100% {
    opacity: 0.68;
    transform: scaleX(1);
  }
}

.botr-result {
  scroll-margin-top: 5.25rem;
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgba(36,182,255,0.56);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(36,182,255,0.12), rgba(255,59,200,0.08) 36%, rgba(123,60,255,0.1) 70%),
    rgba(4, 5, 14, 0.94);
  box-shadow: 0 0 2rem rgba(36,182,255,0.18), inset 0 0 2rem rgba(0,0,0,0.52);
}
.botr-result[hidden] { display: none; }
.botr-result__top {
  display: grid;
  grid-template-columns: 5.6rem minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(36,182,255,0.22);
}
.botr-result__eyebrow,
.botr-result__brand {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  line-height: 1.25;
}
.botr-result__eyebrow { color: var(--magenta); }
.botr-result__brand { color: var(--neon-blue); overflow-wrap: anywhere; }
.botr-result__band {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.9rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow: 0 0 1.2rem rgba(244,178,71,0.28);
}
.botr-score {
  display: grid;
  place-items: center;
  width: 5.1rem;
  aspect-ratio: 1;
  border: 1px solid rgba(36,182,255,0.66);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(36,182,255,0.16), transparent 64%),
    rgba(3,3,3,0.78);
  color: var(--neon-blue);
  text-align: center;
  box-shadow: 0 0 1.2rem rgba(36,182,255,0.26);
}
.botr-score span {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}
.botr-score small {
  display: block;
  margin-top: 0.18rem;
  color: var(--quiet);
  font-size: 0.53rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}
.botr-verdict {
  margin: 1rem 0 0.65rem;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.35;
}
.botr-why {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.botr-album {
  display: block;
  min-width: 0;
  margin: 0;
}
.botr-album[hidden] { display: none; }
.botr-album img {
  width: 5.6rem;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  box-shadow: 0 0.85rem 1.5rem rgba(0,0,0,0.42);
}
.botr-spotify,
.botr-traits,
.botr-alternates,
.botr-surprise {
  padding: 1rem 0;
  border-top: 1px solid rgba(36,182,255,0.18);
}
.botr-spotify[hidden],
.botr-surprise[hidden] { display: none; }
.botr-result h3 {
  margin: 0 0 0.8rem;
  color: var(--neon-blue);
  font-size: 0.68rem;
  line-height: 1.35;
}
.botr-spotify__button {
  gap: 0.55rem;
  width: max-content;
  min-height: 3rem;
  padding: 0.72rem 1rem;
  border-color: rgba(30, 215, 96, 0.72);
  background:
    linear-gradient(180deg, rgba(30,215,96,0.08), rgba(0,0,0,0.18)),
    rgba(2, 12, 7, 0.9);
  color: #1ed760;
  font-family: var(--body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  box-shadow:
    inset 0 0 0 1px rgba(30,215,96,0.08),
    0 0 1rem rgba(30,215,96,0.12);
}
.botr-spotify__button:hover,
.botr-spotify__button:focus-visible {
  border-color: #1ed760;
  color: #53ee89;
  box-shadow:
    inset 0 0 0 1px rgba(30,215,96,0.12),
    0 0 1.3rem rgba(30,215,96,0.24);
}
.botr-spotify__button svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
}
.botr-spotify__button circle {
  fill: currentColor;
}
.botr-spotify__button path {
  fill: none;
  stroke: #041008;
  stroke-width: 1.35;
  stroke-linecap: round;
}
.botr-trait-grid {
  display: grid;
  gap: 0.55rem;
}
.botr-trait {
  display: grid;
  grid-template-columns: minmax(6.7rem, 0.75fr) minmax(5.5rem, 1fr) 1.5rem;
  gap: 0.6rem;
  align-items: center;
  min-height: 1.75rem;
}
.botr-trait__label,
.botr-trait__number {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: capitalize;
}
.botr-trait__number {
  color: var(--magenta);
  text-align: right;
}
.botr-trait__meter {
  display: block;
  height: 0.48rem;
  overflow: hidden;
  border: 1px solid rgba(36,182,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.botr-trait__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--neon-blue), var(--violet), var(--magenta));
  box-shadow: 0 0 0.65rem rgba(36,182,255,0.34);
}
.botr-result ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.botr-alternates li,
.botr-surprise-card li {
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 0.78rem;
  align-items: center;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(36,182,255,0.12);
}
.botr-alternates li:first-child,
.botr-surprise-card li:first-child { border-top: 0; padding-top: 0; }
.botr-alternates img,
.botr-surprise-card img {
  width: 3.5rem;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 4px;
}
.botr-alternates strong,
.botr-surprise-card strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: uppercase;
}
.botr-result__actions {
  display: grid;
  gap: 0.7rem;
  padding-top: 0.3rem;
}
.botr-share-note {
  min-height: 1.2rem;
  color: var(--neon-blue);
  font-size: 0.82rem;
}

.botr-methodology {
  padding: 2rem 1rem 2.4rem;
  border-top: 1px solid rgba(36,182,255,0.2);
  background:
    linear-gradient(180deg, rgba(36,182,255,0.055), transparent),
    #030303;
}
.bvb-section {
  display: grid;
  gap: 1.25rem;
  align-items: center;
  width: min(100%, 52rem);
  margin: 0 auto;
}
.botr-methodology__image {
  width: min(100%, 13rem);
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(36,182,255,0.24);
  border-radius: 4px;
  opacity: 0.82;
  box-shadow: 0 1rem 2rem rgba(0,0,0,0.34);
}
.botr-methodology h2 {
  margin: 0 0 0.7rem;
  color: var(--ink);
  font-family: var(--ocr);
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
}
.botr-methodology__body p,
.botr-methodology__body ol {
  max-width: 35rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}
.botr-methodology__body ol {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.45rem;
}
.botr-methodology__body li {
  padding-left: 0.25rem;
}
.botr-methodology__body li::marker {
  color: var(--magenta);
  font-family: var(--ocr);
  font-weight: 700;
}
.bvb-footer {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 1rem 1.3rem;
  border-top: 1px solid rgba(36,182,255,0.18);
  background: #030303;
  text-align: right;
}
.bvb-footer p {
  margin: 0;
  color: var(--neon-blue);
  font-family: var(--display);
  font-weight: 700;
  text-transform: none;
}
.bvb-footer a {
  display: inline-block;
  padding: 0.2rem 0;
}
.bvb-footer a:hover,
.bvb-footer a:focus-visible {
  color: var(--magenta);
}
.bvb-footer span {
  color: var(--quiet);
  font-size: 0.62rem;
}

@media (min-width: 42rem) {
  .bvb-topbar { padding-inline: 1.4rem; }
  .bvb-machine { padding-top: 0.5rem; }
  .bvb-shell { width: min(100% - 2rem, 76rem); }
  .bvb-marquee h1 { font-size: 5.7rem; letter-spacing: 0.035em; }
  .bvb-console { padding: 7.5rem 1.35rem 1.35rem; }
  .botr-entry { grid-template-columns: minmax(0, 1fr) minmax(24rem, 27.2rem); gap: 1.5rem; }
  .botr-entry__directions p { font-size: clamp(0.82rem, 1.7vw, 1.04rem); }
  .botr-result__actions { grid-template-columns: max-content max-content minmax(0, 1fr); align-items: center; }
  .botr-trait-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 1rem; }
  .bvb-section { grid-template-columns: 13rem minmax(0, 1fr); gap: 1.75rem; }
}

@media (min-width: 64rem) {
  body { font-size: 17px; }
  .bvb-topbar { min-height: 5rem; padding-inline: 2rem; }
  .bvb-machine { padding: 0.75rem 0 3rem; }
  .bvb-lightbar { padding: 0.9rem 1.1rem; gap: 0.5rem; }
  .bvb-lightbar span { height: 1.15rem; }
  .bvb-marquee {
    min-height: 11rem;
    align-content: center;
    padding: 1.5rem 2rem;
  }
  .bvb-marquee h1 { font-size: 7rem; }
  .bvb-console {
    display: grid;
    gap: 1rem;
    align-items: start;
    padding: 9rem 1.55rem 1.55rem;
  }
  .botr-status { padding-top: 0; }
  .botr-suggestions { margin-top: 0; }
  .bvb-lightwall {
    min-height: 31rem;
    margin-top: 0;
  }
  .botr-has-result .bvb-console {
    grid-template-columns: minmax(20rem, 0.78fr) minmax(0, 1.22fr);
    grid-template-areas:
      "form result"
      "status result"
      "suggestions result";
    gap: 1rem 1.25rem;
  }
  .botr-has-result .botr-entry { display: block; grid-area: form; }
  .botr-has-result .botr-entry__directions { display: none; }
  .botr-has-result .botr-form { width: 100%; }
  .botr-has-result .botr-status { grid-area: status; }
  .botr-has-result .botr-suggestions { grid-area: suggestions; }
  .botr-has-result .botr-result { grid-area: result; }
  .botr-result { margin-top: 0; padding: 1.35rem; }
  .botr-result__band { font-size: 4.6rem; }
  .botr-score { width: 6.1rem; }
  .botr-score span { font-size: 2.15rem; }
  .botr-verdict { font-size: 1.55rem; }
  .botr-trait-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .botr-methodology { padding-block: 2.6rem 3rem; }
}

@media (max-width: 25rem) {
  .bvb-topbar { align-items: flex-start; flex-direction: column; }
  .bvb-topbar p { text-align: left; }
  .bvb-marquee h1 { font-size: 2.65rem; letter-spacing: 0.04em; }
  .botr-form {
    grid-template-columns: 5.5rem minmax(0, 1fr);
    gap: 0.55rem;
  }
  .botr-coin-copy {
    padding-inline: 0.25rem;
    font-size: 0.9rem;
  }
  .botr-result__top { grid-template-columns: 4.6rem minmax(0, 1fr); }
  .botr-score { grid-column: 2; width: 4.7rem; }
  .botr-trait { grid-template-columns: minmax(5.8rem, 0.75fr) minmax(4.5rem, 1fr) 1.3rem; }
  .botr-album img { width: 4.6rem; }
  .bvb-machine { padding-bottom: 0.5rem; }
  .bvb-lightwall { min-height: 12.5rem; }
  .botr-shake {
    top: 0.28rem;
    right: 0.3rem;
    width: 3.65rem;
    height: 3.2rem;
    font-size: 0.7rem;
  }
  .botr-suggestions__chips {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bvb-shell.botr-is-shaking { animation: none; }
  .bvb-marquee,
  .bvb-marquee::before,
  .bvb-marquee::after,
  .bvb-marquee h1,
  .bvb-marquee h1::before {
    animation: none;
  }
  .bvb-marquee h1::before { opacity: 0; }
}
