/*
 * Styles pour le widget YouTube Shorts Elementor
 */
.ytlvw-shorts-player {
  transition: transform 0.3s cubic-bezier(.4,1.6,.4,1), box-shadow 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.ytlvw-shorts-player:hover {
  transform: scale(1.045) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.ytlvw-play-btn {
  animation: ytlvw-pulse 1.5s infinite;
  z-index: 2 !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  padding: 0;
  width: 56px;
  height: 56px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ytlvw-play-btn:hover {
  animation-play-state: paused;
}
@keyframes ytlvw-pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.18); }
  70% { box-shadow: 0 0 0 12px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.ytlvw-shorts-player iframe {
  z-index: 1;
}
/* Permet de personnaliser le bouton play via .ytlvw-play-btn svg */
