:root {
  --bg: #080a0f;
  --surface: #0d1117;
  --card: #111620;
  --border: rgba(255,255,255,0.07);
  --accent: #e8c46a;
  --accent2: #4a90d9;
  --text: #e8e4dc;
  --muted: #6b7280;
  --white: #ffffff;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* CURSOR */
.cursor-cross {
  position: fixed; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  transition: opacity 0.2s, transform 0.15s ease;
  opacity: 0;
}
.cursor-cross::before, .cursor-cross::after {
  content: ''; position: absolute; background: var(--accent);
}
.cursor-cross::before { width: 100%; height: 1px; top: 50%; left: 0; transform: translateY(-50%); }
.cursor-cross::after  { width: 1px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
.cursor-cross.active  { transform: translate(-50%, -50%) scale(1.8); }
body:hover .cursor-cross { opacity: 1; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  background: linear-gradient(to bottom, rgba(8,10,15,0.95), transparent);
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(8,10,15,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px;
  letter-spacing: 0.15em; color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 11px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color 0.25s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px; background: var(--accent); transition: width 0.3s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

/* SHARED SECTION */
section { padding: 120px 60px; }
.section-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.section-label::before { content: ''; display: block; width: 30px; height: 1px; background: var(--accent); }
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 0.05em; line-height: 1;
  color: var(--white); margin-bottom: 60px;
}
.btn-primary {
  background: var(--accent); color: #080a0f;
  padding: 14px 36px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,196,106,0.3); }
.btn-ghost {
  border: 1px solid var(--border); color: var(--text);
  padding: 14px 36px; font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* MARQUEE */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border); padding: 18px 0; background: var(--surface);
}
.marquee-track { display: flex; gap: 60px; animation: marquee 35s linear infinite; width: max-content; }
.marquee-item { font-family: 'Bebas Neue', sans-serif; font-size: 14px; letter-spacing: 0.2em; color: var(--muted); white-space: nowrap; }
.marquee-item .dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); margin: 0 30px; vertical-align: middle; }

/* FOOTER */
footer {
  border-top: 1px solid var(--border); padding: 60px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
}
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 0.1em; color: var(--white); }
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 12px; color: var(--muted); letter-spacing: 0.05em; }
.footer-links { display: flex; gap: 24px; list-style: none; }
.footer-links a { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── FILM PAGE STYLES ──────────────────────────────────────────── */
.film-hero {
  position: relative; min-height: 70vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden; padding: 80px 60px 60px;
}
.film-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,10,15,1) 0%, rgba(8,10,15,0.5) 50%, rgba(8,10,15,0.2) 100%);
  z-index: 1;
}
.film-hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: grayscale(30%) brightness(0.5);
}
.film-hero-placeholder {
  position: absolute; inset: 0; background: var(--card);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
}
.film-hero-placeholder svg { width: 64px; height: 64px; opacity: 0.08; color: var(--text); }
.film-hero-placeholder span { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); opacity: 0.3; }
.film-hero-content { position: relative; z-index: 2; max-width: 800px; }
.film-hero-back {
  position: absolute; top: 100px; left: 60px; z-index: 2;
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.film-hero-back:hover { color: var(--accent); }
.film-hero-back svg { width: 14px; height: 14px; }
.film-genre-tag {
  display: inline-block; font-size: 10px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: #080a0f; background: var(--accent); padding: 4px 12px; margin-bottom: 20px;
}
.film-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 10vw, 120px);
  letter-spacing: 0.04em; line-height: 0.92; color: var(--white); margin-bottom: 16px;
}
.film-year-line { font-size: 14px; letter-spacing: 0.2em; color: var(--accent); }

/* FILM BANNER IMAGE — 750 x 108 px */
.film-thumbs {
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.film-thumb-strip {
  width: 750px; height: 108px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  background: var(--card);
}
.film-thumb-strip img {
  width: 750px; height: 108px;
  object-fit: cover; display: block;
}
.film-thumb-strip-placeholder {
  width: 750px; height: 108px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
}
.film-thumb-strip-placeholder svg { width: 24px; height: 24px; opacity: 0.1; color: var(--text); }
.film-thumb-strip-placeholder span { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); opacity: 0.3; }
@media (max-width: 780px) {
  .film-thumb-strip, .film-thumb-strip img, .film-thumb-strip-placeholder { width: 100%; height: auto; min-height: 60px; }
}

/* FILM BODY */
.film-body {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 320px; gap: 80px; align-items: start;
}
.film-essay h2 {
  font-family: 'DM Serif Display', serif; font-style: italic;
  font-size: 26px; color: var(--text); margin-bottom: 24px;
}
.film-essay p { font-size: 16px; line-height: 1.85; color: var(--muted); margin-bottom: 20px; }
.film-essay p strong { color: var(--text); font-weight: 400; }
.quick-facts {
  background: var(--card); border: 1px solid var(--border); padding: 32px; position: sticky; top: 100px;
}
.quick-facts h3 {
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  letter-spacing: 0.1em; color: var(--accent); margin-bottom: 24px;
  padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.fact-row { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.fact-row:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.fact-label { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 4px; }
.fact-value { font-size: 13px; color: var(--text); line-height: 1.5; }

/* FILM NAV */
.film-nav-bar {
  border-top: 1px solid var(--border); padding: 40px 60px;
  display: flex; justify-content: space-between; align-items: center;
}
.film-nav-link {
  font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
  display: flex; align-items: center; gap: 10px; transition: color 0.2s;
}
.film-nav-link:hover { color: var(--accent); }
.film-nav-link svg { width: 16px; height: 16px; }
.film-nav-title { font-family: 'Bebas Neue', sans-serif; font-size: 20px; color: var(--white); display: block; margin-top: 4px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .nav-links { display: none; }
  section { padding: 60px 24px; }
  .film-hero { padding: 80px 24px 40px; min-height: 50vh; }
  .film-hero-back { left: 24px; }
  .film-thumbs { grid-template-columns: repeat(2, 1fr); }
  .film-body { grid-template-columns: 1fr; gap: 40px; }
  .quick-facts { position: static; }
  footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .film-nav-bar { padding: 24px; flex-direction: column; gap: 20px; }
}
