
.horizontal-reel-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 10px;
  padding: 10px;
}

.reel-thumb {
  flex: 0 0 auto;
  width: 200px;
  height: 355px;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.reel-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fullscreen-reel-viewer {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reel-modal-container {
  width: 100%;
  max-width: 360px;
  height: 85vh;
  background: black;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.close-reel-viewer {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255,255,255,0.8);
  border: none;
  padding: 8px 12px;
  z-index: 10000;
  cursor: pointer;
  border-radius: 6px;
}

.reel-slider-container {
  height: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

.reel-slide {
  height: 100%;
  scroll-snap-align: start;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.reel-slide video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.share-icon {
  position: absolute;
  right: 10px;
  bottom: 20px;
  z-index: 10;
  opacity: 0.5;
  cursor: pointer;
  width: 36px;
  height: 36px;
}

.share-icon img {
  width: 100%;
  height: 100%;
}
