


body {
  margin: 0;
  padding: 40px;
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}

h2 {
  margin: 0;
  font-size: 48px;
}

h3 {
  margin-bottom: 10px;
}/* CHUNX Gallery Wall */

.chunx-gallery-wall {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.chunx-gallery-wall-track {
  width: 150%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: rotate(-30deg) scale(1.2);
}

.chunx-gallery-row {
  display: flex;
  gap: 24px;
  width: max-content;
}

.chunx-gallery-item {
  width: 260px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  background: #111;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
}

.chunx-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: .4;
  transition: all .7s ease;
}

.chunx-gallery-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@keyframes slide-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes slide-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.row-left-slow {
  animation: slide-left 70s linear infinite;
}

.row-right-fast {
  animation: slide-right 50s linear infinite;
}

.row-left-normal {
  animation: slide-left 60s linear infinite;
}

.row-right-slow {
  animation: slide-right 80s linear infinite;
}

.row-left-fast {
  animation: slide-left 45s linear infinite;
}

.row-right-normal {
  animation: slide-right 65s linear infinite;
}

.chunx-gallery-wall:hover .chunx-gallery-row {
  animation-play-state: paused;
}