/* video-float.css: floating draggable video with close button, no overlay */
.floating-video {
  position: fixed;
  left: 16px;
  top: 480px;
  width: 240px;
  aspect-ratio: 1 / 1;
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 25px 60px -10px rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  cursor: grab;
  user-select: none;
  touch-action: none;
      z-index: 99999; /* bien alto pero sin hackear nada */
}
.fv-header {
  display: flex;
  justify-content: flex-end;
  padding: 2px 4px;
  background: rgba(255,255,255,0.05);
  z-index: 9; /* bien alto pero sin hackear nada */
}
.close-fv {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  line-height: 1;
  padding: 0 6px;
  border-radius: 4px;
}
.close-fv:hover {
  background: rgba(255,255,255,0.15);
}
.fv-body {
  position: relative;
  flex: 1;
  background: #000;
}
.fv-body video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

