/* ========================================
   暖金影院风 (Cinema Gold) - 影视视频模板
   主色调: 暖金#D4A853 + 深棕#2C1810 + 米白#F5F0E8
   ======================================== */
:root {
  --gold: #D4A853;
  --gold-light: #E8C97A;
  --gold-dark: #b8860b;
  --brown: #2C1810;
  --brown-light: #3D2A1E;
  --cream: #F5F0E8;
  --cream-dark: #E8DFD0;
  --text: #2C1810;
  --text-muted: #7A6B5D;
  --card-shadow: 0 8px 32px rgba(44,24,16,0.12);
  --serif: 'Georgia', 'Palatino', 'Times New Roman', serif;
  --sans: 'Helvetica Neue', 'Arial', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 72px;
}
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--brown); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--gold), var(--gold-dark)); border-radius: 5px; }
::selection { background: var(--gold); color: var(--brown); }
a { color: var(--gold-dark); text-decoration: none; transition: all 0.3s ease; }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; display: block; }
.container { width: 92%; max-width: 1200px; margin: 0 auto; }

/* ======== 幕布拉开动画 ======== */
.curtain-wrapper {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  z-index: 2000; pointer-events: none; display: flex;
}
.curtain {
  width: 50%; height: 100%;
  background: linear-gradient(135deg, var(--brown) 0%, #1a0e08 50%, var(--brown) 100%);
  transition: transform 1.5s cubic-bezier(0.86, 0, 0.07, 1);
  position: relative;
}
.curtain::before {
  content: '';
  position: absolute; top: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(90deg, transparent, transparent 30px, rgba(212,168,83,0.05) 30px, rgba(212,168,83,0.05) 32px);
}
.curtain.left { transform-origin: left; }
.curtain.right { transform-origin: right; }
body.loaded .curtain.left { transform: scaleX(0); }
body.loaded .curtain.right { transform: scaleX(0); }

/* ======== 金色粒子画布 ======== */
.particle-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: -1; pointer-events: none; opacity: 0.6;
}

/* ======== HEADER 金色渐变导航 ======== */
.main-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 50%, var(--gold) 100%);
  padding: 0 2rem; height: 72px;
  display: flex; align-items: center;
  box-shadow: 0 4px 20px rgba(184,134,11,0.3);
  transition: all 0.3s ease;
}
.main-header.scrolled {
  height: 60px;
  box-shadow: 0 4px 30px rgba(184,134,11,0.5);
  background: linear-gradient(135deg, var(--gold-dark) 0%, #8B6914 50%, var(--gold-dark) 100%);
}
.main-header .container {
  display: flex; justify-content: space-between; align-items: center; width: 100%;
}
.logo a {
  font-family: var(--serif); font-size: 1.8rem; color: var(--brown);
  font-weight: bold; letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(255,255,255,0.3);
}
.logo a::before { content: '🎬 '; }
.main-nav ul { list-style: none; display: flex; gap: 0; }
.main-nav li a {
  display: block; padding: 8px 18px; color: var(--brown);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.5px;
  border-radius: 4px; transition: all 0.3s ease;
  position: relative;
}
.main-nav li a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%;
  width: 0; height: 2px; background: var(--brown);
  transition: all 0.3s ease; transform: translateX(-50%);
}
.main-nav li a:hover::after { width: 70%; }
.main-nav li a:hover { background: rgba(44,24,16,0.1); }
.search-bar input {
  border: 2px solid var(--brown); background: rgba(245,240,232,0.8);
  padding: 8px 16px; border-radius: 20px; font-size: 0.85rem;
  transition: all 0.3s ease; width: 180px;
}
.search-bar input:focus {
  width: 240px; outline: none;
  box-shadow: 0 0 15px rgba(212,168,83,0.4);
  border-color: var(--gold-dark);
}

/* ======== HERO BANNER 胶片横滚 ======== */
.hero-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, #000 0%, var(--brown) 100%);
  padding: 50px 0;
}
.hero-banner::before, .hero-banner::after {
  content: '';
  position: absolute; top: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(212,168,83,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.hero-banner::after {
  background: radial-gradient(ellipse at 70% 50%, rgba(212,168,83,0.1) 0%, transparent 60%);
}
.spotlight {
  position: absolute; top: -50%; left: 40%; width: 20%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.06), transparent);
  transform: rotate(15deg);
  animation: spotlightMove 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes spotlightMove { 0%{left:20%;transform:rotate(10deg)} 100%{left:60%;transform:rotate(20deg)} }

.film-roll-container {
  display: flex; gap: 15px;
  animation: scrollFilm 35s linear infinite;
  padding: 10px 0;
}
.film-roll-container:hover { animation-play-state: paused; }
.film-frame {
  flex: 0 0 380px; height: 240px;
  background-size: cover; background-position: center;
  border: 6px solid #1a1a1a; border-radius: 6px;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transition: all 0.4s ease;
}
.film-frame::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.film-frame:hover {
  transform: scale(1.05);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(212,168,83,0.3);
}
.frame-overlay {
  position: absolute; bottom: 0; left: 0; width: 100%;
  padding: 15px; z-index: 2;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}
.frame-overlay h3 { font-family: var(--serif); font-size: 1rem; }
.frame-overlay h3 a { color: var(--cream); text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
.frame-overlay h3 a:hover { color: var(--gold); }
@keyframes scrollFilm { 0%{transform:translateX(0)} 100%{transform:translateX(calc(-395px * 5))} }

/* ======== 公告条 ======== */
.announcement-bar {
  background: linear-gradient(90deg, var(--brown), var(--brown-light), var(--brown));
  color: var(--gold); text-align: center; padding: 12px 1rem;
  font-size: 0.9rem; position: relative; overflow: hidden;
  border-top: 1px solid rgba(212,168,83,0.2);
  border-bottom: 1px solid rgba(212,168,83,0.2);
}
.announcement-bar::after {
  content: '';
  position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(212,168,83,0.15), transparent);
  animation: goldSweep 4s infinite;
}
@keyframes goldSweep { 0%{left:-50%} 100%{left:150%} }
.announcement-bar strong { color: var(--gold-light); }

/* ======== SECTION标题 ======== */
.section-title {
  font-family: var(--serif); color: var(--brown); text-align: center;
  font-size: 2.2rem; margin: 3rem 0 2rem; position: relative;
  letter-spacing: 2px;
}
.section-title::after {
  content: ''; display: block; width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 12px auto 0;
}

/* ======== 瀑布流视频网格 ======== */
.video-recommendations { padding: 2rem 0; }
.waterfall-grid {
  column-count: 4; column-gap: 20px;
}
.card-item {
  break-inside: avoid; margin-bottom: 20px;
  perspective: 1000px;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.card-item.visible { opacity: 1; transform: translateY(0); }
.card-link {
  display: block; background: #fff; border-radius: 10px;
  overflow: hidden; box-shadow: var(--card-shadow);
  transition: all 0.4s ease; position: relative;
}
.card-link:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(44,24,16,0.2), 0 0 20px rgba(212,168,83,0.15);
}
.card-image { position: relative; overflow: hidden; }
.card-image img {
  width: 100%; display: block; transition: transform 0.5s ease;
}
.card-link:hover .card-image img { transform: scale(1.08); }
.card-overlay {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,24,16,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease;
}
.card-link:hover .card-overlay { opacity: 1; }
.play-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gold); color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; box-shadow: 0 4px 20px rgba(212,168,83,0.5);
  transform: scale(0.8); transition: transform 0.3s ease;
}
.card-link:hover .play-icon { transform: scale(1); }
.card-content { padding: 16px; }
.card-title {
  font-family: var(--serif); font-size: 1rem; color: var(--brown);
  margin-bottom: 8px; line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.card-info {
  font-size: 0.85rem; color: var(--text-muted); line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.card-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--text-muted); }
.meta-rating { color: var(--gold-dark); font-weight: 600; }

/* ======== 分类导航 ======== */
.category-nav-section { padding: 2rem 0; background: var(--cream-dark); }
.category-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.category-chip {
  display: inline-block; padding: 10px 28px;
  font-family: var(--serif); font-size: 0.9rem; color: var(--brown);
  background: #fff; border: 2px solid var(--gold);
  border-radius: 30px; transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.category-chip:hover {
  background: var(--gold); color: var(--brown);
  box-shadow: 0 6px 20px rgba(212,168,83,0.3);
  transform: translateY(-3px);
}

/* ======== FAQ手风琴 ======== */
.faq-section { padding: 2rem 0 4rem; }
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
  margin-bottom: 10px; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(212,168,83,0.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s ease;
}
.faq-item:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(212,168,83,0.15); }
.faq-question {
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  color: var(--cream); padding: 18px 20px;
  font-family: var(--serif); font-size: 1rem;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  transition: all 0.3s ease; border: none; width: 100%; text-align: left;
}
.faq-question::after {
  content: '+'; font-size: 1.4rem; color: var(--gold);
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease; flex-shrink: 0;
}
.faq-item.active .faq-question::after {
  content: '−'; background: var(--gold); color: var(--brown);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0; overflow: hidden; padding: 0 20px;
  background: #fff; transition: all 0.4s ease;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 16px 20px; }
.faq-answer p { color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }

/* ======== LIST页 左右交错布局 ======== */
.list-page { max-width: 1100px; margin: 0 auto; padding: 2rem; }
.list-header {
  text-align: center; padding: 2rem 0; margin-bottom: 2rem;
  border-bottom: 2px solid rgba(212,168,83,0.2);
}
.list-header h1 { font-family: var(--serif); font-size: 2.5rem; color: var(--brown); }
.list-header p { color: var(--text-muted); margin-top: 0.5rem; }
.sub-nav { display: flex; gap: 10px; justify-content: center; margin-top: 1.5rem; flex-wrap: wrap; }
.sub-nav a {
  padding: 6px 20px; border: 1px solid var(--gold); color: var(--gold-dark);
  border-radius: 20px; font-size: 0.85rem; transition: all 0.3s ease;
}
.sub-nav a:hover { background: var(--gold); color: var(--brown); }

.staggered-list .list-item-card {
  display: flex; margin-bottom: 30px; background: #fff;
  box-shadow: var(--card-shadow); border-radius: 12px; overflow: hidden;
  transition: all 0.4s ease;
}
.staggered-list .list-item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(44,24,16,0.18);
}
.staggered-list .list-item-card:nth-child(even) { flex-direction: row-reverse; }
.list-item-card .card-image { flex: 0 0 40%; overflow: hidden; }
.list-item-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.list-item-card:hover .card-image img { transform: scale(1.05); }
.list-item-card .card-content { flex: 1; padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.list-item-card .card-title { font-family: var(--serif); font-size: 1.3rem; color: var(--brown); margin-bottom: 10px; }
.list-item-card .card-info { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 12px; }
.list-item-card .card-meta { font-size: 0.8rem; color: var(--text-muted); }

/* ======== 分页 ======== */
.pagination { text-align: center; padding: 2rem 0; }
.pagination ul { display: flex; justify-content: center; gap: 6px; list-style: none; }
.pagination a {
  display: inline-block; padding: 8px 16px;
  color: var(--brown); background: #fff; border: 1px solid var(--gold);
  border-radius: 6px; font-size: 0.85rem; transition: all 0.3s ease;
}
.pagination a:hover {
  background: var(--gold); color: var(--brown);
  box-shadow: 0 4px 12px rgba(212,168,83,0.3);
}

/* ======== SHOW页 电影票造型 ======== */
.show-page { max-width: 1100px; margin: 0 auto; padding: 2rem; }
.movie-ticket-card {
  display: flex; background: var(--cream);
  border: 2px dashed var(--gold); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(44,24,16,0.15);
  margin-bottom: 2rem; overflow: hidden;
  position: relative;
}
.movie-ticket-card::before {
  content: '';
  position: absolute; top: 50%; left: -12px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream); border: 2px dashed var(--gold);
  transform: translateY(-50%);
}
.movie-ticket-card::after {
  content: '';
  position: absolute; top: 50%; right: -12px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--cream); border: 2px dashed var(--gold);
  transform: translateY(-50%);
}
.ticket-main { flex: 3; padding: 30px; border-right: 2px dashed var(--gold); }
.ticket-stub { flex: 1; padding: 25px; text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ticket-title { font-family: var(--serif); color: var(--brown); font-size: 1.8rem; margin-bottom: 15px; }
.ticket-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 8px; }
.stub-barcode {
  width: 80%; height: 50px; margin: 15px auto;
  background: repeating-linear-gradient(90deg, transparent, transparent 2px, var(--brown) 2px, var(--brown) 4px);
  opacity: 0.3;
}
.stub-seat { font-family: var(--serif); font-size: 2rem; color: var(--gold-dark); font-weight: bold; }

.article-body {
  background: #fff; padding: 2rem; border-radius: 10px;
  box-shadow: var(--card-shadow); margin-bottom: 2rem;
  line-height: 1.9; font-size: 0.95rem;
}
.article-body h2 { font-family: var(--serif); color: var(--brown); margin: 1.5rem 0 1rem; }
.article-body img { border-radius: 8px; margin: 1rem 0; box-shadow: 0 4px 16px rgba(0,0,0,0.1); }

.sidebar {
  position: sticky; top: 90px; align-self: start;
}
.sidebar-box {
  background: #fff; border-radius: 10px; padding: 20px;
  box-shadow: var(--card-shadow); margin-bottom: 20px;
}
.sidebar-title {
  font-family: var(--serif); font-size: 1.1rem; color: var(--brown);
  padding-bottom: 10px; margin-bottom: 15px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-list { list-style: none; }
.sidebar-list li { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.sidebar-list a { color: var(--text); font-size: 0.9rem; }
.sidebar-list a:hover { color: var(--gold-dark); }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; }
.related-card { background: #fff; border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.08); transition: all 0.3s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.related-card img { width: 100%; height: 120px; object-fit: cover; }
.related-card h4 { padding: 8px 10px; font-size: 0.8rem; color: var(--brown); }

/* ======== ABOUT/CONTACT/LEGAL ======== */
.about-page, .contact-page, .legal-page, .sitemap-page { max-width: 900px; margin: 0 auto; padding: 2rem; }
.page-title {
  font-family: var(--serif); font-size: 2.2rem; color: var(--brown);
  text-align: center; margin-bottom: 2rem;
}
.page-title::after {
  content: ''; display: block; width: 60px; height: 3px;
  background: var(--gold); margin: 12px auto 0;
}
.page-content {
  background: #fff; padding: 2.5rem; border-radius: 10px;
  box-shadow: var(--card-shadow); line-height: 1.9;
}
.page-content h2 {
  font-family: var(--serif); color: var(--brown); font-size: 1.3rem;
  margin: 1.5rem 0 0.8rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(212,168,83,0.3);
}
.page-content p { margin-bottom: 1rem; }
.page-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content li { margin-bottom: 0.5rem; color: var(--text-muted); }

.breadcrumb { padding: 1rem 0; font-size: 0.85rem; color: var(--text-muted); }
.breadcrumb a { color: var(--gold-dark); }
.breadcrumb a:hover { color: var(--brown); }

.sitemap-links { display: flex; flex-wrap: wrap; gap: 10px; margin: 1rem 0 2rem; }
.sitemap-links a {
  padding: 8px 20px; border: 1px solid var(--gold); color: var(--gold-dark);
  border-radius: 20px; font-size: 0.85rem; transition: all 0.3s ease;
}
.sitemap-links a:hover { background: var(--gold); color: var(--brown); }

/* ======== FOOTER ======== */
.main-footer {
  background: linear-gradient(180deg, var(--brown), #1a0e08);
  color: var(--cream); padding: 3rem 0 1.5rem; margin-top: 3rem;
}
.footer-content {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-bottom: 2rem; padding: 0 2rem;
}
.footer-col h3 {
  font-family: var(--serif); color: var(--gold); font-size: 1.1rem;
  margin-bottom: 1rem; padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,168,83,0.2);
}
.footer-col p, .footer-col a { color: rgba(245,240,232,0.7); font-size: 0.9rem; display: block; margin-bottom: 6px; }
.footer-col a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; margin-top: 1rem; }
.social-links a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(212,168,83,0.15); color: var(--gold);
  font-size: 0.85rem; transition: all 0.3s ease;
  border: 1px solid rgba(212,168,83,0.2);
}
.social-links a:hover {
  background: var(--gold); color: var(--brown);
  transform: translateY(-3px); box-shadow: 0 4px 12px rgba(212,168,83,0.3);
}
.footer-bottom {
  text-align: center; padding-top: 1.5rem;
  border-top: 1px solid rgba(212,168,83,0.15);
}
.footer-badges { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-badge {
  display: inline-block; padding: 5px 16px; font-size: 0.8rem;
  border-radius: 20px; transition: all 0.3s ease;
}
.badge-qq { color: var(--gold); border: 1px solid rgba(212,168,83,0.3); background: rgba(212,168,83,0.08); }
.badge-qq:hover { background: var(--gold); color: var(--brown); box-shadow: 0 0 15px rgba(212,168,83,0.3); }
.badge-beian { color: rgba(245,240,232,0.6); border: 1px solid rgba(245,240,232,0.15); background: rgba(245,240,232,0.05); }
.badge-beian:hover { color: var(--cream); border-color: rgba(245,240,232,0.3); }
.footer-bottom p { font-size: 0.8rem; color: rgba(245,240,232,0.5); margin-bottom: 8px; }
.footer-bottom a { color: rgba(245,240,232,0.5); margin: 0 8px; font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom img { display: inline-block; border-radius: 4px; opacity: 0.6; transition: opacity 0.3s; margin-top: 8px; }
.footer-bottom img:hover { opacity: 1; }

/* ======== 动画 ======== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--brown); border: none;
  cursor: pointer; font-size: 1.2rem;
  display: none; align-items: center; justify-content: center;
  z-index: 999; transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(212,168,83,0.4);
}
.back-to-top:hover {
  background: var(--brown); color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(44,24,16,0.3);
}

/* ======== 响应式 ======== */
@media (max-width: 1024px) {
  .waterfall-grid { column-count: 3; }
  .show-page { flex-direction: column; }
  .footer-content { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-header { padding: 0 1rem; }
  .main-nav ul { flex-wrap: wrap; justify-content: center; gap: 2px; }
  .main-nav li a { padding: 6px 10px; font-size: 0.8rem; }
  .waterfall-grid { column-count: 2; }
  .staggered-list .list-item-card, .staggered-list .list-item-card:nth-child(even) { flex-direction: column; }
  .list-item-card .card-image { flex: none; height: 200px; }
  .movie-ticket-card { flex-direction: column; }
  .ticket-main { border-right: none; border-bottom: 2px dashed var(--gold); }
  .hero-banner { padding: 30px 0; }
  .film-frame { flex: 0 0 260px; height: 170px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .waterfall-grid { column-count: 1; }
  .section-title { font-size: 1.6rem; }
  body { padding-top: 60px; }
  .related-grid { grid-template-columns: 1fr; }
}
