/* CINEMATICS — full-bleed vertical reels (IG/TikTok style) */

.cinema-body {
  background: #000;
  overflow: hidden;
  height: 100vh;
}

.cinema-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 70;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 28px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0));
}
.cinema-meta {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--paper-2);
}
.rec-dot { color: #ff4040; animation: blink 1.6s infinite; }

.reels {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}
.reels::-webkit-scrollbar { display: none; }
.reels { -ms-overflow-style: none; scrollbar-width: none; }

.full-reel {
  height: 100vh;
  width: 100vw;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
}
.full-bg {
  position: absolute; inset: 0;
  background: #0a0805;
  transform: scale(1.02);
  transition: transform 12s linear, filter 1s ease;
  filter: saturate(0.95) contrast(1.05);
}
.full-bg canvas, .full-bg video {
  position: absolute; inset: 0; width: 100%; height: 100%;
}
.full-reel.in .full-bg { transform: scale(1.14); }

.full-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 110px 8vw 60px;
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, rgba(0,0,0,0.55) 100%);
  color: var(--paper);
}
.full-meta {
  max-width: 700px;
  margin-top: auto;
}
.full-meta .tape {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #ff5050;
  background: rgba(0,0,0,0.5);
  padding: 6px 10px;
  border-radius: 2px;
  margin-bottom: 22px;
}
.full-meta h1 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px, 8vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.full-meta p {
  font-size: 18px;
  color: rgba(236,228,210,0.85);
  max-width: 460px;
  margin-bottom: 32px;
}

.reel-actions {
  display: flex; gap: 14px;
  flex-wrap: wrap;
}
.ra-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(236,228,210,0.3);
  background: rgba(0,0,0,0.35);
  color: var(--paper);
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
}
.ra-btn:hover {
  background: var(--amber);
  color: var(--ink);
  border-color: var(--amber);
}
.ra-btn span { color: var(--amber); }
.ra-btn:hover span { color: var(--ink); }

.full-credits {
  position: absolute;
  bottom: 30px; right: 8vw;
  display: flex; flex-direction: column;
  gap: 4px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(236,228,210,0.6);
  text-align: right;
  text-transform: uppercase;
}

.scroll-hint {
  position: fixed;
  right: 28px; bottom: 30px;
  z-index: 70;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: rgba(236,228,210,0.7);
  text-transform: uppercase;
}
.hint-arrow {
  font-size: 16px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

@media (max-width: 900px) {
  .full-overlay { padding: 110px 24px 90px; }
  .full-credits { right: 24px; bottom: 24px; }
  .scroll-hint { bottom: 20px; right: 20px; }
}
