/* =================================================
   LIGHT POLE FILMS — style.css
   ================================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --bg:       #0a0a0a;
  --bg-2:     #131313;
  --bg-3:     #1c1c1c;
  --bg-4:     #242424;
  --text:     #f0eeec;
  --muted:    #808080;
  --dim:      #484848;
  --accent:   #cbd53a;
  --accent-a: rgba(203,213,58,.13);
  --accent-b: rgba(203,213,58,.06);
  --border:   #242424;
  --border-2: #303030;
  --r:        8px;
  --r-lg:     14px;
  --nav:      68px;
  --max:      1200px;
  --ease:     0.22s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }
p { max-width: 62ch; }

/* --- Typography --- */
h1, h2, h3 {
  font-family: 'Bebas Neue', 'Impact', sans-serif;
  letter-spacing: .04em;
  line-height: 1.05;
}
h4, h5 { font-weight: 600; line-height: 1.3; }

/* --- Layout --- */
.container { max-width: var(--max); margin: 0 auto; padding: 0 28px; }
.section    { padding: 88px 0; }
.section + .section { padding-top: 0; }

/* ============================
   NAVIGATION
   ============================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav);
  background: rgba(10,10,10,.94);
  backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.55); }
.nav-inner {
  height: 100%; max-width: var(--max);
  margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo svg { height: 46px; width: auto; }
.nav-logo-img { height: 52px; width: auto; display: block; flex-shrink: 0; }

.nav-links {
  display: flex; align-items: center; gap: 30px;
  font-size: 13px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase;
}
.nav-links a { color: var(--muted); transition: color var(--ease); }
.nav-links a:hover,
.nav-links a.active { color: var(--text); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 9px 20px; border-radius: var(--r);
  background: var(--accent); color: #0a0a0a;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  transition: opacity var(--ease), transform var(--ease);
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column;
  position: fixed; top: var(--nav); left: 0; right: 0; z-index: 190;
  background: var(--bg-2); border-bottom: 1px solid var(--border);
  padding: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 15px; color: var(--muted); padding: 10px 0; border-bottom: 1px solid var(--border); transition: color var(--ease); }
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--text); }

@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: var(--r);
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  transition: all var(--ease);
}
.btn-primary { background: var(--accent); color: #0a0a0a; }
.btn-primary:hover { opacity: .88; transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--border-2); color: var(--muted); }
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { color: var(--muted); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--text); }
.btn-lg { padding: 15px 36px; font-size: 15px; }

/* ============================
   SECTION HEADER
   ============================ */
.s-header { margin-bottom: 52px; }
.s-tag {
  display: inline-block; margin-bottom: 14px;
  padding: 4px 13px; border-radius: 20px;
  border: 1px solid rgba(203,213,58,.3);
  background: var(--accent-b);
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent);
}
.s-title { font-size: clamp(36px, 5vw, 60px); margin-bottom: 14px; }
.s-title span { color: var(--accent); }
.s-desc { font-size: 17px; color: var(--muted); max-width: 52ch; }

/* ============================
   HERO
   ============================ */
.hero {
  min-height: 100vh; padding-top: var(--nav);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 40%, rgba(203,213,58,.07) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .03;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 59px, #fff 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, #fff 60px);
}
.hero-content { position: relative; z-index: 1; padding: 60px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 6px 15px; border-radius: 24px;
  border: 1px solid var(--border-2);
  font-size: 13px; color: var(--muted); margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.4)} }

.hero h1 { font-size: clamp(56px, 9vw, 104px); margin-bottom: 24px; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-sub { font-size: 18px; color: var(--muted); margin-bottom: 44px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  font-size: 10px; letter-spacing: .14em; text-transform: uppercase; color: var(--dim);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollAnim 2.2s ease infinite;
}
@keyframes scrollAnim {
  0%   { opacity:0; transform:scaleY(0); transform-origin: top; }
  50%  { opacity:1; }
  100% { opacity:0; transform:scaleY(1); transform-origin: top; }
}

/* ============================
   MARQUEE
   ============================ */
.marquee-bar {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2); padding: 13px 0;
}
.marquee-track { display: flex; width: max-content; }
.marquee-content {
  display: flex; align-items: center; gap: 44px; padding-right: 44px;
  animation: marquee 30s linear infinite;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--dim);
  white-space: nowrap;
}
.m-dot { color: var(--accent); font-size: 16px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ============================
   VIDEO PLACEHOLDER
   ============================ */
.vp {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; background: var(--bg-3);
  aspect-ratio: 16/9; cursor: pointer;
  transition: transform .35s, box-shadow .35s;
}
.vp:hover { transform: translateY(-6px); box-shadow: 0 28px 72px rgba(0,0,0,.65); }
.vp:hover .vp-play-btn { border-color: var(--accent); background: rgba(203,213,58,.18); }
.vp:hover .vp-thumb { transform: scale(1.05); }

.vp-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f0f1e 0%, #141428 40%, #1a1a38 70%, #101018 100%);
}

/* Thumbnail photo (frame du film) */
.vp-thumb {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform .4s ease;
}
/* Film-grain texture using SVG filter */
.vp-grain { position: absolute; inset: 0; opacity: .06; background-size: 200px; }
.vp-scanlines {
  position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(0deg, transparent, transparent 2px, #000 2px, #000 4px);
}
.vp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.90) 30%, rgba(0,0,0,.20) 60%, rgba(0,0,0,.05) 100%);
}
.vp-play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 58px; height: 58px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.28);
  background: rgba(0,0,0,.38);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: all .22s;
}
.vp-play-btn svg { fill: #fff; width: 20px; height: 20px; margin-left: 4px; }

.vp-strip {
  position: absolute; top: 0; left: 0; right: 0;
  display: flex; height: 20px; background: rgba(0,0,0,.4);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.vp-strip span {
  flex: 1; border-right: 1px solid rgba(255,255,255,.06);
}
.vp-strip span:nth-child(odd) { background: rgba(255,255,255,.02); }

.vp-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 20px; }
.vp-cat {
  display: block; margin-bottom: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent);
}
.vp-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .04em; color: #fff; margin-bottom: 5px;
}
.vp-meta { display: flex; gap: 14px; font-size: 12px; color: rgba(255,255,255,.48); }

/* Duration badge */
.vp-duration-badge {
  position: absolute; top: 28px; right: 14px;
  padding: 3px 8px; border-radius: 4px;
  background: rgba(0,0,0,.65); backdrop-filter: blur(4px);
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,.7);
}

/* Film grids */
.film-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.film-grid-2 { grid-template-columns: repeat(2,1fr); }
.film-grid-3 { grid-template-columns: repeat(3,1fr); }
@media (max-width: 900px) { .film-grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .film-grid, .film-grid-2, .film-grid-3 { grid-template-columns: 1fr; } }

/* Featured film (large card) */
.vp-featured { aspect-ratio: 2/1; }
.vp-featured .vp-title { font-size: 34px; }
.vp-featured .vp-play-btn { width: 70px; height: 70px; }

/* ============================
   FILTER TABS
   ============================ */
.filter-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 40px; }
.ftab {
  padding: 8px 20px; border-radius: 24px;
  border: 1px solid var(--border); color: var(--muted);
  font-size: 13px; font-weight: 500; letter-spacing: .03em;
  transition: all var(--ease);
}
.ftab:hover  { border-color: var(--border-2); color: var(--text); }
.ftab.active { border-color: var(--accent); color: var(--accent); background: var(--accent-a); }

/* ============================
   ARTIST CARD
   ============================ */
.artist-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: transform var(--ease), border-color var(--ease);
}
.artist-card:hover { transform: translateY(-5px); border-color: var(--border-2); box-shadow: 0 16px 48px rgba(0,0,0,.4); }
.ac-thumb {
  aspect-ratio: 3/2; background: var(--bg-3) center top / cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
}
.ac-thumb-ph {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #141414 0%, #1e1e1e 50%, #181818 100%);
  display: flex; align-items: center; justify-content: center;
}
.ac-thumb-icon { font-family: 'Bebas Neue', sans-serif; font-size: 48px; color: var(--border-2); letter-spacing: .05em; }
.ac-body { padding: 20px 22px 24px; }
.ac-genre { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 7px; }
.ac-name { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.ac-bio { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; max-width: 100%; }
.ac-stats { display: flex; gap: 20px; }
.ac-stat { font-size: 12px; color: var(--dim); }
.ac-stat strong { color: var(--text); display: block; font-size: 18px; font-family: 'Bebas Neue'; letter-spacing: .06em; }

/* ============================
   ABOUT PAGE TABS
   ============================ */
.about-nav {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border); margin-bottom: 52px;
  flex-wrap: wrap;
}
.about-tab {
  padding: 13px 22px;
  font-size: 14px; font-weight: 500; color: var(--muted);
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all var(--ease);
}
.about-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.about-tab:hover:not(.active) { color: var(--text); }

.about-panel { display: none; animation: fadeUp .3s ease; }
.about-panel.active { display: block; }

@keyframes fadeUp { from{opacity:0;transform:translateY(16px)} to{opacity:1;transform:translateY(0)} }

/* About content elements */
.about-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 760px) { .about-grid-2 { grid-template-columns: 1fr; } }

.value-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.value-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px; border-radius: var(--r);
  background: var(--bg-2); border: 1px solid var(--border);
}
.value-icon {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 8px;
  background: var(--accent-a); border: 1px solid rgba(203,213,58,.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.value-item h4 { font-size: 15px; margin-bottom: 5px; }
.value-item p { font-size: 13px; color: var(--muted); max-width: 100%; }

/* How it works steps */
.how-steps { display: flex; flex-direction: column; gap: 0; }
.how-step {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.how-step:last-child { border-bottom: none; }
.hs-num {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  border: 2px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--accent);
}
.hs-body h4 { font-size: 17px; margin-bottom: 6px; }
.hs-body p { font-size: 14px; color: var(--muted); max-width: 100%; }

/* Team placeholder */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 24px; margin-top: 8px; }
.team-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; text-align: center;
}
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--bg-3) center top / cover no-repeat; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--dim);
  border: 2px solid var(--border-2);
}
.team-name { font-weight: 600; font-size: 15px; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.team-bio { font-size: 13px; color: var(--muted); margin-top: 10px; line-height: 1.6; }

/* Partner placeholder */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 16px; }
.partner-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px 20px;
  display: flex; align-items: center; justify-content: center;
  min-height: 90px;
  font-size: 14px; font-weight: 600; color: var(--dim);
  text-align: center;
  transition: border-color var(--ease);
}
.partner-card:hover { border-color: var(--border-2); }

/* ============================
   SUBMISSION FORM
   ============================ */
.submit-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; align-items: start; }
@media (max-width: 960px) { .submit-layout { grid-template-columns: 1fr; } }

/* Progress steps */
.prog-steps { display: flex; gap: 0; margin-bottom: 48px; }
.prog-step {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  position: relative;
}
.prog-step:not(:last-child)::after {
  content: ''; position: absolute; top: 17px; left: 50%; right: -50%;
  height: 2px; background: var(--border);
  z-index: 0;
}
.prog-step.done:not(:last-child)::after { background: var(--accent); }
.ps-dot {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--border);
  background: var(--bg-2); display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--dim);
  position: relative; z-index: 1; transition: all .3s; margin-bottom: 8px;
}
.prog-step.active .ps-dot  { border-color: var(--accent); color: var(--accent); background: var(--accent-a); }
.prog-step.done   .ps-dot  { border-color: var(--accent); background: var(--accent); color: #0a0a0a; }
.ps-label { font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--dim); text-align: center; }
.prog-step.active .ps-label { color: var(--accent); }
.prog-step.done   .ps-label { color: var(--muted); }

@media (max-width: 600px) { .ps-label { display: none; } }

/* Form panels */
.form-panel { display: none; }
.form-panel.active { display: block; animation: fadeUp .3s ease; }

/* Category cards */
.cat-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
@media (max-width: 520px) { .cat-cards { grid-template-columns: 1fr; } }
.cat-card {
  padding: 22px 18px; border-radius: var(--r-lg);
  border: 2px solid var(--border); cursor: pointer;
  text-align: center; transition: all var(--ease);
}
.cat-card:hover { border-color: var(--border-2); }
.cat-card.selected { border-color: var(--accent); background: var(--accent-a); }
.cat-card svg { margin: 0 auto 12px; color: var(--dim); transition: color var(--ease); }
.cat-card.selected svg { color: var(--accent); }
.cat-card-name { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.cat-card-desc { font-size: 12px; color: var(--muted); line-height: 1.5; }
.cat-card.selected .cat-card-name { color: var(--accent); }

/* Form elements */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; margin-bottom: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 15px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r); color: var(--text);
  font-family: inherit; font-size: 15px;
  transition: border-color var(--ease);
  outline: none; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-b); }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23808080' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.form-group textarea { resize: vertical; min-height: 105px; }
.form-help { font-size: 12px; color: var(--dim); margin-top: 5px; }

.form-nav { display: flex; gap: 12px; margin-top: 32px; }
.form-nav .btn { flex: 1; justify-content: center; }

/* Checkbox group */
.check-group { display: flex; flex-wrap: wrap; gap: 10px; }
.check-label {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 24px;
  border: 1px solid var(--border); cursor: pointer;
  font-size: 13px; color: var(--muted); transition: all var(--ease);
}
.check-label input { display: none; }
.check-label:has(input:checked) { border-color: var(--accent); color: var(--accent); background: var(--accent-a); }

/* Submission sidebar */
.sub-sidebar { position: sticky; top: calc(var(--nav) + 24px); }
.sidebar-box {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px; margin-bottom: 18px;
}
.sidebar-box h4 { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--text); letter-spacing: .03em; }
.req-list { display: flex; flex-direction: column; gap: 10px; }
.req-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--muted); line-height: 1.5;
}
.req-list li::before {
  content: ''; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  margin-top: 6px;
}
.process-mini { display: flex; flex-direction: column; gap: 0; }
.pm-step {
  display: flex; gap: 12px; align-items: flex-start; padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.pm-step:last-child { border-bottom: none; }
.pm-num { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; border: 1px solid var(--accent); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; color: var(--accent); }
.pm-step p { font-size: 13px; color: var(--muted); margin: 0; max-width: 100%; }
.pm-step strong { display: block; font-size: 13px; color: var(--text); margin-bottom: 2px; }

/* Success state */
.submit-success {
  display: none; text-align: center; padding: 60px 24px;
  animation: fadeUp .5s ease;
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--accent-a); border: 2px solid rgba(203,213,58,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; color: var(--accent);
}
.submit-success h2 { font-size: 36px; margin-bottom: 12px; }
.submit-success p { font-size: 16px; color: var(--muted); margin: 0 auto; }

/* ============================
   PAGE HEADER
   ============================ */
.page-header {
  padding: calc(var(--nav) + 56px) 0 56px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(to bottom, var(--bg-2), var(--bg));
}
.page-header h1 { font-size: clamp(42px, 6vw, 72px); margin-bottom: 12px; }
.page-header p { font-size: 17px; color: var(--muted); }

/* ============================
   FOOTER
   ============================ */
.footer { border-top: 1px solid var(--border); background: var(--bg-2); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 200px 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo { margin-bottom: 14px; }
.footer-logo svg { height: 44px; width: auto; }
.footer-logo-img { height: 54px; width: auto; display: block; }
.footer-brand p { font-size: 13px; color: var(--muted); max-width: 190px; margin-top: 0; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--dim); transition: color var(--ease); }
.footer-col ul a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: var(--dim);
}
.footer-bottom a:hover { color: var(--muted); }

/* ============================
   MISC
   ============================ */
.text-accent { color: var(--accent); }
.text-muted  { color: var(--muted);  }
.divider { height: 1px; background: var(--border); }

.badge {
  display: inline-block; padding: 3px 9px; border-radius: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
}
.badge-new      { background: var(--accent-a); color: var(--accent); }
.badge-featured { background: rgba(255,195,55,.12); color: #ffc337; }

/* Animate on scroll */
.anim { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.anim.in { opacity: 1; transform: translateY(0); }
.anim-d1 { transition-delay: .1s; }
.anim-d2 { transition-delay: .2s; }
.anim-d3 { transition-delay: .3s; }

/* Info box */
.info-box {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 18px; border-radius: var(--r);
  background: var(--accent-b); border: 1px solid rgba(203,213,58,.15);
  font-size: 13px; color: var(--muted); line-height: 1.6;
}
.info-box svg { flex-shrink: 0; color: var(--accent); margin-top: 1px; }

/* Quote */
.blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px; margin: 32px 0;
  background: var(--bg-2); border-radius: 0 var(--r) var(--r) 0;
}

/* ============================
   VIDEO MODAL (.vpm)
   ============================ */
.vpm {
  position: fixed; inset: 0; z-index: 900;
  display: flex; align-items: center; justify-content: center;
}
.vpm[hidden] { display: none; }
.vpm-bd {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.88); backdrop-filter: blur(6px);
}
.vpm-wrap {
  position: relative; z-index: 1;
  width: min(96vw, 1080px);
  background: #0f0f0f; border-radius: var(--r-lg);
  border: 1px solid var(--border-2);
  box-shadow: 0 40px 120px rgba(0,0,0,.85);
  overflow: hidden;
  animation: fadeUp .25s ease;
}
.vpm-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 10px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.vpm-ttl {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px; letter-spacing: .05em;
  color: var(--text); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.vpm-acts { display: flex; gap: 6px; }
.vpm-btn {
  width: 34px; height: 34px; border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: all var(--ease);
}
.vpm-btn:hover { border-color: var(--border-2); color: var(--text); }
.vpm-frame { position: relative; width: 100%; aspect-ratio: 16/9; background: #000; }
.vpm-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* ============================
   FILM CARD LINKS
   ============================ */
.vp-title {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px; letter-spacing: .04em; color: #fff; margin-bottom: 5px;
  transition: color var(--ease);
}
.vp-title:hover { color: var(--accent); }

.vp-director-link {
  color: rgba(255,255,255,.48);
  text-decoration: none;
  transition: color var(--ease);
}
.vp-director-link:hover { color: var(--accent); }

/* artist-card as <a> */
a.artist-card { display: block; color: inherit; }

/* ============================
   FILM DETAIL PAGE (.fp-*)
   ============================ */
.fp-hero {
  padding: calc(var(--nav) + 48px) 0 56px;
  position: relative; overflow: hidden;
}
.fp-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: .7;
}
.fp-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(10,10,10,.3) 0%, rgba(10,10,10,.95) 100%);
}
.fp-hero .container { position: relative; z-index: 1; }
.fp-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 32px;
  transition: color var(--ease);
}
.fp-back:hover { color: var(--text); }
.fp-cat {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.fp-title {
  font-size: clamp(44px, 7vw, 86px);
  margin-bottom: 18px;
}
.fp-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-size: 14px; color: var(--muted);
}
.fp-meta span { display: flex; align-items: center; gap: 6px; }

/* Film player */
.fp-player {
  position: relative; aspect-ratio: 16/9;
  background: #000; border-radius: var(--r-lg);
  overflow: hidden; margin-bottom: 64px;
  box-shadow: 0 24px 80px rgba(0,0,0,.65);
}
.fp-player-thumb {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: #0a0a0a center/cover no-repeat;
}
.fp-player-thumb .fp-play-big {
  width: 80px; height: 80px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.fp-player-thumb:hover .fp-play-big {
  border-color: var(--accent); background: rgba(203,213,58,.15);
}
.fp-player iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.fp-player .fp-no-video {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: var(--muted); font-size: 14px;
}
.fp-player .fp-no-video svg { color: var(--dim); }

/* Film body */
.fp-body { display: grid; grid-template-columns: 1fr 320px; gap: 56px; align-items: start; }
@media (max-width: 860px) { .fp-body { grid-template-columns: 1fr; } }

.fp-synopsis-label {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.fp-synopsis {
  font-size: 17px; line-height: 1.75; color: var(--muted);
  max-width: 100%; margin-bottom: 28px;
}
/* Reactions */
.fp-reactions { display: flex; gap: 10px; margin-bottom: 28px; }
.fp-react-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 999px; padding: 9px 18px;
  color: var(--muted); font-size: 14px; font-weight: 600;
  cursor: pointer; font-family: inherit;
  transition: border-color .15s, color .15s, background .15s, transform .1s;
}
.fp-react-btn:hover { border-color: var(--border-2); color: var(--text); }
.fp-react-btn.active { border-color: var(--accent); color: var(--accent); background: rgba(203,213,58,.08); }
.fp-react-btn.active svg { stroke: var(--accent); }
.fp-react-dis.active { border-color: #e05252; color: #e05252; background: rgba(224,82,82,.08); }
.fp-react-dis.active svg { stroke: #e05252; }
@keyframes pop { 0%{transform:scale(1)} 40%{transform:scale(1.18)} 100%{transform:scale(1)} }
.fp-react-btn.pop { animation: pop .25s ease; }

/* Trailer section */
.fp-trailer { margin-bottom: 48px; }
.fp-trailer-title {
  font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px;
}
.fp-trailer-player {
  position: relative; aspect-ratio: 16/9;
  background: #000; border-radius: var(--r);
  overflow: hidden;
}
.fp-trailer-thumb {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; background: var(--bg-3) center/cover no-repeat;
}
.fp-trailer-thumb .fp-play-sm {
  width: 56px; height: 56px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.fp-trailer-thumb:hover .fp-play-sm { border-color: var(--accent); background: rgba(203,213,58,.15); }
.fp-trailer-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* Sidebar: director + crew */
.fp-sidebar-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px; margin-bottom: 20px;
}
.fp-sidebar-label {
  font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
/* Director mini-card */
.fp-director {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
  padding: 12px; border-radius: var(--r);
  transition: background var(--ease);
}
.fp-director:hover { background: var(--bg-3); }
.fp-dir-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--bg-3); border: 2px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 14px; color: var(--muted);
  flex-shrink: 0;
}
.fp-dir-name { font-size: 15px; font-weight: 700; }
.fp-dir-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Crew list */
.fp-crew-list { display: flex; flex-direction: column; gap: 10px; }
.fp-crew-item { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.fp-crew-role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.fp-crew-name { font-size: 13px; color: var(--text); text-align: right; }
/* Linked artist crew */
.fp-crew-artist-link { display: flex; align-items: center; gap: 8px; text-decoration: none; color: var(--text); font-size: 13px; transition: color .15s; }
.fp-crew-artist-link:hover { color: var(--accent); }
.fp-crew-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-3) center top / cover no-repeat; border: 1px solid var(--border-2); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 10px; color: var(--muted); flex-shrink: 0; }

/* ============================
   ARTIST PROFILE PAGE (.ap-*)
   ============================ */
.ap-hero {
  padding: calc(var(--nav) + 56px) 0 64px;
  background: linear-gradient(to bottom, var(--bg-2), var(--bg));
  border-bottom: 1px solid var(--border);
}
.ap-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 36px;
  transition: color var(--ease);
}
.ap-back:hover { color: var(--text); }
.ap-hero-inner { display: flex; gap: 48px; align-items: flex-start; flex-wrap: wrap; }
.ap-avatar {
  width: 100px; height: 100px; border-radius: 50%;
  background: var(--bg-3); border: 2px solid var(--border-2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--muted);
  flex-shrink: 0;
}
.ap-info { flex: 1; min-width: 200px; }
.ap-genre {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.ap-name { font-size: clamp(38px, 6vw, 70px); margin-bottom: 14px; }
.ap-bio { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 60ch; margin-bottom: 24px; }
.ap-links { display: flex; flex-wrap: wrap; gap: 10px; }
.ap-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 24px;
  border: 1px solid var(--border); font-size: 13px; font-weight: 500;
  color: var(--muted); transition: all var(--ease);
}
.ap-link:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-a); }

.ap-films-section { padding: 72px 0; }
.ap-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 36px;
}
.ap-no-films {
  padding: 56px 24px; text-align: center;
  color: var(--muted); font-size: 15px;
  border: 1px dashed var(--border); border-radius: var(--r-lg);
}
.blockquote p { font-size: 17px; font-style: italic; color: var(--text); max-width: 100%; }
