:root {
  --slider-width: 100%;
  --slider-height: 480px;
  --accent: #0381E9;
  --bg: #1a1a2e;
  --card-gap: 40px;
  --transition: 0.7s cubic-bezier(0.77, 0, 0.18, 1);
}

.bs-slider-wrapper {
  position: relative;
  width: var(--slider-width);
  max-width: 1100px;
  margin: 0 auto;
  font-family: inherit;
}

.bs-slider-scene {
  width: 100%;
  height: var(--slider-height);
  overflow: hidden;
  position: relative;
}

.bs-slider-track {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.bs-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  user-select: none;
}

.bs-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.bs-slide-caption {
  display: none;
}

.bs-slide.bs-active {
  opacity: 1;
  z-index: 10;
  pointer-events: auto;
}

.bs-slide.bs-prev,
.bs-slide.bs-prev-2,
.bs-slide.bs-next,
.bs-slide.bs-next-2,
.bs-slide.bs-hidden {
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.bs-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.2s;
  outline: none;
}

.bs-btn:hover {
  background: rgba(245,166,35,0.7);
  transform: translateY(-50%) scale(1.1);
}

.bs-btn-prev { left: 18px; }
.bs-btn-next { right: 18px; }

.bs-btn {
  display: none;
}

.bs-slider-wrapper[data-arrows="true"] .bs-btn {
  display: flex;
}

.bs-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.bs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  outline: none;
}

.bs-dot.bs-dot-active {
  background: var(--accent);
  width: 28px;
  border-radius: 5px;
  transform: scale(1.1);
}

.bs-progress {
  display: none;
}
