.yt-carousel-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  font-family: system-ui, sans-serif;
}

.yt-carousel-section .carousel-wrap {
  width: 100%;
  max-width: 800px;
}

.yt-carousel-section .carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.yt-carousel-section .carousel-title {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
}

.yt-carousel-section .counter {
  font-size: 13px;
  color: #aaa;
}

.yt-carousel-section .stage {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  background: #000;
}

.yt-carousel-section .track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  margin: 0;
  padding: 0;
}

.yt-carousel-section .slide {
  min-width: 100%;
  flex-shrink: 0;
}

.yt-carousel-section .slide-inner {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}

.yt-carousel-section .slide-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.yt-carousel-section .slide-label {
  padding: 12px 16px;
  background: #fff;
  border-top: 1px solid #e0e0e0;
}

.yt-carousel-section .slide-label p {
  font-size: 15px;
  font-weight: 600;
  color: #111;
  margin: 0;
  padding: 0;
}

.yt-carousel-section .nav-btn {
  position: absolute;
  top: calc(50% - 19px);
  z-index: 10;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.yt-carousel-section .nav-btn:hover {
  background: #f0f0f0;
}

.yt-carousel-section .nav-btn svg {
  width: 16px;
  height: 16px;
  stroke: #333;
}

.yt-carousel-section .nav-prev {
  left: 12px;
}

.yt-carousel-section .nav-next {
  right: 12px;
}

.yt-carousel-section .nav-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.yt-carousel-section .dots {
  display: flex;
  gap: 7px;
  justify-content: center;
  margin-top: 16px;
}

.yt-carousel-section .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ccc;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.yt-carousel-section .dot.active {
  background: #111;
  transform: scale(1.35);
}