/* ─── Act 6: Wildlife Documentary ─── Two-Zone Layout ─── */

.act6 {
  display: grid;
  grid-template-rows: 75vh 25vh;
  grid-template-columns: 1fr;
  align-items: stretch;
  justify-items: center;
  padding: 0;
  gap: 0;
  background: var(--color-dark-deep);
}

/* Title, footer, humor — hidden / not used */
.act6__title { display: none; }
.act6__footer { display: none; }

/* ─── ZONE 1: Video (top 75%) ─── */

.act6__cinema {
  grid-row: 1;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050507;
}

.act6__cinema-vignette {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    transparent 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}

.act6__cinema-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* ─── ZONE 2: Stage Items (bottom 25%) ─── */

.act6__stage {
  grid-row: 2;
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: center;
  gap: 0.75rem;
  padding: 0 var(--space-md);
}

.act6__stage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-gray-700);
  border-radius: 10px;
  opacity: 0;
  width: 140px;
}

.act6__stage-img {
  width: 110px;
  height: 82px;
  border-radius: 6px;
  object-fit: cover;
  background: var(--color-dark-deep);
}

.act6__stage-label {
  font-size: var(--size-sm);
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.2;
}
