/* ============================================================
   GHABADKUND — Cinematic Movie Website
   Design System & Complete Styles (Orangish-Red Theme)
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* --- CSS Custom Properties (Design Tokens) --- */
:root {
  /* Colors */
  --bg-abyss: #080303;
  --bg-deep: #0a0505;
  --bg-primary: #140a0a;
  --bg-surface: #1a0d0d;
  --bg-elevated: #221111;

  --red-900: #2e0a0a;
  --red-800: #3d0e0e;
  --red-700: #501414;
  --red-600: #6b1a1a;
  --red-500: #882323;
  --red-400: #b52c2c;
  --red-300: #e83d3d;
  --red-glow: #e62b1e;
  --red-blood: #c21313;

  --orange-900: #4a1f0a;
  --orange-700: #8a3a14;
  --orange-500: #cc5514;
  --orange-400: #eb681e;
  --orange-300: #ff8533;
  --orange-glow: #ff6b00;

  --gold-900: #5c4a1a;
  --gold-700: #8a7028;
  --gold-500: #c9a84c;
  --gold-400: #d4b96a;
  --gold-300: #e8d48b;
  --gold-200: #f0e4b0;
  --gold-glow: #c9a84c;

  --text-primary: #eae8e8;
  --text-secondary: #c0b0b0;
  --text-muted: #806a6a;
  --text-dim: #503a3a;

  /* Typography */
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-accent: 'Playfair Display', serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  /* Transitions */
  --ease-cinematic: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-fast: 200ms;
  --duration-normal: 400ms;
  --duration-slow: 800ms;
  --duration-cinematic: 1200ms;
  --duration-epic: 2000ms;

  /* Borders & Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-glow-red: 0 0 30px rgba(230, 43, 30, 0.15), 0 0 60px rgba(230, 43, 30, 0.05);
  --shadow-glow-orange: 0 0 30px rgba(255, 107, 0, 0.2), 0 0 60px rgba(255, 107, 0, 0.08);
  --shadow-glow-gold: 0 0 30px rgba(201, 168, 76, 0.2), 0 0 60px rgba(201, 168, 76, 0.08);
  --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-cinematic: 0 8px 40px rgba(0, 0, 0, 0.8), 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--bg-abyss);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration-fast) var(--ease-smooth);
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
}

/* --- Preloader --- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--bg-abyss);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-cinematic), visibility 0.8s;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-ring {
  width: 80px;
  height: 80px;
  border: 2px solid var(--red-900);
  border-top-color: var(--orange-glow);
  border-radius: 50%;
  animation: preloaderSpin 1s linear infinite;
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  margin-top: var(--space-lg);
  text-transform: uppercase;
}

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-lg) var(--space-2xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--duration-slow) var(--ease-cinematic);
  background: transparent;
}

.nav.scrolled {
  background: rgba(10, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-md) var(--space-2xl);
  border-bottom: 1px solid rgba(230, 43, 30, 0.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold-500);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding: var(--space-xs) 0;
  transition: color var(--duration-normal) var(--ease-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red-glow);
  transition: width var(--duration-normal) var(--ease-cinematic);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.6em 1.8em;
  border: 1px solid var(--red-glow);
  color: var(--red-glow);
  transition: all var(--duration-normal) var(--ease-smooth);
}

.nav-cta:hover {
  background: var(--red-glow);
  color: var(--bg-abyss);
  box-shadow: var(--shadow-glow-red);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--text-primary);
  transition: all var(--duration-normal) var(--ease-cinematic);
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 4px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -4px);
}

/* Mobile Menu */
.nav-mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(8, 3, 3, 0.97);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--ease-cinematic);
}

.nav-mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--duration-normal);
}

.nav-mobile-menu a:hover {
  color: var(--red-glow);
}

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg-abyss);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(1.2) contrast(1.1) brightness(0.6);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at center, transparent 0%, var(--bg-abyss) 80%),
    linear-gradient(180deg, rgba(8,3,3,0.3) 0%, transparent 30%, transparent 70%, var(--bg-abyss) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
  padding: var(--space-2xl);
}

.hero-tagline-top {
  font-family: var(--font-display);
  font-size: clamp(0.6rem, 1.2vw, 0.85rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--orange-300);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-cinematic) 0.5s forwards;
}

.hero-logo-container {
  position: relative;
  max-width: 500px;
  width: 80vw;
  opacity: 0;
  animation: logoReveal 1.5s var(--ease-cinematic) 0.8s forwards;
}

.hero-logo-container img {
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(230, 43, 30, 0.4));
}

.hero-logo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse, rgba(230, 43, 30, 0.15) 0%, transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
  pointer-events: none;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: clamp(0.55rem, 1vw, 0.75rem);
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: var(--gold-400);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-cinematic) 1.3s forwards;
}

.hero-universe-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5em 1.5em;
  border: 1px solid rgba(230, 43, 30, 0.3);
  background: rgba(230, 43, 30, 0.05);
  font-family: var(--font-display);
  font-size: clamp(0.5rem, 0.9vw, 0.65rem);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange-300);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-cinematic) 1.6s forwards;
}

.hero-release {
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-cinematic) 1.8s forwards;
}

.hero-release-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.hero-release-date {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-primary);
  text-shadow: 0 0 20px rgba(230, 43, 30, 0.4);
}

.hero-countdown {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-sm);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-cinematic) 2s forwards;
}

.countdown-unit {
  text-align: center;
}

.countdown-value {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--orange-glow);
  line-height: 1;
}

.countdown-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
  opacity: 0;
  animation: fadeSlideUp 1s var(--ease-cinematic) 2.2s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1em 2.5em;
  background: linear-gradient(135deg, var(--red-glow), var(--red-blood));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-blood), var(--red-900));
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-red);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 1em 2.5em;
  border: 1px solid var(--orange-500);
  color: var(--orange-300);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 0, 0.08);
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.btn-secondary:hover {
  border-color: var(--orange-glow);
  color: var(--orange-glow);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-orange);
}

.btn-secondary:hover::before {
  opacity: 1;
}

.btn-secondary span {
  position: relative;
  z-index: 1;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0;
  animation: fadeIn 1s var(--ease-cinematic) 3s forwards;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--red-glow), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-text {
  font-size: 0.5rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   SECTION: Shared / Utility
   ============================================================ */
.section {
  position: relative;
  padding: var(--space-5xl) var(--space-2xl);
  overflow: hidden;
}

.section-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red-600), transparent);
  margin: 0 auto var(--space-lg);
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--orange-400);
  text-align: center;
  margin-bottom: var(--space-md);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-lg);
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--text-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto var(--space-3xl);
  font-style: italic;
  line-height: 1.8;
}

/* Scroll reveal animation classes */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration-cinematic) var(--ease-cinematic),
              transform var(--duration-cinematic) var(--ease-cinematic);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   SECTION 2: THE STORY
   ============================================================ */
.story {
  background: var(--bg-abyss);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4xl);
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.story-visual {
  position: relative;
}

.story-visual img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-cinematic);
}

.story-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(230, 43, 30, 0.15);
  pointer-events: none;
}

.story-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.story-text p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-secondary);
}

.story-text p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  margin-right: var(--space-sm);
  color: var(--red-glow);
  font-weight: 700;
}

.story-quote {
  position: relative;
  padding: var(--space-xl) var(--space-2xl);
  border-left: 2px solid var(--red-glow);
  background: rgba(230, 43, 30, 0.03);
  margin-top: var(--space-xl);
}

.story-quote p {
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--orange-300);
  line-height: 1.8;
}

.story-quote cite {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: var(--space-md);
  font-style: normal;
  text-transform: uppercase;
}

/* ============================================================
   SECTION 3: THE ARTIFACT
   ============================================================ */
.artifact {
  background: var(--bg-deep);
  text-align: center;
  position: relative;
}

.artifact-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.artifact-image-wrapper {
  position: relative;
  max-width: 550px;
  margin: 0 auto var(--space-3xl);
}

.artifact-image-wrapper img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(255, 107, 0, 0.15), var(--shadow-cinematic);
  transition: transform var(--duration-slow) var(--ease-cinematic);
}

.artifact-image-wrapper:hover img {
  transform: scale(1.02);
}

.artifact-image-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--red-700), transparent, var(--orange-700));
  z-index: -1;
  opacity: 0.5;
}

.artifact-description {
  font-family: var(--font-accent);
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
  font-style: italic;
  line-height: 1.8;
}

/* ============================================================
   SECTION 4: THE WORLD (Gallery)
   ============================================================ */
.world {
  background: var(--bg-abyss);
  padding-bottom: var(--space-4xl);
}

.world-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.world-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 16/10;
}

.world-gallery-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  aspect-ratio: auto;
}

.world-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-cinematic),
              filter var(--duration-slow) var(--ease-cinematic);
  filter: saturate(0.8) brightness(0.8);
}

.world-gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.2) brightness(1);
}

.world-gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 5, 5, 0.8) 0%, transparent 60%);
  opacity: 1;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}

.world-gallery-item:hover::after {
  opacity: 0.4;
}

.world-gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-300);
  transform: translateY(10px);
  opacity: 0;
  transition: all var(--duration-normal) var(--ease-cinematic);
}

.world-gallery-item:hover .world-gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-expand-icon {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 2;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(230,43,30,0.3);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--duration-normal) var(--ease-cinematic);
  color: var(--text-primary);
  font-size: 0.9rem;
}

.world-gallery-item:hover .gallery-expand-icon {
  opacity: 1;
  transform: scale(1);
  background: rgba(230,43,30,0.2);
}

/* ============================================================
   SECTION 5: CAST
   ============================================================ */
.cast {
  background: var(--bg-deep);
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  max-width: 1400px;
  margin: 0 auto;
}

.cast-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  cursor: pointer;
  aspect-ratio: 16/9;
}

.cast-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-cinematic),
              filter var(--duration-slow);
  filter: brightness(0.85) contrast(1.1);
}

.cast-card:hover img {
  transform: scale(1.06);
  filter: brightness(1.1) contrast(1.2);
}

.cast-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition: border-color var(--duration-normal);
}

.cast-card:hover::before {
  border-color: var(--red-glow);
  box-shadow: inset 0 0 40px rgba(230, 43, 30, 0.15);
}

.cast-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-lg);
  background: linear-gradient(to top, rgba(10,5,5,0.95) 0%, transparent 100%);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  transition: all var(--duration-normal) var(--ease-cinematic);
}

.cast-card:hover .cast-card-overlay {
  transform: translateY(0);
  opacity: 1;
}

.cast-card-name {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gold-400);
  text-transform: uppercase;
}

/* ============================================================
   SECTION 6: VISION (Director & Production)
   ============================================================ */
.vision {
  background: var(--bg-abyss);
}

.vision-content {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-4xl);
  align-items: center;
}

.vision-image {
  position: relative;
}

.vision-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-cinematic);
  filter: grayscale(0.2) contrast(1.1);
  transition: filter var(--duration-slow);
}

.vision-image:hover img {
  filter: grayscale(0) contrast(1.2);
}

.vision-image::before {
  content: '';
  position: absolute;
  top: -8px;
  left: -8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid var(--red-700);
  border-radius: var(--radius-md);
  z-index: -1;
}

.vision-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-400);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
}

.vision-info .role {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin-bottom: var(--space-xl);
}

.vision-info p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.vision-stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-2xl);
  padding-top: var(--space-2xl);
  border-top: 1px solid rgba(230, 43, 30, 0.15);
}

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

.vision-stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange-glow);
  line-height: 1;
}

.vision-stat-label {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

/* ============================================================
   SECTION 7: TRAILER
   ============================================================ */
.trailer {
  background: var(--bg-abyss);
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trailer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.trailer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  filter: blur(3px) saturate(0.8) contrast(1.2);
}

.trailer-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,5,5,0.4) 0%, var(--bg-abyss) 85%);
}

.trailer-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.trailer-play-btn {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid rgba(230, 43, 30, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-2xl);
  cursor: pointer;
  position: relative;
  transition: all var(--duration-normal) var(--ease-smooth);
  background: rgba(230, 43, 30, 0.1);
}

.trailer-play-btn::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 0, 0.2);
  animation: playPulse 2s ease-in-out infinite;
}

.trailer-play-btn::after {
  content: '';
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  border: 1px solid rgba(230, 43, 30, 0.1);
  animation: playPulse 2s ease-in-out 0.5s infinite;
}

.trailer-play-btn:hover {
  background: rgba(230, 43, 30, 0.25);
  border-color: var(--red-glow);
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-red);
}

.play-triangle {
  width: 0;
  height: 0;
  border-left: 22px solid var(--gold-400);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
  transition: border-left-color var(--duration-normal);
}

.trailer-play-btn:hover .play-triangle {
  border-left-color: #fff;
}

.trailer-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--orange-300);
  margin-bottom: var(--space-md);
}

.trailer-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--text-primary);
  text-shadow: 0 0 15px rgba(230,43,30,0.3);
}

/* Trailer Modal */
.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5, 2, 2, 0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--ease-cinematic);
}

.trailer-modal.active {
  opacity: 1;
  visibility: visible;
}

.trailer-modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  border: 1px solid rgba(230,43,30,0.3);
  border-radius: 50%;
  transition: all var(--duration-normal);
}

.trailer-modal-close:hover {
  border-color: var(--red-glow);
  color: var(--red-glow);
  box-shadow: 0 0 20px rgba(230,43,30,0.3);
}

.trailer-modal-content {
  width: 85vw;
  max-width: 1000px;
  aspect-ratio: 16/9;
  background: #000;
  border: 1px solid rgba(230, 43, 30, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
}

/* ============================================================
   SECTION 8: PRESS
   ============================================================ */
.press {
  background: var(--bg-deep);
}

.press-content {
  max-width: 1000px;
  margin: 0 auto;
}

.press-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.press-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-cinematic);
  border: 1px solid rgba(230,43,30,0.1);
}

.press-image img {
  width: 100%;
  transition: transform var(--duration-slow) var(--ease-cinematic);
}

.press-image:hover img {
  transform: scale(1.03);
}

.press-text h3 {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: var(--space-lg);
}

.press-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.press-source {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red-400);
}

/* ============================================================
   SECTION 9: BOOKING
   ============================================================ */
.booking {
  background: var(--bg-abyss);
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.booking-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(1.2);
}

.booking-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(230,43,30,0.15) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg-abyss) 0%, transparent 30%, transparent 70%, var(--bg-abyss) 100%);
}

.booking-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--space-3xl) var(--space-2xl);
}

.booking-urgency {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--orange-glow);
  margin-bottom: var(--space-lg);
  animation: urgencyPulse 2s ease-in-out infinite;
}

.booking-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: var(--space-lg);
  background: linear-gradient(135deg, var(--gold-300), var(--orange-400), var(--red-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.booking-date {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
}

.booking-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  padding: 1.2em 3.5em;
  background: linear-gradient(135deg, var(--red-glow), var(--red-blood));
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--duration-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(230, 43, 30, 0.3);
}

.booking-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--orange-glow), var(--red-glow));
  opacity: 0;
  transition: opacity var(--duration-normal);
}

.booking-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 40px rgba(230, 43, 30, 0.5);
}

.booking-cta:hover::before {
  opacity: 1;
}

.booking-cta span {
  position: relative;
  z-index: 1;
}

/* ============================================================
   SECTION 10: SOCIAL & FOOTER
   ============================================================ */
.social {
  background: var(--bg-deep);
  text-align: center;
  padding: var(--space-4xl) var(--space-2xl);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

.social-link {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--red-800);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-normal) var(--ease-smooth);
  color: var(--text-muted);
  font-size: 1.2rem;
}

.social-link:hover {
  border-color: var(--orange-glow);
  color: var(--orange-glow);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-orange);
}

.social-hashtag {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--red-400);
  letter-spacing: 0.1em;
}

.footer {
  background: var(--bg-abyss);
  border-top: 1px solid rgba(230, 43, 30, 0.1);
  padding: var(--space-3xl) var(--space-2xl) var(--space-xl);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-brand h4 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  color: var(--gold-500);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-links-section h5 {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.footer-links-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links-section a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--duration-fast);
}

.footer-links-section a:hover {
  color: var(--red-400);
}

.footer-newsletter h5 {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.footer-newsletter p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.footer-newsletter-form {
  display: flex;
  gap: 0;
}

.footer-newsletter-form input {
  flex: 1;
  padding: 0.7em 1em;
  background: var(--bg-surface);
  border: 1px solid var(--red-900);
  border-right: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color var(--duration-normal);
}

.footer-newsletter-form input:focus {
  border-color: var(--red-600);
}

.footer-newsletter-form input::placeholder {
  color: var(--text-dim);
}

.footer-newsletter-form button {
  padding: 0.7em 1.5em;
  background: var(--red-700);
  border: 1px solid var(--red-600);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--duration-normal);
}

.footer-newsletter-form button:hover {
  background: var(--red-600);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.footer-production {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(5, 2, 2, 0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-slow) var(--ease-cinematic);
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text-primary);
  cursor: pointer;
  border: 1px solid rgba(230,43,30,0.3);
  border-radius: 50%;
  z-index: 10;
  transition: all var(--duration-normal);
}

.lightbox-close:hover {
  border-color: var(--red-glow);
  color: var(--red-glow);
  box-shadow: 0 0 15px rgba(230,43,30,0.3);
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(230,43,30,0.2);
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--duration-normal);
  background: rgba(10,5,5,0.5);
}

.lightbox-nav:hover {
  border-color: var(--red-glow);
  color: var(--red-glow);
  background: rgba(230, 43, 30, 0.15);
}

.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

@keyframes playPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0; }
}

@keyframes urgencyPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .cast-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .world-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .world-gallery-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .press-featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-3xl) var(--space-lg);
  }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
  }

  .hero-countdown {
    gap: var(--space-md);
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .cast-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .world-gallery {
    grid-template-columns: 1fr;
  }

  .world-gallery-item:nth-child(1) {
    grid-column: auto;
  }

  .vision-content {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .vision-stats {
    gap: var(--space-xl);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .press-featured {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .cast-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo-container {
    max-width: 85vw;
  }

  .countdown-value {
    font-size: 1.3rem;
  }

  .booking-title {
    font-size: 1.8rem;
  }
}

/* --- Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}

/* Focus styles */
:focus-visible {
  outline: 2px solid var(--red-glow);
  outline-offset: 3px;
}

/* Selection */
::selection {
  background: rgba(230, 43, 30, 0.3);
  color: var(--text-primary);
}
