/* Reset / Base */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #000;
  overflow: hidden;
  font-family: Arial, sans-serif;
  color: #fff;
}

/* Feed container */
.video-feed {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

/* Each video slide */
.video-slide {
  height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
}

/* Video styling */
video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

/* Sidebar (like TikTok) */
.sidebar {
  position: absolute;
  right: 20px;
  bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.sidebar-btn {
  text-align: center;
  font-size: 28px;
  cursor: pointer;
  user-select: none;
}

.sidebar-btn span {
  display: block;
  font-size: 14px;
  margin-top: 4px;
  color: #fff;
}
