/* Add custom CSS styles below */
.custom-videos-section {
  padding: 40px 0;
  background: #00a984;
}
.custom-videos-section h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}
.custom-videos-section p.subtitle {
  text-align: center;
  color: #ffffffcc;
  font-size: 14px;
  margin-bottom: 20px;
}
.custom-videos-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
  scrollbar-width: none;
  justify-content: center;
}
.custom-videos-scroll::-webkit-scrollbar {
  display: none;
}
.custom-video-card {
  flex: 0 0 160px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  position: relative;
  aspect-ratio: 9/16;
}
.custom-video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-video-info {
  position: absolute;
  bottom: 10px;
  right: 10px;
  left: 10px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.custom-video-info .name {
  font-size: 13px;
  font-weight: 700;
}
.custom-video-info .stars {
  color: #f5c518;
  font-size: 12px;
}
.mute-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.5);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .custom-video-card {
    flex: 0 0 220px;
  }
  .custom-videos-scroll {
    gap: 24px;
  }
}