
.jx-carousel {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.jx-carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.jx-carousel-track img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

.jx-carousel-trackjx {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.jx-carousel-trackjx img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

.jx-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: white;
  background: rgba(0,0,0,0.5);
  padding: 0.5rem 1rem;
  cursor: pointer;
  z-index: 10;
  user-select: none;
}

.jx-arrow.jx-left { left: 20px; }
.jx-arrow.jx-right { right: 20px; }

.jx-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.jx-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.jx-dot.jx-active {
  background: white;
}
.rotate-clockwise {
  animation: jx-rotate 20s linear infinite;
  transform-origin: center center;
}

@keyframes jx-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}