:root {
  --green: #BEF209;
  --white: #ffffff;
  --black: #000000;
  --border: #e5e5e5;
}

.reelsection {
  margin-top: 200px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* Slider container */
.video-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  width: 100%;
  margin-top: 70px;
}

.video-card {
  flex: 0 0 23%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-color: transparent;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 32px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  padding: 15px 25px;
  pointer-events: none;
  transition: opacity 0.3s;
}

.video-card.playing .play-btn {
  opacity: 0;
}

/* Dots */
.slider-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.slider-dots span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #ffffff;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 30px;
}

.slider-dots span.active {
  background: var(--green);
}

/* Responsive */
@media (max-width: 1024px) {
  .video-card {
    flex: 0 0 31%;
  }
}

@media (max-width: 768px) {
  .video-card {
    flex: 0 0 48%;
  }
}

@media (max-width: 480px) {
  .video-card {
    flex: 0 0 100%;
  }
  .play-btn {
  font-size: 20px;
  padding: 16px 20px;
}

  .reelsection {
    margin-top: 50px;
  }

  .video-slider {
    margin-top: 30px;
  }

  .slider-dots {
    margin-top: 10px;
  }

  .slider-dots span {
    width: 10px;
    height: 10px;
  }

}