/* ============================================================
   V2K SOCIAL — VERTICAL FEED STYLES (PHASE 8 → 20)
   - Fullscreen vertical snapping
   - Mobile-first, app-store safe
   - Clean, modern, corporate
   ============================================================ */

:root {
  --bg: #000000;
  --fg: #ffffff;
  --muted: rgba(255,255,255,0.7);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
  overflow: hidden;
}

/* -------------------- FEED CONTAINER -------------------- */
#feed {
  height: 100vh;
  width: 100vw;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
}

/* -------------------- FEED ITEM -------------------- */
.feed-item {
  position: relative;
  height: 100vh;
  width: 100vw;
  scroll-snap-align: start;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------- VIDEO -------------------- */
.feed-item video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  background: #000;
}

/* -------------------- META OVERLAY -------------------- */
.meta {
  position: absolute;
  left: 16px;
  bottom: 72px;
  max-width: calc(100% - 32px);
  z-index: 10;
  pointer-events: none;
}

.caption {
  font-size: 15px;
  line-height: 1.35;
  margin: 0 0 6px 0;
  color: var(--fg);
}

.stats {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  gap: 12px;
}

/* -------------------- SCROLLBAR (DESKTOP) -------------------- */
#feed::-webkit-scrollbar {
  width: 6px;
}
#feed::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.2);
  border-radius: 4px;
}
#feed::-webkit-scrollbar-track {
  background: transparent;
}

/* -------------------- RESPONSIVE -------------------- */
@media (max-width: 600px) {
  .caption {
    font-size: 14px;
  }
  .stats {
    font-size: 12px;
  }
}
