/* LyricBingo V2 — TV venue display (board + fullscreen overlays) */

html:has(.v2-venue-tv),
body:has(.v2-venue-tv),
#lb-v2-root:has(.v2-venue-tv) {
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden !important;
  background: #05030b;
}

.v2-venue-tv {
  --tv-pad: clamp(14px, 1.6vw, 28px);
  --tv-gap: clamp(12px, 1.4vw, 24px);
  --tv-lime: #c8f830;
  --tv-pink: #ff2fd0;
  --tv-cyan: #18d9ff;
  position: relative;
  isolation: isolate;
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 20% 15%, rgba(233, 28, 255, 0.2), transparent 34%),
    radial-gradient(circle at 80% 12%, rgba(21, 216, 255, 0.16), transparent 36%),
    linear-gradient(155deg, #06040f 0%, #100818 50%, #041018 100%);
}

/* ── Base board (between songs) ── */
.v2-venue-board {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: var(--tv-gap);
  height: 100%;
  min-height: 0;
  max-height: 100dvh;
  padding: var(--tv-pad);
  padding-bottom: max(var(--tv-pad), env(safe-area-inset-bottom, 0px));
  box-sizing: border-box;
  overflow: hidden;
}

.v2-tv-top {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(0, 2fr) auto;
  gap: var(--tv-gap);
  align-items: center;
}

.v2-tv-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.v2-tv-brand img {
  width: clamp(140px, 14vw, 220px);
  height: auto;
  display: block;
}
.v2-tv-brand small {
  color: #c4b8dc;
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.v2-tv-room {
  text-align: center;
  padding: clamp(10px, 1vw, 16px) clamp(16px, 1.4vw, 24px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}
.v2-tv-room span {
  display: block;
  color: #b0a6c8;
  font-size: clamp(9px, 0.7vw, 11px);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.v2-tv-room strong {
  display: block;
  margin-top: 2px;
  font-size: clamp(28px, 3.5vw, 52px);
  line-height: 1;
  color: var(--tv-lime);
  text-shadow: 0 0 24px rgba(200, 248, 48, 0.3);
}

.v2-tv-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 0.8vw, 14px);
  min-width: 0;
}
.v2-tv-stats > div {
  text-align: center;
  padding: clamp(10px, 1vw, 16px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 10, 26, 0.7);
}
.v2-tv-stats span {
  display: block;
  color: #b0a6c8;
  font-size: clamp(9px, 0.7vw, 11px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.v2-tv-stats strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(20px, 2.2vw, 38px);
  line-height: 1;
}
.v2-tv-stats strong[data-display-players] {
  color: var(--tv-lime);
}

.v2-tv-fs-btn {
  white-space: nowrap;
  border-radius: 14px;
  padding: clamp(10px, 1vw, 14px) clamp(14px, 1.2vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(233, 37, 255, 0.9), rgba(21, 206, 255, 0.9));
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}
.v2-tv-fs-msg {
  position: absolute;
  right: var(--tv-pad);
  bottom: calc(var(--tv-pad) - 4px);
  margin: 0;
  color: #f6b3ff;
  font-size: 11px;
  z-index: 25;
}

/* Main: QR + recap */
.v2-tv-main {
  min-height: 0;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1.45fr);
  gap: var(--tv-gap);
  align-items: stretch;
  overflow: hidden;
}

.v2-tv-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vh, 14px);
  padding: clamp(14px, 1.4vw, 22px);
  border-radius: clamp(18px, 1.5vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(14, 10, 26, 0.72);
  text-align: center;
}
.v2-tv-qr .v2-qr-frame {
  border-radius: 16px;
  padding: 8px;
  background: #fff;
  box-shadow: 0 0 40px rgba(21, 206, 255, 0.28);
  animation: v2QrGlowPulse 3s ease-in-out infinite;
}
.v2-tv-qr .v2-qr-frame img {
  display: block;
  width: min(18vw, 22vh, 200px);
  aspect-ratio: 1;
}
.v2-tv-qr-label {
  margin: 0;
  font-weight: 900;
  font-size: clamp(13px, 1.1vw, 18px);
  color: #fff;
}
.v2-tv-qr-url {
  margin: 0;
  color: #c4b8dc;
  font-size: clamp(11px, 0.95vw, 15px);
  word-break: break-all;
  line-height: 1.2;
}

/* Last 5 songs — hero section */
.v2-tv-recap {
  min-height: 0;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vh, 14px);
  padding: clamp(14px, 1.4vw, 24px);
  border-radius: clamp(20px, 1.8vw, 32px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 8, 22, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
}
.v2-tv-recap-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  flex-shrink: 0;
  min-width: 0;
}
.v2-tv-recap-head h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 42px);
  line-height: 1;
  letter-spacing: 0.02em;
}
.v2-tv-recap-head p {
  margin: 0;
  color: var(--tv-lime);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 800;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v2-venue-tv.is-countdown .v2-tv-recap-head p {
  animation: v2TvPulse 1s ease-in-out infinite;
}
.v2-venue-tv.is-list-countdown .v2-tv-recap-head p {
  animation: v2TvPulse 1s ease-in-out infinite;
}

.v2-tv-recap-list {
  flex: 1;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.75vh, 10px);
  justify-content: stretch;
  overflow: hidden;
}

.v2-recap-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(10px, 1vw, 16px);
  align-items: center;
  flex: 1 1 0;
  min-height: 0;
  padding: clamp(8px, 1vh, 14px) clamp(12px, 1.4vw, 22px);
  border-radius: clamp(12px, 1vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  animation: v2TvSlideIn 0.45s ease both;
  min-width: 0;
  overflow: hidden;
}
.v2-recap-body {
  min-width: 0;
  overflow: hidden;
}
.v2-recap-num {
  display: grid;
  place-items: center;
  width: clamp(32px, 3.2vh, 48px);
  height: clamp(32px, 3.2vh, 48px);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--tv-pink), var(--tv-cyan));
  color: #fff;
  font-weight: 1000;
  font-size: clamp(14px, 1.8vh, 22px);
  flex-shrink: 0;
}
.v2-recap-card strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: clamp(22px, min(3vw, 3.8vh), 48px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  min-width: 0;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
}
.v2-recap-card em {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-top: 2px;
  font-style: normal;
  color: #c4b8dc;
  font-size: clamp(12px, min(1.5vw, 1.8vh), 20px);
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
  white-space: normal;
  word-break: break-word;
}

.v2-recap-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #a89cbd;
  text-align: center;
}
.v2-recap-empty span {
  font-size: clamp(48px, 8vw, 96px);
  opacity: 0.5;
}
.v2-recap-empty p {
  margin: 0;
  font-size: clamp(18px, 2vw, 32px);
  font-weight: 800;
}

/* Footer sponsor dock */
.v2-tv-foot {
  min-height: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.v2-venue-tv .v2-venue-sponsor-bar {
  flex: 1;
  max-width: 100%;
}
.v2-dock-sponsor-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(8px, 1vh, 14px);
  padding: clamp(12px, 1.2vw, 18px) clamp(16px, 1.8vw, 28px);
  border-radius: clamp(16px, 1.4vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 6, 18, 0.88);
  backdrop-filter: blur(14px);
  box-shadow:
    0 0 32px rgba(200, 248, 48, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.v2-dock-sponsor-kicker {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 16px);
  font-size: clamp(9px, 0.75vw, 11px);
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9a8fb5;
}
.v2-dock-sponsor-kicker::before,
.v2-dock-sponsor-kicker::after {
  content: "";
  flex: 1;
  max-width: 56px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 248, 48, 0.45), transparent);
}
.v2-dock-sponsor-kicker span {
  flex: 0 0 auto;
  color: var(--tv-lime);
}
.v2-dock-sponsor-stage {
  display: flex;
  justify-content: center;
  width: 100%;
}
.v2-dock-sponsors-row {
  display: grid;
  width: 100%;
  align-items: stretch;
  justify-items: center;
  gap: clamp(10px, 1.4vw, 18px);
}
.v2-dock-sponsors-row--1 {
  grid-template-columns: 1fr;
  max-width: min(280px, 42vw);
  margin: 0 auto;
}
.v2-dock-sponsors-row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.v2-dock-sponsors-row--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.v2-dock-sponsor-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 0.8vh, 10px);
  width: 100%;
  min-height: clamp(64px, 7vh, 96px);
  padding: clamp(10px, 1.2vw, 16px) clamp(12px, 1.4vw, 20px);
  border-radius: clamp(10px, 1vw, 14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.v2-dock-sponsor-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(40px, 5vh, 64px);
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(4px, 0.6vw, 8px);
}
.v2-dock-sponsors-row--1 .v2-dock-sponsor-logo {
  max-height: clamp(52px, 6.5vh, 80px);
  padding: clamp(6px, 0.8vw, 10px);
}
.v2-dock-sponsors-row--2 .v2-dock-sponsor-logo {
  max-height: clamp(44px, 5.2vh, 68px);
}
.v2-dock-sponsors-row--3 .v2-dock-sponsor-logo {
  max-height: clamp(36px, 4.5vh, 56px);
}
.v2-dock-sponsor-fallback {
  display: grid;
  place-items: center;
  width: clamp(40px, 4.5vw, 56px);
  height: clamp(40px, 4.5vw, 56px);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--tv-lime), var(--tv-cyan));
  color: #060511;
  font-weight: 900;
  font-size: clamp(14px, 1.2vw, 18px);
}
.v2-dock-sponsor-name {
  display: block;
  max-width: 100%;
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.v2-dock-sponsors-carousel {
  position: relative;
  width: 100%;
  max-width: min(320px, 48vw);
  min-height: clamp(64px, 7vh, 96px);
  overflow: hidden;
}
.v2-dock-sponsor-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.v2-dock-sponsor-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.v2-dock-sponsor-slide .v2-dock-sponsor-tile {
  max-width: min(280px, 42vw);
}

/* ── Phase visibility (no flicker from hidden toggles) ── */
.v2-venue-tv .v2-venue-scrim {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}
.v2-venue-tv .v2-venue-overlay {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.97);
  transition: opacity 0.45s ease, transform 0.5s cubic-bezier(0.2, 1.2, 0.2, 1), visibility 0.45s ease;
}
.v2-venue-tv.v2-phase-hints .v2-venue-scrim,
.v2-venue-tv.v2-phase-reveal .v2-venue-scrim {
  opacity: 1;
  visibility: visible;
}
.v2-venue-tv.v2-phase-hints .v2-venue-overlay--hints {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.v2-venue-overlay--hints {
  z-index: 21;
}

.v2-venue-overlay--reveal {
  z-index: 21;
}
.v2-venue-tv.v2-phase-reveal .v2-venue-overlay--reveal {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.v2-venue-tv.v2-phase-timer .v2-venue-scrim {
  opacity: 1;
  visibility: visible;
}
.v2-venue-tv.v2-phase-timer .v2-venue-overlay--timer {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.v2-venue-overlay--timer {
  z-index: 22;
}

.v2-venue-overlay--timer .v2-overlay-kicker {
  flex-shrink: 0;
}

.v2-venue-overlay--timer .v2-venue-timer-pop {
  flex-shrink: 0;
  max-width: min(96vw, 1200px);
}

.v2-venue-timer-pop {
  font-family: var(--v2-display, "Bebas Neue", "DM Sans", sans-serif);
  font-size: clamp(96px, 22vw, 280px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 0 40px rgba(200, 248, 48, 0.45), 0 8px 48px rgba(0, 0, 0, 0.55);
  animation: v2VenueTimerPulse 1s ease-in-out infinite;
}



.v2-venue-timer-panel .v2-timer-live {
  margin: 8px 0 0;
  color: var(--v2-lime, #c8f830);
}

@keyframes v2VenueTimerPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

/* Ambient sparks */
.v2-venue-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.v2-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--tv-lime);
  box-shadow: 0 0 16px var(--tv-lime);
  animation: v2TvSpark 3.2s ease-in-out infinite;
  will-change: transform, opacity;
}
.v2-spark--1 { left: 12%; top: 20%; animation-delay: 0s; }
.v2-spark--2 { right: 18%; top: 30%; background: var(--tv-pink); box-shadow: 0 0 16px var(--tv-pink); animation-delay: -1.4s; }
.v2-spark--3 { left: 44%; bottom: 22%; background: var(--tv-cyan); box-shadow: 0 0 16px var(--tv-cyan); animation-delay: -2.6s; }

/* v2-venue-stage — board fills viewport; overlays stay fixed above */
.v2-venue-tv.v2-venue-stage {
  display: block;
  height: 100dvh;
  padding: 0;
  gap: 0;
}

/* Sponsor dock — dedicated board row (never overlaps song list) */
.v2-venue-board .v2-tv-sponsor-dock {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 2;
  pointer-events: none;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: clamp(4px, 0.6vh, 8px) 0 0;
  box-sizing: border-box;
  overflow: hidden;
  flex-shrink: 0;
  min-height: 0;
}

.v2-tv-sponsor-dock {
  position: relative;
  pointer-events: none;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.v2-tv-sponsor-dock .v2-venue-sponsor-bar,
.v2-tv-sponsor-dock .v2-sponsor-placeholder {
  animation: v2TvSponsorIn 0.6s ease both;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.v2-sponsor-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vh, 12px);
  padding: clamp(14px, 1.4vw, 20px) clamp(18px, 2vw, 32px);
  border-radius: clamp(16px, 1.4vw, 22px);
  border: 1px dashed rgba(200, 248, 48, 0.28);
  background: rgba(8, 6, 18, 0.85);
  color: #a89cbd;
  font-size: clamp(13px, 1.1vw, 16px);
  text-align: center;
}
.v2-sponsor-placeholder .v2-dock-sponsor-kicker {
  width: 100%;
}
.v2-sponsor-placeholder em {
  font-style: normal;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

/* ── Dark scrim + overlays ── */
.v2-venue-scrim {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  z-index: 12;
  background: rgba(4, 2, 10, 0.9);
  backdrop-filter: blur(12px);
  pointer-events: none;
}
.v2-venue-scrim[hidden] {
  display: block !important;
}

.v2-venue-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vh, 36px);
  padding:
    max(var(--tv-pad), env(safe-area-inset-top, 0px))
    max(var(--tv-pad), env(safe-area-inset-right, 0px))
    max(var(--tv-pad), env(safe-area-inset-bottom, 0px))
    max(var(--tv-pad), env(safe-area-inset-left, 0px));
  box-sizing: border-box;
  text-align: center;
  pointer-events: none;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.v2-venue-overlay[hidden] {
  display: flex !important;
}

.v2-overlay-kicker {
  margin: 0;
  color: var(--tv-lime);
  font-size: clamp(14px, 1.2vw, 22px);
  font-weight: 1000;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

/* Hint bubbles — huge emojis */
.v2-venue-hints-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3.5vh, 48px);
  width: 100%;
  max-width: min(96vw, 1400px);
  flex-shrink: 0;
}

.v2-venue-hints-pop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 40px);
  max-width: min(92vw, 1400px);
}
.v2-hint-bubble {
  display: grid;
  place-items: center;
  min-width: clamp(80px, 12vw, 180px);
  min-height: clamp(80px, 12vw, 180px);
  padding: clamp(12px, 1.5vw, 24px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 2px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 0 80px rgba(255, 47, 208, 0.35),
    0 0 0 0 rgba(200, 248, 48, 0.4),
    0 24px 60px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  font-size: clamp(56px, 10vw, 140px);
  line-height: 1;
  animation: v2TvHintPop 0.65s cubic-bezier(0.2, 1.5, 0.2, 1) both;
}
.v2-hint-bubble--new {
  animation: v2TvHintBurst 0.75s cubic-bezier(0.15, 1.6, 0.2, 1) both;
}
.v2-hint-bubble--wait {
  animation: v2TvPulse 1.2s ease-in-out infinite;
}

/* Hint wait — animated "Listen" label (replaces ear emoji) */
.v2-hint-listen {
  display: grid;
  place-items: center;
  min-width: clamp(140px, 22vw, 320px);
  min-height: clamp(88px, 13vw, 180px);
  padding: clamp(12px, 1.5vw, 24px);
  animation: v2ListenIn 0.65s cubic-bezier(0.2, 1.4, 0.2, 1) both;
}

.v2-hint-listen__word {
  display: block;
  font-family: var(--v2-display, "Bebas Neue", "DM Sans", sans-serif);
  font-size: clamp(52px, 10vw, 128px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tv-lime);
  text-shadow:
    0 0 32px rgba(200, 248, 48, 0.55),
    0 0 64px rgba(200, 248, 48, 0.28);
  animation: v2ListenPulse 1.35s ease-in-out infinite, v2ListenGlow 2.2s ease-in-out infinite;
  will-change: transform, opacity;
}

/* Progressive artist tease during hint phase */
.v2-venue-artist-tease {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(10px, 1.6vh, 18px);
  width: 100%;
  max-width: min(92vw, 1100px);
  padding: clamp(16px, 2vh, 28px) clamp(20px, 3vw, 40px);
  border-radius: clamp(18px, 2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 6, 18, 0.72);
  backdrop-filter: blur(12px);
  box-shadow:
    0 0 48px rgba(255, 47, 208, 0.14),
    0 20px 56px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  animation: v2ArtistTeaseIn 0.55s cubic-bezier(0.2, 1.2, 0.2, 1) both;
}

.v2-venue-artist-tease--idle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  animation: none;
}

.v2-artist-tease-kicker {
  margin: 0;
  color: var(--tv-pink);
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.v2-artist-tease-name {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0;
  font-family: var(--v2-display, "Bebas Neue", "DM Sans", sans-serif);
  font-size: clamp(36px, 6.5vw, 96px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.v2-artist-tease-revealed,
.v2-artist-tease-hidden,
.v2-artist-tease-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
}

.v2-artist-tease-char {
  color: #fff;
  text-shadow: 0 0 28px rgba(200, 248, 48, 0.45), 0 6px 24px rgba(0, 0, 0, 0.45);
}

.v2-artist-tease-char--new {
  animation: v2ArtistCharPop 0.55s cubic-bezier(0.15, 1.6, 0.2, 1) both;
  color: var(--tv-lime);
}

.v2-artist-tease-blank {
  display: inline-block;
  min-width: 0.55em;
  color: rgba(255, 255, 255, 0.22);
  text-shadow: none;
  animation: v2ArtistBlankPulse 1.4s ease-in-out infinite;
}

.v2-artist-tease-gap {
  display: inline-block;
  flex-shrink: 0;
  min-width: clamp(18px, 0.95em, 48px);
  width: clamp(22px, 1.15em, 56px);
  height: 0.15em;
  vertical-align: middle;
  margin: 0 clamp(4px, 0.25em, 12px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  opacity: 0.35;
  animation: v2ArtistGapPulse 1.6s ease-in-out infinite;
}

.v2-artist-tease-gap--revealed {
  min-width: clamp(24px, 1.35em, 64px);
  width: clamp(30px, 1.55em, 72px);
  height: 0.18em;
  margin: 0 clamp(10px, 0.55em, 24px);
  opacity: 1;
  background: rgba(200, 248, 48, 0.22);
  box-shadow: 0 0 16px rgba(200, 248, 48, 0.25);
  animation: v2ArtistGapLive 2s ease-in-out infinite;
}

@keyframes v2ArtistTeaseIn {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

@keyframes v2ArtistCharPop {
  0% { opacity: 0; transform: scale(0.4) translateY(12px); }
  70% { transform: scale(1.12) translateY(-4px); }
  100% { opacity: 1; transform: none; }
}

@keyframes v2ArtistBlankPulse {
  0%, 100% { opacity: 0.22; }
  50% { opacity: 0.55; }
}

/* Song reveal */
.v2-venue-overlay--reveal .v2-reveal-title {
  margin: 0;
  max-width: min(92vw, 1200px);
  font-size: clamp(42px, 8vw, 120px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow:
    0 0 60px rgba(255, 47, 208, 0.45),
    0 4px 0 rgba(0, 0, 0, 0.3);
  animation: v2TvRevealTitle 0.6s cubic-bezier(0.2, 1.3, 0.2, 1) both;
}
.v2-venue-overlay--reveal .v2-reveal-artist {
  margin: 0;
  max-width: min(80vw, 900px);
  color: #e8e0f8;
  font-size: clamp(22px, 3.2vw, 56px);
  font-weight: 700;
  animation: v2TvRevealArtist 0.6s 0.12s cubic-bezier(0.2, 1.2, 0.2, 1) both;
}

/* Player pop */
.v2-tv-stats .is-pop strong {
  animation: v2TvPop 0.55s ease;
  color: var(--tv-lime);
}

/* Validation burst stays on top */
.v2-venue-tv .v2-validation-display {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  min-height: 100dvh;
  z-index: 30;
}

/* ── Winner celebration overlay (card validation) ── */
.v2-winner-celebration {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  pointer-events: none;
  overflow: hidden;
}

.v2-winner-celebration__scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(200, 248, 48, 0.28), transparent 42%),
    radial-gradient(circle at 18% 20%, rgba(255, 47, 208, 0.22), transparent 36%),
    rgba(4, 2, 10, 0.82);
  backdrop-filter: blur(10px);
  animation: v2WinnerScrimIn 0.45s ease both;
}

.v2-winner-celebration__burst {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(120vmin, 900px);
  height: min(120vmin, 900px);
  margin: -50% 0 0 -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 248, 48, 0.45) 0%, rgba(200, 248, 48, 0.12) 38%, transparent 68%);
  animation: v2WinnerBurst 1.8s ease-out both;
}

.v2-winner-celebration__confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.v2-winner-celebration__bit {
  position: absolute;
  left: calc(50% + (var(--i) - 14) * 2.2vw);
  top: -8%;
  width: clamp(8px, 0.9vw, 14px);
  height: clamp(14px, 1.4vw, 22px);
  border-radius: 2px;
  background: hsl(calc(var(--i) * 23deg), 92%, 62%);
  opacity: 0;
  animation: v2WinnerConfetti 2.4s calc(var(--i) * 0.03s) ease-out both;
}

.v2-winner-celebration__stage {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(24px, 4vw, 48px);
  animation: v2WinnerStageIn 0.7s cubic-bezier(0.2, 1.35, 0.25, 1) both;
}

.v2-winner-celebration__kicker {
  margin: 0 0 clamp(12px, 2vh, 20px);
  font-size: clamp(14px, 1.4vw, 22px);
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tv-lime, #c8f830);
  animation: v2WinnerKicker 0.8s 0.15s ease both;
}

.v2-winner-celebration__letters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.2vw, 18px);
  margin: 0 0 clamp(10px, 1.5vh, 18px);
}

.v2-winner-celebration__letter {
  display: grid;
  place-items: center;
  width: clamp(52px, 9vw, 110px);
  height: clamp(64px, 11vw, 130px);
  border-radius: clamp(12px, 1.4vw, 20px);
  font-size: clamp(40px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #061009;
  background: linear-gradient(160deg, #fff 0%, #c8f830 45%, #c8f830 100%);
  box-shadow:
    0 0 40px rgba(200, 248, 48, 0.45),
    0 18px 50px rgba(0, 0, 0, 0.35);
  transform: scale(0.2) rotate(-18deg);
  opacity: 0;
  animation: v2WinnerLetter 0.65s calc(0.12s + var(--i) * 0.09s) cubic-bezier(0.2, 1.45, 0.25, 1) both;
}

.v2-winner-celebration__title {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.2);
  animation: v2WinnerTitle 0.7s 0.55s cubic-bezier(0.2, 1.2, 0.2, 1) both;
}

.v2-winner-celebration__card {
  margin: clamp(10px, 1.5vh, 16px) 0 0;
  font-size: clamp(20px, 2.5vw, 36px);
  font-weight: 700;
  color: #e8e0f8;
  animation: v2WinnerTitle 0.6s 0.72s cubic-bezier(0.2, 1.2, 0.2, 1) both;
}

.v2-winner-celebration.is-fail .v2-winner-celebration__scrim {
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 45, 149, 0.2), transparent 42%),
    rgba(4, 2, 10, 0.86);
}

.v2-winner-celebration.is-fail .v2-winner-celebration__title {
  font-size: clamp(24px, 3.5vw, 48px);
  color: #ffb8d8;
}

.v2-winner-celebration.is-exiting {
  animation: v2WinnerExit 0.65s ease forwards;
}

.v2-winner-celebration.is-exiting .v2-winner-celebration__stage {
  animation: v2WinnerStageOut 0.55s ease forwards;
}

@keyframes v2WinnerScrimIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes v2WinnerBurst {
  0% { transform: scale(0.2); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: scale(1.15); opacity: 0; }
}

@keyframes v2WinnerStageIn {
  from { opacity: 0; transform: scale(0.82) translateY(24px); }
  to { opacity: 1; transform: none; }
}

@keyframes v2WinnerStageOut {
  to { opacity: 0; transform: scale(0.92) translateY(-16px); }
}

@keyframes v2WinnerKicker {
  from { opacity: 0; letter-spacing: 0.5em; }
  to { opacity: 1; letter-spacing: 0.28em; }
}

@keyframes v2WinnerLetter {
  0% { opacity: 0; transform: scale(0.2) rotate(-18deg) translateY(40px); }
  70% { transform: scale(1.08) rotate(4deg) translateY(-6px); }
  100% { opacity: 1; transform: scale(1) rotate(0) translateY(0); }
}

@keyframes v2WinnerTitle {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@keyframes v2WinnerConfetti {
  0% { opacity: 0; transform: translate3d(0, 0, 0) rotate(0deg); }
  12% { opacity: 1; }
  100% { opacity: 0; transform: translate3d(calc((var(--i) - 14) * 18px), 110vh, 0) rotate(calc(var(--i) * 24deg)); }
}

@keyframes v2WinnerExit {
  to { opacity: 0; }
}

/* Responsive */
@media (max-width: 900px) {
  .v2-tv-top {
    grid-template-columns: 1fr 1fr;
  }
  .v2-tv-stats {
    grid-column: 1 / -1;
  }
  .v2-tv-fs-btn {
    grid-column: 2;
    grid-row: 1;
  }
  .v2-tv-main {
    grid-template-columns: 1fr;
  }
  .v2-tv-qr {
    flex-direction: row;
    text-align: left;
  }
}

@media (max-height: 700px) {
  .v2-recap-card strong {
    font-size: clamp(22px, 2.4vw, 38px);
  }
  .v2-recap-card em {
    font-size: clamp(12px, 1vw, 18px);
  }
  .v2-hint-bubble {
    min-width: 64px;
    min-height: 64px;
    font-size: clamp(40px, 8vw, 80px);
  }
}

@keyframes v2TvScrimIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes v2TvOverlayIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: none; }
}

@keyframes v2TvSpark {
  0%, 100% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.5); }
  15%, 75% { opacity: 1; transform: translate3d(0, -36px, 0) scale(1.35); }
}
@keyframes v2TvHintPop {
  from { opacity: 0; transform: scale(0.25) translate3d(0, 48px, 0); }
  to { opacity: 1; transform: none; }
}
@keyframes v2TvHintBurst {
  0% { opacity: 0; transform: scale(0.2) rotate(-12deg); filter: blur(6px); }
  55% { opacity: 1; transform: scale(1.12) rotate(4deg); filter: blur(0); box-shadow: 0 0 100px rgba(200, 248, 48, 0.5), 0 24px 60px rgba(0,0,0,.45); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
@keyframes v2TvSponsorIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
@keyframes v2TvSponsorGlow {
  0%, 100% { box-shadow: inset 0 1px 0 rgba(255,255,255,.1), 0 0 0 rgba(200, 248, 48,0); transform: scale(1); }
  50% { box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 0 32px rgba(200, 248, 48,.2); transform: scale(1.02); }
}
@keyframes v2TvRevealTitle {
  from { opacity: 0; transform: scale(0.7) translateY(30px); }
  to { opacity: 1; transform: none; }
}
@keyframes v2TvRevealArtist {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes v2TvSlideIn {
  from { opacity: 0; transform: translate3d(-24px, 0, 0) scale(0.96); }
  to { opacity: 1; transform: none; }
}
@keyframes v2TvPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.06); opacity: 0.85; }
}
@keyframes v2TvPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .v2-venue-tv *,
  .v2-venue-scrim,
  .v2-venue-overlay,
  .v2-winner-celebration * {
    animation: none !important;
    transition: none !important;
  }

  .v2-winner-celebration__letter {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* Timer phase: sponsors only in overlay (not footer dock) */
.v2-venue-tv.v2-phase-timer .v2-tv-sponsor-dock {
  display: none !important;
  visibility: hidden !important;
}

/* Timer sponsors — glass panel below countdown */
.v2-venue-timer-sponsors {
  flex-shrink: 0;
  width: 100%;
  max-width: min(94vw, 920px);
  margin-top: clamp(20px, 3.5vh, 44px);
  animation: v2TvSponsorIn 0.75s cubic-bezier(0.2, 1, 0.2, 1) both;
  animation-delay: 0.2s;
}

.v2-venue-overlay--timer .v2-venue-timer-sponsors {
  flex-shrink: 0;
  width: 100%;
  max-width: min(94vw, 920px);
}

.v2-timer-sponsor-panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(16px, 2.4vh, 28px);
  padding: clamp(22px, 2.8vh, 36px) clamp(26px, 3.5vw, 52px);
  border-radius: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 6, 18, 0.78);
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 48px rgba(200, 248, 48, 0.1),
    0 20px 56px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.v2-timer-sponsor-kicker {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 20px);
  font-size: clamp(10px, 0.95vw, 13px);
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9a8fb5;
}

.v2-timer-sponsor-kicker::before,
.v2-timer-sponsor-kicker::after {
  content: "";
  flex: 1;
  max-width: 72px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 248, 48, 0.5), transparent);
}

.v2-timer-sponsor-kicker span {
  flex: 0 0 auto;
  color: var(--tv-lime);
}

.v2-timer-sponsor-stage {
  display: flex;
  justify-content: center;
  width: 100%;
}

.v2-timer-sponsors-row {
  display: grid;
  width: 100%;
  align-items: stretch;
  justify-items: center;
  gap: clamp(12px, 2vw, 22px);
}

.v2-timer-sponsors-row--1 {
  grid-template-columns: 1fr;
}

.v2-timer-sponsors-row--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.v2-timer-sponsors-row--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.v2-timer-sponsor-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vh, 16px);
  width: 100%;
  min-height: clamp(96px, 13vh, 156px);
  padding: clamp(18px, 2.2vw, 28px) clamp(20px, 2.6vw, 36px);
  border-radius: clamp(12px, 1.2vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.v2-timer-sponsor-logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: clamp(72px, 11vh, 140px);
  object-fit: contain;
  object-position: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(8px, 1vw, 14px);
}

.v2-timer-sponsors-row--1 .v2-timer-sponsor-logo {
  max-height: clamp(104px, 15vh, 196px);
  padding: clamp(10px, 1.2vw, 16px);
}

.v2-timer-sponsors-row--2 .v2-timer-sponsor-logo {
  max-height: clamp(84px, 10.5vh, 132px);
}

.v2-timer-sponsors-row--3 .v2-timer-sponsor-logo {
  max-height: clamp(68px, 9vh, 116px);
}

.v2-timer-sponsor-fallback {
  display: grid;
  place-items: center;
  width: clamp(56px, 7vw, 88px);
  height: clamp(56px, 7vw, 88px);
  border-radius: 16px;
  background: linear-gradient(135deg, var(--tv-lime), var(--tv-cyan));
  color: #060511;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: 0.02em;
}

.v2-timer-sponsor-name {
  max-width: 100%;
  font-size: clamp(17px, 1.8vw, 28px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* Carousel fallback (4+ sponsors edge case) */
.v2-timer-sponsors-carousel {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(96px, 13vh, 156px);
}

.v2-timer-sponsor-slide {
  grid-area: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.v2-timer-sponsor-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

@media (max-width: 640px) {
  .v2-timer-sponsors-row--3 {
    grid-template-columns: 1fr;
  }

  .v2-timer-sponsors-row--2 {
    grid-template-columns: 1fr;
  }

  .v2-dock-sponsors-row--3,
  .v2-dock-sponsors-row--2 {
    grid-template-columns: 1fr;
  }

  .v2-dock-sponsors-carousel {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   VENUE DISPLAY REDESIGN — neon sponsor dock, party animations
   ═══════════════════════════════════════════════════════════════ */

/* ── Ambient party FX ── */
.v2-venue-tv {
  position: relative;
}

.v2-venue-tv::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  animation: v2TvBgPulse 12s ease-in-out infinite;
}

@keyframes v2TvBgPulse {
  0%, 100% { background: rgba(255, 255, 255, 0); }
  50% { background: rgba(255, 255, 255, 0.035); }
}

.v2-venue-tv > .v2-venue-board {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  max-height: 100dvh;
}

.v2-spark--4 { left: 72%; top: 55%; background: var(--tv-lime); box-shadow: 0 0 20px var(--tv-lime); animation-delay: -0.8s; }
.v2-spark--5 { left: 28%; bottom: 35%; background: var(--tv-pink); box-shadow: 0 0 20px var(--tv-pink); animation-delay: -2.1s; }
.v2-spark--6 { right: 8%; bottom: 18%; background: var(--tv-cyan); box-shadow: 0 0 20px var(--tv-cyan); animation-delay: -3.3s; }
.v2-spark--7 { left: 55%; top: 12%; width: 5px; height: 5px; background: var(--tv-pink); box-shadow: 0 0 22px var(--tv-pink); animation-delay: -1.1s; animation-duration: 2.8s; }
.v2-spark--8 { left: 8%; bottom: 42%; width: 7px; height: 7px; background: var(--tv-lime); box-shadow: 0 0 24px var(--tv-lime); animation-delay: -2.4s; animation-duration: 3.6s; }
.v2-spark--9 { right: 32%; top: 68%; width: 4px; height: 4px; background: var(--tv-cyan); box-shadow: 0 0 18px var(--tv-cyan); animation-delay: -0.5s; animation-duration: 2.5s; }

.v2-venue-beam {
  position: absolute;
  width: 2px;
  height: 140%;
  top: -20%;
  background: linear-gradient(180deg, transparent, rgba(200, 248, 48, 0.35), transparent);
  opacity: 0.35;
  transform-origin: top center;
  animation: v2VenueBeam 8s ease-in-out infinite;
}
.v2-venue-beam--1 { left: 22%; animation-delay: 0s; }
.v2-venue-beam--2 { right: 18%; animation-delay: -4s; background: linear-gradient(180deg, transparent, rgba(255, 47, 208, 0.3), transparent); }

@keyframes v2VenueBeam {
  0%, 100% { transform: rotate(-8deg) scaleY(0.85); opacity: 0.2; }
  50% { transform: rotate(8deg) scaleY(1); opacity: 0.45; }
}

/* ── Header glow pops ── */
.v2-tv-room {
  animation: v2TvRoomGlow 3s ease-in-out infinite;
  box-shadow: 0 0 0 1px rgba(200, 248, 48, 0.12), 0 0 32px rgba(200, 248, 48, 0.08);
}
.v2-tv-room strong {
  animation: v2TvCodePop 4s ease-in-out infinite;
}

@keyframes v2TvRoomGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(200, 248, 48, 0.12), 0 0 24px rgba(200, 248, 48, 0.06); }
  50% { box-shadow: 0 0 0 1px rgba(200, 248, 48, 0.35), 0 0 48px rgba(200, 248, 48, 0.18); }
}

@keyframes v2TvCodePop {
  0%, 100% { transform: scale(1); text-shadow: 0 0 24px rgba(200, 248, 48, 0.3); }
  50% { transform: scale(1.03); text-shadow: 0 0 40px rgba(200, 248, 48, 0.55); }
}

.v2-tv-stats > div {
  animation: v2TvStatFloat 5s ease-in-out infinite, v2TvStatGlow 4s ease-in-out infinite;
}
.v2-tv-stats > div:nth-child(2) { animation-delay: -1.6s; }
.v2-tv-stats > div:nth-child(3) { animation-delay: -3.2s; }

@keyframes v2TvStatFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

.v2-tv-fs-btn {
  animation: v2TvBtnPulse 2.5s ease-in-out infinite;
}

@keyframes v2TvBtnPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 47, 208, 0); }
  50% { box-shadow: 0 0 28px rgba(255, 47, 208, 0.35); }
}

/* ── Recap cards shimmer ── */
.v2-recap-card {
  animation: v2TvSlideIn 0.45s ease both, v2RecapShimmer 6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.07s), calc(var(--i, 0) * 0.5s);
  will-change: transform, opacity;
}
.v2-recap-num {
  animation: v2RecapNumSpin 8s linear infinite;
}

@keyframes v2RecapShimmer {
  0%, 100% { border-color: rgba(255, 255, 255, 0.1); }
  50% { border-color: rgba(200, 248, 48, 0.25); box-shadow: 0 0 20px rgba(200, 248, 48, 0.08); }
}

@keyframes v2RecapNumSpin {
  0%, 90%, 100% { transform: rotate(0); }
  95% { transform: rotate(8deg) scale(1.08); }
}

.v2-recap-empty span {
  animation: v2RecapEmptyBounce 2s ease-in-out infinite, v2RecapEmptySpin 8s linear infinite;
}

@keyframes v2RecapEmptyBounce {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.5; }
  50% { transform: translateY(-12px) scale(1.08); opacity: 0.75; }
}

/* ── Neon sponsor dock (replaces glass panel) ── */
.v2-neon-dock {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: clamp(6px, 0.8vh, 10px);
  padding: clamp(12px, 1.35vw, 18px) clamp(16px, 1.8vw, 28px);
  border-radius: clamp(14px, 1.2vw, 20px);
  background: linear-gradient(180deg, rgba(12, 8, 24, 0.95) 0%, rgba(6, 4, 14, 0.98) 100%);
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-shadow:
    0 0 0 2px rgba(200, 248, 48, 0.15),
    0 0 40px rgba(200, 248, 48, 0.12),
    0 16px 48px rgba(0, 0, 0, 0.5);
  animation: v2NeonDockIn 0.7s cubic-bezier(0.2, 1.2, 0.2, 1) both;
}

.v2-neon-dock-rail {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: conic-gradient(
    from var(--neon-angle, 0deg),
    var(--tv-lime),
    var(--tv-pink),
    var(--tv-cyan),
    var(--tv-lime)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: v2NeonRailSpin 4s linear infinite;
  pointer-events: none;
  opacity: 0.85;
}

@keyframes v2NeonRailSpin {
  to { --neon-angle: 360deg; }
}

@property --neon-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes v2NeonDockIn {
  from { opacity: 0; transform: translateY(20px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

.v2-neon-dock-kicker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 18px);
  margin: 0;
  font-size: clamp(9px, 0.75vw, 11px);
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b0a6c8;
}

.v2-neon-dock-star {
  color: var(--tv-lime);
  font-size: 1.2em;
  animation: v2NeonStarTwinkle 1.5s ease-in-out infinite;
}
.v2-neon-dock-star:last-child { animation-delay: -0.75s; }

@keyframes v2NeonStarTwinkle {
  0%, 100% { opacity: 0.5; transform: scale(0.85); }
  50% { opacity: 1; transform: scale(1.2); }
}

.v2-neon-dock-stage {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  gap: clamp(8px, 1.2vw, 14px);
  align-items: stretch;
  justify-items: stretch;
}
.v2-neon-dock-stage--1 { grid-template-columns: minmax(0, 1fr); max-width: min(340px, 52vw); margin: 0 auto; }
.v2-neon-dock-stage--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v2-neon-dock-stage--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.v2-neon-dock-stage--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.v2-neon-sponsor-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(5px, 0.7vh, 10px);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  animation: v2NeonTilePop 0.6s calc(0.1s + var(--i, 0) * 0.08s) cubic-bezier(0.2, 1.4, 0.2, 1) both;
}

@keyframes v2NeonTilePop {
  from { opacity: 0; transform: scale(0.7) translateY(10px); }
  to { opacity: 1; transform: none; }
}

.v2-neon-sponsor-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  min-height: clamp(60px, 7vh, 88px);
  padding: clamp(10px, 1.15vw, 14px);
  border-radius: clamp(10px, 1vw, 14px);
  background: rgba(255, 255, 255, 0.04);
  border: 2px solid rgba(200, 248, 48, 0.35);
  box-shadow:
    0 0 24px rgba(200, 248, 48, 0.15),
    inset 0 0 20px rgba(200, 248, 48, 0.05);
  animation: v2NeonFramePulse 2.5s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.3s);
  overflow: hidden;
  box-sizing: border-box;
}

@keyframes v2NeonFramePulse {
  0%, 100% {
    border-color: rgba(200, 248, 48, 0.3);
    box-shadow: 0 0 16px rgba(200, 248, 48, 0.1), inset 0 0 12px rgba(200, 248, 48, 0.03);
    transform: scale(1);
  }
  50% {
    border-color: rgba(255, 47, 208, 0.55);
    box-shadow: 0 0 32px rgba(255, 47, 208, 0.2), inset 0 0 24px rgba(200, 248, 48, 0.08);
    transform: scale(1.03);
  }
}

.v2-neon-sponsor-logo {
  display: block;
  max-width: 100%;
  max-height: clamp(44px, 5.2vh, 66px);
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(4px, 0.55vw, 7px);
  animation: v2NeonLogoFloat 3s ease-in-out infinite, v2NeonLogoPulse 2.8s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.4s), calc(var(--i, 0) * 0.35s);
  will-change: transform, opacity;
}

.v2-neon-dock-stage--1 .v2-neon-sponsor-logo {
  max-height: clamp(56px, 6.5vh, 80px);
}

@keyframes v2NeonLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

.v2-neon-sponsor-fallback {
  display: grid;
  place-items: center;
  width: clamp(42px, 4.6vw, 56px);
  height: clamp(42px, 4.6vw, 56px);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--tv-lime), var(--tv-cyan));
  color: #060511;
  font-weight: 900;
  font-size: clamp(14px, 1.35vw, 19px);
}

.v2-neon-sponsor-name {
  max-width: 100%;
  font-size: clamp(11px, 0.95vw, 15px);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Carousel (4+ sponsors) */
.v2-neon-dock-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: clamp(84px, 9vh, 116px);
  overflow: hidden;
}

.v2-neon-dock-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(30px) scale(0.92);
  transition: opacity 0.55s cubic-bezier(0.2, 1, 0.2, 1), transform 0.55s cubic-bezier(0.2, 1, 0.2, 1);
  pointer-events: none;
}

.v2-neon-dock-slide.is-active {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.v2-neon-dock-slide .v2-neon-sponsor-tile {
  max-width: min(320px, 48vw);
  width: 100%;
}

.v2-neon-dock-slide .v2-neon-dock-stage {
  width: 100%;
  max-width: 100%;
}

/* Sponsor placeholder */
.v2-sponsor-placeholder.v2-neon-dock {
  text-align: center;
  border-style: dashed;
  border-width: 2px;
  border-color: rgba(200, 248, 48, 0.25);
  animation: v2NeonDockIn 0.7s ease both, v2PlaceholderPulse 3s ease-in-out infinite;
}

.v2-sponsor-placeholder em {
  position: relative;
  z-index: 1;
  font-style: normal;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  font-size: clamp(12px, 1vw, 15px);
}

@keyframes v2PlaceholderPulse {
  0%, 100% { border-color: rgba(200, 248, 48, 0.2); }
  50% { border-color: rgba(200, 248, 48, 0.45); }
}

/* Footer dock positioning overrides */
.v2-tv-sponsor-dock .v2-neon-dock,
.v2-tv-sponsor-dock .v2-sponsor-placeholder {
  animation: v2NeonDockIn 0.7s cubic-bezier(0.2, 1.2, 0.2, 1) both;
}

/* Hide legacy glass dock if still rendered */
.v2-dock-sponsor-panel { display: none !important; }

/* ── Hint bubbles — extra energy ── */
.v2-hint-bubble {
  animation: v2TvHintPop 0.65s cubic-bezier(0.2, 1.5, 0.2, 1) both,
             v2HintOrbit 4s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.1s), calc(var(--i, 0) * 0.5s);
}

.v2-hint-bubble--new {
  animation: v2TvHintBurst 0.75s cubic-bezier(0.15, 1.6, 0.2, 1) both,
             v2HintOrbit 4s 0.75s ease-in-out infinite;
}

.v2-hint-bubble--wait {
  animation: v2HintWaitDance 1.4s ease-in-out infinite;
}

@keyframes v2HintOrbit {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(-3deg); }
  75% { transform: translateY(4px) rotate(3deg); }
}

@keyframes v2HintWaitDance {
  0%, 100% { transform: scale(1) rotate(0); box-shadow: 0 0 60px rgba(255, 47, 208, 0.3); }
  33% { transform: scale(1.08) rotate(-6deg); box-shadow: 0 0 80px rgba(200, 248, 48, 0.4); }
  66% { transform: scale(1.05) rotate(6deg); box-shadow: 0 0 70px rgba(24, 217, 255, 0.35); }
}

.v2-overlay-kicker {
  animation: v2KickerSlide 0.5s ease both, v2KickerGlow 2s ease-in-out infinite;
}

@keyframes v2KickerSlide {
  from { opacity: 0; letter-spacing: 0.5em; transform: translateY(-10px); }
  to { opacity: 1; letter-spacing: 0.28em; transform: none; }
}

@keyframes v2KickerGlow {
  0%, 100% { text-shadow: 0 0 12px rgba(200, 248, 48, 0.3); }
  50% { text-shadow: 0 0 28px rgba(200, 248, 48, 0.6); }
}

/* ── Song reveal punch ── */
.v2-venue-overlay--reveal .v2-reveal-title {
  animation: v2TvRevealTitle 0.6s cubic-bezier(0.2, 1.3, 0.2, 1) both,
             v2RevealTitleGlow 3s 0.6s ease-in-out infinite;
}

@keyframes v2RevealTitleGlow {
  0%, 100% { text-shadow: 0 0 60px rgba(255, 47, 208, 0.45), 0 4px 0 rgba(0, 0, 0, 0.3); }
  50% { text-shadow: 0 0 90px rgba(200, 248, 48, 0.5), 0 0 40px rgba(255, 47, 208, 0.4), 0 4px 0 rgba(0, 0, 0, 0.3); }
}

/* ── Timer overlay — neon ring ── */
.v2-venue-timer-pop {
  position: relative;
  animation: v2VenueTimerPulse 1s ease-in-out infinite, v2TimerColorShift 4s linear infinite;
}

.v2-venue-timer-pop::before {
  content: "";
  position: absolute;
  inset: -12%;
  border-radius: 50%;
  border: 3px solid rgba(200, 248, 48, 0.25);
  animation: v2TimerRingSpin 6s linear infinite;
  pointer-events: none;
}

.v2-venue-timer-pop::after {
  content: "";
  position: absolute;
  inset: -6%;
  border-radius: 50%;
  border: 2px dashed rgba(255, 47, 208, 0.2);
  animation: v2TimerRingSpin 4s linear infinite reverse;
  pointer-events: none;
}

@keyframes v2TimerRingSpin {
  to { transform: rotate(360deg); }
}

@keyframes v2TimerColorShift {
  0%, 100% { color: #fff; }
  33% { color: var(--tv-lime); }
  66% { color: var(--tv-cyan); }
}

/* Timer neon sponsor panel */
.v2-neon-timer-panel {
  width: 100%;
  max-width: min(94vw, 920px);
  margin-top: clamp(16px, 3vh, 36px);
  padding: clamp(16px, 2vh, 28px) clamp(20px, 2.5vw, 40px);
  border-radius: clamp(16px, 1.5vw, 22px);
  background: rgba(8, 6, 18, 0.85);
  border: 2px solid rgba(200, 248, 48, 0.2);
  box-shadow: 0 0 48px rgba(200, 248, 48, 0.1);
  animation: v2NeonDockIn 0.75s 0.2s cubic-bezier(0.2, 1, 0.2, 1) both;
}

.v2-neon-timer-sponsors {
  display: grid;
  gap: clamp(12px, 1.5vw, 18px);
  width: 100%;
}
.v2-neon-timer-sponsors--1 { grid-template-columns: 1fr; max-width: min(360px, 60vw); margin: 0 auto; }
.v2-neon-timer-sponsors--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.v2-neon-timer-sponsors--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.v2-neon-sponsor-tile--timer .v2-neon-sponsor-frame {
  min-height: clamp(72px, 10vh, 120px);
}
.v2-neon-sponsor-tile--timer .v2-neon-sponsor-logo {
  max-height: clamp(56px, 8vh, 100px);
}
.v2-neon-sponsor-tile--timer .v2-neon-sponsor-name {
  font-size: clamp(14px, 1.5vw, 22px);
}

.v2-neon-timer-carousel {
  min-height: clamp(88px, 12vh, 140px);
}

/* ── Winner celebration enhancements ── */
.v2-winner-celebration__flash {
  position: absolute;
  inset: 0;
  background: rgba(200, 248, 48, 0.55);
  animation: v2WinnerFlash 0.35s ease-out both;
  pointer-events: none;
}

@keyframes v2WinnerFlash {
  0% { opacity: 0.9; }
  100% { opacity: 0; }
}

.v2-winner-celebration.is-win .v2-winner-celebration__title {
  animation: v2WinnerTitle 0.7s 0.55s cubic-bezier(0.2, 1.2, 0.2, 1) both,
             v2WinnerTitleShake 0.5s 1.2s ease-in-out 3;
}

@keyframes v2WinnerTitleShake {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-2deg) scale(1.02); }
  75% { transform: rotate(2deg) scale(1.02); }
}

/* ── Playful non-winner overlay ── */
.v2-winner-celebration.is-playful .v2-winner-celebration__scrim {
  background:
    radial-gradient(circle at 50% 42%, rgba(24, 217, 255, 0.18), transparent 42%),
    radial-gradient(circle at 22% 68%, rgba(200, 248, 48, 0.12), transparent 36%),
    rgba(4, 2, 10, 0.88);
}

.v2-winner-celebration__emoji-rain {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.v2-winner-celebration__emoji-bit {
  position: absolute;
  left: calc(8% + var(--i) * 11%);
  top: -10%;
  font-size: clamp(24px, 3vw, 40px);
  opacity: 0;
  animation: v2EmojiRain 2.8s calc(var(--i) * 0.12s) ease-out both;
}

@keyframes v2EmojiRain {
  0% { opacity: 0; transform: translateY(0) rotate(0deg) scale(0.5); }
  15% { opacity: 1; }
  100% { opacity: 0; transform: translateY(110vh) rotate(calc(var(--i) * 45deg)) scale(1); }
}

.v2-winner-celebration__emoji-big {
  font-size: clamp(64px, 12vw, 120px);
  line-height: 1;
  margin: clamp(8px, 1.5vh, 16px) 0;
  animation: v2EmojiBigWobble 1.2s ease-in-out infinite;
}

@keyframes v2EmojiBigWobble {
  0%, 100% { transform: rotate(-8deg) scale(1); }
  50% { transform: rotate(8deg) scale(1.12); }
}

.v2-winner-celebration__subtitle {
  margin: clamp(6px, 1vh, 12px) 0 0;
  font-size: clamp(18px, 2.2vw, 32px);
  font-weight: 700;
  color: var(--tv-cyan);
  animation: v2WinnerTitle 0.6s 0.35s cubic-bezier(0.2, 1.2, 0.2, 1) both,
             v2SubtitlePulse 2s 1s ease-in-out infinite;
}

@keyframes v2SubtitlePulse {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; text-shadow: 0 0 20px rgba(24, 217, 255, 0.4); }
}

.v2-winner-celebration.is-playful .v2-winner-celebration__title {
  font-size: clamp(28px, 4.5vw, 56px);
  color: #fff;
  text-shadow: 0 0 30px rgba(200, 248, 48, 0.3);
  animation: v2WinnerTitle 0.6s 0.2s cubic-bezier(0.2, 1.2, 0.2, 1) both,
             v2FailTitleBounce 2s 0.8s ease-in-out infinite;
}

@keyframes v2FailTitleBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.v2-winner-celebration.is-playful .v2-winner-celebration__kicker {
  color: var(--tv-cyan);
}

.v2-winner-celebration.is-playful .v2-winner-celebration__card {
  color: #c4b8dc;
}

/* Override old fail styles */
.v2-winner-celebration.is-fail.is-playful .v2-winner-celebration__title {
  color: #fff;
}

/* Responsive neon dock */
@media (max-width: 640px) {
  .v2-neon-dock-stage--2,
  .v2-neon-dock-stage--3,
  .v2-neon-dock-stage--4,
  .v2-neon-timer-sponsors--2,
  .v2-neon-timer-sponsors--3 {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .v2-neon-dock-rail,
  .v2-venue-beam,
  .v2-neon-sponsor-frame,
  .v2-hint-bubble,
  .v2-hint-listen,
  .v2-tv-room,
  .v2-recap-card {
    animation: none !important;
  }
}

/* ── Venue polish Jul 2026 — spacious dock, stable tease, smoother motion ── */

.v2-neon-dock--wide {
  gap: clamp(4px, 0.5vh, 8px);
  padding: clamp(10px, 1.1vw, 16px) clamp(14px, 1.6vw, 24px);
}

.v2-neon-dock-kicker--subtle {
  gap: 0;
  margin: 0;
  font-size: clamp(8px, 0.55vw, 10px);
  font-weight: 700;
  letter-spacing: 0.18em;
  color: rgba(176, 166, 200, 0.45);
  opacity: 0.75;
}

.v2-neon-dock-kicker--subtle .v2-neon-dock-star {
  display: none;
}

.v2-neon-dock--wide .v2-neon-dock-stage {
  gap: clamp(12px, 1.6vw, 22px);
}

.v2-neon-dock--wide .v2-neon-dock-stage--1 {
  max-width: min(420px, 62vw);
}

.v2-neon-dock--wide .v2-neon-dock-stage--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 16px);
}

.v2-neon-dock--wide .v2-neon-sponsor-frame {
  min-height: clamp(72px, 8.5vh, 108px);
  padding: clamp(12px, 1.3vw, 18px);
}

.v2-neon-dock--wide .v2-neon-sponsor-logo {
  max-height: clamp(56px, 7vh, 88px);
}

.v2-neon-dock--wide .v2-neon-dock-stage--1 .v2-neon-sponsor-logo {
  max-height: clamp(68px, 8.5vh, 104px);
}

.v2-neon-dock--wide .v2-neon-sponsor-name {
  font-size: clamp(13px, 1.15vw, 18px);
  white-space: nowrap;
  line-height: 1.15;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.v2-neon-dock--wide .v2-neon-dock-carousel {
  min-height: clamp(96px, 10.5vh, 132px);
  max-width: min(720px, 100%);
  margin: 0 auto;
}

.v2-neon-dock--wide .v2-neon-dock-slide .v2-neon-sponsor-tile {
  max-width: min(360px, 90%);
  width: 100%;
}

.v2-tv-sponsor-dock .v2-neon-dock--wide {
  width: 100%;
  max-width: 100%;
}

/* Hint stage — centered stack, no bottom twitch */
.v2-venue-overlay--hints {
  justify-content: center;
}

.v2-venue-hints-stage {
  flex: 0 1 auto;
  justify-content: center;
  min-height: min(62vh, 680px);
  gap: clamp(28px, 5vh, 64px);
}

.v2-venue-hints-pop {
  flex: 0 0 auto;
  min-height: clamp(96px, 14vw, 200px);
  align-content: center;
}

.v2-venue-artist-tease {
  flex: 0 0 auto;
  align-self: center;
  width: min(92vw, 1100px);
  min-height: clamp(120px, 16vh, 200px);
  justify-content: center;
  contain: layout style;
}

.v2-venue-artist-tease--idle {
  min-height: 0;
  contain: none;
}

.v2-artist-tease-name {
  min-height: 1.05em;
  align-items: center;
  justify-content: center;
}

.v2-artist-tease-revealed,
.v2-artist-tease-hidden,
.v2-artist-tease-line {
  min-height: 1em;
}

.v2-artist-tease-char {
  display: inline-block;
  will-change: transform, opacity;
}

.v2-artist-tease-char--new {
  animation: v2ArtistCharPop 0.5s cubic-bezier(0.15, 1.6, 0.2, 1) both;
}

.v2-artist-tease-blank {
  will-change: opacity;
}

/* Smoother hint bursts — transform only */
.v2-hint-bubble {
  will-change: transform, opacity;
}

.v2-hint-bubble--new {
  animation: v2TvHintBurst 0.7s cubic-bezier(0.15, 1.6, 0.2, 1) both,
             v2HintOrbit 4s 0.7s ease-in-out infinite;
}

@keyframes v2TvHintBurst {
  0% { opacity: 0; transform: scale(0.15) rotate(-14deg); filter: blur(4px); }
  50% { opacity: 1; transform: scale(1.14) rotate(5deg); filter: blur(0); }
  100% { opacity: 1; transform: scale(1) rotate(0); filter: none; }
}

/* Timer overlay — dramatic center stack */
.v2-venue-overlay--timer {
  justify-content: center;
  gap: clamp(20px, 3vh, 44px);
}

.v2-venue-overlay--timer .v2-venue-timer-pop {
  margin: clamp(8px, 1.5vh, 20px) 0;
}

/* Winner confetti — lighter GPU path */
.v2-winner-celebration__bit {
  will-change: transform, opacity;
}

/* ── Venue animation pack Jul 2026 ── */
@keyframes v2ListenIn {
  from { opacity: 0; transform: scale(0.7) translate3d(0, 20px, 0); }
  to { opacity: 1; transform: none; }
}

@keyframes v2ListenPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.92; }
}

@keyframes v2ListenGlow {
  0%, 100% { text-shadow: 0 0 28px rgba(200, 248, 48, 0.45), 0 0 56px rgba(200, 248, 48, 0.2); }
  50% { text-shadow: 0 0 48px rgba(200, 248, 48, 0.85), 0 0 96px rgba(200, 248, 48, 0.35), 0 0 24px rgba(255, 47, 208, 0.2); }
}

@keyframes v2ArtistGapPulse {
  0%, 100% { opacity: 0.28; transform: scaleX(1); }
  50% { opacity: 0.5; transform: scaleX(1.08); }
}

@keyframes v2ArtistGapLive {
  0%, 100% { opacity: 1; transform: scaleX(1); box-shadow: 0 0 12px rgba(200, 248, 48, 0.2); }
  50% { opacity: 1; transform: scaleX(1.06); box-shadow: 0 0 22px rgba(200, 248, 48, 0.38); }
}

@keyframes v2QrGlowPulse {
  0%, 100% { box-shadow: 0 0 32px rgba(21, 206, 255, 0.22), 0 0 0 rgba(200, 248, 48, 0); transform: scale(1); }
  50% { box-shadow: 0 0 52px rgba(21, 206, 255, 0.42), 0 0 28px rgba(200, 248, 48, 0.18); transform: scale(1.02); }
}

@keyframes v2TvStatGlow {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 20px rgba(200, 248, 48, 0.1); }
}

@keyframes v2RecapEmptySpin {
  0%, 88%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
  94% { transform: translateY(-8px) scale(1.06) rotate(8deg); }
}

@keyframes v2NeonLogoPulse {
  0%, 100% { opacity: 1; filter: drop-shadow(0 0 0 rgba(200, 248, 48, 0)); }
  50% { opacity: 0.95; filter: drop-shadow(0 0 10px rgba(200, 248, 48, 0.35)); }
}

/* ── Venue display layout fix Jul 2026 — recap fit + in-flow dock ── */

.v2-tv-recap-list:has(.v2-recap-card:nth-child(5)) .v2-recap-card strong {
  font-size: clamp(20px, min(2.8vw, 3.5vh), 42px);
}

.v2-tv-recap-list:has(.v2-recap-card:nth-child(5)) .v2-recap-card em {
  font-size: clamp(11px, min(1.3vw, 1.5vh), 16px);
}

@media (max-width: 1400px) {
  .v2-neon-dock--wide .v2-neon-dock-stage--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-height: 720px) {
  .v2-neon-dock--wide .v2-neon-sponsor-frame {
    min-height: clamp(56px, 8vh, 72px);
    padding: clamp(8px, 1vw, 12px);
  }
  .v2-neon-dock--wide .v2-neon-sponsor-logo {
    max-height: clamp(44px, 6vh, 56px);
  }
  .v2-neon-dock--wide .v2-neon-dock-carousel {
    min-height: clamp(80px, 12vh, 104px);
  }
  .v2-recap-card strong {
    font-size: clamp(18px, min(2.4vw, 3vh), 32px);
  }
  .v2-recap-card em {
    font-size: clamp(11px, min(1.2vw, 1.4vh), 14px);
  }
}

@media (min-width: 1600px) and (min-height: 900px) {
  .v2-recap-card strong {
    font-size: clamp(26px, min(3.2vw, 4.2vh), 52px);
  }
  .v2-recap-card em {
    font-size: clamp(14px, min(1.5vw, 1.9vh), 20px);
  }
}

/* Board grid: song list and sponsors never overlap */
.v2-venue-board > .v2-tv-main {
  min-height: 0;
  overflow: hidden;
}
