/* ===== FILM HERO ===== */
    .film-hero {
      position: relative;
      width: 100%;
      min-height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      margin-bottom: var(--space-xl);
    }

    .film-hero__bg {
      position: absolute;
      top: -30%;
      left: 0;
      width: 100%;
      height: 160%;
      background-size: cover;
      background-position: center;
      z-index: 0;
      filter: brightness(0.35);
    }

    .film-hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, 
        rgba(10,10,10,0.6) 0%,
        rgba(10,10,10,0.1) 40%,
        rgba(10,10,10,0.1) 60%,
        rgba(10,10,10,0.95) 100%
      );
      z-index: 1;
    }

    .film-hero__content {
      position: relative;
      z-index: 2;
      text-align: center;
      padding: 75px var(--space-md) 50px var(--space-md);
      max-width: 900px;
    }

    .film-hero__poster {
      width: 405px;
      max-width: 80vw;
      border: 16px solid transparent;
      background: linear-gradient(#000, #000) padding-box, linear-gradient(90deg, #bf52ff, #47ebff) border-box;
      box-shadow: 0 20px 80px rgba(0,0,0,0.7), 0 0 40px rgba(191,82,255,0.15);
      margin-bottom: var(--space-xl);
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .film-hero__title {
      font-family: 'JetBrains Mono', monospace;
      font-size: clamp(40px, 6vw, 70px);
      font-weight: 400;
      letter-spacing: 0.2em;
      padding-left: 0.2em;
      text-transform: uppercase;
      line-height: 1.2;
      margin-top: var(--space-md);
      margin-bottom: 0;
      width: 100%;
      text-align: center;
      box-sizing: border-box;
    }

    .film-hero__subtitle {
      font-family: 'JetBrains Mono', monospace;
      font-size: 26px;
      font-weight: 300;
      letter-spacing: 4px;
      text-transform: uppercase;
      text-align: center;
      color: var(--text-color);
      margin-top: 30px;
      line-height: 1.6;
    }

    /* ===== SECTION HEADINGS (film) ===== */
    .film-section-heading {
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 6px;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: var(--space-md);
      text-align: center;
    }

    /* Cyan highlight for section headings mixed inside text blocks */
    .bio .film-section-heading {
      color: #47ebff !important;
    }

    /* ===== EXTERNAL LINKS (film) ===== */
    .film-links {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: var(--space-sm);
    }

    .film-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 28px;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      color: #fff;
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .film-link:hover {
      background: rgba(191,82,255,0.15);
      border-color: rgba(191,82,255,0.4);
      box-shadow: 0 0 20px rgba(191,82,255,0.15);
      transform: translateY(-2px);
    }

    .film-link__arrow {
      font-size: 12px;
      opacity: 0.5;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }

    .film-link:hover .film-link__arrow {
      opacity: 1;
      transform: translateX(3px);
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
      .film-hero {
        min-height: 80vh;
      }
      .film-hero__poster {
        width: 280px;
      }
      .film-hero__title {
        font-size: clamp(20px, 7vw, 32px);
        letter-spacing: 2px;
        padding-left: 2px;
        max-width: 100vw;
        word-break: break-word;
        white-space: normal;
        overflow-wrap: break-word;
      }
      .film-hero__subtitle {
        font-size: 16px;
        letter-spacing: 2px;
      }
      .film-links {
        flex-direction: column;
      }
    }