.floating-window {
  position: fixed;
  right: 20px;
  top: 100px;
  z-index: 999999;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
  overflow: hidden;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  width: 470px;
  cursor: move;
}

.floating-header {
  padding: 8px 16px;
  background: linear-gradient(to right, #f2f2f2, #e8e8e8);
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.window-flex {
  position: relative;
  padding: 0;
}

#liveVideo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
  object-fit: cover;
}

.live-indicator {
  position: absolute;
  width: 70px;
  top: 5px;
  left: 5px;
  pointer-events: none;
}

.enter-live-btn {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 18px;
  background: linear-gradient(to right, #ff5e62, #ff9966);
  color: #fff;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.3s ease;
}
.enter-live-btn:hover {
  background: linear-gradient(to right, #ff3c41, #ff7b5c);
}
video::-webkit-media-controls-play-button {
  display: none;
}
video::-webkit-media-controls-timeline {
  display: none;
}
video::-webkit-media-controls-current-time-display{
  display: none;            
}
video::-webkit-media-controls-time-remaining-display {
  display: none;            
}