/* ═══════════════════════════════════════════
   ZONA GEMELOS 🎭 — Stream Player
   ═══════════════════════════════════════════ */
#stream-wrapper {
  position: relative;
  width: calc(100% - 24px);
  margin: 10px auto 8px;
  padding-top: calc((100% - 24px) * 9 / 16);
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 0 0 1px rgba(255,255,255,0.02);
}
#stream-wrapper video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}
#stream-controls {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ctrl-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 0.5px solid rgba(255,255,255,0.06);
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ctrl-btn:hover { background: rgba(255,255,255,0.1); }
.ctrl-btn:active { transform: scale(0.9); }

#live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,0,0,0.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 0.5px solid rgba(255,0,0,0.1);
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  color: #ff4444;
  letter-spacing: 0.5px;
}
#live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #ff4444;
  animation: livePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px rgba(255,0,0,0.4);
}
@keyframes livePulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

#stream-fade {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  pointer-events: none;
  z-index: 2;
}
