/* ========================================
   全局样式
   ======================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #fafafa;
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  --color-gray: #666666;
  --color-light-gray: #e0e0e0;
  --color-cream: #f5f3f0;
  --color-gold: #d4af37;
  --color-deep-red: #8b2635;
  --color-deep-blue: #2c3e50;
  --color-deep-green: #2d5016;

  --font-serif: 'Noto Serif SC', serif;
  --font-sans: 'Noto Sans SC', sans-serif;
  --font-mono: 'Space Mono', monospace;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);

  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s ease;
  --transition-slow: 0.8s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-black);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-fluid {
  width: 100%;
  padding: 0 40px;
}

/* ========================================
   顶部进度条
   ======================================== */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-deep-red), var(--color-gold));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ========================================
   Logo
   ======================================== */

.logo {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  z-index: 9998;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.1);
}

.logo-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  background-size: cover;
  background-position: center;
}

/* ========================================
   自定义鼠标
   ======================================== */

.custom-cursor {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  display: none;
}

@media (min-width: 1024px) {
  .custom-cursor {
    display: block;
  }
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--color-black);
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, background 0.15s ease;
}

.cursor-text {
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--color-black);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
  margin-top: -30px;
}

.custom-cursor.hover .cursor-dot {
  transform: translate(-50%, -50%) scale(2);
  background: var(--color-gold);
}

.custom-cursor.hover .cursor-text {
  opacity: 1;
}

/* ========================================
   睡眼惺忪眨眼开场动画
   ======================================== */

.opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #000000;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.8s ease;
}

.opening.hidden {
  opacity: 0;
  visibility: hidden;
}

.opening-canvas {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 眨眼元素 */
.blink-eye {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 2px;
  background: #ffffff;
  border-radius: 50% / 20%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 阶段1：细缝出现 */
.blink-eye.slit {
  opacity: 1;
  height: 4px;
  border-radius: 50% / 10%;
}

/* 阶段2：第一次轻轻睁开 */
.blink-eye.open-first {
  height: 120px;
  border-radius: 50% / 25%;
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 阶段3：眨一下合回去 */
.blink-eye.blink-close {
  height: 50px;
  border-radius: 50% / 20%;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 阶段4：再慢慢睁大 */
.blink-eye.open-full {
  height: 200px;
  border-radius: 50% / 30%;
  transition: all 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* 阶段5：快速扩散 */
.blink-eye.fade-out {
  height: 100vh;
  border-radius: 0%;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   首屏
   ======================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  overflow: hidden;
  opacity: 0;
}

.hero.visible {
  opacity: 1;
  transition: opacity 1s ease 0.5s;
}

/* 首页背景三横排斜切照片墙 */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
  pointer-events: none;
}

.bg-row {
  position: absolute;
  left: 0;
  width: 100%;
  height: 33.33%;
  display: flex;
  gap: 0;
  overflow: hidden;
}

.bg-row:nth-child(1) {
  top: 0;
}

.bg-row:nth-child(2) {
  top: 33.33%;
}

.bg-row:nth-child(3) {
  top: 66.66%;
}

.bg-row-track {
  display: flex;
  gap: 0;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.bg-row:nth-child(1) .bg-row-track {
  animation: bgScrollRight 120s linear infinite;
}

.bg-row:nth-child(2) .bg-row-track {
  animation: bgScrollLeft 140s linear infinite;
}

.bg-row:nth-child(3) .bg-row-track {
  animation: bgScrollRight 160s linear infinite;
}

@keyframes bgScrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes bgScrollLeft {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.bg-photo {
  flex-shrink: 0;
  width: 400px;
  height: 100%;
  overflow: hidden;
  position: relative;
  clip-path: polygon(8% 0%, 100% 0%, 92% 100%, 0% 100%);
  filter: blur(1px);
  opacity: 0.6;
}

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

/* 首页右下角牌堆 */
.photo-pile {
  position: absolute;
  bottom: 60px;
  right: 60px;
  width: 320px;
  height: 400px;
  pointer-events: all;
  z-index: 5;
  transition: transform 0.3s ease;
}

.pile-card {
  position: absolute;
  width: 320px;
  height: 400px;
  background: var(--color-white);
  border: 4px solid var(--color-black);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: all;
}

.pile-card:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  z-index: 100 !important;
}

.pile-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* 牌堆预览弹层已删除，改用统一详情页 */

/* 主标题区 */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 800px;
  padding: 40px;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-black);
  letter-spacing: 0.05em;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--color-gray);
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-gray);
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}

.stat-value {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-black);
}

.enter-btn {
  padding: 16px 48px;
  font-size: 1rem;
  font-family: var(--font-mono);
  background: var(--color-black);
  color: var(--color-white);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.1em;
}

.enter-btn:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* 背景大字 */
.bg-text {
  position: absolute;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.02);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

/* ========================================
   搜索筛选区
   ======================================== */

.search-section {
  padding: 80px 0;
  background: var(--color-cream);
}

.search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto 20px;
}

.search-input {
  width: 100%;
  padding: 16px 50px 16px 20px;
  font-size: 1rem;
  font-family: var(--font-sans);
  border: 2px solid var(--color-black);
  background: var(--color-white);
  outline: none;
  transition: all var(--transition-fast);
}

.search-input:focus {
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.search-clear.visible {
  opacity: 1;
}

.search-results {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 30px;
}

.filter-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.filter-tag {
  padding: 8px 20px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  background: var(--color-white);
  border: 1px solid var(--color-light-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.filter-tag:hover {
  border-color: var(--color-black);
}

.filter-tag.active {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

/* ========================================
   瀑布画廊
   ======================================== */

.waterfall-gallery {
  padding: 80px 0;
  background: var(--color-white);
  position: relative;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--color-black);
}

.waterfall-grid {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  position: relative;
  max-height: 1450px;
  overflow: hidden;
}

.waterfall-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(to bottom, var(--color-white) 0%, rgba(250, 250, 250, 0.98) 40%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.waterfall-grid::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(to top, var(--color-white) 0%, rgba(250, 250, 250, 0.98) 40%, transparent 100%);
  z-index: 10;
  pointer-events: none;
}

.waterfall-column {
  flex: 1;
  position: relative;
  overflow: visible;
}

.waterfall-track {
  display: flex;
  flex-direction: column;
  gap: 42px;
  will-change: transform;
}

.waterfall-track.scroll-down {
  animation: waterfallScrollDown var(--scroll-duration, 240s) linear infinite;
}

.waterfall-track.scroll-up {
  animation: waterfallScrollUp var(--scroll-duration, 240s) linear infinite;
}

.waterfall-track.scroll-down:hover,
.waterfall-track.scroll-up:hover {
  animation-play-state: paused;
}

.waterfall-set {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.waterfall-card {
  background: var(--color-white);
  border: 2px solid var(--color-black);
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
}

.waterfall-card:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 5;
}

.waterfall-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: #f5f5f5;
}

.waterfall-card-info {
  padding: 16px;
  background: var(--color-white);
}

.card-id {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--color-gray);
  margin-bottom: 4px;
}

.card-author {
  font-weight: 700;
  margin-bottom: 8px;
}

.card-quote {
  font-size: 0.9rem;
  color: var(--color-gray);
  margin-bottom: 8px;
  font-style: italic;
}

.card-category {
  font-size: 0.8rem;
  color: var(--color-gold);
  font-family: var(--font-mono);
}

@keyframes waterfallScrollDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes waterfallScrollUp {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-gray);
  display: none;
}

.no-results.visible {
  display: block;
}

/* ========================================
   词云区
   ======================================== */

.word-cloud-section {
  padding: 120px 0;
  background: var(--color-cream);
}

.word-cloud {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.word-item {
  display: inline-block;
  padding: 8px 16px;
  font-family: var(--font-serif);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
  position: relative;
}

.word-item:hover {
  color: var(--color-gold);
  transform: scale(1.1);
}

.word-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transform: translateX(-50%);
  transition: width var(--transition-fast);
}

.word-item:hover::after {
  width: 100%;
}

/* ========================================
   电影胶片轮转区
   ======================================== */

.film-strip-section {
  padding: 80px 0;
  background: var(--color-black);
  color: var(--color-white);
}

.film-strip-section .section-title {
  color: var(--color-white);
}

.film-strip {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
}

.film-track {
  display: flex;
  gap: 30px;
  animation: filmScroll 30s linear infinite;
}

.film-track:hover {
  animation-play-state: paused;
}

@keyframes filmScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.film-frame {
  position: relative;
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  background: var(--color-white);
  border: 8px solid #333;
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.film-frame::before,
.film-frame::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 20px;
  left: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 10px,
    #333 10px,
    #333 15px,
    transparent 15px,
    transparent 25px
  );
  background-size: 25px 20px;
  background-position: 0 0;
}

.film-frame::before {
  top: -28px;
}

.film-frame::after {
  bottom: -28px;
}

.film-frame:hover {
  transform: scale(1.05);
}

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

/* ========================================
   作者索引
   ======================================== */

.authors-section {
  padding: 80px 0;
  background: var(--color-white);
}

.authors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.author-card {
  padding: 20px;
  background: var(--color-cream);
  border: 1px solid var(--color-light-gray);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
}

.author-card:hover {
  border-color: var(--color-black);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.author-name {
  font-weight: 700;
  margin-bottom: 8px;
}

.author-count {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--color-gray);
}

/* ========================================
   补档说明
   ======================================== */

.archive-note {
  padding: 80px 0;
  background: var(--color-cream);
  text-align: center;
}

.archive-note p {
  font-size: 1.1rem;
  color: var(--color-gray);
  margin-bottom: 12px;
}

/* ========================================
   页脚
   ======================================== */

.footer {
  padding: 60px 0;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}

.footer p {
  margin-bottom: 8px;
  opacity: 0.7;
}

/* ========================================
   舞台式详情页
   ======================================== */

.stage-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.stage-modal.visible {
  display: flex;
}

.stage-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
}

.stage-content {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 80px;
  max-width: 1400px;
  width: 90%;
  height: 80vh;
}

.stage-close {
  position: absolute;
  top: -60px;
  right: 0;
  width: 50px;
  height: 50px;
  background: transparent;
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-size: 2rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.stage-close:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.stage-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--color-white);
  color: var(--color-white);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.stage-nav:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.stage-prev {
  left: -80px;
}

.stage-next {
  right: -80px;
}

/* 左侧展台 */
.stage-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.15s ease;
}

.stage-lights {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.stage-light {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  filter: blur(30px);
  transition: transform 0.15s ease;
}

.light-left {
  top: 10%;
  left: 10%;
}

.light-right {
  top: 10%;
  right: 10%;
}

.stage-spotlight {
  position: absolute;
  pointer-events: none;
  z-index: 5;
}

.stage-spotlight.left {
  top: 5%;
  left: 15%;
  width: 50px;
  height: 50px;
}

.stage-spotlight.right {
  top: 5%;
  right: 15%;
  width: 50px;
  height: 50px;
}

.stage-spotlight::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 30px;
  background: linear-gradient(180deg, #555 0%, #333 100%);
  border-radius: 50% 50% 40% 40%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stage-spotlight::after {
  content: '';
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-top: 300px solid rgba(255, 255, 255, 0.08);
  filter: blur(8px);
  clip-path: polygon(30% 0%, 70% 0%, 100% 100%, 0% 100%);
}

.stage-spotlight.left::after {
  transform: translateX(-50%) rotate(-12deg);
}

.stage-spotlight.right::after {
  transform: translateX(-50%) rotate(12deg);
}

.stage-platform {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.15s ease;
}

.platform-base {
  width: 500px;
  height: 40px;
  background: linear-gradient(180deg, #444 0%, #222 100%);
  border-radius: 50%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  margin-top: 20px;
  transition: transform 0.15s ease;
}

.stage-image-wrap {
  max-width: 700px;
  max-height: 70vh;
  margin-bottom: 20px;
}

.stage-image {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  box-shadow: var(--shadow-lg);
  transition: transform 0.15s ease;
}

/* 右侧信息 */
.stage-right {
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--color-white);
  transition: transform 0.15s ease;
}

.stage-info {
  margin-bottom: 40px;
}

.info-row {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-label {
  flex: 0 0 100px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.info-value {
  flex: 1;
  font-size: 1.1rem;
}

.quote-text {
  font-style: italic;
  color: var(--color-gold);
}

.stage-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.stage-action-btn {
  padding: 12px 24px;
  background: transparent;
  border: 1px solid var(--color-white);
  color: var(--color-white);
  font-family: var(--font-sans);
  cursor: pointer;
  transition: all var(--transition-fast);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.stage-action-btn:hover {
  background: var(--color-white);
  color: var(--color-black);
}

.action-count {
  font-family: var(--font-mono);
  font-size: 0.85rem;
}

.stage-hint {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.stage-hint p {
  margin-bottom: 4px;
}

/* ========================================
   响应式
   ======================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }

  .waterfall-grid {
    gap: 15px;
  }

  .waterfall-column:nth-child(n+3) {
    display: none;
  }

  .stage-content {
    flex-direction: column;
    gap: 40px;
    height: auto;
    overflow-y: auto;
  }

  .stage-right {
    flex: 1;
  }

  .stage-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .container,
  .container-fluid {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .waterfall-column:nth-child(n+2) {
    display: none;
  }

  .film-frame {
    width: 200px;
    height: 133px;
  }

  .authors-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
}
