/* Video Wrapper */
.yt-video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  cursor: pointer;
  background: black;
  border-radius: 12px;
}

.yt-player {
  width: 100%;
  height: 100%;
}

/* Controls */
.yt-controls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.yt-controls button {
  background: rgba(0,0,0,0.6);
  border: 2px solid white;
  border-radius: 50%;
  color: white;
  font-size: 18px;
  width: 42px;
  height: 42px;
  cursor: pointer;
}