.bc-player {
  position: relative !important;
  width: 100% !important;
  max-width: 100% !important;
  background: #050914 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45) !important;
}

.bc-video {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  background: #000 !important;
}

.bc-player-overlay {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  pointer-events: none !important;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.45),
    rgba(0, 0, 0, 0.05) 35%,
    rgba(0, 0, 0, 0.85)
  ) !important;
  opacity: 1 !important;
  transition: opacity 0.25s ease !important;
}

.bc-player.is-playing:not(.is-hovering) .bc-player-overlay {
  opacity: 0 !important;
}

.bc-player:hover .bc-player-overlay,
.bc-player.is-paused .bc-player-overlay {
  opacity: 1 !important;
}

.bc-player-title {
  padding: 18px 20px !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8) !important;
}

.bc-big-play {
  pointer-events: auto !important;
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 76px !important;
  height: 76px !important;
  border-radius: 50% !important;
  border: 0 !important;
  background: #168add !important;
  color: #fff !important;
  font-size: 28px !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.bc-player.is-playing .bc-big-play {
  display: none !important;
}

.bc-controls {
  pointer-events: auto !important;
  padding: 0 18px 16px !important;
}

.bc-progress {
  width: 100% !important;
  accent-color: #168add !important;
  cursor: pointer !important;
}

.bc-controls-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 8px !important;
}

.bc-controls-row button {
  background: transparent !important;
  border: 0 !important;
  color: #fff !important;
  font-size: 15px !important;
  cursor: pointer !important;
  padding: 7px 9px !important;
  border-radius: 6px !important;
}

.bc-controls-row button:hover {
  background: rgba(255, 255, 255, 0.14) !important;
}

.bc-controls-row input[type="range"][data-bc-volume] {
  width: 90px !important;
  accent-color: #168add !important;
}

.bc-time {
  color: #fff !important;
  font-size: 13px !important;
  white-space: nowrap !important;
}

.bc-spacer {
  flex: 1 !important;
}

@media (max-width: 768px) {
  .bc-controls-row {
    gap: 5px !important;
  }

  .bc-controls-row input[type="range"][data-bc-volume] {
    display: none !important;
  }

  .bc-time {
    font-size: 11px !important;
  }

  .bc-big-play {
    width: 58px !important;
    height: 58px !important;
    font-size: 21px !important;
  }
}
