.reels-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto 30px auto;
  overflow: hidden;
  user-select: none;
  background: #fff;
  border-radius: 8px;
  padding: 5px 0;
}

.reels-slider {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
  gap: 10px;
}

.reel-item {
  flex: 0 0 33.3333%;
  box-sizing: border-box;
  padding: 0 5px;
  cursor: pointer;
}

.reel-item video {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  font-size: 30px;
  padding: 5px 10px;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
  user-select: none;
  z-index: 10;
}

.arrow-btn.left {
  left: 5px;display:none;
}

.arrow-btn.right {
  right: 5px;display:none;
}

@media (max-width: 768px) {
  .reel-item {
    flex: 0 0 100%;
  }
}
