#floating-video {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 220px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  z-index: 9999;
}

#floating-video video {
  width: 100%;
  display: block;
}

/* Botón cerrar */
.close-video {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 50%;
  background: rgba(0,0,0,0.75);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  z-index: 10000; /* 👈 CLAVE */
}

#floating-video {
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.35),
    0 0 30px rgba(37, 112, 255, 0.30);
}
