/* Bottoms public vote — cinematic, handmade, streamer-shareable */
:root {
  --bp-ink: #f4f0e8;
  --bp-mute: #9a958c;
  --bp-dim: #5c5850;
  --bp-bg: #08070a;
  --bp-panel: #100f14;
  --bp-line: rgba(244, 240, 232, 0.08);
  --bp-gold: #e8c56a;
  --bp-accent: #c4b5a0;
}

body.is-public {
  --bottom-nav-h: 0px;
  background: var(--bp-bg);
}
body.is-public #view {
  min-height: 100dvh;
}
body.is-public .app-nav {
  background: transparent;
  border-bottom: 0;
  position: absolute;
  width: 100%;
  z-index: 20;
  backdrop-filter: none;
}
body.is-public .nav-search,
body.is-public .nav-actions,
body.is-public .bottom-nav {
  display: none !important;
}
body.is-public .brand-sub {
  display: none !important;
}
body.is-public .brand-name {
  color: var(--bp-ink);
  font-size: 15px;
  letter-spacing: -0.02em;
  text-transform: none;
}
body.is-public .brand-text {
  justify-content: center;
}

.bp {
  color: var(--bp-ink);
  min-height: 100dvh;
  font-family: var(--font-ui);
}

/* Hero — Wick origin + emote stack */
.bp-hero {
  position: relative;
  min-height: 82dvh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 96px 24px 40px;
  overflow: hidden;
}
.bp-origin {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.bp-origin-stage {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 48% 70% at 78% 42%, rgba(232,197,106,0.09), transparent 58%),
    radial-gradient(ellipse 40% 50% at 18% 78%, rgba(196,181,160,0.04), transparent 55%),
    linear-gradient(180deg, #0c0b10 0%, #08070a 55%, #050507 100%);
}

.bp-origin-beats {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: min(420px, 54vw);
  margin-bottom: 22px;
}
.bp-beat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(8, 7, 10, 0.78);
  border: 1px solid var(--bp-line);
  opacity: 0;
  transform: translateY(10px);
  animation: bpBeatIn 0.65s cubic-bezier(0.32, 0.72, 0, 1) forwards;
  animation-delay: calc(var(--d, 0) * 0.18s + 0.08s);
}
.bp-beat img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
  image-rendering: auto;
}
.bp-beat-who {
  font-weight: 650;
  font-size: 13px;
}
.bp-beat-body {
  font-size: 13px;
  color: var(--bp-mute);
}
.bp-beat-mod {
  border-color: rgba(83, 252, 24, 0.22);
}
@keyframes bpBeatIn {
  to { opacity: 1; transform: translateY(0); }
}

.bp-reel {
  position: absolute;
  right: clamp(12px, 4vw, 48px);
  top: 12%;
  bottom: 12%;
  width: 156px;
  overflow: hidden;
  mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 10%, #000 90%, transparent);
  z-index: 1;
}
.bp-reel-track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: bpReel 56s linear infinite;
}
.bp-reel-track.is-paused,
.bp.is-focus-open .bp-reel-track {
  animation-play-state: paused;
}
.bp-reel-slot {
  width: 140px;
  height: 140px;
  flex: 0 0 140px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  padding: 6px;
  background: #121118;
  border: 1px solid var(--bp-line);
}
.bp-reel-slot img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  image-rendering: auto;
}
@keyframes bpReel {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.bp-reel-mobile {
  display: none;
}

.bp-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8,7,10,0.35) 0%, transparent 42%, rgba(8,7,10,0.4) 100%),
    linear-gradient(180deg, rgba(8,7,10,0.2) 0%, transparent 30%, rgba(8,7,10,0.88) 88%);
  pointer-events: none;
}
.bp-hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(560px, 54vw);
  padding-right: 12px;
}
.bp-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--bp-ink);
  text-wrap: balance;
}
.bp-lore {
  margin: 14px 0 0;
  max-width: 38ch;
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  line-height: 1.45;
  color: var(--bp-mute);
}
.bp-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
  align-items: center;
}
.bp-cta {
  appearance: none;
  border: 0;
  cursor: pointer;
  height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-weight: 650;
  font-size: 15px;
  letter-spacing: -0.01em;
  background: var(--bp-ink);
  color: #111;
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), opacity 0.2s;
}
.bp-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 18px 0 22px;
  height: 52px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: #f4f0e8;
  color: #0a090c;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.12);
}
.bp-cta-ico {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(0,0,0,0.1);
  font-size: 14px;
  line-height: 1;
}
.bp-cta:hover { transform: translateY(-1px); }
.bp-cta:active { transform: scale(0.98); }
.bp-cta-ghost {
  background: transparent;
  color: var(--bp-mute);
  border: 1px solid var(--bp-line);
}
.bp-studio-link {
  font-size: 14px;
  color: var(--bp-mute);
  text-decoration: none;
  border-bottom: 1px solid rgba(154, 149, 140, 0.45);
  padding-bottom: 1px;
  transition: color 0.25s cubic-bezier(0.32, 0.72, 0, 1), border-color 0.25s;
}
.bp-studio-link:hover {
  color: var(--bp-ink);
  border-color: rgba(244, 240, 232, 0.55);
}

/* Main vote body */
.bp-body {
  padding: 24px 20px 80px;
  max-width: 1200px;
  margin: 0 auto;
}
.bp-section-head {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}
.bp-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.04em;
}
.bp-section-head p {
  margin: 6px 0 0;
  color: var(--bp-mute);
  font-size: 14px;
}

.bp-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: sticky;
  top: 12px;
  z-index: 10;
  padding: 8px 0;
  background: #08070a;
  margin-bottom: 20px;
}
.bp-filter {
  height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--bp-line);
  background: transparent;
  color: var(--bp-mute);
  cursor: pointer;
  font-size: 13px;
}
.bp-filter.is-active {
  color: #111;
  background: var(--bp-ink);
  border-color: var(--bp-ink);
}

.bp-family {
  margin-bottom: 36px;
}
.bp-family-title {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
}
.bp-family-title h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}
.bp-family-title span {
  font-size: 13px;
  color: var(--bp-dim);
}
.bp-family-lore {
  margin: -6px 0 14px;
  font-size: 13px;
  color: var(--bp-mute);
  font-style: italic;
  max-width: 52ch;
}
.bp-focus-lore {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--bp-dim);
  font-style: italic;
}

.bp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 12px;
}

.bp-card {
  appearance: none;
  border: 1px solid var(--bp-line);
  background: var(--bp-panel);
  border-radius: 16px;
  padding: 14px 10px 12px;
  cursor: pointer;
  text-align: center;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s var(--ease-out);
  position: relative;
}
.bp-card:hover {
  border-color: rgba(244,240,232,0.22);
  transform: translateY(-2px);
}
.bp-card.is-crowned {
  border-color: color-mix(in srgb, var(--bp-gold) 70%, transparent);
  box-shadow: 0 0 0 1px rgba(232,197,106,0.35);
}
.bp-card.is-focused {
  border-color: rgba(244,240,232,0.45);
}
.bp-card-stage {
  width: 128px;
  height: 128px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
  background: #121118;
  border-radius: 10px;
}
.bp-card-stage img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  image-rendering: auto;
}
.bp-card-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 auto 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--bp-line);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bp-dim);
}
.bp-card-chip img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  image-rendering: auto;
}
.bp-card strong {
  display: block;
  font-size: 13px;
  letter-spacing: -0.02em;
}
.bp-card .bp-crowns {
  margin-top: 4px;
  font-size: 11px;
  color: var(--bp-gold);
  font-family: var(--font-mono);
}
.bp-crown-mark {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 14px;
  color: var(--bp-gold);
}

/* Focus stage */
.bp-focus {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(5,5,7,0.96);
  padding: 16px 20px 20px;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  overflow-y: auto;
}
.bp-focus.is-open { display: flex; }
.bp-focus-close { align-self: flex-end; }
.bp-focus-stage {
  display: grid;
  grid-template-columns: minmax(200px, 320px) minmax(280px, 420px);
  gap: 20px;
  align-items: stretch;
  width: min(920px, 96vw);
}
.bp-focus-visuals {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
}
.bp-focus-hd {
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #0a0a0c;
  border: 1px solid var(--bp-line);
}
.bp-focus-hd img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.bp-focus-128 {
  width: 128px;
  height: 128px;
  border-radius: 10px;
  border: 1px solid var(--bp-line);
  background: #121118;
}
.bp-focus-128 img { width: 128px; height: 128px; object-fit: contain; }

.bp-focus-chat {
  min-height: 320px;
  height: 100%;
}
.bp-kick-shell {
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  border: 1px solid var(--bp-line);
  background: #0b0c0e;
  overflow: hidden;
}
.bp-kick-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--bp-line);
  font-size: 12px;
  color: var(--bp-mute);
}
.bp-kick-top strong { color: var(--bp-ink); font-size: 13px; }
.bp-kick-hint { margin-left: auto; font-family: var(--font-mono); font-size: 10px; color: var(--bp-dim); }
.bp-kick-shell .live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #53fc18;
  box-shadow: 0 0 8px rgba(83,252,24,0.6);
}
.bp-kick-frame {
  position: relative;
  flex: 1;
  min-height: 280px;
}
.bp-kick-shell .kick-chat {
  position: absolute;
  inset: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 8px 10px 12px;
  scrollbar-width: thin;
  scrollbar-color: #3a3942 transparent;
}
.bp-kick-shell .kick-chat::-webkit-scrollbar {
  width: 6px;
}
.bp-kick-shell .kick-chat::-webkit-scrollbar-track {
  background: transparent;
}
.bp-kick-shell .kick-chat::-webkit-scrollbar-thumb {
  background: #3a3942;
  border-radius: 999px;
}
.bp-kick-shell .kick-chat::-webkit-scrollbar-thumb:hover {
  background: #55535e;
}
.bp-kick-shell .chat-row {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 6px;
  padding: 2px 0;
  font-size: 12.5px;
  line-height: 1.25;
  min-height: 28px;
  color: var(--bp-ink);
}
.bp-kick-shell .chat-row.mention,
.bp-kick-shell .chat-row.is-pin {
  background: rgba(83,252,24,0.06);
  border-radius: 6px;
  padding-left: 4px;
  padding-right: 4px;
}
.bp-kick-shell .msg-avatar {
  width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: #fff; flex: 0 0 auto;
}
.bp-kick-shell .msg-badges { display: inline-flex; gap: 2px; align-items: center; flex: 0 0 auto; }
.bp-kick-shell .b-sub {
  min-width: 16px; height: 14px; padding: 0 3px;
  background: rgba(0,212,168,0.18); border: 1px solid rgba(0,212,168,0.45);
  border-radius: 3px; color: #7dffd0;
  font-family: var(--font-mono); font-weight: 700; font-size: 9px;
  display: inline-flex; align-items: center; justify-content: center;
}
.bp-kick-shell .b-mod, .bp-kick-shell .b-vip, .bp-kick-shell .b-glf,
.bp-kick-shell .b-coin, .bp-kick-shell .b-hmr, .bp-kick-shell .b-gft {
  width: 14px; height: 14px; border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
}
.bp-kick-shell .b-mod { background: rgba(83,252,24,0.18); border-color: rgba(83,252,24,0.45); color: #53fc18; }
.bp-kick-shell .b-vip { color: #ffd54f; }
.bp-kick-shell .b-glf { color: #76ff03; }
.bp-kick-shell .b-mod svg, .bp-kick-shell .b-vip svg, .bp-kick-shell .b-glf svg,
.bp-kick-shell .b-coin svg, .bp-kick-shell .b-hmr svg, .bp-kick-shell .b-gft svg {
  width: 10px; height: 10px; display: block;
}
.bp-kick-shell .msg-user { font-weight: 600; white-space: nowrap; }
.bp-kick-shell .msg-user .colon { color: var(--bp-dim); margin-left: 3px; font-weight: 500; }
.bp-kick-shell .msg-body {
  color: #e8e6e1;
  flex: 1 1 auto; min-width: 0;
  display: inline-flex; flex-wrap: wrap; align-items: center; gap: 2px;
}
.bp-kick-shell .msg-mention { color: #53fc18; }
.bp-kick-shell .emote-img {
  width: 28px !important; height: 28px !important;
  object-fit: contain; vertical-align: middle; flex: 0 0 auto;
}
.bp-kick-shell .msg-ts {
  font-family: var(--font-mono); font-size: 9px; color: var(--bp-dim); flex: 0 0 auto;
}
.bp-kick-shell .chat-jump {
  position: absolute; left: 50%; bottom: 10px; transform: translateX(-50%);
  appearance: none; border: 0; cursor: pointer;
  height: 28px; padding: 0 12px; border-radius: 999px;
  background: rgba(83,252,24,0.92); color: #041018; font-size: 11px; font-weight: 650;
  opacity: 0; pointer-events: none; transition: opacity 0.15s;
  z-index: 2;
}
.bp-kick-shell .chat-jump.visible { opacity: 1; pointer-events: auto; }

.bp-chat-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #0c0c10;
  border: 1px solid var(--bp-line);
  font-size: 13px;
}
.bp-chat-line .name { color: #53fc18; font-weight: 600; }
.bp-chat-line img { width: 28px; height: 28px; object-fit: contain; }
.bp-focus-meta {
  text-align: center;
  max-width: 520px;
}
.bp-focus-meta h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}
.bp-focus-meta p {
  margin: 0;
  color: var(--bp-mute);
  font-size: 14px;
}
.bp-focus-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.bp-react {
  appearance: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--bp-line);
  background: rgba(16, 15, 20, 0.9);
  color: var(--bp-ink);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: transform 0.2s cubic-bezier(0.32, 0.72, 0, 1), border-color 0.2s, background 0.2s;
}
.bp-react:hover { transform: translateY(-1px); border-color: rgba(244,240,232,0.22); }
.bp-react:active { transform: scale(0.98); }
.bp-react-ico {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-size: 15px;
  line-height: 1;
}
.bp-react-count {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--bp-mute);
  min-width: 1ch;
}
.bp-react-like {
  min-width: 118px;
  background: #f4f0e8;
  color: #111;
  border-color: #f4f0e8;
}
.bp-react-like.is-on {
  background: #53fc18;
  border-color: #53fc18;
  color: #041018;
}
.bp-react-like .bp-react-count { color: inherit; opacity: 0.7; }
.bp-react-nah {
  color: var(--bp-mute);
}
.bp-react-nah:hover {
  border-color: rgba(248, 113, 113, 0.45);
  color: #fca5a5;
}
.bp-react-fire:hover {
  border-color: rgba(251, 191, 36, 0.45);
  color: #fbbf24;
}
.bp-focus-nav {
  display: flex;
  gap: 8px;
}
.bp-filmstrip {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  max-width: min(920px, 94vw);
  padding: 8px 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12px, #000 calc(100% - 12px), transparent);
}
.bp-filmstrip::-webkit-scrollbar { display: none; }
.bp-filmstrip button {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  padding: 0;
  border-radius: 10px;
  border: 2px solid transparent;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}
.bp-filmstrip button.is-active { border-color: var(--bp-gold); }
.bp-filmstrip img { width: 100%; height: 100%; object-fit: contain; }
.bp-strip-ph {
  display: block;
  width: 100%;
  height: 100%;
  background: #121118;
}

/* Standings */
.bp-standings {
  margin-top: 40px;
  padding: 22px;
  border-radius: 20px;
  border: 1px solid var(--bp-line);
  background: rgba(16,15,20,0.8);
}
.bp-standings h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  letter-spacing: -0.03em;
}
.bp-standings > p {
  margin: 0 0 16px;
  color: var(--bp-mute);
  font-size: 14px;
}
.bp-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.bp-top-card {
  text-align: center;
  padding: 16px 10px;
  border-radius: 16px;
  background: rgba(0,0,0,0.25);
  border: 1px solid var(--bp-line);
}
.bp-top-card.is-leader {
  border-color: rgba(232,197,106,0.45);
}
.bp-top-card img.em128 {
  width: 96px;
  height: 96px;
  object-fit: contain;
  margin: 0 auto 8px;
}
.bp-top-card .rank {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--bp-gold);
  text-transform: uppercase;
}
.bp-celebrate {
  margin-top: 18px;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(232,197,106,0.3);
  background: rgba(232,197,106,0.06);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.bp-celebrate.is-show { display: flex; }
.bp-celebrate img.big { width: 128px; height: 128px; object-fit: contain; }

.bp-status {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--bp-dim);
  margin-top: 10px;
}
.bp-status.is-offline { color: var(--bp-gold); }

@media (max-width: 820px) {
  .bp-hero {
    padding: 80px 18px 28px;
    min-height: 88dvh;
    justify-content: flex-end;
  }
  .bp-hero-copy {
    max-width: 100%;
    padding-right: 0;
  }
  .bp-origin-beats {
    max-width: 100%;
  }
  .bp-hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }
  .bp-top { grid-template-columns: 1fr; }
  .bp-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .bp-focus { padding: 12px; padding-bottom: calc(12px + env(safe-area-inset-bottom)); }
  .bp-focus-stage {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .bp-focus-chat, .bp-kick-shell, .bp-kick-frame { min-height: 240px; }
  .bp-reel { display: none; }
  .bp-reel-mobile {
    display: flex;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 16%;
    z-index: 1;
    gap: 12px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .bp-reel-mobile::-webkit-scrollbar { display: none; }
  .bp-reel-mobile .bp-reel-slot {
    width: 104px;
    height: 104px;
    flex: 0 0 104px;
    border-radius: 14px;
    padding: 4px;
  }
  .bp-reel-mobile .bp-reel-slot img {
    width: 92px;
    height: 92px;
  }
  .bp-hero-veil {
    background:
      linear-gradient(180deg, rgba(8,7,10,0.15) 0%, rgba(8,7,10,0.3) 40%, rgba(8,7,10,0.96) 78%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bp-reel-track { animation: none; }
  .bp-beat {
    opacity: 1;
    transform: none;
    animation: none;
  }
  .bp-cta,
  .bp-card,
  .bp-studio-link { transition: none; }
}

/* OBS / fullscreen — quiet chrome, fill the frame */
@media (display-mode: fullscreen), (min-height: 900px) {
  body.is-public .bp-hero { min-height: 100vh; }
}
