/* Episode Carousel Custom Styles */

.streaming-carousel {
  position: relative;
  margin: 20px 0;
}

.slick-dotted.slick-slider {
  margin-bottom: 55px;
}

/* Arrow Buttons - Clean Transparent Design */
.streaming-carousel .slick-prev,
.streaming-carousel .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.streaming-carousel .slick-prev:hover,
.streaming-carousel .slick-next:hover {
  transform: translateY(-50%) scale(1.2);
}

.streaming-carousel .slick-prev:active,
.streaming-carousel .slick-next:active {
  transform: translateY(-50%) scale(0.95);
}

.streaming-carousel .slick-prev {
  left: 10px;
}

.streaming-carousel .slick-next {
  right: 10px;
}

.streaming-carousel .slick-prev:before,
.streaming-carousel .slick-next:before {
  font-size: 30px;
  line-height: 1;
  opacity: 1;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Dots styling - Modern */
.streaming-carousel .slick-dots {
  bottom: -40px;
}

.streaming-carousel .slick-dots li {
  margin: 0 4px;
}

.streaming-carousel .slick-dots li button:before {
  font-size: 10px;
  color: #667eea;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.streaming-carousel .slick-dots li.slick-active button:before {
  color: #667eea;
  opacity: 1;
  transform: scale(1.3);
}

.streaming-carousel .slick-dots li:hover button:before {
  opacity: 0.8;
}

/* Image styling */
.streaming-carousel img {
  width: 100%;
  height: auto;
  max-height: 330px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .streaming-carousel .slick-prev,
  .streaming-carousel .slick-next {
    width: 45px;
    height: 45px;
  }

  .streaming-carousel .slick-prev svg,
  .streaming-carousel .slick-next svg {
    width: 22px;
    height: 22px;
  }

  .streaming-carousel .slick-prev {
    left: 8px;
  }

  .streaming-carousel .slick-next {
    right: 8px;
  }
}
