.js-screenshots-slider {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #0e0a18;
}
.js-slide-item {
  display: none;
  width: 100%;
}
.js-slide-item.active {
  display: block;
}
.js-slide-item img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 10px;
}
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  gap: 10px;
}
.slider-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(156,204,101,.12);
  border: 1px solid rgba(156,204,101,.25);
  color: #9ccc65;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .22s, transform .22s;
  flex-shrink: 0;
}
.slider-arrow:hover {
  background: rgba(156,204,101,.25);
  transform: scale(1.08);
}
.slider-dots {
  display: flex; gap: 6px; justify-content: center; flex: 1;
}
.js-slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: background .22s, transform .22s;
  border: none;
  padding: 0;
}
.js-slider-dot.active {
  background: #9ccc65;
  transform: scale(1.3);
}
