/* Contenedor principal */
.contador-container {
  text-align: center;
  color: #f19fca;
  font-family: 'Anisette Light', sans-serif;
  padding: 50px 20px;
  background-color: #000;
  min-height: 100vh;
}

/* Título */
.contador-container h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}

/* Bloques del contador */
#contador {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

#contador div {
  background: #111;
  border: 2px solid #f19fca;
  border-radius: 10px;
  padding: 20px;
  width: 80px;
}

#contador span {
  font-size: 2rem;
  font-weight: bold;
  display: block;
}

#contador p {
  margin-top: 5px;
  font-size: 0.9rem;
}

/* Sección en vivo */
#en-vivo {
  margin-top: 40px;
}

#en-vivo h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #00ff99;
  animation: parpadeo 1s infinite;
}

/* Animación de parpadeo */
@keyframes parpadeo {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Logo de Twitch */
.twitch-logo {
  width: 100px;
  margin: 10px 0;
  transition: transform 0.3s;
}

.twitch-logo:hover {
  transform: scale(1.1);
}

/* Botón Twitch */
.btn-twitch {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 24px;
  background: #f19fca;
  color: #000;
  border-radius: 25px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-twitch:hover {
  background: #ffb6d9;
}

/* Oculto por defecto */
.hidden {
  display: none;
}