body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: black;
  overflow: hidden;
  touch-action: manipulation;
}

/* FEED */
#feed {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

/* EACH REEL */
.reel {
  height: 100vh;
  width: 100%;
  position: relative;
  scroll-snap-align: start;
}

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

/* TEXT OVERLAY */
.overlay {
  position: absolute;
  bottom: 80px;
  left: 15px;
  color: white;
}

.overlay h2 {
  margin: 0;
}

.overlay p {
  margin: 5px 0;
}

/* FLOATING BUTTONS */
.actions {
  position: fixed;
  right: 10px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.actions button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  font-size: 16px;
  background: rgba(255,255,255,0.2);
  color: white;
  backdrop-filter: blur(10px);
  cursor: pointer;
}
