/* css/transmissao.css
   =======================================================
   Live Broadcast Studio & Overlay — FutOverlay Style
   Dark Cinematic Stadium Aesthetics with Glassmorphism
   ======================================================= */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;900&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg-dark: #070913;
  --bg-card: rgba(13, 15, 26, 0.72);
  --bg-card-border: rgba(139, 92, 246, 0.28);
  --bg-card-hover: rgba(22, 26, 44, 0.85);
  
  --primary-glow: #8b5cf6;
  --primary-accent: #9a75f0;
  --cyan-accent: #06b6d4;
  --rose-accent: #f43f5e;
  --gold-accent: #fbbf24;
  
  --rating-bad: #ef4444;
  --rating-avg: #eab308;
  --rating-good: #22c55e;
  --rating-top: #a855f7;
  
  --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  user-select: none;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: var(--bg-dark);
  font-family: var(--font-body);
  color: #ffffff;
}

/* ─── Background de Estádio Cinematográfico com Campo de Futebol Desfocado ─── */
.broadcast-stage {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #050711;
  overflow: hidden;
}

/* Camada com o campo de futebol desfocado (blur) e gradientes de contraste */
.broadcast-stage::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: 
    linear-gradient(180deg, rgba(6, 8, 18, 0.68) 0%, rgba(5, 7, 16, 0.78) 45%, rgba(3, 4, 10, 0.90) 100%),
    radial-gradient(circle at 50% 35%, rgba(0, 0, 0, 0.1) 0%, rgba(4, 6, 14, 0.72) 80%),
    url('/assets/stadium_bg.jpg') center bottom / cover no-repeat;
  filter: blur(8px) saturate(1.15) brightness(0.92);
  transform: scale(1.05); /* Evita bordas brancas com o blur */
  pointer-events: none;
  z-index: 0;
}

/* Efeito de holofotes do estádio */
.broadcast-stage::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background: 
    radial-gradient(ellipse at 20% 0%, rgba(255, 255, 255, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse at 80% 0%, rgba(255, 255, 255, 0.14) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* ─── BARRA SUPERIOR DO ADMIN (CONTROLE SUPER MESTRE) ─── */
.admin-control-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 42px;
  background: rgba(10, 12, 22, 0.95);
  border-bottom: 1px solid rgba(139, 92, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 9999;
  font-size: 13px;
  transition: transform 0.3s ease;
}

.admin-control-bar.hidden-obs {
  transform: translateY(-100%);
}

.admin-control-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-badge {
  background: linear-gradient(135deg, #7c3aed, #4f46e5);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

.match-select {
  background: #151828;
  border: 1px solid #2e3450;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  outline: none;
  cursor: pointer;
  max-width: 320px;
}

.admin-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Input rápido de Odds Betfair no Topo */
.admin-odds-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(18, 22, 38, 0.90);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 6px;
  padding: 1px 4px 1px 8px;
  gap: 6px;
  height: 28px;
  transition: all 0.2s ease;
}

.admin-odds-input-wrap:focus-within {
  border-color: #fbbf24;
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.3);
  background: rgba(22, 28, 48, 0.98);
}

.admin-odds-icon {
  font-size: 13px;
  opacity: 0.85;
}

.admin-odds-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11.5px;
  width: 220px;
  transition: width 0.2s ease;
}

.admin-odds-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  font-size: 11px;
}

.admin-odds-input:focus {
  width: 280px;
}

.btn-odds-apply {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(245, 158, 11, 0.15) 100%) !important;
  border-color: rgba(251, 191, 36, 0.45) !important;
  color: #fbbf24 !important;
  font-weight: 700 !important;
  padding: 2px 8px !important;
  font-size: 11px !important;
  height: 22px;
  border-radius: 4px;
}

.btn-odds-apply:hover {
  background: #fbbf24 !important;
  color: #000 !important;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

.admin-odds-status {
  font-size: 10.5px;
  white-space: nowrap;
  padding: 0 4px;
}

.btn-admin {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.btn-admin:hover {
  background: rgba(139, 92, 246, 0.25);
  border-color: #8b5cf6;
}

.btn-admin.active {
  background: #7c3aed;
  border-color: #a78bfa;
}

/* Botão pequeno de atualizar jogos ao vivo */
.btn-admin-refresh {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(96, 165, 250, 0.4);
  color: #bfdbfe;
  font-weight: 600;
  font-size: 11px;
  padding: 3px 9px;
}

.btn-admin-refresh:hover {
  background: rgba(59, 130, 246, 0.35);
  border-color: #60a5fa;
  color: #ffffff;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.btn-admin-refresh .refresh-icon {
  display: inline-block;
  font-size: 12px;
  transition: transform 0.2s ease;
}

.btn-admin-refresh.loading .refresh-icon {
  animation: spin-refresh 0.8s linear infinite;
}

.btn-admin-refresh.success {
  background: rgba(16, 185, 129, 0.25);
  border-color: #10b981;
  color: #a7f3d0;
}

.btn-admin-refresh:disabled {
  opacity: 0.7;
  cursor: wait;
}

@keyframes spin-refresh {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── TOPO: SCOREBOARD BROADCAST ─── */
.scoreboard-wrapper {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
  margin-bottom: 6px;
}

.clock-pill {
  background: rgba(13, 15, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.clock-pulse {
  width: 7px;
  height: 7px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 1.2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.7; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 8px #ef4444; }
  100% { transform: scale(0.9); opacity: 0.7; }
}

.scoreboard-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Logos de Patrocinadores (Fulltbet & Full Trader) */
.scoreboard-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  padding: 6px 22px;
  background: rgba(13, 15, 26, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.25s ease;
}

.scoreboard-brand:hover {
  border-color: rgba(253, 184, 15, 0.6);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.7), 0 0 18px rgba(253, 184, 15, 0.35);
  transform: translateY(-2px);
}

/* Espaço ampliado entre placares e logos */
.scoreboard-brand.brand-left {
  margin-right: 48px;
}

.scoreboard-brand.brand-right {
  margin-left: 48px;
}

/* Fulltbet: Aumentado em 200% */
.scoreboard-brand.brand-left .brand-logo-img {
  height: 50px;
  max-height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
}

/* Full Trader: Aumentado em 100% */
.scoreboard-brand.brand-right .brand-logo-img {
  height: 42px;
  max-height: 44px;
  width: auto;
  max-width: 210px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.7));
}

.team-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.team-header.home {
  flex-direction: row;
}

.team-header.away {
  flex-direction: row;
}

.team-name {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.team-shield-wrapper {
  width: 58px;
  height: 58px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  padding: 4px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.team-shield-wrapper:hover {
  transform: scale(1.08);
  border-color: rgba(255, 255, 255, 0.4);
}

.team-shield-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

.score-display {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 900;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.score-dash {
  font-size: 38px;
  opacity: 0.6;
}

.scoreboard-meta {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── CORPO PRINCIPAL: LINHA SUPERIOR (ESCALAÇÕES + VÍDEO) + LINHA INFERIOR (3 BLOCOS DE 1/3) ─── */
.broadcast-body {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 16px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  height: calc(100vh - 195px);
  min-height: 580px;
}

/* 1. Linha Superior: Banner Esquerdo Fixo + Vídeo no Meio + Carrossel Direito (Mesmas Medidas: 280px) */
.top-broadcast-row {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 280px 1fr 280px;
  gap: 14px;
  height: 100%;
}

/* ─── CARROSSÉIS DE IMAGENS LATERAIS (ESQUERDA 45s / DIREITA 30s) ─── */
.banner-carousel-box {
  height: 100%;
  min-height: 0;
  position: relative;
  background: radial-gradient(circle at 50% 30%, rgba(26, 36, 56, 0.6) 0%, rgba(10, 15, 28, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.banner-carousel-box:hover {
  border-color: rgba(56, 189, 248, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.75), 0 0 20px rgba(56, 189, 248, 0.15);
}

.carousel-slide-container {
  flex: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1), filter 0.9s ease;
}

.carousel-slide-item.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
  filter: none;
}

/* Efeito 1: Fade com Zoom Suave (Ken Burns) */
.carousel-slide-item.effect-zoom.prev {
  transform: scale(1.06);
  opacity: 0;
  filter: blur(3px);
}
.carousel-slide-item.effect-zoom.next {
  transform: scale(0.94);
  opacity: 0;
  filter: blur(3px);
}

/* Efeito 2: Slide Lateral Moderno */
.carousel-slide-item.effect-slide-x.prev {
  transform: translateX(-40px) scale(0.96);
  opacity: 0;
}
.carousel-slide-item.effect-slide-x.next {
  transform: translateX(40px) scale(0.96);
  opacity: 0;
}

/* Efeito 3: Slide Vertical Suave com Leve Rotação 3D */
.carousel-slide-item.effect-slide-y.prev {
  transform: translateY(-30px) rotateX(8deg) scale(0.96);
  opacity: 0;
}
.carousel-slide-item.effect-slide-y.next {
  transform: translateY(30px) rotateX(-8deg) scale(0.96);
  opacity: 0;
}

/* Efeito 4: Brilho Cruzado e Revelação */
.carousel-slide-item.effect-glow.prev {
  transform: scale(0.96);
  opacity: 0;
  filter: brightness(1.4) blur(4px);
}
.carousel-slide-item.effect-glow.next {
  transform: scale(1.04);
  opacity: 0;
  filter: brightness(1.4) blur(4px);
}

/* Imagem sem corte (object-fit: contain) e sem distorcer o layout */
.carousel-slide-item img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.75));
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

/* Banner Fixo Lateral Esquerdo: preenche a largura sem esticar, cortando em cima e fixando o QR Code na base */
.banner-carousel-box.left .carousel-slide-container {
  padding: 0;
}
.banner-carousel-box.left .carousel-slide-item {
  padding: 0;
}
.banner-carousel-box.left .carousel-slide-item img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: cover !important;
  object-position: center bottom !important;
  border-radius: 10px;
}

/* 2. Linha Inferior: 3 Blocos na Proporção 25 / 40 / 25 (Campinho um pouco maior) */
.bottom-broadcast-row {
  height: 250px;
  flex-shrink: 0;
  display: grid;
  grid-template-columns: 25fr 40fr 25fr;
  gap: 14px;
  width: 100%;
}

.lineup-column {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 3px;
  padding: 0;
  overflow: hidden;
}

.player-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 0 8px;
  flex: 1;
  max-height: 38px;
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(12px);
  transition: all 0.2s ease;
}

.player-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(139, 92, 246, 0.5);
  transform: translateX(2px);
}

.lineup-column.away .player-card:hover {
  transform: translateX(-2px);
}

/* Layout Mandante (Esquerda): [Rating] [Nome] [Num] */
.player-card.home-player {
  flex-direction: row;
}

/* Layout Visitante (Direita): [Num] [Nome] [Rating] */
.player-card.away-player {
  flex-direction: row;
}

.player-info-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-info-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.player-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 110px;
}

.player-num {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: #000000;
  border-radius: 4px;
  width: 26px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Badges de Ratings Coloridos (Opta style) */
.player-rating {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  min-width: 32px;
  text-align: center;
  display: inline-block;
}

.rating-top { background: linear-gradient(135deg, #0d9488, #059669); }
.rating-good { background: #16a34a; }
.rating-avg { background: #ca8a04; }
.rating-bad { background: #b91c1c; }
.rating-master { background: linear-gradient(135deg, #7c3aed, #a855f7); }

/* Ícones de Eventos (Cartão amarelo, vermelho, gol) */
.event-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin: 0 2px;
}

.event-yellow {
  width: 9px;
  height: 13px;
  background: #ffcc00;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(255, 204, 0, 0.6);
}

.event-red {
  width: 9px;
  height: 13px;
  background: #ef4444;
  border-radius: 2px;
  box-shadow: 0 0 6px rgba(239, 68, 68, 0.6);
}

.event-goal {
  font-size: 13px;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.8));
}

/* ─── QUADRO CENTRAL (VIDEO + ESTATÍSTICAS / MOMENTUM / CAMPINHO) ─── */
.center-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

/* ─── QUADRO BRANCO / TRANSMISSÃO (PLAYER MULTI-CAMERAS) ─── */
.broadcast-player-frame {
  position: relative;
  flex: 1;
  min-height: 280px;
  background: #000000;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(139, 92, 246, 0.2);
  display: flex;
  flex-direction: column;
}

/* Barra de Câmeras no topo do frame */
.cam-switcher-bar {
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
  pointer-events: auto;
}

.cam-buttons {
  display: flex;
  gap: 8px;
  background: rgba(10, 12, 24, 0.8);
  backdrop-filter: blur(12px);
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-cam {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}

.btn-cam:hover {
  background: rgba(139, 92, 246, 0.4);
}

.btn-cam.active {
  background: #7c3aed;
  border-color: #a78bfa;
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.7);
}

.cam-mode-selector {
  display: flex;
  gap: 6px;
  background: rgba(10, 12, 24, 0.8);
  backdrop-filter: blur(12px);
  padding: 4px 8px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-mode {
  background: transparent;
  border: 1px solid transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.btn-mode.active {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

/* Área de Vídeo / Telas das Câmeras */
.video-surface {
  position: relative;
  width: 100%;
  height: 100%;
  background: #05060b;
}

/* Câmeras */
.cam-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: #000;
}

.cam-container.active-main {
  display: block;
  z-index: 10;
}

.cam-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modo Picture-in-Picture (PiP) */
.cam-container.pip-secondary {
  display: block !important;
  width: 220px;
  height: 124px;
  top: auto;
  left: auto;
  bottom: 16px;
  right: 16px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid #8b5cf6;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.8);
  z-index: 40;
}

/* Modo Split / Duas Câmeras */
.video-surface.mode-split .cam-container:nth-child(1) {
  display: block !important;
  width: 50% !important;
  height: 100% !important;
  left: 0 !important;
  border-right: 1px solid #333;
}

.video-surface.mode-split .cam-container:nth-child(2) {
  display: block !important;
  width: 50% !important;
  height: 100% !important;
  left: 50% !important;
}

/* Overlay Placeholder caso nenhuma câmera esteja ligada */
.cam-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  gap: 12px;
  background: radial-gradient(circle, #101428 0%, #060812 100%);
}

.cam-placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.5;
}

/* ─── PAINEL INFERIOR: ESTATÍSTICAS (ESQ) + CAMPINHO 3D (CENTRO) + RADAR/PRESSÃO (DIR) ─── */

/* 1. Box Lateral Esquerda: Estatísticas (1/3 da Linha) */
.stats-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px 16px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.side-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 4px;
}

.box-section-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
}

.dot-indicator {
  width: 6px;
  height: 6px;
  background: #a855f7;
  border-radius: 50%;
  box-shadow: 0 0 6px #a855f7;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
}

.stat-name {
  font-size: 10px;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.stat-val-home {
  color: #ffffff;
  font-family: var(--font-display);
}

.stat-val-away {
  color: #ffffff;
  font-family: var(--font-display);
}

.stat-bar-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  gap: 1px;
}

.stat-bar-home {
  height: 100%;
  background: var(--primary-accent);
  border-radius: 4px 0 0 4px;
  transition: width 0.5s ease;
}

.stat-bar-away {
  height: 100%;
  background: var(--cyan-accent);
  border-radius: 0 4px 4px 0;
  transition: width 0.5s ease;
}

/* 2. Box Central: O Campinho 3D com Bola e Eventos ao Vivo (1/3 da Linha) */
.pitch-center-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px 14px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
}

/* 3. Box Lateral Direita: Radar de Momentum / Pressão (1/3 da Linha) */
.momentum-pitch-box {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 8px 14px;
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.momentum-pitch-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Social Ticker YouTube */
.social-ticker {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-ticker:hover {
  background: rgba(255, 0, 0, 0.16);
  border-color: rgba(255, 0, 0, 0.4);
  color: #ffffff;
}

.social-icon-box {
  background: #ff0000;
  width: 16px;
  height: 14px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(255, 0, 0, 0.4);
}

.tab-content-momentum {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.momentum-graph-container {
  width: 100%;
  height: 180px;
  position: relative;
}



.pitch-center-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
  gap: 8px;
}

.pitch-team-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  min-width: 80px;
}
.pitch-team-tag.away-tag {
  justify-content: flex-end;
}

.pitch-team-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.pitch-team-dot.home { background: #eab308; box-shadow: 0 0 8px #eab308; }
.pitch-team-dot.away { background: #38bdf8; box-shadow: 0 0 8px #38bdf8; }

/* Banner Holográfico de Eventos ao Vivo */
.live-action-banner {
  flex: 1;
  max-width: 520px;
  background: rgba(10, 15, 28, 0.9);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 20px;
  padding: 3px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 0 16px rgba(56, 189, 248, 0.25);
  animation: banner-glow 3s ease-in-out infinite alternate;
}

.live-pulse-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: dot-pulse 1.2s infinite;
}

.live-action-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #f1f5f9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pitch-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pitch-view-toggle {
  display: flex;
  gap: 3px;
  background: rgba(0, 0, 0, 0.4);
  padding: 2px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pitch-mode-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pitch-mode-btn.active {
  background: #7c3aed;
  color: #fff;
  box-shadow: 0 0 8px rgba(124, 58, 237, 0.6);
}

/* Palco 3D do Gramado */
.pitch-3d-stage {
  flex: 1;
  position: relative;
  perspective: 750px;
  perspective-origin: 50% 25%;
  overflow: hidden;
  border-radius: 8px;
  background: radial-gradient(ellipse at 50% 20%, #0d2818 0%, #06120b 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stadium-lighting {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 50% 0%, rgba(56, 189, 248, 0.18) 0%, transparent 65%),
    radial-gradient(circle at 8% 25%, rgba(234, 179, 8, 0.12) 0%, transparent 45%),
    radial-gradient(circle at 92% 25%, rgba(56, 189, 248, 0.12) 0%, transparent 45%);
  pointer-events: none;
  z-index: 1;
}

/* Campo 3D Isométrico */
.pitch-3d-field {
  width: 90%;
  height: 84%;
  position: relative;
  transform: rotateX(28deg) rotateZ(0deg) scale(0.96);
  transform-style: preserve-3d;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(16, 185, 129, 0.25);
  overflow: hidden;
  background: #154726;
  z-index: 2;
}

.pitch-grass-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    #154726 0px,
    #154726 40px,
    #18542d 40px,
    #18542d 80px
  );
}

.attack-zone-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.attack-zone-overlay.home-zone {
  right: 0;
  background: radial-gradient(ellipse at 100% 50%, rgba(234, 179, 8, 0.32) 0%, transparent 80%);
}
.attack-zone-overlay.away-zone {
  left: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(56, 189, 248, 0.32) 0%, transparent 80%);
}
.attack-zone-overlay.active {
  opacity: 1;
}

.field-boundary {
  position: absolute;
  inset: 4px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 2px;
}
.center-line-3d {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 50%;
  width: 1.5px;
  background: rgba(255, 255, 255, 0.65);
  transform: translateX(-50%);
}
.center-circle-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.center-spot-3d {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.penalty-box-3d {
  position: absolute;
  top: 18%;
  bottom: 18%;
  width: 15%;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}
.home-pen-box { left: 4px; border-left: none; }
.away-pen-box { right: 4px; border-right: none; }

.penalty-arc-3d {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
  transform: translateY(-50%);
}
.home-pen-arc {
  left: 15%;
  border-left: none;
  border-radius: 0 50px 50px 0;
}
.away-pen-arc {
  right: 15%;
  border-right: none;
  border-radius: 50px 0 0 50px;
}

.goal-box-3d {
  position: absolute;
  top: 32%;
  bottom: 32%;
  width: 6%;
  border: 1.5px solid rgba(255, 255, 255, 0.65);
}
.home-goal-box { left: 4px; border-left: none; }
.away-goal-box { right: 4px; border-right: none; }

.goal-frame-3d {
  position: absolute;
  top: 36%;
  bottom: 36%;
  width: 6px;
  background: #ffffff;
  box-shadow: 0 0 8px #fff;
}
.home-goal { left: 0; border-radius: 0 2px 2px 0; }
.away-goal { right: 0; border-radius: 2px 0 0 2px; }

/* A BOLA 3D */
.ball-3d {
  position: absolute;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #e2e8f0 55%, #0f172a 100%);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.95);
  transform: translate(-50%, -50%);
  transition: left 0.75s cubic-bezier(0.34, 1.15, 0.64, 1), top 0.75s cubic-bezier(0.34, 1.15, 0.64, 1);
  z-index: 10;
  pointer-events: none;
}

.ball-shadow {
  position: absolute;
  width: 14px;
  height: 6px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  transform: translate(-50%, -20%);
  filter: blur(1.5px);
  transition: left 0.75s cubic-bezier(0.34, 1.15, 0.64, 1), top 0.75s cubic-bezier(0.34, 1.15, 0.64, 1);
  z-index: 9;
  pointer-events: none;
}

/* Marcador de Evento 3D */
.event-marker-3d {
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 8;
  transition: left 0.5s ease, top 0.5s ease;
  display: none;
}
.event-marker-3d.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.marker-pulse-ring {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #eab308;
  box-shadow: 0 0 14px #eab308;
  animation: ring-expand 1.5s ease-out infinite;
}

.marker-icon {
  font-size: 15px;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
  animation: bounce 0.6s ease infinite alternate;
}

/* Camada Tática 2D Alternável */
.tactical-pitch-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, #163d23 0, #163d23 30px, #1a4528 30px, #1a4528 60px);
  z-index: 20;
}

/* Estilo dos Nós de Jogadores no Campinho 2D */
.pitch-player-node {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 10;
}

.pitch-player-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 800;
  color: #fff;
  border: 1px solid #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.pitch-player-node.home .pitch-player-dot {
  background: #eab308;
  color: #000;
}

.pitch-player-node.away .pitch-player-dot {
  background: #38bdf8;
  color: #000;
}

.pitch-player-label {
  font-size: 8px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  margin-top: 1px;
}

@keyframes ring-expand {
  0% { transform: scale(0.3); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes bounce {
  from { transform: translateY(0); }
  to { transform: translateY(-3px); }
}
@keyframes dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}
@keyframes banner-glow {
  from { border-color: rgba(56, 189, 248, 0.35); }
  to { border-color: rgba(139, 92, 246, 0.65); box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
}

/* ─── RODAPÉ INSTITUCIONAL: ALERTA DO MINISTÉRIO DA FAZENDA ─── */
.broadcast-disclaimer {
  position: relative;
  z-index: 10;
  height: 38px;
  min-height: 38px;
  background: rgba(8, 10, 20, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  overflow: hidden;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.disclaimer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  white-space: nowrap;
  width: 100%;
}

.disclaimer-badge {
  font-size: 15px;
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.8));
}

.disclaimer-text {
  font-family: var(--font-main);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.6px;
  color: #fbbf24; /* Amarelo institucional de alerta oficial */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
}

/* ─── MODAL DE CONFIGURAÇÃO DE CÂMERAS ─── */
.modal-cameras-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal-cameras-overlay.open {
  display: flex;
}

.modal-cameras-card {
  background: #111424;
  border: 1px solid #3b4268;
  border-radius: 12px;
  width: 540px;
  max-width: 95vw;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
}

.modal-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cam-config-row {
  margin-bottom: 14px;
}

.cam-config-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #a78bfa;
  margin-bottom: 4px;
}

.cam-config-inputs {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
}

.cam-type-select, .cam-url-input {
  background: #1a1e34;
  border: 1px solid #2e3558;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  outline: none;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

/* ─── TELA DE BLOQUEIO / NÃO AUTORIZADO (GUARD SUPER ADMIN) ─── */
.access-denied-gate {
  position: fixed;
  inset: 0;
  background: #090b16;
  z-index: 999999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}

.access-denied-gate.active {
  display: flex;
}

.gate-card {
  background: rgba(18, 21, 38, 0.9);
  border: 1px solid rgba(239, 68, 68, 0.4);
  padding: 36px 40px;
  border-radius: 16px;
  max-width: 460px;
  box-shadow: 0 0 40px rgba(239, 68, 68, 0.2);
}

.gate-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.gate-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #f87171;
}

.gate-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   ODDS TICKER FULLTBET — Faixa de Ponta a Ponta (Bloomberg Style)
   ═══════════════════════════════════════════════════════ */

.odds-ticker-bar {
  display: flex;
  align-items: center;
  width: 100%;
  height: 42px;
  background: linear-gradient(90deg, #090d1f 0%, #111733 35%, #161e40 50%, #111733 65%, #090d1f 100%);
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  z-index: 20;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.65), 0 0 16px rgba(251, 191, 36, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.odds-ticker-label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  flex-shrink: 0;
  border-right: 1px solid rgba(251, 191, 36, 0.35);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(251, 191, 36, 0.08) 100%);
  height: 100%;
}

.odds-ticker-brand-img {
  height: 22px;
  max-height: 24px;
  width: auto;
  max-width: 125px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
}

.odds-ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  position: relative;
  /* Máscara de fade nas bordas */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 3%, black 97%, transparent 100%);
}

.odds-ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: oddsTickerScroll 60s linear infinite;
  will-change: transform;
}

@keyframes oddsTickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Pausa o scroll quando o mouse está sobre a faixa */
.odds-ticker-bar:hover .odds-ticker-track {
  animation-play-state: paused;
}

/* ── Bloco de mercado ── */
.odds-ticker-group {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.odds-ticker-market {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  padding: 0 10px 0 8px;
  white-space: nowrap;
}

/* ── Seleção (runner) ── */
.odds-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  height: 100%;
  cursor: default;
}

.odds-ticker-item-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.odds-ticker-price {
  font-family: 'Outfit', monospace;
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.02em;
  white-space: nowrap;
  padding: 2px 7px;
  border-radius: 4px;
}

.odds-ticker-price.back {
  color: #4ade80;         /* verde — back */
  background: rgba(74, 222, 128, 0.16);
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.2);
}

.odds-ticker-price.lay {
  color: #f87171;         /* vermelho — lay */
  background: rgba(248, 113, 113, 0.14);
  font-size: 11px;
  font-weight: 600;
  opacity: 0.85;
}

/* Separador entre items de um mesmo mercado */
.odds-ticker-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.12);
  flex-shrink: 0;
}

/* Separador dourado entre mercados */
.odds-ticker-divider {
  display: inline-block;
  width: 1px;
  height: 24px;
  background: rgba(251, 191, 36, 0.35);
  margin: 0 4px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* Indicador de atualização */
.odds-ticker-status {
  padding: 0 14px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.35);
  white-space: nowrap;
  flex-shrink: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
}

.odds-ticker-status.live {
  color: #4ade80;
}

.odds-ticker-status.stale {
  color: #f87171;
}

/* ── Loading skeleton ── */
@keyframes oddsShimmer {
  0%   { opacity: 0.3; }
  50%  { opacity: 0.7; }
  100% { opacity: 0.3; }
}

.odds-ticker-loading {
  font-family: var(--font-display);
  font-size: 11px;
  color: rgba(251, 191, 36, 0.5);
  padding: 0 20px;
  animation: oddsShimmer 1.5s ease-in-out infinite;
}

