.mesazhi-reels-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  scroll-snap-type: y mandatory;
  overflow-y: auto;
  height: 100vh;
}

.reel-item {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  scroll-snap-align: start;
}

.reel-content img,
.reel-content video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.reel-meta {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.4);
  padding: 5px 10px;
  border-radius: 8px;
}
