/* === TICKER JUEGUITOS === */
#jg-ticker {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #fff;                 /* fondo blanco */
  border-top: 1px solid #1c1c1c;    /* línea superior */
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  line-height: 1;
  color: #000;
  padding: 3px 0;
  box-sizing: border-box;
}

#jg-ticker-track {
  display: inline-block;
  white-space: nowrap;
  padding: 4px 0;
  will-change: transform;
  animation: jgScroll 100s linear infinite; /* ajusta segundos para la velocidad */
}

/* Tipografías por parte */
.jg-league   { font-weight: 800; margin: 0 10px 0 18px; color: #000; }  /* LIGA (black) */
.jg-matchday { font-weight: 300; margin: 0 10px; color: #000; }         /* JORNADA (light) */
.jg-game     { font-weight: 500; margin: 0 14px; color: #000; }         /* PARTIDOS (medium) */

/* Separadores */
.jg-sep         { margin: 0 12px; color: #000; }
.jg-league-break{ display: inline-block; width: 24px; } /* barra más ancha entre ligas */

/* Animación */
@keyframes jgScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* asumiendo que duplicas contenido en JS */
}

/* Ajuste en móvil: un poco más lento y texto un poco más chico */
@media (max-width: 768px) {
  #jg-ticker { font-size: 13px; }
  #jg-ticker-track { animation-duration: 120s; }
}

/* === TICKER JUEGUITOS FIJO ABAJO === */
#jg-ticker {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;   /* se asegura de ir por encima de todo */
  background: #fff;
  border-top: 1px solid #1c1c1c;
  overflow: hidden;
  white-space: nowrap;
}
