﻿:root {
      --black: #0a0805;
      --deep: #110e0a;
      --dark: #1c1610;
      --mid: #2a2018;
      --warm: #3d2f1e;
      --gold: #c8973a;
      --gold-light: #e8b86d;
      --gold-dim: #7a5a20;
      --blood: #8b1a1a;
      --blood-bright: #c42020;
      --cream: #e8d9bb;
      --cream-dim: #a89070;
      --cream-soft: #ccb28f;
      --fog: rgba(200, 151, 58, 0.07);
      --container-pad: clamp(14px, 3.2vw, 24px);
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }

    body {
      background: var(--black);
      color: var(--cream);
      font-family: 'PT Serif', Georgia, serif;
      min-height: 100vh;
      overflow-x: hidden;
      cursor: default;
      transition: background-color 0.35s ease;
    }

    body::after {
      content: '';
      position: fixed;
      inset: 0;
      background: rgba(2, 2, 2, 0.72);
      pointer-events: none;
      opacity: 0;
      transition: opacity 0.35s ease;
      z-index: 900;
    }

    body.lights-off::after { opacity: 1; }

    body.lights-off.has-player-cutout::after { opacity: 0; }

    .lights-cutout {
      position: fixed;
      left: 0;
      top: 0;
      width: 0;
      height: 0;
      border-radius: 10px;
      box-shadow: 0 0 0 9999px rgba(2, 2, 2, 0.72);
      pointer-events: none;
      opacity: 0;
      z-index: 900;
      transition: opacity 0.35s ease;
    }

    body.lights-off .lights-cutout { opacity: 1; }

    /* === GRAIN OVERLAY === */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 1000;
      opacity: 0.6;
    }

    /* === HEADER === */
    .site-header {
      position: relative;
      text-align: center;
      padding: clamp(42px, 8vw, 64px) 20px clamp(28px, 6vw, 44px);
      border-bottom: 1px solid var(--gold-dim);
      background: linear-gradient(180deg, #060402 0%, var(--black) 100%);
      overflow: hidden;
    }

    .site-header::before {
      content: '';
      position: absolute;
      top: -80px;
      left: 50%;
      transform: translateX(-50%);
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(139,26,26,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    .pentagram {
      width: 64px;
      height: 64px;
      margin: 0 auto 20px;
      opacity: 0.85;
      animation: pentaGlow 3s ease-in-out infinite;
    }

    @keyframes pentaGlow {
      0%, 100% { filter: drop-shadow(0 0 6px rgba(139,26,26,0.6)); }
      50% { filter: drop-shadow(0 0 18px rgba(139,26,26,0.9)) drop-shadow(0 0 32px rgba(200,151,58,0.3)); }
    }

    .site-header h1 {
      font-family: 'Prata', serif;
      font-size: clamp(1.6rem, 4vw, 2.8rem);
      color: var(--gold);
      letter-spacing: 0.08em;
      line-height: 1.2;
      text-shadow: 0 0 40px rgba(200,151,58,0.4), 0 2px 4px rgba(0,0,0,0.8);
      animation: titleFade 1.2s ease both;
    }

    .site-header .subtitle {
      font-family: 'PT Serif', serif;
      font-style: italic;
      color: var(--cream-dim);
      font-size: 1rem;
      margin-top: 10px;
      letter-spacing: 0.1em;
      animation: titleFade 1.4s ease both;
    }

    .header-motto {
      font-family: 'PT Serif', serif;
      font-style: italic;
      font-size: 0.85rem;
      color: var(--cream-dim);
      letter-spacing: 0.06em;
      max-width: 760px;
      margin: 0 auto;
      line-height: 1.65;
    }

    @keyframes titleFade {
      from { opacity: 0; transform: translateY(16px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .divider {
      width: clamp(150px, 28vw, 230px);
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
      margin: 20px auto;
    }

    /* === MAIN LAYOUT === */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--container-pad);
    }

    .main-grid {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: clamp(22px, 4vw, 40px);
      padding: clamp(24px, 4vw, 40px) 0;
      align-items: start;
    }

    @media (max-width: 1024px) {
      .main-grid {
        grid-template-columns: 260px 1fr;
      }
    }

    @media (max-width: 768px) {
      .main-grid { grid-template-columns: 1fr; }
    }

    /* === POSTER PANEL === */
    .poster-panel {
      position: sticky;
      top: 20px;
      animation: slideIn 0.9s ease both;
    }

    @keyframes slideIn {
      from { opacity: 0; transform: translateX(-30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    .poster-wrap {
      position: relative;
      border: 1px solid var(--gold-dim);
      overflow: hidden;
      background: var(--deep);
    }

    .poster-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      box-shadow: inset 0 0 40px rgba(0,0,0,0.6);
      pointer-events: none;
    }

    .poster-img {
      width: 100%;
      aspect-ratio: 2/3;
      object-fit: cover;
      display: block;
      filter: saturate(0.7) contrast(1.1);
      transition: filter 0.4s ease;
    }

    .poster-wrap:hover .poster-img {
      filter: saturate(0.9) contrast(1.05);
    }

    .poster-year-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--blood);
      color: var(--cream);
      font-family: 'Prata', serif;
      font-size: 0.72rem;
      padding: 4px 10px;
      letter-spacing: 0.1em;
    }

    .rating-block {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: 14px;
      padding: 14px 16px;
      background:
        radial-gradient(circle at 8% 20%, rgba(139,26,26,0.2), transparent 52%),
        linear-gradient(180deg, rgba(200,151,58,0.08) 0%, rgba(17,14,10,0.96) 58%),
        var(--deep);
      border: 1px solid var(--warm);
      border-top: none;
      position: relative;
      overflow: hidden;
    }

    .rating-block::after {
      content: '';
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(200,151,58,0), rgba(200,151,58,0.35), rgba(200,151,58,0));
      pointer-events: none;
    }

    .rating-ring {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      border: 1px solid rgba(200,151,58,0.82);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      font-family: 'Prata', serif;
      font-size: 1rem;
      color: #f4ce8b;
      text-shadow: 0 1px 6px rgba(0,0,0,0.6);
      background:
        radial-gradient(circle at 30% 25%, rgba(232,184,109,0.22), rgba(16,12,8,0.95) 62%),
        linear-gradient(160deg, rgba(200,151,58,0.22), rgba(200,151,58,0) 55%);
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.07),
        0 0 14px rgba(200,151,58,0.3);
    }

    .rating-ring::after {
      content: '';
      position: absolute;
      inset: 4px;
      border-radius: 50%;
      border: 1px solid rgba(200,151,58,0.26);
      pointer-events: none;
    }

    .vote-btns {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
      min-width: 0;
      color: var(--cream-dim);
      font-size: 0.84rem;
    }

    .vote-btns .vote-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      min-width: 92px;
      height: 34px;
      padding: 0 10px;
      border-radius: 999px;
      border: 1px solid #4a3823;
      background: linear-gradient(180deg, rgba(36,29,20,0.92), rgba(22,17,12,0.96));
      color: #ceb695;
      font-family: 'PT Serif', serif;
      font-size: inherit;
      line-height: 1;
      cursor: pointer;
      white-space: nowrap;
      transition:
        border-color 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
    }

    .vote-btns .vote-btn [data-vote-count] {
      min-width: 28px;
      height: 18px;
      padding: 0 6px;
      color: #fff0d2;
      font-family: 'Prata', serif;
      font-size: 0.7rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .vote-btns .vote-btn[data-vote="up"]:hover {
      color: #f0d29f;
      border-color: rgba(200,151,58,0.74);
      background: linear-gradient(180deg, rgba(200,151,58,0.2), rgba(36,26,14,0.96));
      box-shadow: 0 6px 14px rgba(0,0,0,0.28);
      transform: translateY(-1px);
    }

    .vote-btns .vote-btn[data-vote="down"]:hover {
      color: #e6b6b6;
      border-color: rgba(139,26,26,0.78);
      background: linear-gradient(180deg, rgba(139,26,26,0.28), rgba(26,14,12,0.96));
      box-shadow: 0 6px 14px rgba(0,0,0,0.28);
      transform: translateY(-1px);
    }

    .vote-btns .vote-btn.is-active {
      transform: none;
    }

    .vote-btns .vote-btn[data-vote="up"].is-active {
      color: #ffe2b4;
      border-color: var(--gold);
      background: linear-gradient(180deg, rgba(200,151,58,0.26), rgba(44,31,16,0.98));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    }

    .vote-btns .vote-btn[data-vote="down"].is-active {
      color: #ffd6d6;
      border-color: #b74141;
      background: linear-gradient(180deg, rgba(139,26,26,0.32), rgba(38,15,15,0.98));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
    }

    .vote-btns .vote-btn[data-vote="down"].is-active [data-vote-count] {
      color: #ffe0e0;
    }

    .info-list {
      margin-top: 16px;
      background: var(--deep);
      border: 1px solid var(--warm);
      padding: 0;
      list-style: none;
    }

    .info-list li {
      display: flex;
      gap: 10px;
      padding: 9px 14px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      font-size: 0.82rem;
      line-height: 1.4;
    }

    .info-list li:last-child { border-bottom: none; }

    .info-list li span:first-child {
      color: var(--gold-dim);
      font-style: italic;
      min-width: 80px;
    }

    .info-list .rates {
      display: flex;
      gap: 10px;
      align-items: center;
      /* flex-wrap: wrap; */
    }

    .rate-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 4px 12px;
      border-radius: 999px;
      font-size: 0.76rem;
      font-family: 'Prata', serif;
      letter-spacing: 0.04em;
      line-height: 1;
      border: 1px solid transparent;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
      text-shadow: 0 1px 0 rgba(0,0,0,0.35);
      white-space: nowrap;
    }

    .rate-badge.kp {
      background: linear-gradient(180deg, rgba(255,127,51,0.2) 0%, rgba(255,102,0,0.12) 100%);
      color: #ffb27e!important;
      border-color: rgba(255,127,51,0.5);
      box-shadow: inset 0 0 0 1px rgba(255,188,140,0.15), 0 0 14px rgba(255,127,51,0.18);
      font-style: normal!important;
    }

    .rate-badge.imdb {
      background: linear-gradient(180deg, rgba(232,184,109,0.18) 0%, rgba(200,151,58,0.1) 100%);
      color: #f0cd87;
      border-color: rgba(200,151,58,0.55);
      box-shadow: inset 0 0 0 1px rgba(255,227,164,0.12), 0 0 14px rgba(200,151,58,0.16);
    }

    /* === CONTENT PANEL === */
    .content-panel {
      animation: fadeUp 1s ease both 0.2s;
      min-width: 0;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .page-intro {
      font-family: 'PT Serif', serif;
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--cream);
      margin-bottom: 30px;
      text-wrap: pretty;
    }

    .page-intro a { color: var(--gold); text-decoration: none; }

    .season-page-nav {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      align-items: center;
      gap: 10px;
      margin: -10px 0 26px;
      padding: 8px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .season-page-nav__link,
    .season-page-nav__all,
    .season-page-nav__muted {
      font-family: 'Prata', serif;
      font-size: 0.64rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      line-height: 1.2;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 30px;
      padding: 6px 10px;
      border: 1px solid var(--warm);
      background: rgba(17,14,10,0.75);
      color: var(--cream-dim);
      transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
      text-align: center;
    }

    .season-page-nav__all {
      border-color: var(--gold-dim);
      color: var(--gold-light);
      min-width: 146px;
    }

    .season-page-nav__link:hover,
    .season-page-nav__all:hover {
      border-color: var(--gold);
      color: var(--cream);
      background: rgba(200,151,58,0.12);
    }

    .season-page-nav__link--prev { justify-self: start; }
    .season-page-nav__link--next { justify-self: end; }

    .season-page-nav__muted {
      color: var(--cream-dim);
      opacity: 0.5;
      pointer-events: none;
    }

    /* === PLAYER === */
    .player-section {
      background: var(--deep);
      border: 1px solid var(--warm);
      margin-bottom: 30px;
      min-width: 0;
      max-width: 100%;
    }

    body.lights-off .content-panel {
      /* fadeUp keeps transform via animation-fill-mode, which traps z-index inside this context */
      animation: none !important;
      transform: none !important;
    }

    body.lights-off .player-section {
      position: relative;
      z-index: 1205;
      isolation: isolate;
      box-shadow: 0 0 0 1px rgba(200,151,58,0.2), 0 20px 42px rgba(0,0,0,0.58);
    }

    .player-controls {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      background: var(--dark);
      border-bottom: 1px solid var(--warm);
      flex-wrap: wrap;
      gap: 10px;
    }

    .player-btns {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .player-btns button {
      background: transparent;
      border: 1px solid var(--gold-dim);
      color: var(--cream-dim);
      font-family: 'PT Serif', serif;
      font-size: 0.78rem;
      padding: 6px 14px;
      cursor: pointer;
      letter-spacing: 0.05em;
      transition: all 0.2s;
    }

    .player-btns button:hover,
    .player-btns button.is-active {
      background: var(--gold-dim);
      color: var(--cream);
      border-color: var(--gold);
    }

    .player-options {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .player-options a {
      color: var(--blood);
      font-size: 0.78rem;
      text-decoration: none;
      transition: color 0.2s;
    }

    .player-options a:hover { color: var(--blood-bright); }

    .light-toggle {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 4px 10px;
      border: 1px solid var(--warm);
      border-radius: 999px;
      background: rgba(0,0,0,0.2);
      font-size: 0.78rem;
      color: var(--cream-soft);
      cursor: pointer;
      user-select: none;
      transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .light-toggle:hover {
      border-color: var(--gold-dim);
      color: var(--cream);
      background: rgba(200,151,58,0.08);
    }

    .light-toggle input {
      -webkit-appearance: none;
      appearance: none;
      width: 42px;
      height: 24px;
      margin: 0;
      border: 1px solid var(--warm);
      border-radius: 999px;
      background: #2b2217;
      position: relative;
      cursor: pointer;
      transition: background 0.22s ease, border-color 0.22s ease;
      flex-shrink: 0;
    }

    .light-toggle input::before {
      content: '';
      position: absolute;
      top: 2px;
      left: 2px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #d8c1a0;
      box-shadow: 0 1px 2px rgba(0,0,0,0.45);
      transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    }

    .light-toggle input:checked {
      background: linear-gradient(180deg, #e1b564 0%, #ad7a2a 100%);
      border-color: var(--gold);
    }

    .light-toggle input:checked::before {
      transform: translateX(18px);
      background: #fff0cc;
      box-shadow: 0 0 0 2px rgba(255,240,204,0.3), 0 1px 3px rgba(0,0,0,0.4);
    }

    .light-toggle span {
      font-size: 0.7rem;
      line-height: 1;
      font-family: 'Prata', serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .player-frame {
      height: clamp(260px, 42vw, 420px);
      background: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .player-placeholder {
      text-align: center;
      color: var(--cream-dim);
    }

    .player-placeholder svg {
      display: block;
      margin: 0 auto 16px;
      opacity: 0.5;
    }

    .player-placeholder p {
      font-family: 'PT Serif', serif;
      font-style: italic;
      font-size: 1rem;
    }

    .reactions {
      border-top: 1px solid var(--warm);
      background: #12100d;
      padding: 8px 10px 10px;
      max-width: 100%;
      min-width: 0;
      overflow: hidden;
    }

    .reactions__track {
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      gap: 8px;
      width: 100%;
      max-width: 100%;
      min-width: 0;
      overflow-x: auto;
      overflow-y: hidden;
      padding: 2px 1px;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
      scrollbar-color: rgba(200,151,58,0.35) rgba(255,255,255,0.04);
    }

    .reactions__track::-webkit-scrollbar {
      height: 6px;
    }

    .reactions__track::-webkit-scrollbar-track {
      background: rgba(255,255,255,0.04);
      border-radius: 999px;
    }

    .reactions__track::-webkit-scrollbar-thumb {
      background: rgba(200,151,58,0.42);
      border-radius: 999px;
    }

    .reaction-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      flex: 0 0 auto;
      min-width: 91px;
      height: 34px;
      padding: 6px 9px;
      border-radius: 8px;
      border: 1px solid #3a3126;
      background: #1c1711;
      color: #d9c4a3;
      font-family: 'PT Serif', serif;
      font-size: 0.72rem;
      line-height: 1;
      cursor: pointer;
      transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
    }

    .reaction-btn:hover {
      border-color: #6f5a37;
      background: #241d15;
      color: #e7d7bf;
    }

    .reaction-btn.is-active {
      border-color: var(--gold);
      background: #2f2516;
      color: #ffe7be;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
    }

    .reaction-btn__emoji {
      font-size: 0.98rem;
      line-height: 1;
    }

    .reaction-btn__count {
      min-width: 21px;
      height: 16px;
      padding: 0 4px;
      border-radius: 999px;
      border: 1px solid #5d4b2f;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'Prata', serif;
      font-size: 0.55rem;
      color: #e3bf80;
      background: #16120d;
    }

    body.lights-off .reactions {
      position: relative;
      z-index: 950;
    }

    /* === SEASON TABS === */
    .season-panel {
      background: var(--deep);
      border: 1px solid var(--warm);
      padding: 16px;
    }

    .season-caption {
      font-family: 'Prata', serif;
      font-size: 0.72rem;
      color: var(--gold-dim);
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .season-tabs {
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .season-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      background: transparent;
      border: 1px solid transparent;
      color: var(--cream-dim);
      font-family: 'PT Serif', serif;
      font-size: 0.9rem;
      padding: 9px 12px;
      cursor: pointer;
      text-align: left;
      line-height: 1.35;
      transition: all 0.25s;
    }

    .season-btn:hover {
      background: var(--fog);
      border-color: var(--warm);
      color: var(--cream);
    }

    .season-btn.is-active {
      background: rgba(200,151,58,0.08);
      border-color: var(--gold-dim);
      color: var(--gold-light);
    }

    .season-num {
      font-family: 'Prata', serif;
      font-size: 0.72rem;
      color: var(--gold-dim);
      min-width: 24px;
    }

    .season-btn.is-active .season-num { color: var(--gold); }

    /* === SECTION HEADINGS === */
    .sect-title {
      font-family: 'Prata', serif;
      font-size: clamp(1rem, 2.5vw, 1.35rem);
      color: var(--gold);
      margin: 48px 0 20px;
      letter-spacing: 0.06em;
      position: relative;
      padding-bottom: 12px;
    }

    .sect-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 60px;
      height: 1px;
      background: var(--blood);
    }

    /* === FULL CONTENT === */
    .full-content {
      padding: 0 0 60px;
    }

    .full-content p {
      font-family: 'PT Serif', serif;
      font-size: 1rem;
      line-height: 1.9;
      color: var(--cream);
      margin-bottom: 18px;
      text-wrap: pretty;
    }

    .full-content p a { color: var(--gold); text-decoration: none; }

    /* === CHRONOLOGY LIST === */
    .chrono-list {
      list-style: none;
      padding: 0;
      margin: 0 0 30px;
    }

    .chrono-list li {
      display: flex;
      gap: 14px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      font-family: 'PT Serif', serif;
      font-size: 0.95rem;
      line-height: 1.6;
      color: var(--cream);
    }

    .chrono-list li::before {
      content: '✦';
      color: var(--blood);
      flex-shrink: 0;
      margin-top: 2px;
      font-size: 0.8rem;
    }

    .chrono-list li strong {
      color: var(--gold-light);
      font-style: italic;
    }

    /* === FEATURE LIST === */
    .feature-list {
      list-style: none;
      padding: 0;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 12px;
      margin-bottom: 30px;
    }

    .feature-list li {
      background: var(--deep);
      border: 1px solid var(--warm);
      padding: 14px 16px;
      font-family: 'PT Serif', serif;
      font-size: 0.88rem;
      line-height: 1.6;
      color: var(--cream-soft);
      position: relative;
      padding-left: 32px;
      text-wrap: pretty;
    }

    .feature-list li::before {
      content: '⊕';
      position: absolute;
      left: 12px;
      top: 14px;
      color: var(--blood);
      font-size: 0.85rem;
    }

    .feature-list li strong {
      display: block;
      color: var(--gold-light);
      margin-bottom: 3px;
      font-style: italic;
    }

    /* === FAQ === */
    .faq-block {
      display: flex;
      flex-direction: column;
      gap: 2px;
      margin-bottom: 30px;
    }

    .faq-item {
      background: var(--deep);
      border: 1px solid var(--warm);
      overflow: hidden;
    }

    .faq-question {
      padding: 14px 18px;
      font-family: 'Prata', serif;
      font-size: 0.78rem;
      color: var(--gold-light);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      letter-spacing: 0.04em;
      transition: background 0.2s;
      list-style: none;
    }

    .faq-question:hover { background: var(--fog); }

    .faq-question::after {
      content: '✦';
      color: var(--blood);
      font-size: 0.7rem;
      transition: transform 0.3s;
    }

    details[open] .faq-question::after {
      transform: rotate(90deg);
    }

    .faq-answer {
      padding: 0 18px 14px;
      font-family: 'PT Serif', serif;
      font-style: italic;
      font-size: 0.92rem;
      color: var(--cream-soft);
      line-height: 1.75;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 12px;
      text-wrap: pretty;
    }

    /* === FACTS BLOCK === */
    .facts-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin-bottom: 30px;
    }

    .fact-card {
      background: var(--deep);
      border: 1px solid var(--warm);
      border-top: 2px solid var(--blood);
      padding: 18px 16px;
      font-family: 'PT Serif', serif;
      font-size: 0.88rem;
      line-height: 1.65;
      color: var(--cream-soft);
      animation: fadeUp 0.6s ease both;
      contain: layout paint;
      content-visibility: auto;
      contain-intrinsic-size: 180px;
    }

    .fact-card:nth-child(2) { animation-delay: 0.1s; }
    .fact-card:nth-child(3) { animation-delay: 0.2s; }
    .fact-card:nth-child(4) { animation-delay: 0.3s; }

    /* === RELATED === */
    .related-section {
      padding: 30px 0;
      border-top: 1px solid var(--warm);
    }

    .related-caption {
      font-family: 'Prata', serif;
      font-size: 0.72rem;
      color: var(--gold-dim);
      letter-spacing: 0.2em;
      margin-bottom: 16px;
    }

    .related-row {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 8px;
      scroll-snap-type: x mandatory;
    }

    .related-row::-webkit-scrollbar { height: 3px; }
    .related-row::-webkit-scrollbar-track { background: var(--dark); }
    .related-row::-webkit-scrollbar-thumb { background: var(--gold-dim); }

    .related-card {
      flex: 0 0 140px;
      text-decoration: none;
      scroll-snap-align: start;
    }

    .related-card-img {
      width: 100%;
      aspect-ratio: 2/3;
      background: var(--dark);
      border: 1px solid var(--warm);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--cream-dim);
      font-size: 0.7rem;
      text-align: center;
      padding: 10px;
      font-family: 'PT Serif', serif;
      font-style: italic;
      margin-bottom: 6px;
      transition: border-color 0.2s;
    }

    .related-card:hover .related-card-img {
      border-color: var(--gold-dim);
    }

    .related-card-title {
      font-family: 'PT Serif', serif;
      font-size: 0.78rem;
      color: var(--cream-dim);
      line-height: 1.3;
      transition: color 0.2s;
    }

    .related-card:hover .related-card-title { color: var(--gold-light); }

    @media (hover: hover) {
      .season-card,
      .char-card,
      .quote-card,
      .fact-card {
        transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
      }

      .season-card:hover,
      .char-card:hover,
      .quote-card:hover,
      .fact-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 28px rgba(0,0,0,0.25);
      }
    }

    /* === CTA === */
    .cta-block {
      background: var(--deep);
      border: 1px solid var(--gold-dim);
      border-left: 3px solid var(--blood);
      padding: 28px 28px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }

    .cta-block::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at right, rgba(139,26,26,0.08), transparent 60%);
      pointer-events: none;
    }

    .cta-block h2 {
      font-family: 'Prata', serif;
      font-size: 1.1rem;
      color: var(--gold);
      margin-bottom: 12px;
      letter-spacing: 0.05em;
    }

    .cta-block p {
      font-family: 'PT Serif', serif;
      font-style: italic;
      font-size: 1rem;
      color: var(--cream);
      line-height: 1.8;
      margin-bottom: 0;
    }

    .cta-block em { color: var(--gold-light); }

    /* === FOOTER === */
    footer {
      background: var(--black);
      border-top: 1px solid var(--warm);
      padding: 30px 20px;
      text-align: center;
      font-family: 'PT Serif', serif;
      font-style: italic;
      font-size: 0.85rem;
      color: var(--cream-dim);
    }

    footer .rune {
      display: block;
      font-size: 1.5rem;
      color: var(--blood);
      margin-bottom: 10px;
      opacity: 0.6;
    }

    footer a {
      color: var(--gold-light);
      text-decoration: none;
    }

    footer a:hover {
      color: var(--gold);
      text-decoration: underline;
    }

    /* === SCROLL GLOW === */
    .scroll-glow {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      height: 120px;
      background: linear-gradient(0deg, rgba(139,26,26,0.07), transparent);
      pointer-events: none;
      z-index: 10;
    }

    /* === MAIN NAV TABS === */
    .main-tabs-nav {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 0;
      align-items: stretch;
      justify-content: stretch;
      border-bottom: 1px solid var(--warm);
      width: 100%;
      margin: 0;
      padding-inline: 0;
      overflow: hidden;
      scrollbar-width: none;
      background: rgba(17,14,10,0.92);
      backdrop-filter: blur(8px);
      position: sticky;
      top: 0;
      z-index: 50;
      scroll-snap-type: none;
    }
    .main-tabs-nav::-webkit-scrollbar { display: none; }

    .main-tab-btn {
      background: transparent;
      border: none;
      border-bottom: 2px solid transparent;
      color: var(--cream-dim);
      font-family: 'Prata', serif;
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      padding: 16px 22px 14px;
      cursor: pointer;
      white-space: normal;
      transition: all 0.2s ease;
      text-transform: uppercase;
      min-height: 46px;
      width: 100%;
      max-width: none;
      text-align: center;
    }
    .main-tab-btn:hover { color: var(--cream); background: var(--fog); }
    .main-tab-btn.is-active {
      color: var(--gold);
      border-bottom-color: var(--blood);
      background: rgba(139,26,26,0.06);
    }

    @media (max-width: 768px) {
      .main-tabs-nav {
        display: flex;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x proximity;
      }

      .main-tab-btn {
        flex: 0 0 auto;
        width: auto;
        max-width: none;
        min-width: 148px;
        white-space: nowrap;
        scroll-snap-align: start;
      }
    }

    .main-tab-btn:focus-visible,
    .season-btn:focus-visible,
    .player-btns button:focus-visible,
    .reaction-btn:focus-visible,
    .vote-btns .vote-btn:focus-visible,
    .quote-filter-btn:focus-visible,
    .player-options a:focus-visible,
    .light-toggle input:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 2px;
    }

    .tab-section { display: none; }
    .tab-section.is-active {
      display: block;
      animation: tabReveal 0.42s ease both;
    }

    @keyframes tabReveal {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* === SEASONS GRID === */
    .seasons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 24px;
      padding: 40px 0;
    }

    .season-card {
      background: var(--deep);
      border: 1px solid var(--warm);
      overflow: hidden;
      transition: border-color 0.25s, transform 0.25s;
      cursor: pointer;
      contain: layout paint;
      content-visibility: auto;
      contain-intrinsic-size: 280px;
    }
    .season-card:hover {
      border-color: var(--gold-dim);
      transform: translateY(-3px);
    }

    .season-card-header {
      display: flex;
      gap: 0;
    }

    .season-card-poster {
      width: 90px;
      flex-shrink: 0;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .season-card-poster-art {
      width: 100%;
      height: 100%;
      min-height: 130px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .season-card-body {
      flex: 1;
      padding: 14px 16px;
      border-left: 1px solid var(--warm);
    }

    .season-card-label {
      font-family: 'Prata', serif;
      font-size: 0.62rem;
      color: var(--blood);
      letter-spacing: 0.18em;
      margin-bottom: 4px;
    }

    .season-card-title {
      font-family: 'PT Serif', serif;
      font-size: 1rem;
      color: var(--gold-light);
      font-style: italic;
      margin-bottom: 8px;
      line-height: 1.3;
    }

    .season-card-meta {
      font-size: 0.72rem;
      color: var(--cream-soft);
      margin-bottom: 10px;
      display: flex;
      gap: 12px;
    }

    .season-card-desc {
      font-family: 'PT Serif', serif;
      font-size: 0.85rem;
      line-height: 1.7;
      color: var(--cream-soft);
      text-wrap: pretty;
    }

    .season-card-footer {
      padding: 10px 16px;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .season-card-episodes {
      font-size: 0.72rem;
      color: var(--cream-soft);
      font-family: 'PT Serif', serif;
      font-style: italic;
    }

    .season-card-watch {
      font-family: 'Prata', serif;
      font-size: 0.6rem;
      color: var(--gold);
      letter-spacing: 0.1em;
      text-decoration: none;
      border: 1px solid var(--gold-dim);
      padding: 4px 10px;
      transition: all 0.2s;
    }
    .season-card-watch:hover { background: var(--gold-dim); color: var(--cream); }

    /* === CHARACTERS === */
    .characters-section { padding: 40px 0; }

    .characters-intro {
      font-family: 'PT Serif', serif;
      font-size: 1rem;
      font-style: italic;
      color: var(--cream-soft);
      margin-bottom: 36px;
      line-height: 1.8;
      border-left: 2px solid var(--blood);
      padding-left: 20px;
      text-wrap: pretty;
    }

    .characters-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 20px;
    }

    .char-card {
      background: var(--deep);
      border: 1px solid var(--warm);
      overflow: hidden;
      transition: border-color 0.25s;
      contain: layout paint;
      content-visibility: auto;
      contain-intrinsic-size: 280px;
    }
    .char-card:hover { border-color: var(--gold-dim); }

    .char-card-top {
      display: flex;
      gap: 0;
      border-bottom: 1px solid var(--warm);
    }

    .char-avatar {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      background: var(--dark);
      border-right: 1px solid var(--warm);
    }

    .char-header {
      flex: 1;
      padding: 12px 14px;
    }

    .char-name {
      font-family: 'Prata', serif;
      font-size: 0.78rem;
      color: var(--gold);
      letter-spacing: 0.06em;
      margin-bottom: 2px;
    }

    .char-actor {
      font-family: 'PT Serif', serif;
      font-style: italic;
      font-size: 0.8rem;
      color: var(--cream-soft);
      margin-bottom: 5px;
    }

    .char-tag {
      display: inline-block;
      font-size: 0.62rem;
      font-family: 'Prata', serif;
      letter-spacing: 0.1em;
      padding: 2px 8px;
      border: 1px solid;
    }
    .char-tag.hunter { border-color: var(--gold-dim); color: var(--gold-dim); }
    .char-tag.angel { border-color: #4a6fa0; color: #7aabdf; }
    .char-tag.demon { border-color: var(--blood); color: #c45555; }
    .char-tag.ally { border-color: #3a6a3a; color: #7abd7a; }

    .char-bio {
      padding: 14px;
      font-family: 'PT Serif', serif;
      font-size: 0.85rem;
      line-height: 1.75;
      color: var(--cream-soft);
      text-wrap: pretty;
    }

    .char-seasons {
      padding: 0 14px 12px;
      font-size: 0.7rem;
      color: var(--gold-dim);
      font-family: 'Prata', serif;
      letter-spacing: 0.08em;
    }

    /* === QUOTES === */
    .quotes-section { padding: 40px 0; }

    .quotes-filter {
      display: flex;
      gap: 8px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .quote-filter-btn {
      background: transparent;
      border: 1px solid var(--warm);
      color: var(--cream-dim);
      font-family: 'Prata', serif;
      font-size: 0.62rem;
      letter-spacing: 0.1em;
      padding: 6px 14px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .quote-filter-btn:hover { border-color: var(--gold-dim); color: var(--cream); }
    .quote-filter-btn.is-active { background: rgba(139,26,26,0.15); border-color: var(--blood); color: var(--gold-light); }

    .quotes-masonry {
      columns: 2;
      column-gap: 20px;
    }
    @media (max-width: 680px) { .quotes-masonry { columns: 1; } }

    .quote-card {
      break-inside: avoid;
      margin-bottom: 20px;
      background: var(--deep);
      border: 1px solid var(--warm);
      border-left: 3px solid var(--blood);
      padding: 20px 20px 16px;
      transition: border-color 0.25s;
      contain: layout paint;
      content-visibility: auto;
      contain-intrinsic-size: 220px;
    }
    .quote-card:hover { border-left-color: var(--gold); }
    .quote-card[data-char="sam"] { border-left-color: #3a5a8b; }
    .quote-card[data-char="sam"]:hover { border-left-color: #6a9adb; }
    .quote-card[data-char="cas"] { border-left-color: #3a5a3a; }
    .quote-card[data-char="cas"]:hover { border-left-color: #6abd6a; }
    .quote-card[data-char="bobby"] { border-left-color: #6a4a1a; }
    .quote-card[data-char="bobby"]:hover { border-left-color: var(--gold); }
    .quote-card.hidden { display: none; }

    .quote-text {
      font-family: 'PT Serif', serif;
      font-style: italic;
      font-size: 1rem;
      line-height: 1.85;
      color: var(--cream);
      margin-bottom: 14px;
      position: relative;
    }
    .quote-text::before {
      content: '\201C';
      font-size: 3rem;
      color: var(--blood);
      opacity: 0.4;
      line-height: 0;
      position: absolute;
      left: -6px;
      top: 14px;
      font-family: Georgia, serif;
    }

    .quote-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .quote-author {
      font-family: 'Prata', serif;
      font-size: 0.65rem;
      color: var(--gold-dim);
      letter-spacing: 0.1em;
    }

    .quote-season-tag {
      font-size: 0.62rem;
      font-family: 'Prata', serif;
      color: var(--cream-soft);
      opacity: 0.75;
    }

    @media (max-width: 768px) {
      .poster-panel { position: static; }

      .site-header {
        padding-left: 16px;
        padding-right: 16px;
      }

      .site-header::before {
        width: 320px;
        height: 320px;
        top: -70px;
      }

      .main-tab-btn {
        font-size: 0.64rem;
        padding: 14px 18px 12px;
      }

      .player-controls { padding: 10px 12px; }

      .player-options {
        width: 100%;
        justify-content: space-between;
        gap: 12px;
      }

      .reactions {
        padding: 9px 10px 10px;
      }

      .reactions__track {
        gap: 6px;
      }

      .reaction-btn {
        min-width: 64px;
        min-height: 36px;
        padding: 6px 8px;
        border-radius: 11px;
      }

      .reaction-btn__emoji { font-size: 1rem; }

      .reaction-btn__count {
        min-width: 22px;
        height: 18px;
        padding: 0 5px;
        font-size: 0.58rem;
      }

      .rating-block {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 10px;
      }

      .rating-ring {
        width: 54px;
        height: 54px;
        font-size: 0.92rem;
      }

      .vote-btns {
        width: 100%;
        justify-content: flex-start;
      }

      .vote-btns .vote-btn {
        min-width: 86px;
        height: 32px;
        padding: 0 9px;
      }

      .season-page-nav {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 20px;
      }

      .season-page-nav__link--prev,
      .season-page-nav__link--next {
        justify-self: stretch;
      }

      .season-page-nav__all {
        order: -1;
        min-width: 0;
      }

      .season-panel { padding: 12px; }

      .season-btn {
        font-size: 0.86rem;
        padding: 10px;
      }

      .sect-title {
        margin: 36px 0 16px;
        padding-bottom: 10px;
      }

      .seasons-grid,
      .characters-section,
      .quotes-section {
        padding: 28px 0;
      }

      .seasons-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .facts-grid {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .cta-block { padding: 22px 18px; }
    }

    @media (max-width: 560px) {
      .main-tab-btn {
        letter-spacing: 0.09em;
        padding: 13px 16px 11px;
      }

      .player-frame { height: clamp(220px, 56vw, 300px); }

      .reactions {
        padding: 8px 8px 9px;
      }

      .reactions__track {
        gap: 5px;
      }

      .reaction-btn {
        min-width: 58px;
        min-height: 34px;
        padding: 5px 6px;
        border-radius: 10px;
      }

      .reaction-btn__emoji { font-size: 0.96rem; }

      .reaction-btn__count {
        min-width: 20px;
        height: 17px;
        font-size: 0.56rem;
      }

      .vote-btns {
        gap: 6px;
      }

      .vote-btns .vote-btn {
        flex: 1 1 calc(50% - 3px);
        min-width: 0;
      }

      .season-card-header { flex-direction: column; }

      .season-card-poster {
        width: 100%;
        min-height: 120px;
      }

      .season-card-body {
        border-left: none;
        border-top: 1px solid var(--warm);
      }

      .char-card-top { flex-direction: column; }

      .char-avatar {
        width: 100%;
        height: 64px;
        border-right: none;
        border-bottom: 1px solid var(--warm);
        font-size: 1.7rem;
      }

      .quote-card { padding: 16px 16px 14px; }

      .quote-text {
        font-size: 0.95rem;
        line-height: 1.75;
      }

      .feature-list li,
      .season-card-desc,
      .char-bio,
      .faq-answer,
      .fact-card,
      .characters-intro {
        color: var(--cream);
      }

      .season-card-meta,
      .season-card-episodes,
      .char-actor,
      .quote-season-tag {
        color: var(--cream-soft);
        opacity: 0.92;
      }

      .page-intro,
      .full-content p {
        font-size: 0.95rem;
        line-height: 1.8;
      }
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

