/* public/css/player.css */

.dp-player {
  position: relative;
  background: #000;
}
.dp-player video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  background: #000;
  outline: none;
}
.dp-player .player-hint {
  position: absolute; bottom: 8px; left: 12px;
  font-size: 11px; color: rgba(255,255,255,.55);
  pointer-events: none;
  background: rgba(0,0,0,.4); padding: 2px 8px; border-radius: 4px;
}

/* Lecteur plein écran (mode "cinéma" quand on lance un épisode depuis la card) */
.fullscreen-player {
  position: fixed; inset: 0; background: #000; z-index: 500;
  display: flex; align-items: center; justify-content: center;
}
.fullscreen-player video { width: 100%; height: 100%; }
.fullscreen-player .fp-close {
  position: absolute; top: 20px; right: 20px; z-index: 5;
}
.fullscreen-player .fp-title {
  position: absolute; top: 22px; left: 24px; z-index: 5;
  font-size: 15px; font-weight: 600; color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,.8);
}
