body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #cc0000, #a50000);
  color: #333; /* texto oscuro para mejor lectura sobre fondo claro */
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.streaming-section {
  background: rgba(255, 255, 255, 0.95); /* blanco casi opaco */
  border-radius: 15px;
  padding: 40px 30px;
  max-width: 900px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 25px rgba(204, 0, 0, 0.8); /* sombra roja para destacar */
  color: #cc0000; /* texto rojo para marca */
}

.streaming-section h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: #a50000; /* rojo oscuro para título */
  text-shadow: none;
}

.streaming-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #555;
}

#password-input {
  padding: 15px 20px;
  font-size: 1.2rem;
  border-radius: 8px;
  border: 2px solid #cc0000;
  width: 70%;
  max-width: 400px;
  margin-bottom: 15px;
  background-color: #fff;
  color: #333;
  box-shadow: none;
}

#password-input::placeholder {
  color: #cc0000;
}

.btn-primary {
  padding: 15px 30px;
  font-weight: bold;
  font-size: 1.2rem;
  border: none;
  background-color: #cc0000;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  box-shadow: 0 0 10px #cc0000;
}

.btn-primary:hover {
  background-color: #a50000;
  box-shadow: 0 0 15px #ff4c4c;
}

.error-message {
  color: #cc0000;
  margin-top: 10px;
  font-weight: 600;
}

.hidden {
  display: none;
}


/* Responsive */
@media (max-width: 600px) {
  #password-input {
    width: 100%;
  }
  .btn-primary {
    width: 100%;
  }
}

/* Contenedor del video responsive */
#video-container {
  max-width: 900px;
  width: 100%;
  margin: 20px auto 10px;
  position: relative;
  padding-top: 56.25%; /* ratio 16:9 */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(204, 0, 0, 0.8);
  background-color: black;
}

/* iframe ocupa todo el contenedor */
#video-container iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 15px;
}

/* El botón fullscreen puede quedar si quieres (desktop) */
.fullscreen-btn {
  display: inline-block;
  margin: 10px auto 0;
  padding: 12px 28px;
  font-weight: bold;
  border-radius: 8px;
  background-color: #cc0000;
  color: white;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 15px #cc0000;
  transition: background-color 0.3s ease;
}

.fullscreen-btn:hover {
  background-color: #a50000;
  box-shadow: 0 0 20px #ff4c4c;
}

/* En móviles escondemos el botón fullscreen para evitar confusión */
@media (max-width: 700px) {
  .fullscreen-btn {
    display: none;
  }
}


