/* Our Working Player Carousel Styles */

.carousel-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.carousel-track {
  width: 400px;
  height: 500px;
  position: relative;
  perspective: 1000px;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(100px) rotateY(20deg);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  transform: translateX(0) rotateY(0);
  pointer-events: all;
  z-index: 10;
}

.carousel-slide.prev {
  opacity: 0.6;
  transform: translateX(-100px) rotateY(-20deg) scale(0.8);
  pointer-events: none;
  z-index: 5;
}

.carousel-slide.next {
  opacity: 0.6;
  transform: translateX(100px) rotateY(20deg) scale(0.8);
  pointer-events: none;
  z-index: 5;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 20;
}

.carousel-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav-prev {
  left: -40px;
}

.carousel-nav-next {
  right: -40px;
}

.carousel-indicators {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: white;
  transform: scale(1.2);
}

.carousel-indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

