.vs-slideshow {
  --vs-accent: #4f8cff;

  position: relative;
  width: 100%;
  max-width: 960px;
  /*aspect-ratio: 16 / 9;*/
  margin: 0 auto;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.vs-slideshow .vs-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.vs-slideshow .vs-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.vs-slideshow .vs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.vs-slideshow .vs-dot.active {
  background: var(--vs-accent);
  transform: scale(1.3);
}
