/* === YouTube Live flotante con botón === */

#yt-live-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 310px;
  height: 230px; /* Aumentado para que quepa el botón */
  background: #FFD814; /* Cambiado a blanco para que resalte el botón */
  z-index: 9999;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
}

#yt-live-iframe {
  width: 100%;
  height: 180px; /* Altura fija para el video */
  border: none;
}

#yt-close {
  position: absolute;
  top: 5px;
  right: 8px;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 1;
}

/* Estilo Botón Amazon */
.yt-amazon-btn {
  display: block;
  background: #FFD814;
  border: 1px solid #FCD200;
  color: #0F1111;
  text-align: center;
  padding: 8px 10px;
  margin: 8px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: bold;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(213,217,217,.5);
}

.yt-amazon-btn:hover {
  background: #F7CA00;
  border-color: #F2C200;
}

/* Ocultar en móvil */
@media (max-width: 768px) {
  #yt-live-container {
    display: none !important;
  }
}
