/* === Shorts Feed Layout === */
#shorts-feed {
  height: 100vh;
  width: 100%;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  background: #000;
  margin: 0;
  padding: 0;
}

/* Each video container fills the screen */
.short-item {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  scroll-snap-align: start;
  position: relative;
  color: #fff;
}

.short-item video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.short-item h3,
.short-item .author {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 60px;
  text-align: center;
}

.short-item .author {
  margin-bottom: 90px;
  font-size: 14px;
  opacity: 0.8;
}

