
    :root {
      color-scheme: dark;
      --bg: #12110f;
      --panel: #1d1b18;
      --text: #f2eee8;
      --muted: #b9ada0;
      --line: #39322c;
      --accent: #d65f3a;
      --soft: #211f1d;
    }
    * { box-sizing: border-box; }
    body {
      margin: 0;
      font-family: Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
      background: var(--bg);
      color: var(--text);
    }
    .page { min-height: 100vh; padding: 28px 22px 64px; }
    .home {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-bottom: 16vh;
    }
    .search-shell { width: min(760px, 100%); margin: 0 auto; text-align: center; }
    .has-results .search-shell { margin: 0; text-align: left; }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 22px;
      color: var(--text);
      text-decoration: none;
      font-size: 24px;
      font-weight: 700;
      letter-spacing: 0;
    }
    .brand-mark {
      display: grid;
      place-items: center;
      width: 36px;
      height: 36px;
      border: 1px solid var(--line);
      background: var(--panel);
      color: var(--accent);
      border-radius: 8px;
    }
    .search-form {
      display: flex;
      gap: 10px;
      width: min(760px, 100%);
    }
    input {
      flex: 1;
      min-width: 0;
      height: 48px;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 0 16px;
      background: #171512;
      color: var(--text);
      font-size: 16px;
      outline: none;
    }
    input:focus { border-color: var(--accent); }
    button {
      height: 48px;
      border: 0;
      border-radius: 8px;
      padding: 0 18px;
      background: var(--accent);
      color: #fff;
      font-weight: 700;
      cursor: pointer;
    }
    .utility-row {
      display: flex;
      width: min(760px, 100%);
      margin: -8px 0 14px;
    }
    .home .utility-row { justify-content: center; }
    .watchlist-toggle,
    .save-film,
    .watch-primary,
    .trailer-link,
    .watchlist-head button,
    .watchlist-item button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 34px;
      height: auto;
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 0 11px;
      background: #171512;
      color: #f09b79;
      font-size: 13px;
      font-weight: 700;
    }
    .watch-primary {
      text-decoration: none;
      border-color: rgba(240, 155, 121, 0.44);
    }
    .trailer-link {
      gap: 7px;
      text-decoration: none;
      border-color: rgba(229, 72, 52, .58);
      color: #ffd1c7;
      background: rgba(123, 31, 25, .24);
    }
    .trailer-link.search {
      border-color: rgba(174, 128, 108, .42);
      color: #e7c3b5;
      background: rgba(88, 58, 46, .18);
    }
    .trailer-link span { font-size: 10px; }
    .watch-primary.free-online {
      border-color: rgba(115, 212, 164, 0.5);
      color: #9be5bd;
      background: rgba(40, 96, 68, 0.22);
    }
    .watch-primary.check-required {
      color: #f0b49b;
      background: rgba(130, 74, 50, 0.16);
    }
    .watchlist-toggle span {
      display: inline-grid;
      place-items: center;
      min-width: 22px;
      min-height: 22px;
      margin-left: 8px;
      border-radius: 999px;
      background: #2a1811;
      color: #fff;
    }
    .watchlist-panel {
      width: min(760px, 100%);
      margin: 0 0 14px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #171512;
      padding: 12px;
      text-align: left;
    }
    .watchlist-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 8px;
    }
    .watchlist-head strong { white-space: nowrap; }
    .watchlist-empty {
      color: var(--muted);
      font-size: 14px;
    }
    .watchlist-list {
      display: grid;
      gap: 8px;
    }
    .watchlist-item {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 8px;
    }
    .watchlist-item a {
      min-width: 0;
      color: var(--text);
      text-decoration: none;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .status-line {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
    }
    .status-next-link {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border: 1px solid rgba(240, 155, 121, 0.48);
      border-radius: 8px;
      background: rgba(240, 155, 121, 0.14);
      color: #f09b79;
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
    }
    .discovery-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      width: min(760px, 100%);
      margin-top: 12px;
    }
    .home .discovery-chips { justify-content: center; }
    .discovery-chips a {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 10px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: #f09b79;
      text-decoration: none;
      background: #171512;
      font-size: 13px;
      white-space: nowrap;
    }
    .filter-bar {
      display: grid;
      gap: 8px;
      width: min(760px, 100%);
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
    }
    .filter-bar div {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }
    .filter-bar strong {
      min-width: 36px;
      color: var(--text);
    }
    .filter-chip {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--muted);
      text-decoration: none;
      background: #171512;
      white-space: nowrap;
    }
    .filter-chip.is-active {
      border-color: var(--accent);
      color: #fff;
      background: #2a1811;
    }
    .filter-chip span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 22px;
      height: 20px;
      padding: 0 6px;
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      color: inherit;
      font-size: 12px;
      font-weight: 800;
    }
    .filter-chip.is-active span {
      background: rgba(255,255,255,0.14);
    }
    .empty {
      width: min(760px, 100%);
      margin-top: 34px;
      color: var(--muted);
    }
    .empty p { margin: 0 0 14px; }
    .suggested-queries {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      font-size: 13px;
    }
    .suggested-queries + .suggested-queries {
      margin-top: 10px;
    }
    .refinement-queries {
      width: min(760px, 100%);
      margin-top: 12px;
    }
    .suggested-queries strong {
      color: var(--text);
      margin-right: 2px;
    }
    .suggested-queries a {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 0 10px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: #f09b79;
      text-decoration: none;
      background: #171512;
      white-space: nowrap;
    }
    .results {
      display: grid;
      gap: 14px;
      width: min(860px, 100%);
      margin-top: 30px;
    }
    .result {
      display: grid;
      grid-template-columns: 104px minmax(0, 1fr);
      gap: 18px;
      border-top: 1px solid var(--line);
      padding: 18px 0 16px;
    }
    .poster {
      width: 104px;
      aspect-ratio: 0.696;
      border-radius: 8px;
      border: 1px solid var(--line);
      background: #171512;
      object-fit: cover;
    }
    .poster-link {
      display: block;
      width: 104px;
      color: inherit;
      text-decoration: none;
    }
    .result-body { min-width: 0; }
    .result-actions,
    .film-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }
    .save-film[aria-pressed="true"] {
      border-color: var(--accent);
      background: #2a1811;
      color: #fff;
    }
    .result-topline {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      color: var(--accent);
      font-size: 13px;
      font-weight: 700;
    }
    .watch-status {
      display: inline-flex;
      align-items: center;
      min-height: 22px;
      padding: 0 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--text);
      background: #171512;
      white-space: nowrap;
    }
    .watch-status.free-online {
      border-color: rgba(115, 212, 164, 0.42);
      color: #9be5bd;
      background: rgba(40, 96, 68, 0.22);
    }
    .watch-status.check-required {
      border-color: rgba(240, 155, 121, 0.34);
      color: #f0b49b;
      background: rgba(130, 74, 50, 0.16);
    }
    .source-confidence {
      display: inline-flex;
      align-items: center;
      min-height: 22px;
      padding: 0 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--text);
      background: #151817;
      white-space: nowrap;
    }
    .source-confidence.strong {
      border-color: rgba(116, 205, 190, 0.44);
      color: #98eadc;
      background: rgba(40, 101, 96, 0.22);
    }
    .source-confidence.moderate {
      border-color: rgba(204, 180, 100, 0.42);
      color: #ead891;
      background: rgba(112, 96, 42, 0.20);
    }
    .source-confidence.thin {
      border-color: rgba(209, 118, 118, 0.38);
      color: #efaaaa;
      background: rgba(112, 48, 48, 0.18);
    }
    h2 {
      margin: 7px 0 4px;
      font-size: 22px;
      letter-spacing: 0;
    }
    h2 a {
      color: var(--text);
      text-decoration: none;
    }
    h2 a:hover { color: #f09b79; }
    .subtitle, .meta, .why, .archive, .match-reasons {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
      overflow-wrap: anywhere;
      word-break: break-word;
    }
    .match-reasons {
      color: #ddd6ce;
      margin: 8px 0 4px;
    }
    .match-reasons strong {
      color: var(--accent);
      margin-right: 8px;
    }
    p { max-width: 760px; color: #ddd6ce; line-height: 1.55; }
    .links a { color: #f09b79; margin-right: 10px; }
    .watch {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin: 12px 0 8px;
      color: var(--muted);
      font-size: 14px;
    }
    .watch a {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: #f09b79;
      text-decoration: none;
      background: #171512;
    }
    .variant-list {
      margin: 0;
      padding-left: 18px;
      color: #ddd6ce;
    }
    .variant-list li { margin-bottom: 6px; }
    .pagination {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      width: min(860px, 100%);
      margin-top: 22px;
      padding: 12px;
      border: 1px solid rgba(232, 99, 55, 0.28);
      border-radius: 8px;
      background: rgba(240, 155, 121, 0.08);
      color: var(--muted);
      font-size: 14px;
    }
    .pagination-summary {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      flex-basis: 100%;
      color: var(--text);
    }
    .pagination-summary strong {
      font-size: 15px;
    }
    .pagination-more {
      color: #f09b79 !important;
      border-color: rgba(240, 155, 121, 0.42) !important;
      background: rgba(240, 155, 121, 0.12) !important;
    }
    .pagination-top {
      width: min(760px, 100%);
      margin-top: 14px;
    }
    .pagination-bottom { margin-top: 22px; }
    .pagination a,
    .pagination span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 48px;
      min-height: 36px;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--text);
      text-decoration: none;
      background: #171512;
    }
    .pagination a.pagination-primary {
      min-width: 132px;
      border-color: var(--accent);
      color: #171512;
      background: var(--accent);
      font-weight: 800;
      box-shadow: 0 10px 22px rgba(232, 99, 55, 0.24);
    }
    .pagination a.pagination-primary:hover {
      background: #ffb18c;
      border-color: #ffb18c;
    }
    .pagination-disabled {
      opacity: 0.58;
    }
    .pagination span {
      color: var(--muted);
      background: transparent;
    }
    .pagination-pages {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      align-items: center;
    }
    .pagination-pages a,
    .pagination-pages span {
      min-width: 36px;
      min-height: 34px;
      padding: 0 10px;
    }
    .pagination-pages span[aria-current="page"] {
      color: #171512;
      background: var(--accent);
      border-color: var(--accent);
      font-weight: 800;
    }
    .pagination-pages .pagination-gap {
      min-width: 18px;
      padding: 0;
      border: 0;
      background: transparent;
      color: var(--muted);
    }
    .film-detail {
      display: grid;
      grid-template-columns: 220px minmax(0, 1fr);
      gap: 26px;
      width: min(980px, 100%);
      margin-top: 30px;
      border-top: 1px solid var(--line);
      padding-top: 22px;
    }
    .detail-poster {
      width: 220px;
      aspect-ratio: 0.696;
      border-radius: 8px;
      border: 1px solid var(--line);
      object-fit: cover;
      background: #171512;
    }
    .detail-body { min-width: 0; }
    .detail-body h1 {
      margin: 8px 0 4px;
      font-size: 34px;
      letter-spacing: 0;
    }
    .detail-list {
      display: grid;
      grid-template-columns: 96px minmax(0, 1fr);
      gap: 10px 14px;
      margin-top: 18px;
    }
    .detail-list dt {
      color: var(--accent);
      font-weight: 700;
    }
    .detail-list dd {
      margin: 0;
      color: #ddd6ce;
      min-width: 0;
    }
    .related-section {
      width: min(980px, 100%);
      margin-top: 24px;
      border-top: 1px solid var(--line);
      padding-top: 18px;
    }
    .related-section h2 {
      margin: 0 0 12px;
      font-size: 20px;
    }
    .related-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }
    .related-film {
      display: flex;
      min-width: 0;
      flex-direction: column;
      gap: 8px;
    }
    .related-main {
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 10px;
      min-width: 0;
      color: var(--text);
      text-decoration: none;
    }
    .related-main img {
      width: 58px;
      aspect-ratio: 0.696;
      border-radius: 8px;
      border: 1px solid var(--line);
      object-fit: cover;
      background: #171512;
    }
    .related-main span {
      display: flex;
      min-width: 0;
      flex-direction: column;
      gap: 4px;
    }
    .related-main strong {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .related-main em {
      color: var(--muted);
      font-style: normal;
      font-size: 13px;
      line-height: 1.35;
    }
    .related-watch-action {
      width: fit-content;
      margin-left: 68px;
    }
    .back-link {
      color: #f09b79;
      text-decoration: none;
      font-size: 14px;
    }
    @media (max-width: 620px) {
      .page { padding: 18px 14px 40px; }
      .search-form { flex-direction: column; }
      button { width: 100%; }
      .brand { font-size: 21px; }
      .utility-row { margin-top: -4px; }
      .watchlist-head button,
      .watchlist-item button,
      .save-film,
      .watch-primary { width: auto; }
      .watchlist-item { grid-template-columns: minmax(0, 1fr); }
      h2 { font-size: 19px; }
      .result { grid-template-columns: 76px minmax(0, 1fr); gap: 12px; }
      .poster { width: 76px; }
      .poster-link { width: 76px; }
      .film-detail { grid-template-columns: 1fr; gap: 16px; }
      .detail-poster { width: min(220px, 100%); }
      .detail-body h1 { font-size: 26px; }
      .detail-list { grid-template-columns: 1fr; }
      .related-grid { grid-template-columns: 1fr; }
    }

    /* 2026 product refresh */
    :root {
      --bg: #0b0d0c;
      --panel: #121614;
      --panel-raised: #171c19;
      --panel-warm: #1c1714;
      --text: #f4efe7;
      --muted: #aaa69f;
      --subtle: #777c77;
      --line: #303833;
      --line-strong: #4c5750;
      --accent: #ef704d;
      --accent-bright: #ff936f;
      --accent-ink: #190c08;
      --green: #9fd5b6;
      --gold: #d8bd72;
      --radius: 16px;
      --shadow: 0 22px 70px rgba(0, 0, 0, .34);
    }
    html { scroll-behavior: smooth; }
    body {
      min-width: 320px;
      font-family: Pretendard, Paperlogy, "Apple SD Gothic Neo", "Noto Sans KR", Arial, sans-serif;
      background:
        radial-gradient(circle at 82% -8%, rgba(111, 46, 29, .25), transparent 31rem),
        radial-gradient(circle at -10% 32%, rgba(45, 66, 56, .18), transparent 28rem),
        var(--bg);
      color: var(--text);
      -webkit-font-smoothing: antialiased;
    }
    body::before {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      content: "";
      opacity: .04;
      background-image: radial-gradient(circle, #fff 0.6px, transparent .8px);
      background-size: 7px 7px;
    }
    .sr-only {
      position: absolute !important;
      width: 1px !important;
      height: 1px !important;
      padding: 0 !important;
      margin: -1px !important;
      overflow: hidden !important;
      clip: rect(0, 0, 0, 0) !important;
      white-space: nowrap !important;
      border: 0 !important;
    }
    .skip-link {
      position: fixed;
      top: 10px;
      left: 10px;
      z-index: 100;
      transform: translateY(-150%);
      padding: 12px 16px;
      border-radius: 10px;
      background: var(--accent-bright);
      color: var(--accent-ink);
      font-weight: 800;
      text-decoration: none;
    }
    .skip-link:focus { transform: translateY(0); }
    :where(a, button, input, summary):focus-visible {
      outline: 3px solid #ffd3c4 !important;
      outline-offset: 3px;
    }
    a, button, summary { -webkit-tap-highlight-color: transparent; }
    button { font-family: inherit; }
    .page,
    .home {
      display: block;
      width: min(1240px, 100%);
      min-height: 100vh;
      margin: 0 auto;
      padding: 24px 32px 56px;
    }
    .site-header {
      position: relative;
      z-index: 20;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      width: 100%;
      min-height: 58px;
      margin-bottom: 64px;
    }
    .brand {
      gap: 12px;
      margin: 0;
      font-size: 16px;
      letter-spacing: -.01em;
    }
    .brand-mark {
      position: relative;
      width: 40px;
      height: 40px;
      overflow: hidden;
      border-color: var(--line-strong);
      border-radius: 12px;
      background: linear-gradient(145deg, #212822, #111412);
      color: var(--accent-bright);
      font-family: Georgia, serif;
      font-size: 21px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.025);
    }
    .brand-mark::after {
      position: absolute;
      right: -8px;
      bottom: -9px;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--accent);
      content: "";
      opacity: .24;
    }
    .brand-copy { display: grid; gap: 2px; }
    .brand-copy strong { line-height: 1.1; }
    .brand-copy small {
      color: var(--muted);
      font-size: 10px;
      font-weight: 650;
      letter-spacing: .08em;
    }
    .utility-row {
      width: auto;
      margin: 0;
    }
    .watchlist-toggle,
    .save-film,
    .watch-primary,
    .trailer-link,
    .watchlist-head button,
    .watchlist-item button {
      min-height: 42px;
      border-color: var(--line-strong);
      border-radius: 999px;
      background: rgba(18, 22, 20, .92);
      color: #f3b39f;
      transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }
    .watchlist-toggle:hover,
    .save-film:hover,
    .trailer-link:hover { border-color: var(--accent); background: #2e1712; }
    .watchlist-toggle > span { margin-right: 6px; font-size: 17px; }
    .watchlist-toggle b {
      display: inline-grid;
      place-items: center;
      min-width: 24px;
      min-height: 24px;
      margin-left: 8px;
      border-radius: 999px;
      background: #392016;
      color: #fff;
      font-size: 12px;
    }
    .watchlist-panel {
      position: absolute;
      top: 56px;
      right: 0;
      width: min(420px, calc(100vw - 40px));
      margin: 0;
      padding: 18px;
      border-color: var(--line-strong);
      border-radius: var(--radius);
      background: rgba(18, 22, 20, .98);
      box-shadow: var(--shadow);
      backdrop-filter: blur(16px);
    }
    .watchlist-head { margin-bottom: 14px; }
    .watchlist-list { gap: 10px; }
    .watchlist-item {
      padding-top: 10px;
      border-top: 1px solid var(--line);
    }
    .search-shell {
      width: min(980px, 100%);
      margin: 0 auto;
      text-align: left;
    }
    .home .search-shell { text-align: center; }
    .hero-copy { max-width: 880px; margin: 0 auto 38px; }
    .hero-kicker,
    .section-kicker {
      margin: 0 0 16px;
      color: var(--accent-bright);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .18em;
    }
    .hero-kicker { display: flex; align-items: center; justify-content: center; gap: 10px; }
    .hero-kicker span { width: 28px; height: 1px; background: var(--accent); }
    .hero-copy h1 {
      margin: 0;
      font-family: Paperlogy, Pretendard, "Apple SD Gothic Neo", sans-serif;
      font-size: clamp(42px, 6.2vw, 76px);
      font-weight: 800;
      line-height: 1.04;
      letter-spacing: -.055em;
    }
    .hero-copy h1 em { color: var(--accent-bright); font-style: normal; }
    .hero-copy h1 em span { white-space: nowrap; }
    .hero-lead {
      max-width: 680px;
      margin: 26px auto 0;
      color: #c8c4bc;
      font-size: clamp(16px, 2vw, 19px);
      line-height: 1.7;
    }
    .search-form {
      position: relative;
      display: grid;
      grid-template-columns: 28px minmax(0, 1fr) auto;
      align-items: center;
      gap: 10px;
      width: 100%;
      min-height: 66px;
      padding: 7px 7px 7px 20px;
      border: 1px solid var(--line-strong);
      border-radius: 18px;
      background: rgba(20, 24, 22, .95);
      box-shadow: 0 18px 60px rgba(0,0,0,.28);
      transition: border-color .18s ease, box-shadow .18s ease;
    }
    .search-form:focus-within {
      border-color: var(--accent);
      box-shadow: 0 18px 60px rgba(0,0,0,.34), 0 0 0 3px rgba(239,112,77,.12);
    }
    .search-icon {
      position: relative;
      width: 18px;
      height: 18px;
      border: 2px solid var(--muted);
      border-radius: 50%;
    }
    .search-icon::after {
      position: absolute;
      right: -6px;
      bottom: -4px;
      width: 8px;
      height: 2px;
      transform: rotate(45deg);
      transform-origin: left center;
      background: var(--muted);
      content: "";
    }
    .search-form input {
      width: 100%;
      height: 50px;
      padding: 0 8px;
      border: 0;
      border-radius: 0;
      background: transparent;
      color: var(--text);
      font-family: inherit;
      font-size: 17px;
      outline: 0;
    }
    .search-form input::placeholder { color: #7d837e; }
    .search-form input::-webkit-search-cancel-button { filter: invert(1); opacity: .55; }
    .search-form button {
      width: auto;
      min-width: 116px;
      height: 50px;
      border-radius: 12px;
      background: var(--accent-bright);
      color: var(--accent-ink);
      font-size: 14px;
      font-weight: 850;
      box-shadow: none;
    }
    .search-form button:hover { background: #ffab8e; transform: translateY(-1px); }
    .search-help {
      margin: 12px 4px 0;
      color: var(--subtle);
      font-size: 13px;
      text-align: center;
    }
    .results-search-label {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
      color: var(--muted);
      font-size: 13px;
    }
    .results-search-label strong { color: var(--text); }
    .discovery-chips {
      gap: 8px;
      width: 100%;
      margin-top: 18px;
    }
    .discovery-chips.is-compact {
      flex-wrap: wrap;
      overflow-x: visible;
      padding: 2px 2px 8px;
      scrollbar-width: thin;
    }
    .discovery-chips a {
      min-height: 38px;
      padding: 0 13px;
      border-color: var(--line);
      border-radius: 999px;
      background: rgba(18,22,20,.76);
      color: #d5b1a5;
    }
    .discovery-chips a:hover { border-color: var(--accent); color: #fff; }
    .home-discovery { margin-top: 108px; }
    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 28px;
    }
    .section-heading .section-kicker { margin-bottom: 9px; }
    .section-heading h2 {
      margin: 0;
      font-size: clamp(28px, 4vw, 42px);
      letter-spacing: -.04em;
    }
    .section-heading > p {
      max-width: 380px;
      margin: 0 0 4px;
      color: var(--muted);
      line-height: 1.6;
    }
    .collection-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }
    .collection-card {
      position: relative;
      display: flex;
      min-height: 320px;
      overflow: hidden;
      flex-direction: column;
      justify-content: flex-end;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        radial-gradient(circle at 70% 22%, rgba(239,112,77,.15), transparent 34%),
        linear-gradient(160deg, #1a201d, #101311 62%);
      color: var(--text);
      text-decoration: none;
      transition: transform .24s ease, border-color .24s ease, background .24s ease;
    }
    .collection-card:nth-child(2) { background: radial-gradient(circle at 70% 22%, rgba(216,189,114,.15), transparent 34%), linear-gradient(160deg, #1b1b18, #101210 62%); }
    .collection-card:nth-child(3) { background: radial-gradient(circle at 70% 22%, rgba(107,145,128,.2), transparent 34%), linear-gradient(160deg, #18211d, #0f1210 62%); }
    .collection-card:nth-child(4) { background: radial-gradient(circle at 70% 22%, rgba(119,98,143,.22), transparent 34%), linear-gradient(160deg, #1d1822, #111013 62%); }
    .collection-card:hover { transform: translateY(-5px); border-color: var(--line-strong); }
    .collection-number {
      position: absolute;
      top: 20px;
      left: 20px;
      color: var(--accent-bright);
      font: 700 11px/1 Arial, sans-serif;
      letter-spacing: .12em;
    }
    .collection-orbit {
      position: absolute;
      top: 42px;
      right: -18px;
      width: 150px;
      height: 150px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 50%;
    }
    .collection-orbit::before,
    .collection-orbit::after {
      position: absolute;
      border-radius: 50%;
      content: "";
    }
    .collection-orbit::before { inset: 26px; border: 1px solid rgba(255,255,255,.1); }
    .collection-orbit::after { inset: 56px; background: var(--accent); opacity: .45; }
    .collection-card strong { position: relative; font-size: 21px; letter-spacing: -.025em; }
    .collection-card small { position: relative; min-height: 68px; margin-top: 10px; color: var(--muted); font-size: 13px; line-height: 1.55; }
    .collection-card em { position: relative; color: #e5a994; font-size: 12px; font-style: normal; font-weight: 700; }
    .collection-card em b { margin-left: 5px; }
    .catalog-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      margin-top: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(16,19,17,.7);
    }
    .catalog-strip div { display: grid; gap: 5px; padding: 22px 24px; border-right: 1px solid var(--line); }
    .catalog-strip div:last-child { border-right: 0; }
    .catalog-strip strong { color: var(--text); font-size: 24px; }
    .catalog-strip span { color: var(--muted); font-size: 12px; }
    .topic-cloud { margin-top: 26px; }
    .topic-cloud > strong { display: block; margin-bottom: 3px; color: var(--muted); font-size: 12px; }
    .topic-cloud .discovery-chips { margin-top: 10px; }
    .results-layout {
      display: grid;
      grid-template-columns: 250px minmax(0, 1fr);
      align-items: start;
      gap: 44px;
      margin-top: 54px;
    }
    .collection-results-layout {
      grid-template-columns: minmax(0, 1fr);
      width: min(980px, 100%);
      margin-inline: auto;
    }
    .filters-column { min-width: 0; }
    .desktop-filters { position: sticky; top: 20px; }
    .filters-drawer { display: none; }
    .filters-drawer > summary {
      display: none;
      cursor: pointer;
      list-style: none;
    }
    .filters-drawer > summary::-webkit-details-marker { display: none; }
    .filters-drawer:not([open]) > .filter-bar { display: grid; }
    .filter-bar {
      gap: 22px;
      width: 100%;
      margin: 0;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(17,21,18,.82);
      font-size: 12px;
    }
    .filter-bar div { gap: 7px; }
    .filter-bar strong {
      flex-basis: 100%;
      min-width: 0;
      margin-bottom: 3px;
      color: #e6e1d9;
      font-size: 12px;
    }
    .filter-chip {
      min-height: 34px;
      padding: 0 10px;
      border-color: #353d38;
      border-radius: 999px;
      background: #151916;
      color: #aeb2ae;
    }
    .filter-chip:hover { border-color: #68746c; color: #fff; }
    .filter-chip.is-active {
      border-color: var(--accent);
      background: #382016;
      color: #ffd9cc;
    }
    .filter-chip span { min-width: 18px; height: 18px; padding: 0 5px; font-size: 10px; }
    .results-column { min-width: 0; }
    .results-overview {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: end;
      gap: 12px 24px;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--line);
    }
    .results-overview .section-kicker { margin-bottom: 8px; }
    .results-overview h1 { margin: 0; font-size: clamp(26px, 4vw, 38px); letter-spacing: -.04em; }
    .collection-results-overview { display: block; }
    .collection-results-overview h2 { margin: 0; font-size: clamp(24px, 3vw, 32px); letter-spacing: -.035em; }
    .results-overview h1 span { color: var(--accent-bright); }
    .result-count { display: flex; align-items: baseline; gap: 5px; color: var(--muted); }
    .result-count strong { color: var(--text); font-size: 32px; line-height: 1; }
    .result-count span { font-size: 12px; }
    .status-line {
      grid-column: 1 / -1;
      gap: 7px;
      margin: 0;
    }
    .status-line > span {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 9px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      font-size: 11px;
    }
    .active-filters,
    .suggested-queries {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: 16px;
    }
    .active-filters strong,
    .suggested-queries strong { margin-right: 2px; color: var(--muted); font-size: 12px; }
    .active-filters a,
    .suggested-queries a {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      gap: 7px;
      padding: 0 11px;
      border: 1px solid #524138;
      border-radius: 999px;
      background: #1c1714;
      color: #e9b09d;
      font-size: 12px;
      text-decoration: none;
    }
    .active-filters a span { color: #fff; font-size: 16px; line-height: 1; }
    .refinement-queries { width: 100%; }
    .results {
      gap: 18px;
      width: 100%;
      margin-top: 26px;
    }
    .result {
      grid-template-columns: 148px minmax(0, 1fr);
      gap: 24px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(145deg, rgba(24,29,26,.92), rgba(15,18,16,.94));
      box-shadow: 0 14px 38px rgba(0,0,0,.16);
    }
    .poster-link { position: relative; width: 148px; }
    .poster {
      width: 148px;
      border-color: #3b443e;
      border-radius: 12px;
      box-shadow: 0 14px 32px rgba(0,0,0,.32);
    }
    .poster-rank {
      position: absolute;
      top: 9px;
      left: 9px;
      display: grid;
      place-items: center;
      width: 34px;
      height: 28px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 8px;
      background: rgba(7,9,8,.78);
      color: #fff;
      font: 800 11px/1 Arial, sans-serif;
      letter-spacing: .1em;
      backdrop-filter: blur(8px);
    }
    .result-body { display: flex; flex-direction: column; min-height: 212px; }
    .result-topline { gap: 7px; }
    .obscurity-badge,
    .variant-badge {
      display: inline-flex;
      align-items: center;
      min-height: 25px;
      gap: 5px;
      padding: 0 9px;
      border: 1px solid rgba(239,112,77,.34);
      border-radius: 999px;
      background: rgba(99,43,27,.16);
      color: #ebb09d;
      font-size: 11px;
    }
    .obscurity-badge b { color: #fff; font-size: 12px; }
    .result h2 { margin: 12px 0 3px; font-size: clamp(22px, 3vw, 28px); letter-spacing: -.03em; }
    .subtitle { color: #b3ada4; font-size: 13px; }
    .meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 7px;
      margin-top: 8px;
      color: #9fa49f;
      font-size: 12px;
    }
    .meta i { width: 3px; height: 3px; border-radius: 50%; background: #59615c; }
    .result-summary {
      display: -webkit-box;
      max-width: 690px;
      overflow: hidden;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 3;
      margin: 14px 0 0;
      color: #d2cec7;
      font-size: 14px;
      line-height: 1.6;
    }
    .match-reasons {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 6px;
      margin-top: 13px;
    }
    .match-reasons strong { margin-right: 2px; color: var(--muted); font-size: 11px; }
    .match-reasons span {
      display: inline-flex;
      align-items: center;
      min-height: 25px;
      padding: 0 8px;
      border: 1px solid #36433d;
      border-radius: 999px;
      background: rgba(53,79,66,.14);
      color: #b9d9c8;
      font-size: 10px;
    }
    .result-actions,
    .film-actions { align-items: center; gap: 8px; margin-top: auto; padding-top: 16px; }
    .detail-link {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      gap: 8px;
      padding: 0 14px;
      border-radius: 999px;
      background: var(--accent-bright);
      color: var(--accent-ink);
      font-size: 12px;
      font-weight: 850;
      text-decoration: none;
    }
    .watch-primary,
    .trailer-link { min-height: 42px; }
    .watch-status { min-height: 25px; padding: 0 9px; font-size: 10px; }
    .source-confidence { min-height: 25px; font-size: 10px; }
    .save-film[aria-pressed="true"] { border-color: var(--accent); background: #382016; }
    .pagination {
      justify-content: center;
      gap: 8px;
      width: 100%;
      margin-top: 26px;
      padding: 18px;
      border-color: var(--line);
      border-radius: var(--radius);
      background: rgba(17,21,18,.75);
    }
    .pagination-summary { justify-content: center; margin-bottom: 4px; }
    .pagination a,
    .pagination span { min-height: 42px; border-radius: 10px; }
    .pagination a.pagination-primary { min-width: 142px; color: var(--accent-ink); background: var(--accent-bright); box-shadow: none; }
    .pagination-pages { justify-content: center; }
    .empty {
      width: min(760px, 100%);
      margin: 70px auto 0;
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      text-align: center;
    }
    .site-footer {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      margin-top: 90px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      color: var(--subtle);
      font-size: 11px;
    }
    .detail-page .site-header { margin-bottom: 34px; }
    .detail-nav { margin-bottom: 26px; }
    .back-link { display: inline-flex; align-items: center; min-height: 44px; gap: 8px; color: #e7ae9a; font-weight: 700; }
    .film-detail {
      grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
      gap: clamp(34px, 6vw, 76px);
      width: min(1080px, 100%);
      margin: 0 auto;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: linear-gradient(145deg, rgba(24,29,26,.92), rgba(14,17,15,.96));
    }
    .detail-poster-wrap { min-width: 0; }
    .detail-poster { width: 100%; max-width: 300px; border-radius: 14px; box-shadow: var(--shadow); }
    .generated-note { display: block; margin-top: 12px; color: var(--subtle); font-size: 10px; line-height: 1.5; }
    .detail-body { padding: 12px 0; }
    .detail-body .section-kicker { margin-bottom: 12px; }
    .detail-body h1 { margin: 18px 0 4px; font-size: clamp(36px, 5vw, 58px); line-height: 1.06; letter-spacing: -.055em; }
    .detail-subtitle { margin-top: 8px; font-size: 16px; }
    .detail-meta { margin-top: 16px; font-size: 13px; }
    .detail-summary { margin: 30px 0 0; color: #ded9d0; font-size: 17px; line-height: 1.75; }
    .provider-credit { margin-top: 34px; padding: 24px; border: 1px solid var(--line); border-radius: 16px; background: rgba(17,21,18,.76); }
    .provider-credit h2 { margin: 0 0 18px; font-size: 20px; }
    .provider-credit img { display: block; width: min(210px, 100%); height: auto; }
    .provider-credit p { margin: 14px 0 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
    .generated-note a { color: #62c8d7; text-decoration: underline; text-underline-offset: 2px; }
    .film-actions { margin-top: 24px; padding-top: 0; }
    .film-actions .watch-primary { min-height: 48px; padding-inline: 18px; background: var(--accent-bright); color: var(--accent-ink); }
    .film-actions .trailer-link { min-height: 48px; padding-inline: 18px; }
    .film-actions .save-film { min-height: 48px; padding-inline: 18px; }
    .availability-copy { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
    .detail-disclosure { margin-top: 30px; border-top: 1px solid var(--line); }
    .detail-disclosure > summary { min-height: 54px; padding: 17px 0; color: #e8e2d9; cursor: pointer; font-size: 13px; font-weight: 800; }
    .detail-list { grid-template-columns: 110px minmax(0, 1fr); gap: 14px 18px; margin-top: 8px; }
    .detail-list dt { color: #d4947e; font-size: 12px; }
    .detail-list dd { color: #c6c2bb; font-size: 13px; line-height: 1.55; }
    .detail-watch { margin: 0; }
    .watch span { display: flex; flex-wrap: wrap; gap: 7px; }
    .watch a,
    .links a,
    .trailer-links a { display: inline-flex; align-items: center; min-height: 36px; margin: 0 7px 7px 0; padding: 0 10px; border: 1px solid var(--line-strong); border-radius: 9px; color: #edb09b; text-decoration: none; }
    .related-section { width: min(1080px, 100%); margin: 38px auto 0; padding-top: 26px; }
    .related-section h2 { margin-bottom: 18px; font-size: 24px; }
    .related-grid { gap: 16px; }
    .related-film { padding: 14px; border: 1px solid var(--line); border-radius: 14px; background: rgba(17,21,18,.76); }
    .related-main img { width: 68px; border-radius: 9px; }
    .related-main { grid-template-columns: 68px minmax(0,1fr); gap: 13px; }
    .related-watch-action { margin-left: 81px; }

    @media (max-width: 1080px) {
      .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .collection-card { min-height: 280px; }
      .results-layout { grid-template-columns: 1fr; gap: 20px; margin-top: 34px; }
      .desktop-filters { display: none; }
      .filters-drawer { position: static; display: block; }
      .filters-drawer > summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 58px;
        padding: 0 16px;
        border: 1px solid var(--line-strong);
        border-radius: 13px;
        background: var(--panel);
      }
      .filters-drawer > summary > span { display: flex; align-items: center; gap: 8px; }
      .filters-drawer > summary b { font-size: 14px; }
      .filters-drawer > summary span span { display: grid; place-items: center; min-width: 24px; height: 24px; border-radius: 999px; background: #3b2117; color: #fff; font-size: 11px; }
      .filters-drawer > summary small { color: var(--muted); font-size: 11px; }
      .filters-drawer:not([open]) > .filter-bar { display: none; }
      .filters-drawer[open] > summary { border-color: var(--accent); border-radius: 13px 13px 0 0; }
      .filters-drawer[open] > .filter-bar { border-top: 0; border-radius: 0 0 13px 13px; }
      .film-detail { grid-template-columns: 230px minmax(0, 1fr); gap: 34px; }
    }

    @media (max-width: 680px) {
      .page,
      .home { padding: 18px 14px 38px; }
      .site-header { margin-bottom: 46px; }
      .brand-copy small { display: none; }
      .watchlist-toggle { min-height: 40px; padding: 0 10px; font-size: 12px; }
      .watchlist-toggle > span { display: none; }
      .hero-copy { margin-bottom: 28px; }
      .hero-copy h1 { font-size: clamp(39px, 12vw, 55px); }
      .hero-lead { margin-top: 20px; font-size: 15px; }
      .search-form {
        grid-template-columns: 22px minmax(0, 1fr) auto;
        gap: 6px;
        min-height: 60px;
        padding: 5px 5px 5px 15px;
        border-radius: 15px;
      }
      .search-form input { height: 48px; padding: 0 5px; font-size: 16px; }
      .search-form button { min-width: 84px; width: auto; height: 48px; padding: 0 12px; border-radius: 11px; font-size: 12px; }
      .search-help { padding: 0 10px; font-size: 11px; line-height: 1.5; }
      .home-discovery { margin-top: 78px; }
      .section-heading { display: block; }
      .section-heading > p { margin-top: 12px; font-size: 13px; }
      .collection-grid { grid-template-columns: 1fr; }
      .collection-card { min-height: 242px; }
      .collection-card small { min-height: 50px; }
      .catalog-strip { grid-template-columns: repeat(2, 1fr); }
      .catalog-strip div { padding: 17px; }
      .catalog-strip div:nth-child(2) { border-right: 0; }
      .catalog-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
      .catalog-strip strong { font-size: 20px; }
      .results-search-label { margin-bottom: 8px; }
      .discovery-chips.is-compact { margin-top: 12px; }
      .results-layout { margin-top: 26px; }
      .results-overview { grid-template-columns: 1fr auto; gap: 10px; }
      .results-overview h1 { font-size: 25px; }
      .result-count strong { font-size: 26px; }
      .discovery-chips.is-compact { flex-wrap: wrap; overflow-x: visible; padding: 2px 0 0; }
      .status-line { flex-wrap: wrap; overflow-x: visible; padding-bottom: 0; }
      .status-line > span { flex: 0 0 auto; }
      .active-filters,
      .refinement-queries { flex-wrap: wrap; overflow-x: visible; padding-bottom: 0; }
      .active-filters > *,
      .refinement-queries > * { flex: 0 0 auto; }
      .result { grid-template-columns: 98px minmax(0, 1fr); gap: 14px; padding: 13px; }
      .poster-link,
      .poster { width: 98px; }
      .poster-rank { top: 6px; left: 6px; width: 30px; height: 25px; }
      .result-body { min-height: 141px; }
      .result-topline { gap: 5px; }
      .result-topline .watch-status { display: none; }
      .obscurity-badge { min-height: 23px; padding: 0 7px; font-size: 9px; }
      .obscurity-badge b { font-size: 10px; }
      .result h2 { margin-top: 8px; font-size: 19px; line-height: 1.18; }
      .subtitle { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 11px; }
      .meta { gap: 5px; margin-top: 6px; font-size: 10px; }
      .result-summary { -webkit-line-clamp: 2; margin-top: 9px; font-size: 12px; line-height: 1.45; }
      .match-reasons { display: none; }
      .detail-body .match-reasons { display: flex; }
      .result-actions { gap: 6px; padding-top: 11px; }
      .detail-link,
      .result-actions .save-film,
      .result-actions .watch-primary,
      .result-actions .trailer-link { min-height: 36px; padding: 0 10px; font-size: 10px; }
      .result-actions .watch-primary { display: none; }
      .pagination { padding: 13px; }
      .pagination-summary { text-align: center; }
      .pagination-pages { order: 5; flex-basis: 100%; }
      .pagination-range { display: none !important; }
      .pagination a.pagination-primary { min-width: 118px; }
      .site-footer { display: grid; gap: 7px; margin-top: 64px; }
      .detail-page .site-header { margin-bottom: 18px; }
      .detail-nav { margin-bottom: 12px; }
      .film-detail { grid-template-columns: 1fr; gap: 26px; padding: 18px; }
      .detail-poster-wrap { text-align: center; }
      .detail-poster { width: min(230px, 100%); }
      .generated-note { max-width: 230px; margin-inline: auto; text-align: left; }
      .related-main .watch-status {
        display: inline-flex;
        flex-direction: row;
        width: fit-content;
      }
      .detail-body { padding: 0; }
      .detail-body h1 { font-size: 37px; }
      .detail-summary { margin-top: 22px; font-size: 15px; }
      .detail-list { grid-template-columns: 1fr; gap: 6px; }
      .detail-list dd { margin-bottom: 10px; }
      .related-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 390px) {
      .brand-copy strong { font-size: 14px; }
      .brand-mark { width: 36px; height: 36px; }
      .watchlist-toggle { padding: 0 8px; }
      .watchlist-toggle b { margin-left: 5px; }
      .search-form button { min-width: 74px; padding: 0 8px; }
      .result { grid-template-columns: 86px minmax(0, 1fr); }
      .poster-link,
      .poster { width: 86px; }
      .result-actions .save-film { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
    }
    