.container {
  background-color: transparent;
  width: 1920px;
  height: 1080px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 50px 110px 50px;
  position: relative;
}

#scoreboard {
  background-color: rgba(67, 0, 131, 1);
  color: #fff;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 10px;
  margin-top: 120px;
  margin-left: 140px;
}

.logo {
  padding: 0 10px 0 0;
  width: 40px;
}

.equipo,
.goles {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  font-family: "Sriracha", cursive;
  font-size: 2em;
  padding: 5px 0;
}

#equipo1,
#equipo2 {
  padding: 5px 10px;
}

.equipo {
  background-color: #616161;
  width: 65px;
}

.goles {
  text-align: center;
}

#goles-equipo1,
#goles-equipo2 {
  width: 60px;
}

#goles-division {
  width: 15px;
}

.timer-section {
  width: 80px;
  text-align: center;
  padding: 5px 10px;
}

.tiempo {
  display: block;
}

#tiempoDeJuego {
  font-size: larger;
  color: aqua;
}

.faltas {
  text-align: center;
  width: 325px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 80px 0 60px;
  margin: 5px 0px 0px 140px;
}

.dots {
  display: flex;
}

#faltas1,
#faltas2 {
  width: 130px;
  display: flex;
}

.dot {
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 0 15px #000;
  padding: 6px;
  margin-right: 5px;
}

.dot.active {
  background-color: red;
}

#intro-overlay {
  position: absolute;
  left: 50%;
  bottom: 200px;
  transform: translateX(-50%);
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
  font-family: "Sriracha", cursive;
}

#intro-overlay.intro-visible {
  opacity: 1;
}

#intro-overlay.intro-hidden {
  opacity: 0;
}

#intro-overlay.intro-fadeout {
  opacity: 0;
}

.intro-panel {
  display: flex;
  align-items: center;
  gap: 40px;
  background: rgba(0, 0, 0, 0.215);
  backdrop-filter: blur(6px);
  padding: 18px 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.intro-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 220px;
}

.intro-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 6px;
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
}

.intro-name {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;
  max-width: 240px;
}

.intro-score {
  font-size: 2.4rem;
  line-height: 1;
  margin-top: 4px;
  font-weight: 700;
}

.intro-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 120px;
}

.intro-time {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: #0ff;
  text-shadow: 0 0 6px #000;
}

.intro-vs {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 3px;
  opacity: 0.75;
}

.scoreboard-hidden {
  opacity: 0;
  transition: opacity 0.6s ease;
}

.scoreboard-visible {
  opacity: 1;
  transition: opacity 0.6s ease;
}

.scoreboard-display-none {
  display: none !important;
}
.global-score {
  background: #000;
  color: #fff;
  font-family: 'Sriracha', cursive;
  font-size: 2em;
  padding: 5px 14px;
  border-radius: 10px;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}
