/* === 抖荫短视频视频播放器覆盖层样式 === */
.xxh-video-player-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.xxh-video-player-mock {
  background: #1E1E3A;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.xxh-video-player-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #2A2A4A;
  color: #E8E8F0;
  font-size: 0.9rem;
  font-weight: 600;
}

.xxh-video-close {
  background: none;
  border: none;
  color: #E8E8F0;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
}

.xxh-video-close:hover {
  color: #FF6B35;
}

.xxh-video-player-screen {
  aspect-ratio: 16/9;
  background: #0D0D1A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.xxh-video-loading {
  color: #9A9AB8;
  font-size: 1.1rem;
}

.xxh-video-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #2A2A4A;
}

.xxh-vc-play {
  background: none;
  border: none;
  color: #E8E8F0;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px;
}

.xxh-vc-play:hover {
  color: #FF6B35;
}

.xxh-vc-progress {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}

.xxh-vc-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #FF6B35, #FF3CAC);
  border-radius: 2px;
  transition: width 0.1s linear;
}

.xxh-vc-time {
  color: #9A9AB8;
  font-size: 0.78rem;
  white-space: nowrap;
}

.xxh-vc-fullscreen {
  background: none;
  border: none;
  color: #E8E8F0;
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
}

.xxh-vc-fullscreen:hover {
  color: #FF6B35;
}
