/* ==========================================================================
   KANLEX PICTURES — OFFICIAL STUDIO STYLESHEET
   Aesthetics: Deep Obsidian, Cinematic Blood Crimson, Vintage Brass & Gold
   ========================================================================== */

:root {
  --bg-primary: #060709;
  --bg-secondary: #0d0f14;
  --bg-card: rgba(18, 20, 28, 0.78);
  --bg-card-hover: rgba(28, 32, 45, 0.92);
  --bg-glass: rgba(10, 12, 18, 0.88);

  --accent-red: #e50914;
  --accent-red-hover: #ff1e27;
  --accent-red-glow: rgba(229, 9, 20, 0.4);
  --accent-crimson: #8b0000;
  
  --accent-gold: #c5a059;
  --accent-gold-light: #dfba73;
  --accent-gold-glow: rgba(197, 160, 89, 0.3);

  --text-primary: #ffffff;
  --text-secondary: #a3a8b8;
  --text-muted: #686d7e;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-active: rgba(229, 9, 20, 0.45);
  --border-gold: rgba(197, 160, 89, 0.35);

  --font-display: 'Cinzel', 'Cinzel Decorative', Georgia, serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-subtle: 0 10px 30px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 35px var(--accent-red-glow);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.7);
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
  line-height: 1.6;
  background-color: var(--bg-primary);
  background-image: 
    radial-gradient(circle at 50% 0%, rgba(229, 9, 20, 0.08) 0%, transparent 60%),
    radial-gradient(circle at 90% 40%, rgba(197, 160, 89, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(229, 9, 20, 0.06) 0%, transparent 50%);
  background-attachment: fixed;
}

/* ==========================================================================
   SPLASH SCREEN / FLASH VIDEO LOGO INTRO
   ========================================================================== */
.splash-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #030406;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
  overflow: hidden;
}

.splash-screen.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-video-box {
  width: 90%;
  max-width: 680px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 70px rgba(0, 0, 0, 0.9), 0 0 40px var(--accent-red-glow);
}

.splash-video-box video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.splash-skip-btn {
  position: absolute;
  bottom: 40px;
  right: 40px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: var(--transition);
}

.splash-skip-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  box-shadow: 0 0 20px var(--accent-red-glow);
}

/* ==========================================================================
   GLOBAL UTILITIES
   ========================================================================== */
img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: linear-gradient(180deg, rgba(6, 7, 9, 0.95) 0%, rgba(6, 7, 9, 0) 100%);
}

.site-header.scrolled {
  padding: 12px 0;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(197, 160, 89, 0.35);
  border: 1px solid var(--border-gold);
  position: relative;
  overflow: hidden;
  background: #000000;
}

.brand-icon .brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.brand-icon::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: rotate(35deg);
  animation: shine 5s infinite;
  pointer-events: none;
}

@keyframes shine {
  0% { transform: translateX(-100%) rotate(35deg); }
  20%, 100% { transform: translateX(100%) rotate(35deg); }
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #ffffff;
  line-height: 1.1;
}

.brand-tag {
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-red);
  transition: var(--transition);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language Switcher */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px 6px;
  gap: 3px;
}

.lang-btn {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  transition: var(--transition);
}

.lang-btn:hover {
  color: var(--text-primary);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-crimson) 100%);
  color: #ffffff;
  box-shadow: 0 0 12px var(--accent-red-glow);
}

.lang-divider {
  font-size: 0.75rem;
  color: var(--border-subtle);
  user-select: none;
}

.mobile-lang-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red) 0%, #b3000b 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px var(--accent-red-glow);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-red-hover) 0%, var(--accent-red) 100%);
  box-shadow: 0 6px 28px rgba(229, 9, 20, 0.6);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--accent-gold) 0%, #9e7d3b 100%);
  color: #060709;
  font-weight: 700;
  box-shadow: 0 4px 20px var(--accent-gold-glow);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--accent-gold-light) 0%, var(--accent-gold) 100%);
  box-shadow: 0 6px 28px rgba(197, 160, 89, 0.5);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--text-primary);
  padding: 8px;
}

/* Mobile Navigation Drawer: Strictly Hidden on Desktop */
.mobile-nav-drawer {
  display: none !important;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.25) contrast(1.2) saturate(1.1);
  transform: scale(1.04);
  transition: transform 12s ease-out;
}

.hero-section:hover .hero-bg-poster {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 65% 30%, rgba(229, 9, 20, 0.14) 0%, transparent 50%),
              linear-gradient(180deg, rgba(6, 7, 9, 0.75) 0%, rgba(6, 7, 9, 0.45) 40%, rgba(6, 7, 9, 0.95) 85%, var(--bg-primary) 100%),
              linear-gradient(90deg, rgba(6, 7, 9, 0.92) 0%, rgba(6, 7, 9, 0.5) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(229, 9, 20, 0.15);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-full);
  color: #ff4d56;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: pulse-glow 3s infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 10px rgba(229, 9, 20, 0.2); }
  50% { box-shadow: 0 0 25px rgba(229, 9, 20, 0.5); }
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-red);
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.hero-title span.highlight-red {
  color: var(--accent-red);
  position: relative;
  display: inline-block;
  text-shadow: 0 0 25px var(--accent-red-glow);
}

.hero-description {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 720px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  width: fit-content;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   THE MANIFESTO SECTION (5 FOUNDATIONAL PILLARS)
   ========================================================================== */
.manifesto-section {
  position: relative;
  padding: 110px 0 90px;
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-primary) 100%);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-red);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.7rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
}

.manifesto-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

.manifesto-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.manifesto-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-active);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(229, 9, 20, 0.15);
}

.manifesto-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-red) 0%, transparent 100%);
  opacity: 0.6;
  transition: var(--transition);
}

.manifesto-card:hover::before {
  opacity: 1;
  background: linear-gradient(180deg, var(--accent-red) 0%, var(--accent-gold) 100%);
}

.pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pillar-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-gold);
  line-height: 1;
}

.pillar-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(229, 9, 20, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-red);
}

.pillar-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.manifesto-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}

.manifesto-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Manifesto Resolution Box */
.manifesto-resolution {
  background: radial-gradient(circle at 50% 50%, rgba(229, 9, 20, 0.12) 0%, transparent 80%),
              linear-gradient(135deg, rgba(22, 26, 38, 0.95) 0%, rgba(12, 14, 20, 0.98) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.manifesto-resolution::after {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.resolution-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 16px;
}

.resolution-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.25;
}

.resolution-text {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 820px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.resolution-text strong {
  color: #ffffff;
}

.resolution-pillars-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
}

.pill-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
}

.pill-check svg {
  width: 16px;
  height: 16px;
  fill: #22c55e;
}

/* ==========================================================================
   FLAGSHIP SHORT FILM: USIFUNGUE
   ========================================================================== */
.film-spotlight-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 52px;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: relative;
}

.spotlight-grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-red), transparent);
}

.poster-frame {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 9, 20, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateY(-2deg);
  transition: var(--transition);
}

.poster-frame:hover {
  transform: perspective(1000px) rotateY(0deg) translateY(-4px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(229, 9, 20, 0.4);
}

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

.poster-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
}

.film-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.film-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-pill {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}

.meta-pill.highlight {
  background: rgba(229, 9, 20, 0.15);
  color: #ff5252;
  border-color: rgba(229, 9, 20, 0.35);
}

.film-main-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  background: linear-gradient(180deg, #ffffff 30%, #e50914 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 15px rgba(229, 9, 20, 0.4));
}

/* Logline Card */
.logline-box {
  background: rgba(229, 9, 20, 0.08);
  border-left: 3px solid var(--accent-red);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.logline-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 6px;
  display: block;
}

.logline-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #f1f3f9;
  line-height: 1.65;
  font-family: Georgia, serif;
}

/* 3-Paragraph Spoiler-Free Synopsis */
.synopsis-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.synopsis-p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.synopsis-p strong {
  color: #ffffff;
}

.credits-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.credit-row {
  display: flex;
  flex-direction: column;
}

.credit-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.credit-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.paywall-offer {
  background: linear-gradient(135deg, rgba(229, 9, 20, 0.1) 0%, rgba(197, 160, 89, 0.1) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.offer-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.offer-badge {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-gold);
  white-space: nowrap;
}

.offer-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
}

.offer-info p {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}

/* ==========================================================================
   TRAILER PLAYER SECTION (RESPONSIVE AUTO-OPTIMIZED ASSETS)
   ========================================================================== */
.trailer-section {
  padding: 80px 0 100px;
  position: relative;
}

.player-wrapper {
  max-width: 1080px;
  margin: 0 auto;
  background: #000000;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 50px rgba(229, 9, 20, 0.2);
  border: 1px solid var(--border-subtle);
  position: relative;
}

.player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #050507;
  overflow: hidden;
  transition: aspect-ratio 0.4s ease;
}

.player-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.player-poster-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: opacity 0.4s ease;
}

.player-poster-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.player-poster-overlay::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.play-pulse-btn {
  position: relative;
  z-index: 6;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-red) 0%, #a60000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px var(--accent-red-glow);
  transition: var(--transition);
}

.play-pulse-btn svg {
  width: 36px;
  height: 36px;
  fill: #ffffff;
  margin-left: 4px;
}

.play-pulse-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 60px rgba(229, 9, 20, 0.7);
}

.player-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  background: rgba(12, 14, 20, 0.95);
  border-top: 1px solid var(--border-subtle);
}

.toolbar-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
}

.toolbar-badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  color: var(--accent-gold);
  font-weight: 600;
}

/* ==========================================================================
   ABOUT KANLEX PICTURES STUDIO
   ========================================================================== */
.studio-section {
  padding: 90px 0;
  position: relative;
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.studio-video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  background: #000000;
}

.studio-video-card video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.studio-video-caption {
  padding: 16px 20px;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.studio-video-caption span {
  font-size: 0.8rem;
  letter-spacing: 1px;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-weight: 600;
}

.studio-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-block {
  display: flex;
  gap: 20px;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(229, 9, 20, 0.1);
  border: 1px solid var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-box svg {
  width: 24px;
  height: 24px;
  fill: var(--accent-red);
}

.feature-text h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.feature-text p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   KANLEX PLAY ECOSYSTEM BANNER
   ========================================================================== */
.ecosystem-section {
  padding: 60px 0 100px;
}

.ecosystem-card {
  background: radial-gradient(circle at 80% 50%, rgba(229, 9, 20, 0.15) 0%, transparent 60%),
              linear-gradient(135deg, rgba(20, 24, 34, 0.9) 0%, rgba(10, 12, 18, 0.95) 100%);
  border: 1px solid var(--border-active);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.ecosystem-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-red-glow) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.eco-left h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.15;
}

.eco-left p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.7;
}

.eco-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.eco-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
}

.eco-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--accent-gold);
}

.eco-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.agent-link-wrapper {
  display: flex;
  align-items: center;
}

.agent-library-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-gold);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 16px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px dashed rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  line-height: 1.4;
}

.agent-library-link:hover {
  color: #ffffff;
  background: rgba(197, 160, 89, 0.18);
  border-color: var(--accent-gold);
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.25);
  transform: translateX(4px);
}

.agent-link-icon {
  width: 18px;
  height: 18px;
  stroke: var(--accent-gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.agent-library-link:hover .agent-link-icon {
  stroke: #ffffff;
  transform: scale(1.1);
}

.eco-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.download-box {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}

.download-box h4 {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 8px;
}

.download-box p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* ==========================================================================
   CONTACT & INQUIRIES SECTION
   ========================================================================== */
.contact-section {
  padding: 100px 0;
  background: var(--bg-secondary);
  position: relative;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 16px;
}

.contact-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 28px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.contact-item-info h5 {
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-item-info a,
.contact-item-info span {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
}

.contact-item-info a:hover {
  color: var(--accent-red);
}

.inquiry-form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.inquiry-form-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  color: #ffffff;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-red);
  box-shadow: 0 0 15px var(--accent-red-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #030406;
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col h5 {
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FULLSCREEN MODAL / LIGHTBOX FOR VIDEO PLAYER
   ========================================================================== */
.video-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 32px;
}

.video-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-cancel-btn {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 100000;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 24, 34, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  color: #ffffff;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.modal-cancel-btn:hover {
  background: var(--accent-red);
  border-color: var(--accent-red);
  color: #ffffff;
  box-shadow: 0 0 25px var(--accent-red-glow);
  transform: scale(1.05);
}

.cancel-icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
}

.cancel-esc-hint {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent-gold-light);
  letter-spacing: 0;
}

.modal-content {
  width: min(92vw, 1280px);
  max-width: 1280px;
  background: #000000;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.95), 0 0 40px var(--accent-red-glow);
  position: relative;
  border: 1px solid var(--border-active);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-video-container video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  outline: none;
}

/* Vertical Modal Mode for Portrait / Mobile Teaser on Wide Screens */
.video-modal.vertical-mode .modal-content {
  width: auto;
  height: 88vh;
  max-width: 480px;
  aspect-ratio: 9/16;
}

.video-modal.vertical-mode .modal-video-container {
  aspect-ratio: 9/16;
}

/* ==========================================================================
   RESPONSIVE QUERIES & AUTO-MOBILE OPTIMIZATION
   ========================================================================== */
@media (max-width: 1024px) {
  .spotlight-grid {
    grid-template-columns: 320px 1fr;
    gap: 36px;
    padding: 32px;
  }

  .studio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ecosystem-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 0;
  }

  .nav-links,
  .nav-actions .nav-cta-btn {
    display: none !important;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-primary);
    padding: 6px;
  }

  .mobile-nav-drawer {
    display: flex !important;
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(10, 12, 18, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 24px;
    flex-direction: column;
    gap: 14px;
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    z-index: 999;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9);
  }

  .mobile-nav-drawer.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav-drawer a {
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mobile-nav-drawer a:hover {
    color: var(--accent-red);
  }

  /* AUTOMATIC MOBILE ASSET DISPLAY */
  .player-container {
    max-width: 440px;
    margin: 0 auto;
    aspect-ratio: 9/16;
  }

  .spotlight-grid {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 28px;
  }

  .poster-frame {
    max-width: 280px;
    margin: 0 auto;
    transform: none;
  }

  .film-main-title {
    font-size: 2.5rem;
  }

  .manifesto-cards {
    grid-template-columns: 1fr;
  }

  .manifesto-resolution {
    padding: 32px 20px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .paywall-offer {
    flex-direction: column;
    align-items: flex-start;
  }

  .splash-skip-btn {
    bottom: 24px;
    right: 24px;
  }

  /* FULL-SCREEN VERTICAL VIDEO MODAL ON MOBILE */
  .video-modal {
    padding: 0;
    background: #000000;
  }

  .modal-content,
  .video-modal.vertical-mode .modal-content {
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-video-container,
  .video-modal.vertical-mode .modal-video-container {
    width: 100%;
    height: 100%;
    aspect-ratio: 9/16;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .modal-cancel-btn {
    top: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.8);
  }

  .cancel-esc-hint {
    display: none;
  }

  .agent-library-link {
    width: 100%;
    justify-content: flex-start;
    font-size: 0.9rem;
  }
}
