
/* ─── CARD ───────────────────────────────────────────────── */
    .card {
      break-inside: avoid;
      margin-bottom: 12px;
      border-radius: var(--r);
      overflow: hidden;
      background: var(--white);
      cursor: pointer;
      display: block;
      transition: transform .22s cubic-bezier(.4,0,.2,1), box-shadow .22s;
      text-decoration: none;
      color: inherit;
    }

    .card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 32px rgba(0,0,0,.11);
    }

    .card-img-wrap {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #e8e8e8;
    }

    .card-img-wrap img {
      width: 100%;
      display: block;
      object-fit: cover;
      object-position: top;
      transition: transform .35s;
    }

    .card:hover .card-img-wrap img { transform: scale(1.04); }

    /* Stat overlay */
    .stat-overlay {
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.58);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 18px;
      padding: 20px 16px;
      text-align: center;
      color: #fff;
    }

    .stat-overlay-title {
      font-size: 17px;
      font-weight: 600;
      line-height: 1.35;
      letter-spacing: .01em;
    }

    .stat-overlay-text {
      font-size: 21px;
      font-weight: 400;
      line-height: 1.45;
    }

    /* Video play badge */
    .vbadge {
      position: absolute;
      bottom: 8px;
      right: 8px;
      display: flex;
      align-items: center;
      gap: 3px;
      background: rgba(0,0,0,.54);
      color: #fff;
      font-size: 11px;
      font-weight: 500;
      padding: 2px 7px 2px 5px;
      border-radius: 4px;
      backdrop-filter: blur(4px);
    }

    /* ── Card component — mobile (phones 360–430px) ── */
    @media (max-width: 600px) {
      .card-img-wrap img { max-height: 340px; }

      /* Tighten vbadge so it stays readable at ~140px card width */
      .vbadge {
        font-size: 9px;
        padding: 2px 5px 2px 4px;
        gap: 2px;
        bottom: 5px;
        right: 5px;
      }

      /* Nameplate overlay: shrink text to fit narrow masonry cards */
      .card-overlay {
        padding: 16px 8px 8px;
      }

      .card-overlay-name {
        font-size: 13px;
        font-weight: 700;
        /* Allow a long name to wrap rather than overflow */
        word-break: break-word;
        overflow-wrap: break-word;
      }

      .card-overlay-rank {
        font-size: 10px;
        margin-top: 2px;
        /* Clip overflow on very narrow cards */
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }
    }


    /* ─── ABOUT PAGE ─────────────────────────────────────────── */
    .about-page {
      max-width: 680px;
      margin: 0 auto;
      padding: 60px 24px 80px;
      text-align: center;
      color: var(--white);
    }

    .about-hero-title {
      font-size: clamp(52px, 8vw, 80px);
      font-weight: 900;
      color: var(--red);
      line-height: 1;
      letter-spacing: -2px;
      margin-bottom: 8px;
    }

    .about-hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,.55);
      letter-spacing: 2.5px;
      text-transform: uppercase;
      margin-bottom: 36px;
    }

    .about-headline {
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 52px;
    }

    .about-stats {
      display: flex;
      justify-content: center;
      margin-bottom: 52px;
    }

    .about-stat {
      flex: 1;
      padding: 0 20px;
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255,255,255,.65);
      border-right: 1px solid rgba(255,255,255,.12);
    }

    .about-stat:last-child { border-right: none; }

    .about-stat strong {
      display: block;
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 4px;
    }

    .about-divider {
      border: none;
      border-top: 2px solid var(--red);
      margin: 0 0 52px;
    }

    .about-quote {
      font-style: italic;
      font-size: 16px;
      line-height: 1.75;
      color: rgba(255,255,255,.75);
      margin-bottom: 8px;
    }

    .about-quote-attr {
      font-size: 13px;
      color: rgba(255,255,255,.38);
      margin-bottom: 40px;
      text-align: right;
    }

    .about-chart-intro {
      font-size: 14px;
      color: rgba(255,255,255,.6);
      max-width: 440px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }

    .about-chart-wrap {
      position: relative;
      width: 280px;
      margin: 0 auto 20px;
    }

    .about-chart-label {
      position: absolute;
      font-size: 20px;
      font-weight: 800;
      top: 50%;
      transform: translateY(-50%);
    }

    .about-chart-label--99 { right: -56px; color: var(--red); }
    .about-chart-label--01 { left: -56px; color: rgba(255,255,255,.4); }

    .about-chart-label span {
      display: block;
      font-size: 11px;
      font-weight: 400;
      letter-spacing: 1px;
      margin-top: 2px;
    }

    .about-chart-caption {
      font-size: 14px;
      color: rgba(255,255,255,.5);
      line-height: 2.2;
      margin-bottom: 0;
    }

    .about-closing {
      font-size: clamp(22px, 3.5vw, 34px);
      font-weight: 700;
      line-height: 1.4;
      margin: 0 auto 56px;
    }

    .about-cta {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px;
      padding: 48px 32px;
    }

    .about-cta-headline {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .about-cta-sub {
      font-size: 15px;
      color: rgba(255,255,255,.5);
      margin-bottom: 28px;
      line-height: 1.6;
    }

    .about-cta-btn {
      display: inline-block;
      padding: 14px 44px;
      background: var(--red);
      color: #fff;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: opacity .15s, transform .15s;
    }

    .about-cta-btn:hover { opacity: .88; transform: translateY(-1px); }

    /* ─── DONATE — shared ───────────────────────────────────── */

    .donate-title {
      font-size: 38px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.5px;
    }

    /* ─── DONATE — main page ─────────────────────────────────── */

    .donate-page {
      max-width: 860px;
      margin: 0 auto;
      padding: 48px 24px 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
    }

    .donate-hero-center {
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
      max-width: 620px;
    }

    .donate-desc {
      font-size: 15px;
      color: rgba(255,255,255,.5);
      line-height: 1.7;
    }

    .donate-desc strong { color: rgba(255,255,255,.9); font-weight: 700; }

    .donate-desc--dim { color: rgba(255,255,255,.38); }

    .donate-tiers {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      width: 100%;
    }

    .donate-tier {
      background: rgba(0,0,0,.22);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px;
      padding: 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      position: relative;
      transition: border-color .18s;
    }

    .donate-tier:hover { border-color: rgba(255,255,255,.22); }

    .donate-tier--featured {
      border-color: var(--red);
      background: rgba(255,36,66,.06);
    }

    .donate-tier--featured:hover { border-color: var(--red); }

    .donate-tier-badge {
      position: absolute;
      top: -11px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--red);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 3px 12px;
      border-radius: 20px;
      white-space: nowrap;
    }

    .donate-tier-amt {
      font-size: 38px;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }

    .donate-tier-amt span { font-size: 14px; font-weight: 500; color: rgba(255,255,255,.45); }

    .donate-tier-name {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: rgba(255,255,255,.5);
    }

    .donate-tier-perks {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
      margin-top: 4px;
    }

    .donate-tier-perks li {
      font-size: 13px;
      color: rgba(255,255,255,.65);
      padding-left: 18px;
      position: relative;
    }

    .donate-tier-perks li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--red);
      font-weight: 700;
    }

    .donate-btn {
      margin-top: 8px;
      padding: 11px 0;
      border-radius: 6px;
      border: 1.5px solid rgba(255,255,255,.2);
      background: transparent;
      color: rgba(255,255,255,.8);
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      transition: all .15s;
    }

    .donate-btn:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.06); }
    .donate-btn--featured { background: var(--red); border-color: var(--red); color: #fff; }
    .donate-btn--featured:hover { background: #e0001f; border-color: #e0001f; }

    .donate-onetime-row {
      font-size: 14px;
      color: rgba(255,255,255,.45);
    }

    .donate-onetime-link {
      color: var(--red);
      text-decoration: none;
      font-weight: 600;
    }

    .donate-onetime-link:hover { text-decoration: underline; }

    .donate-mission {
      max-width: 520px;
      text-align: center;
      font-size: 13px;
      color: rgba(255,255,255,.32);
      line-height: 1.65;
      padding-top: 8px;
      border-top: 1px solid rgba(255,255,255,.07);
    }

    /* ─── DONATE — one-time form page ───────────────────────── */

    .donate-ot-page {
      max-width: 500px;
      margin: 0 auto;
      padding: 48px 24px 80px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .donate-form-wrap {
      width: 100%;
      background: rgba(0,0,0,.3);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 8px;
      padding: 24px 24px 20px;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .donate-steps {
      display: flex;
      align-items: center;
    }

    .donate-step { display: flex; align-items: center; gap: 7px; flex-shrink: 0; }

    .donate-step-num {
      width: 22px; height: 22px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      color: rgba(255,255,255,.35);
      flex-shrink: 0;
    }

    .donate-step--active .donate-step-num { border-color: var(--red); background: var(--red); color: #fff; }

    .donate-step-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.3); white-space: nowrap; }
    .donate-step--active .donate-step-label { color: rgba(255,255,255,.85); }

    .donate-step-line { flex: 1; height: 1px; background: rgba(255,255,255,.12); margin: 0 8px; }

    .donate-toggle {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 4px;
      overflow: hidden;
    }

    .donate-toggle-btn {
      padding: 10px 0;
      background: transparent;
      border: none;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .8px;
      color: rgba(255,255,255,.4);
      cursor: pointer;
      transition: background .15s, color .15s;
    }

    .donate-toggle-active { background: var(--red); color: #fff; }

    .donate-amount-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); margin-bottom: -8px; }

    .donate-amounts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .donate-amt-btn {
      padding: 11px 0;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 4px;
      font-size: 15px;
      font-weight: 700;
      color: rgba(255,255,255,.65);
      cursor: pointer;
      transition: all .12s;
    }

    .donate-amt-btn:hover { border-color: var(--red); color: #fff; }
    .donate-amt-active { background: var(--red); border-color: var(--red); color: #fff; }

    .donate-amt-custom {
      padding: 11px 12px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 4px;
      font-size: 15px;
      font-weight: 700;
      color: rgba(255,255,255,.7);
      outline: none;
      transition: border-color .12s;
    }

    .donate-amt-custom:focus { border-color: var(--red); }
    .donate-amt-custom::placeholder { color: rgba(255,255,255,.28); }

    .donate-checks { display: flex; flex-direction: column; gap: 8px; }

    .donate-check-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: rgba(255,255,255,.5);
      cursor: pointer;
      user-select: none;
    }

    .donate-check-item input[type="checkbox"] { width: 14px; height: 14px; accent-color: var(--red); cursor: pointer; }

    .donate-next-btn {
      width: 100%;
      padding: 14px 0;
      background: var(--red);
      border: none;
      border-radius: 4px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: 1px;
      color: #fff;
      cursor: pointer;
      transition: opacity .15s;
    }

    .donate-next-btn:hover { opacity: .88; }

    .donate-share {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
    }

    .donate-share-label { font-size: 11px; font-weight: 700; letter-spacing: .8px; color: rgba(255,255,255,.35); }

    .donate-share-link {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,.4);
      text-decoration: none;
      transition: color .12s;
    }

    .donate-share-link:hover { color: var(--red); }

    .donate-back-link {
      font-size: 13px;
      color: rgba(255,255,255,.38);
      text-decoration: none;
      transition: color .12s;
    }

    .donate-back-link:hover { color: var(--red); }

    @media (max-width: 700px) {
      /* Donate — tiers stack to single column */
      .donate-tiers { grid-template-columns: 1fr; }

      /* Donate — main page padding tightened */
      .donate-page { padding: 32px 16px 60px; }

      /* Donate — one-time form page */
      .donate-ot-page { padding: 32px 16px 60px; }

      /* Donate — form inner padding tightened */
      .donate-form-wrap { padding: 20px 16px 16px; }

      /* Donate — title scales down */
      .donate-title { font-size: 28px; }

      /* Donate — tier price scales down */
      .donate-tier-amt { font-size: 30px; }

      /* Donate — ensure tap targets meet 44px minimum */
      .donate-btn { padding: 13px 0; min-height: 44px; }
      .donate-amt-btn { padding: 13px 0; min-height: 44px; }
      .donate-amt-custom { padding: 13px 12px; min-height: 44px; }

      /* Donate — step labels may be cramped; shrink slightly */
      .donate-step-label { font-size: 10px; letter-spacing: 0; }
      .donate-step-line { margin: 0 4px; }
    }

    /* ─── ABOUT PAGE — mobile ───────────────────────────────── */
    @media (max-width: 480px) {
      /* Reduce generous vertical padding on small screens */
      .about-page { padding: 36px 20px 56px; }

      /* Hero title: clamp floor (52px) is too tall at 360px; drop to ~36px floor */
      .about-hero-title { font-size: clamp(36px, 9vw, 52px); letter-spacing: -1px; }

      /* Reduce large bottom margins to save vertical space */
      .about-headline { margin-bottom: 36px; }
      .about-closing  { margin-bottom: 40px; }

      /* Stats row: tighten horizontal padding so 3 cols fit at 360px */
      .about-stat { padding: 0 10px; font-size: 12px; }
      .about-stat strong { font-size: 18px; }

      /* Chart labels use absolute negative offsets (-56px) that clip at narrow widths;
         pull them in so they don't escape the viewport */
      .about-chart-label--99 { right: -44px; font-size: 17px; }
      .about-chart-label--01 { left:  -44px; font-size: 17px; }

      /* CTA box: ease the horizontal padding */
      .about-cta { padding: 32px 20px; border-radius: 12px; }
      .about-cta-headline { font-size: 22px; }

      /* CTA button: ensure full-width on small screens for easy tap */
      .about-cta-btn {
        display: block;
        width: 100%;
        padding: 14px 24px;
        box-sizing: border-box;
        text-align: center;
      }
    }

    /* ─── COMMUNITY FORUM ────────────────────────────────────── */
    .cf-wrap {
      display: grid;
      grid-template-columns: 1fr 280px;
      gap: 0 20px;
      padding: 20px 20px 60px;
      align-items: start;
    }

    /* ── Left nav ── */
    .cf-leftnav {
      position: sticky;
      top: 72px;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      max-height: calc(100vh - 80px);
      padding-bottom: 24px;
    }

    .cf-navitem {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 8px 12px;
      border-radius: 2px;
      font-size: 14px;
      font-weight: 500;
      color: rgba(255,255,255,.75);
      cursor: pointer;
      text-decoration: none;
      transition: background .12s, color .12s;
      white-space: nowrap;
    }

    .cf-navitem:hover { background: rgba(255,255,255,.08); color: #fff; }

    .cf-navitem.cf-active {
      background: rgba(255,255,255,.1);
      color: #fff;
      font-weight: 700;
    }

    .cf-navitem svg { flex-shrink: 0; }

    .cf-navitem--sm {
      font-size: 13px;
      padding: 6px 12px;
      font-weight: 400;
      color: rgba(255,255,255,.55);
    }

    .cf-navitem--bold {
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      padding: 7px 12px;
    }

    .cf-navitem--link {
      font-size: 14px;
      font-weight: 400;
      color: #6fb3f2;
      padding: 6px 12px;
    }

    .cf-navitem--link:hover { color: #9ecfff; background: rgba(255,255,255,.06); }

    .cf-nav-divider {
      height: 1px;
      background: rgba(255,255,255,.1);
      margin: 8px 0;
    }

    .cf-nav-hdr {
      padding: 12px 12px 4px;
      font-size: 15px;
      font-weight: 700;
      color: rgba(255,255,255,.9);
    }

    .cf-nav-footer {
      padding: 16px 12px 0;
      font-size: 11px;
      color: rgba(255,255,255,.28);
      line-height: 1.7;
    }

    .cf-beta {
      font-size: 10px;
      background: #ff4500;
      color: #fff;
      padding: 1px 5px;
      border-radius: 3px;
      margin-left: 4px;
      font-weight: 700;
    }

    /* ── Sort bar ── */
    .cf-sortbar {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 12px 16px;
      margin-bottom: 6px;
    }

    .cf-sort-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      border-radius: 20px;
      background: transparent;
      border: none;
      font-size: 14px;
      font-weight: 700;
      color: rgba(255,255,255,.75);
      cursor: pointer;
      transition: background .12s, color .12s;
    }

    .cf-sort-btn:hover { background: rgba(255,255,255,.08); color: #fff; }
    .cf-sort-btn.cf-active { background: rgba(255,255,255,.1); color: #fff; }

    /* ── Sort dropdown ── */
    .cf-dropdown {
      position: relative;
    }

    .cf-dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 6px);
      left: 0;
      background: #fff;
      border-radius: 6px;
      box-shadow: 0 4px 20px rgba(0,0,0,.3);
      min-width: 160px;
      z-index: 50;
      overflow: hidden;
    }

    .cf-dropdown-menu.open { display: block; }

    .cf-dropdown-item {
      padding: 10px 16px;
      font-size: 14px;
      color: #4a90d9;
      cursor: pointer;
      transition: background .12s;
    }

    .cf-dropdown-item:hover { background: #f0f6ff; }

    .cf-dropdown-item--active {
      color: #1a6abf;
      font-weight: 600;
    }

    /* ── Category checkbox dropdown ── */
    .cf-cat-menu { min-width: 220px; padding-bottom: 10px; }

    .cf-cat-hdr {
      padding: 12px 16px 8px;
      font-size: 15px;
      font-weight: 700;
      color: #1a1a1a;
    }

    .cf-cat-rule {
      height: 1px;
      background: #e0e0e0;
      margin: 0 16px 6px;
    }

    .cf-cat-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px 16px;
      cursor: pointer;
      font-size: 14px;
      color: #333;
      transition: background .12s;
      user-select: none;
    }

    .cf-cat-item:hover { background: #f0f6ff; }

    .cf-cat-check {
      width: 16px;
      height: 16px;
      border-radius: 4px;
      border: 1.5px solid #bbb;
      cursor: pointer;
      appearance: none;
      -webkit-appearance: none;
      flex-shrink: 0;
      transition: background .12s, border-color .12s;
      position: relative;
    }

    .cf-cat-check:checked {
      background: #4a90d9;
      border-color: #4a90d9;
    }

    .cf-cat-check:checked::after {
      content: '';
      position: absolute;
      left: 4px;
      top: 1px;
      width: 5px;
      height: 9px;
      border: 2px solid #fff;
      border-top: none;
      border-left: none;
      transform: rotate(45deg);
    }

    /* ── Post cards ── */
    .cf-post {
      background: rgba(0,0,0,.18);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 4px;
      margin-bottom: 10px;
      overflow: hidden;
      cursor: pointer;
      transition: border-color .15s;
    }

    .cf-post:hover { border-color: rgba(255,255,255,.24); }

    .cf-post-meta {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 12px 4px;
    }

    .cf-post-avatar {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      flex-shrink: 0;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 700;
      color: #fff;
    }

    .cf-post-avatar img { width: 100%; height: 100%; object-fit: cover; }

    .cf-post-community {
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,.85);
    }

    .cf-post-dot {
      width: 3px; height: 3px;
      border-radius: 50%;
      background: rgba(255,255,255,.3);
      flex-shrink: 0;
    }

    .cf-post-time { font-size: 12px; color: rgba(255,255,255,.45); }

    .cf-post-join {
      margin-left: auto;
      padding: 3px 14px;
      border-radius: 20px;
      border: 1.5px solid #0079d3;
      background: transparent;
      color: #0079d3;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: all .15s;
      flex-shrink: 0;
    }

    .cf-post-join:hover { background: #0079d3; color: #fff; }

    .cf-post-more {
      background: none;
      border: none;
      color: rgba(255,255,255,.45);
      cursor: pointer;
      font-size: 16px;
      padding: 0 4px;
      flex-shrink: 0;
      letter-spacing: 1px;
    }

    .cf-post-title {
      padding: 4px 12px 10px;
      font-size: 18px;
      font-weight: 700;
      color: rgba(255,255,255,.9);
      line-height: 1.4;
    }

    .cf-post-img-wrap {
      position: relative;
      width: 100%;
      background: #000;
      overflow: hidden;
    }

    .cf-post-img-wrap img {
      width: 100%;
      max-height: 512px;
      object-fit: cover;
      display: block;
    }

    .cf-img-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(0,0,0,.55);
      border: none;
      color: #fff;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .15s;
    }

    .cf-img-nav:hover { background: rgba(0,0,0,.8); }
    .cf-img-nav--l { left: 8px; }
    .cf-img-nav--r { right: 8px; }

    .cf-img-dots {
      position: absolute;
      bottom: 8px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 5px;
    }

    .cf-img-dot {
      width: 6px; height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,.4);
    }

    .cf-img-dot.on { background: #fff; }

    .cf-post-actions {
      display: flex;
      align-items: center;
      gap: 2px;
      padding: 6px 8px;
    }

    .cf-votes {
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,.06);
      border-radius: 2px;
      overflow: hidden;
      margin-right: 2px;
    }

    .cf-vote-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255,255,255,.5);
      padding: 6px 8px;
      font-size: 13px;
      transition: color .12s, background .12s;
    }

    .cf-vote-btn:hover { color: var(--red); background: rgba(255,36,66,.1); }

    .cf-vote-count {
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,.85);
      padding: 0 4px;
      min-width: 32px;
      text-align: center;
    }

    .cf-action-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 6px 10px;
      border-radius: 2px;
      background: transparent;
      border: none;
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,.55);
      cursor: pointer;
      transition: background .12s, color .12s;
    }

    .cf-action-btn:hover { background: rgba(255,255,255,.08); color: #fff; }

    .cf-promoted {
      display: flex;
      align-items: center;
      gap: 4px;
      font-size: 11px;
      color: rgba(255,255,255,.38);
      padding: 8px 12px 2px;
    }

    .cf-post-ad-body {
      padding: 4px 12px 10px;
      font-size: 14px;
      color: rgba(255,255,255,.72);
      line-height: 1.55;
    }

    .cf-signup-btn {
      margin-left: auto;
      padding: 6px 18px;
      border-radius: 20px;
      background: var(--red);
      color: #fff;
      border: none;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .15s;
    }

    .cf-signup-btn:hover { opacity: .88; }

    /* ─── PINNED QUICK ACCESS ───────────────────────────────── */

    .pqa-section { margin-bottom: 20px; }

    .pqa-header {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }

    .pqa-label {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: rgba(255,255,255,.4);
    }

    .pqa-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
    }

    .pqa-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 12px;
      padding: 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 7px;
      transition: border-color .2s, background .2s, transform .2s cubic-bezier(.4,0,.2,1);
    }

    .pqa-card:hover {
      border-color: rgba(255,36,66,.3);
      background: rgba(255,36,66,.04);
      transform: translateY(-2px);
    }

    .pqa-card__top {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .pqa-badge {
      font-size: 9px;
      font-weight: 800;
      letter-spacing: .08em;
      padding: 2px 8px;
      border-radius: 20px;
      text-transform: uppercase;
    }

    .pqa-badge--pin    { background: rgba(255,36,66,.15);  color: var(--red); }
    .pqa-badge--fire   { background: rgba(255,120,0,.15);  color: #ff7800; }
    .pqa-badge--active { background: rgba(0,200,100,.15);  color: #00c864; }
    .pqa-badge--live   { background: rgba(100,160,255,.15); color: #64a0ff; }

    .pqa-card__icon { color: var(--red); opacity: .75; }

    .pqa-card__title {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      line-height: 1.3;
    }

    .pqa-card__desc {
      font-size: 11px;
      color: rgba(255,255,255,.42);
      line-height: 1.5;
      flex: 1;
    }

    .pqa-card__foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: 2px;
    }

    .pqa-card__meta {
      font-size: 10px;
      color: rgba(255,255,255,.28);
      white-space: nowrap;
    }

    .pqa-btn {
      font-size: 10px;
      font-weight: 700;
      color: var(--red);
      background: rgba(255,36,66,.1);
      border: 1px solid rgba(255,36,66,.22);
      border-radius: 20px;
      padding: 4px 10px;
      cursor: pointer;
      transition: background .15s, border-color .15s;
      white-space: nowrap;
    }

    .pqa-btn:hover {
      background: rgba(255,36,66,.22);
      border-color: var(--red);
    }

    @media (max-width: 960px) {
      .pqa-row { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 560px) {
      .pqa-row { grid-template-columns: 1fr; }
    }

    /* ─── DIRECTORY CARDS (Layer 1) ─────────────────────────── */

    .dir-cards {
      display: flex;
      flex-direction: column;
      gap: 8px;
      padding: 8px 0;
    }

    .dir-card {
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 4px;
      overflow: hidden;
      background: rgba(0,0,0,.18);
      transition: border-color .15s;
    }

    .dir-card:hover { border-color: rgba(255,255,255,.22); }

    .dir-card-hdr {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 13px 18px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 700;
      color: rgba(255,255,255,.9);
      user-select: none;
      transition: background .12s;
    }

    .dir-card-hdr:hover { background: rgba(255,255,255,.05); }

    .dir-card.dir-open .dir-card-hdr {
      background: rgba(255,255,255,.06);
      color: #fff;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .dir-card-arrow {
      color: rgba(255,255,255,.45);
      flex-shrink: 0;
      transition: transform .22s ease, color .15s;
    }

    .dir-card.dir-open .dir-card-arrow {
      transform: rotate(180deg);
      color: #4a8fe8;
    }

    .dir-card-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height .28s ease;
    }

    .dir-card.dir-open .dir-card-body {
      max-height: 400px;
    }

    .dir-card-link {
      display: block;
      padding: 9px 18px 9px 24px;
      font-size: 13px;
      color: #4a8fe8;
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,.04);
      transition: background .1s, color .1s;
    }

    .dir-card-link:last-child { border-bottom: none; }
    .dir-card-link:hover { background: rgba(74,143,232,.1); color: #7ab8f5; }

    /* ─── COMMUNITY FORUM LAYER 1 SIDEBAR (cfl-) ────────────── */

    .cfl-location {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: rgba(0,0,0,.25);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 4px;
      font-size: 15px;
      font-weight: 700;
      color: #4a8fe8;
      cursor: pointer;
      transition: border-color .15s;
    }

    .cfl-location:hover { border-color: #4a8fe8; }

    .cfl-widget {
      background: rgba(0,0,0,.2);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 4px;
      overflow: hidden;
    }

    .cfl-explore-btn {
      display: block;
      width: 100%;
      padding: 9px 14px;
      background: #3a3a3a;
      color: rgba(255,255,255,.85);
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,.06);
      transition: background .12s;
      box-sizing: border-box;
    }

    .cfl-explore-btn:hover { background: #444; }

    .cfl-calendar {
      padding: 10px 12px;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .cfl-cal-hdr {
      font-size: 12px;
      font-weight: 700;
      color: #4a8fe8;
      margin-bottom: 8px;
      text-align: center;
    }

    .cfl-cal-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 12px;
    }

    .cfl-cal-table th {
      color: rgba(255,255,255,.7);
      font-weight: 600;
      text-align: center;
      padding: 2px 0 4px;
    }

    .cfl-cal-table td {
      color: #4a8fe8;
      text-align: center;
      padding: 3px 0;
      cursor: pointer;
      border-radius: 2px;
      transition: background .1s;
    }

    .cfl-cal-table td:hover { background: rgba(74,143,232,.15); }

    .cfl-links {
      padding: 8px 0;
    }

    .cfl-link {
      display: block;
      padding: 5px 14px;
      font-size: 13px;
      color: #4a8fe8;
      text-decoration: none;
      transition: background .1s;
      cursor: pointer;
    }

    .cfl-link:hover { background: rgba(255,255,255,.05); }

    .cfl-rule {
      height: 1px;
      background: rgba(255,255,255,.07);
      margin: 4px 0;
    }

    .cfl-section-hdr {
      padding: 5px 14px;
      font-size: 13px;
      color: rgba(255,255,255,.55);
      font-weight: 500;
    }

    .cfl-loc-link {
      display: block;
      padding: 4px 14px;
      font-size: 13px;
      color: #4a8fe8;
      text-decoration: none;
      transition: background .1s;
    }

    .cfl-loc-link:hover { background: rgba(255,255,255,.05); }

    .cfl-loc-rule {
      height: 1px;
      background: rgba(255,255,255,.06);
      margin: 0 14px;
    }

    /* ─── COMMUNITY FORUM LAYER 3 LIST (cff-) ───────────────── */

    .cff-entries {
      display: flex;
      flex-direction: column;
      border-top: 1px solid rgba(255,255,255,.08);
      margin-top: 4px;
    }

    .cff-entry {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 9px 4px;
      border-bottom: 1px solid rgba(255,255,255,.06);
      transition: background .15s;
    }

    .cff-entry:hover { background: rgba(255,255,255,.04); }

    .cff-thumb {
      flex-shrink: 0;
      width: 100px;
      height: 68px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 4px;
    }

    .cff-content {
      display: flex;
      flex-direction: column;
      gap: 3px;
      flex: 1;
      min-width: 0;
    }

    .cff-loc {
      font-size: 12px;
      color: rgba(255,255,255,.4);
      letter-spacing: .01em;
    }

    .cff-row {
      display: flex;
      align-items: baseline;
      gap: 6px;
      min-width: 0;
    }

    .cff-star {
      flex-shrink: 0;
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255,255,255,.3);
      font-size: 13px;
      padding: 0;
      line-height: 1;
      transition: color .15s;
    }

    .cff-star:hover { color: var(--red); }
    .cff-star--saved { color: var(--red); }

    .cff-title {
      flex: 1;
      font-size: 14px;
      color: rgba(255,255,255,.82);
      text-decoration: none;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      transition: color .15s;
      min-width: 0;
    }

    .cff-title:hover { color: var(--red); }

    .cff-date {
      flex-shrink: 0;
      font-size: 12px;
      color: rgba(255,255,255,.32);
      margin-left: 8px;
    }

    /* ─── LIGHTBOX EVIDENCE CARD (lb-evidence) ──────────────── */

    .lb-evidence {
      margin: 4px 16px 8px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(0,0,0,.1);
      box-shadow: 0 2px 12px rgba(0,0,0,.08);
    }

    .lb-evidence__img {
      width: 100%;
      display: block;
      object-fit: cover;
      object-position: top;
      max-height: 320px;
    }

    .lb-evidence__caption {
      padding: 8px 12px 9px;
      font-size: 11px;
      color: var(--muted);
      font-style: italic;
      background: #f7f7f7;
      line-height: 1.4;
    }

    /* ─── FEED CONTEXT BANNER (ccb-) ────────────────────────── */

    .ccb {
      background: linear-gradient(135deg, rgba(42,10,21,.55) 0%, rgba(28,28,28,.9) 100%);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 8px;
      padding: 20px 22px 16px;
      margin-bottom: 16px;
    }

    .ccb__head {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 14px;
    }

    .ccb__icon {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 11px;
      font-weight: 900;
      color: #fff;
      letter-spacing: -.5px;
      border: 2px solid rgba(255,255,255,.15);
    }

    .ccb__info { flex: 1; }

    .ccb__name {
      font-size: 18px;
      font-weight: 800;
      color: #fff;
      letter-spacing: -.3px;
      margin-bottom: 6px;
    }

    .ccb__desc {
      font-size: 12px;
      color: rgba(255,255,255,.48);
      line-height: 1.55;
      max-width: 520px;
    }

    .ccb__join {
      flex-shrink: 0;
      padding: 7px 20px;
      border-radius: 20px;
      background: var(--red);
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      border: none;
      cursor: pointer;
      transition: opacity .15s;
      margin-top: 2px;
    }

    .ccb__join:hover { opacity: .88; }

    .ccb__meta {
      display: flex;
      align-items: center;
      gap: 0;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,.07);
    }

    .ccb__stat {
      display: flex;
      flex-direction: column;
      padding: 0 18px 0 0;
    }

    .ccb__stat-val {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
    }

    .ccb__stat-val--live { color: #00c864; }

    .ccb__stat-lbl {
      font-size: 10px;
      color: rgba(255,255,255,.32);
      margin-top: 1px;
    }

    .ccb__stat-divider {
      width: 1px;
      height: 28px;
      background: rgba(255,255,255,.1);
      margin-right: 18px;
      flex-shrink: 0;
    }

    /* ─── COMMUNITY RULES WIDGET (fr-) ──────────────────────── */

    .fr-widget {
      background: rgba(0,0,0,.2);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 4px;
      overflow: hidden;
      border-top: 2px solid var(--red);
      margin-top: 12px;
    }

    .fr-widget__head {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 10px 14px;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      letter-spacing: .03em;
      background: rgba(255,36,66,.06);
      border-bottom: 1px solid rgba(255,255,255,.07);
    }

    .fr-widget__head svg { color: var(--red); flex-shrink: 0; }

    .fr-rules {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .fr-rule {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 9px 14px;
      border-bottom: 1px solid rgba(255,255,255,.05);
      cursor: default;
      transition: background .1s;
    }

    .fr-rule:last-child { border-bottom: none; }
    .fr-rule:hover { background: rgba(255,255,255,.03); }

    .fr-rule__num {
      font-size: 11px;
      font-weight: 800;
      color: var(--red);
      flex-shrink: 0;
      width: 14px;
      margin-top: 2px;
      opacity: .85;
    }

    .fr-rule__title {
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,.82);
      margin-bottom: 2px;
    }

    .fr-rule__desc {
      font-size: 11px;
      color: rgba(255,255,255,.36);
      line-height: 1.45;
    }

    .fr-widget__footer {
      display: block;
      padding: 9px 14px;
      font-size: 11px;
      font-weight: 600;
      color: var(--red);
      text-decoration: none;
      border-top: 1px solid rgba(255,255,255,.06);
      background: rgba(255,36,66,.04);
      transition: background .12s;
      letter-spacing: .01em;
    }

    .fr-widget__footer:hover { background: rgba(255,36,66,.1); }

    /* ─── FORUM POST VIEW — LAYER 3 (fp-) ───────────────────── */

    .fp-breadcrumb {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 10px 0 14px;
      font-size: 13px;
    }

    .fp-bc-link {
      color: rgba(255,255,255,.45);
      text-decoration: none;
      transition: color .12s;
    }

    .fp-bc-link:hover { color: var(--red); }

    .fp-bc-sep { color: rgba(255,255,255,.25); }

    .fp-bc-current {
      color: var(--red);
      font-weight: 600;
    }

    /* ── Post block ── */
    .fp-post {
      background: rgba(0,0,0,.18);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 4px;
      padding: 18px 20px 14px;
      margin-bottom: 10px;
    }

    .fp-post-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 12px;
    }

    .fp-avatar {
      width: 28px; height: 28px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 900;
      color: #fff;
    }

    .fp-meta-info {
      display: flex;
      align-items: center;
      gap: 5px;
      flex: 1;
    }

    .fp-community {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,.85);
    }

    .fp-dot { color: rgba(255,255,255,.3); font-size: 12px; }

    .fp-time { font-size: 12px; color: rgba(255,255,255,.4); }

    .fp-join-btn {
      padding: 4px 14px;
      border-radius: 20px;
      border: 1.5px solid var(--red);
      background: transparent;
      color: var(--red);
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      transition: all .15s;
    }

    .fp-join-btn:hover { background: var(--red); color: #fff; }

    .fp-more-btn {
      background: none;
      border: none;
      color: rgba(255,255,255,.4);
      font-size: 18px;
      cursor: pointer;
      padding: 0 4px;
      transition: color .12s;
    }

    .fp-more-btn:hover { color: #fff; }

    .fp-title {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      line-height: 1.35;
      margin-bottom: 14px;
    }

    .fp-body {
      font-size: 14px;
      color: rgba(255,255,255,.78);
      line-height: 1.65;
      margin-bottom: 16px;
    }

    .fp-body p + p { margin-top: 10px; }

    /* ── Post action bar ── */
    .fp-post-actions {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-wrap: wrap;
      padding-top: 4px;
      border-top: 1px solid rgba(255,255,255,.06);
      margin-top: 4px;
    }

    .fp-votes {
      display: inline-flex;
      align-items: center;
      background: rgba(255,255,255,.06);
      border-radius: 2px;
      overflow: hidden;
      margin-right: 4px;
    }

    .fp-vote-btn {
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255,255,255,.5);
      padding: 7px 10px;
      font-size: 13px;
      transition: color .12s, background .12s;
    }

    .fp-vote-up:hover { color: var(--red); background: rgba(255,36,66,.12); }
    .fp-vote-dn:hover { color: #7193ff; background: rgba(113,147,255,.1); }
    .fp-vote-up.active { color: var(--red); }

    .fp-vote-count {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,.85);
      padding: 0 6px;
      min-width: 36px;
      text-align: center;
    }

    .fp-action-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 7px 11px;
      border-radius: 2px;
      background: transparent;
      border: none;
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,.5);
      cursor: pointer;
      transition: background .12s, color .12s;
    }

    .fp-action-btn:hover { background: rgba(255,255,255,.08); color: #fff; }

    /* ── Comment input ── */
    .fp-comment-box {
      background: rgba(0,0,0,.18);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .fp-comment-input {
      width: 100%;
      min-height: 90px;
      background: transparent;
      border: none;
      padding: 14px 16px;
      color: rgba(255,255,255,.85);
      font-size: 14px;
      font-family: inherit;
      resize: vertical;
      outline: none;
      box-sizing: border-box;
    }

    .fp-comment-input::placeholder { color: rgba(255,255,255,.3); }

    .fp-comment-input:focus {
      outline: none;
      box-shadow: inset 0 0 0 1px var(--red);
    }

    .fp-comment-box-footer {
      display: flex;
      justify-content: flex-end;
      padding: 8px 12px;
      border-top: 1px solid rgba(255,255,255,.06);
    }

    .fp-comment-submit {
      padding: 7px 22px;
      border-radius: 20px;
      background: var(--red);
      color: #fff;
      border: none;
      font-size: 13px;
      font-weight: 700;
      cursor: pointer;
      transition: opacity .15s;
    }

    .fp-comment-submit:hover { opacity: .88; }

    /* ── Comment sort bar ── */
    .fp-comment-sort {
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 10px 4px;
      margin-bottom: 6px;
    }

    .fp-sort-label {
      font-size: 12px;
      color: rgba(255,255,255,.4);
      margin-right: 4px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .6px;
    }

    .fp-sort-tab {
      padding: 5px 12px;
      border-radius: 20px;
      background: transparent;
      border: none;
      font-size: 13px;
      font-weight: 600;
      color: rgba(255,255,255,.45);
      cursor: pointer;
      transition: color .12s, background .12s;
      position: relative;
    }

    .fp-sort-tab:hover { color: #fff; background: rgba(255,255,255,.07); }

    .fp-sort-active {
      color: #fff;
      background: rgba(255,36,66,.12);
    }

    .fp-sort-active::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 12px;
      right: 12px;
      height: 2px;
      background: var(--red);
      border-radius: 1px;
    }

    .fp-comment-search {
      margin-left: auto;
      padding: 5px 12px;
      border-radius: 20px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      color: rgba(255,255,255,.8);
      font-size: 13px;
      outline: none;
      width: 180px;
      transition: border-color .15s;
    }

    .fp-comment-search:focus { border-color: var(--red); }
    .fp-comment-search::placeholder { color: rgba(255,255,255,.3); }

    /* ── Comments ── */
    .fp-comments { display: flex; flex-direction: column; gap: 2px; }

    .fp-comment {
      background: rgba(0,0,0,.15);
      border: 1px solid rgba(255,255,255,.06);
      border-radius: 4px;
      padding: 14px 16px 10px;
    }

    .fp-comment-meta {
      display: flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 8px;
    }

    .fp-c-avatar {
      width: 24px; height: 24px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 900;
      color: #fff;
    }

    .fp-c-user {
      font-size: 13px;
      font-weight: 700;
      color: rgba(255,255,255,.85);
    }

    .fp-c-dot { color: rgba(255,255,255,.25); font-size: 11px; }

    .fp-c-time { font-size: 12px; color: rgba(255,255,255,.38); }

    .fp-c-body {
      font-size: 14px;
      color: rgba(255,255,255,.75);
      line-height: 1.6;
      margin-bottom: 10px;
    }

    .fp-c-actions {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .fp-c-votes {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: rgba(255,255,255,.06);
      border-radius: 2px;
      padding: 3px 8px;
      margin-right: 4px;
      font-size: 12px;
      color: rgba(255,255,255,.5);
    }

    .fp-c-votes button {
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255,255,255,.4);
      font-size: 11px;
      padding: 1px 2px;
      transition: color .1s;
    }

    .fp-c-votes button:hover { color: var(--red); }

    .fp-c-votes span {
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,.75);
      min-width: 28px;
      text-align: center;
    }

    .fp-c-btn {
      padding: 4px 10px;
      border-radius: 2px;
      background: transparent;
      border: none;
      font-size: 12px;
      font-weight: 700;
      color: rgba(255,255,255,.4);
      cursor: pointer;
      transition: background .1s, color .1s;
    }

    .fp-c-btn:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.85); }

    /* ── Nested replies ── */
    .fp-reply {
      margin-top: 12px;
      margin-left: 20px;
      padding: 12px 14px 8px;
      border-left: 2px solid rgba(255,36,66,.35);
      background: rgba(255,255,255,.02);
      border-radius: 0 4px 4px 0;
    }

    /* ─── LOGIN MODAL ─────────────────────────────────────────── */
    .overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.42);
      z-index: 500;
      align-items: center;
      justify-content: center;
    }

    .overlay.open { display: flex; }

    .modal {
      background: var(--white);
      border-radius: 18px;
      padding: 36px 40px 32px;
      width: 380px;
      max-width: 92vw;
      text-align: center;
      position: relative;
      animation: popIn .22s cubic-bezier(.4,0,.2,1);
    }

    @keyframes popIn {
      from { transform: scale(.9); opacity: 0; }
      to   { transform: scale(1);  opacity: 1; }
    }

    .modal-x {
      position: absolute;
      top: 14px;
      right: 18px;
      font-size: 20px;
      cursor: pointer;
      color: var(--muted);
      line-height: 1;
      transition: color .15s;
    }

    .modal-x:hover { color: var(--text); }

    .modal-logo {
      font-size: 28px;
      font-weight: 900;
      color: var(--red);
      letter-spacing: -1px;
      margin-bottom: 4px;
    }

    .modal-tagline {
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 22px;
    }

    .m-input {
      width: 100%;
      height: 42px;
      border: 1.5px solid var(--border);
      border-radius: 10px;
      padding: 0 14px;
      font-size: 14px;
      outline: none;
      margin-bottom: 10px;
      transition: border-color .15s;
      color: var(--text);
    }

    .m-input:focus { border-color: var(--red); }

    .m-btn {
      width: 100%;
      height: 42px;
      border-radius: 10px;
      background: var(--red);
      color: white;
      font-size: 15px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      margin-top: 6px;
      transition: opacity .15s;
    }

    .m-btn:hover { opacity: .88; }
    .m-btn:disabled { opacity: .55; cursor: not-allowed; }

    .m-status {
      margin: 4px 0 0;
      font-size: .8rem;
      text-align: center;
      min-height: 1.2em;
    }

    .m-divider {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 16px 0;
      color: var(--muted);
      font-size: 12px;
    }

    .m-divider::before, .m-divider::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    .social-row {
      display: flex;
      gap: 10px;
    }

    .s-btn {
      flex: 1;
      height: 40px;
      border-radius: 10px;
      border: 1.5px solid var(--border);
      background: var(--white);
      cursor: pointer;
      font-size: 13px;
      color: var(--text);
      font-weight: 500;
      transition: border-color .15s, background .15s;
    }

    .s-btn:hover { border-color: #ccc; background: var(--bg); }

    /* ─── TOAST ──────────────────────────────────────────────── */
    #toast {
      position: fixed;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%) translateY(16px);
      background: rgba(26,26,26,.9);
      color: #fff;
      padding: 10px 22px;
      border-radius: 24px;
      font-size: 13px;
      opacity: 0;
      transition: opacity .25s, transform .25s;
      z-index: 600;
      pointer-events: none;
      white-space: nowrap;
    }

    #toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    /* ─── LIGHTBOX ───────────────────────────────────────────── */
    .lb-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.72);
      z-index: 450;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .lb-overlay.open { display: flex; }

    .lb-modal {
      position: relative;
      display: flex;
      width: 100%;
      max-width: 920px;
      height: 90vh;
      border-radius: 16px;
      overflow: hidden;
      background: var(--white);
      animation: popIn .22s cubic-bezier(.4,0,.2,1);
    }

    .lb-close {
      position: absolute;
      top: 12px;
      right: 14px;
      z-index: 10;
      background: rgba(0,0,0,.48);
      color: #fff;
      border: none;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      font-size: 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background .15s;
    }

    .lb-close:hover { background: rgba(0,0,0,.72); }

    .lb-img-side {
      flex: 0 0 52%;
      min-height: 0;
      overflow: hidden;
      background: #111;
    }

    .lb-img-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
    }

    .lb-info-side {
      flex: 1;
      min-width: 0;
      min-height: 0;
      padding: 24px 22px 32px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 16px;
      scrollbar-width: thin;
      scrollbar-color: var(--border) transparent;
    }

    .lb-info-side::-webkit-scrollbar { width: 5px; }
    .lb-info-side::-webkit-scrollbar-track { background: transparent; }
    .lb-info-side::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }

    .lb-title {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.35;
      color: var(--text);
    }

    .lb-actions {
      display: flex;
      gap: 8px;
      margin-top: 2px;
    }

    .lb-action-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      height: 32px;
      padding: 0 16px;
      border-radius: 16px;
      border: 1.5px solid #e2e2e2;
      background: var(--white);
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      cursor: pointer;
      transition: all .18s;
    }

    .lb-action-btn svg { transition: fill .18s, stroke .18s; }

    .lb-action-btn:hover {
      border-color: var(--red);
      color: var(--red);
    }

    .lb-action-btn:hover svg { stroke: var(--red); }

    .lb-action-btn.active {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
    }

    .lb-action-btn.active svg {
      fill: var(--white);
      stroke: var(--white);
    }

    .lb-rule {
      height: 1px;
      background: var(--border);
      margin: 0;
      flex-shrink: 0;
    }

    /* ── basics pills ──────────────────────────── */
    .lb-basics { }

    .lb-basics-hdr {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
    }

    .lb-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .lb-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 14px;
      border: 1.5px solid #e2e2e2;
      border-radius: 30px;
      font-size: 13px;
      color: #333;
      background: var(--white);
      white-space: nowrap;
    }

    .lb-pill-icon { font-size: 14px; line-height: 1; }

    /* ── sub-sections ───────────────────────────── */
    .lb-sections {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .lb-sec {
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
    }

    .lb-sec-hdr {
      padding: 9px 14px;
      background: #f9f9f9;
      font-size: 10.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
      user-select: none;
    }

    .lb-sec-body {
      padding: 12px 14px;
      font-size: 13px;
      line-height: 1.65;
      color: var(--text);
    }

    /* Net Worth */
    .lb-nw-row {
      display: flex;
      align-items: baseline;
      gap: 7px;
    }

    .lb-nw-amount {
      font-size: 26px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.5px;
    }

    .lb-nw-label {
      font-size: 12px;
      color: var(--muted);
    }

    .lb-nw-note {
      margin-top: 5px;
      font-size: 12px;
      color: var(--muted);
    }

    /* Business list */
    .lb-biz-item {
      display: flex;
      align-items: flex-start;
      gap: 7px;
      padding: 4px 0;
      border-bottom: 1px solid #f4f4f4;
      font-size: 13px;
    }

    .lb-biz-item:last-child { border-bottom: none; }

    .lb-biz-dot {
      margin-top: 5px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--red);
      flex-shrink: 0;
    }

    /* Offenses */
    .lb-offense-row {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
    }

    .lb-offense-badge {
      display: inline-flex;
      align-items: center;
      padding: 2px 9px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 600;
      flex-shrink: 0;
    }

    .lb-offense-badge.none   { background: #dcfce7; color: #15803d; }
    .lb-offense-badge.minor  { background: #fef9c3; color: #a16207; }
    .lb-offense-badge.major  { background: #fee2e2; color: #b91c1c; }

    /* Philanthropy */
    .lb-phil-item {
      display: flex;
      align-items: flex-start;
      gap: 7px;
      padding: 4px 0;
      font-size: 13px;
      border-bottom: 1px solid #f4f4f4;
    }

    .lb-phil-item:last-child { border-bottom: none; }

    .lb-phil-icon { flex-shrink: 0; font-size: 13px; }

    /* Recent News */
    .lb-news-item {
      padding: 8px 0;
      border-bottom: 1px solid #f4f4f4;
    }

    .lb-news-item:last-child { border-bottom: none; }

    .lb-news-hl {
      font-size: 13px;
      font-weight: 500;
      color: var(--text);
      line-height: 1.4;
      margin-bottom: 3px;
    }

    .lb-news-date {
      font-size: 11px;
      color: var(--muted);
    }

    /* ── Fun Fact ─────────────────────────────── */
    .lb-fun-fact {
      margin: 0;
      padding: 10px 14px;
      border-left: 3px solid var(--red);
      background: rgba(255,36,66,.06);
      border-radius: 0 6px 6px 0;
      font-size: 13px;
      line-height: 1.6;
      color: #333;
      font-style: italic;
    }

    /* ── Epstein Ties ─────────────────────────── */
    .lb-epstein-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }
    .lb-epstein-badge {
      flex-shrink: 0;
      padding: 3px 10px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .4px;
      text-transform: uppercase;
    }
    .epstein--yes      { background: #fee2e2; color: #b91c1c; }
    .epstein--no       { background: #dcfce7; color: #15803d; }
    .epstein--disputed { background: #fef9c3; color: #a16207; }
    .lb-epstein-detail { font-size: 13px; line-height: 1.55; color: #444; }

    /* ── Assets (houses / jets) ───────────────── */
    .lb-assets-row {
      display: flex;
      gap: 16px;
      margin: 12px 0 4px;
    }
    .lb-asset-stat {
      display: flex;
      flex-direction: column;
      align-items: center;
      background: #f7f7f7;
      border-radius: 10px;
      padding: 10px 18px;
      min-width: 80px;
    }
    .lb-asset-icon { font-size: 18px; line-height: 1; }
    .lb-asset-val  { font-size: 22px; font-weight: 700; color: #111; margin-top: 4px; }
    .lb-asset-lbl  { font-size: 11px; color: var(--muted); margin-top: 2px; }

    /* ── Sub-header inside a section body ─────── */
    .lb-sub-hdr {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .6px;
      color: var(--muted);
      margin: 14px 0 8px;
    }

    /* ── Asset Table (Houses / Jets) ─────────── */
    .lb-asset-table {
      width: 100%;
      margin-top: 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }
    .lb-asset-table-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .lb-asset-table-row span {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 4px;
      padding: 12px;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .lb-asset-table-row span:last-child { border-right: none; }
    .lb-asset-table-row strong { font-size: 20px; font-weight: 800; color: #111; }
    .lb-asset-table-row em     { font-size: 12px; font-style: normal; color: var(--muted); }

    /* ── Net Worth label + amount ─────────────── */
    .lb-nw-label-top {
      font-size: 12px;
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 4px;
      text-transform: uppercase;
      letter-spacing: .4px;
    }
    .lb-nw-amount-plain {
      font-size: 22px;
      font-weight: 800;
      color: #111;
      margin-bottom: 4px;
    }

    /* ── Net Worth Box (amount + volatility note glued together) ── */
    .lb-nw-box {
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
      padding: 14px 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 5px;
      text-align: center;
    }
    .lb-nw-box-val {
      font-size: 24px;
      font-weight: 800;
      color: #111;
      letter-spacing: -0.5px;
    }
    .lb-nw-box-note {
      font-size: 13px;
      color: var(--muted);
      font-style: italic;
      line-height: 1.4;
    }

    /* ── Wage Table ───────────────────────────── */
    .lb-wage-table {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 8px;
      overflow: hidden;
    }
    .lb-wage-table-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }
    .lb-wage-table-row span {
      display: flex;
      flex-direction: column;
      gap: 3px;
      padding: 10px 12px;
      border-right: 1px solid var(--border);
      text-align: center;
    }
    .lb-wage-table-row span:last-child { border-right: none; }
    .lb-wage-val  { font-size: 14px; font-weight: 700; color: #111; }
    .lb-wage-note { font-size: 11px; color: var(--muted); font-style: italic; line-height: 1.4; }
    .lb-wage-table-row span:first-child .lb-wage-val { color: var(--red); }

    /* ── Expanded Offenses ────────────────────── */
    .lb-offense-sub {
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 10px;
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
      line-height: 1.5;
    }
    .lb-offense-sub:last-child { border-bottom: none; }
    .lb-offense-sub-lbl {
      flex-shrink: 0;
      width: 130px;
      font-size: 10px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .6px;
      color: var(--muted);
      padding-top: 2px;
    }

    /* ── Philanthropy & Taxes calculation ─────── */
    .lb-tax-calc { display: flex; flex-direction: column; gap: 0; }
    .lb-tax-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 9px 0;
      border-bottom: 1px solid var(--border);
      font-size: 13px;
    }
    .lb-tax-row:last-child { border-bottom: none; }
    .lb-tax-lbl { color: #555; }
    .lb-tax-val { font-weight: 600; color: #111; }
    .lb-tax-result {
      margin-top: 4px;
      background: #fff5f5;
      border-radius: 8px;
      padding: 10px 12px;
      border-bottom: none !important;
    }
    .lb-tax-result .lb-tax-lbl { font-weight: 700; color: #b91c1c; }
    .lb-tax-result .lb-tax-val { color: #b91c1c; font-weight: 700; }

    /* ── HOR Vote Rows ────────────────────────── */
    .lb-vote-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 10px 0;
      border-bottom: 1px solid var(--border);
    }
    .lb-vote-row:last-child { border-bottom: none; }
    .lb-vote-label { display: flex; flex-direction: column; gap: 2px; }
    .lb-vote-resolution { font-size: 13px; font-weight: 600; color: #111; }
    .lb-vote-sub        { font-size: 11px; font-weight: 500; color: var(--muted); }
    .lb-vote-category   { font-size: 11px; color: var(--muted); }
    .lb-vote-badge {
      flex-shrink: 0;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .3px;
    }
    .vote--favored    { background: #dcfce7; color: #15803d; }
    .vote--unfavored  { background: #fee2e2; color: #b91c1c; }
    .vote--voicevote  { background: #e0f2fe; color: #0369a1; }
    .vote--notvoting  { background: #fef9c3; color: #854d0e; }
    .vote--nodata     { background: #f3f4f6; color: #9b9b9b; }

    /* ── HOR AIPAC / no-data ──────────────────── */
    .lb-govt-aipac-amt { font-size: 20px; font-weight: 800; color: #111; }
    .lb-govt-no-data   { font-size: 13px; color: var(--muted); font-style: italic; }

    /* ── Bezos-specific lightbox overrides ───── */
    .lb-bezos .lb-title { font-size: 26px; }

    .lb-bezos #lbSecEpsteinWrap  { order: 1; }
    .lb-bezos #lbSecContextWrap  { order: 2; }
    .lb-bezos #lbSecCrimesWrap   { order: 3; }
    .lb-bezos #lbSecNetWorthWrap { order: 4; }
    .lb-bezos #lbSecBusinessWrap { order: 5; }
    .lb-bezos #lbSecFunFactWrap  { order: 6; }
    .lb-bezos #lbSecOffensesWrap { order: 7; }
    .lb-bezos #lbSecNewsWrap     { display: none !important; }

    /* ── Bookmarks empty state ───────────────── */
    .bm-empty {
      width: 100%;
      padding: 80px 20px;
      text-align: center;
      font-size: 15px;
      color: var(--muted);
    }

    /* ── Bottom sheet slide-up animation (mobile only) ── */
    @keyframes lb-slide-up {
      from { transform: translateY(100%); }
      to   { transform: translateY(0); }
    }

    @keyframes lb-fade-in {
      from { background: rgba(0,0,0,0); }
      to   { background: rgba(0,0,0,.72); }
    }

    @media (max-width: 640px) {
      /* ── Overlay: fade in backdrop, anchor sheet to bottom ── */
      .lb-overlay {
        padding: 0;
        align-items: flex-end;
        animation: lb-fade-in .3s ease forwards;
      }

      /* ── Modal: slide up from bottom as a sheet ── */
      .lb-modal {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        height: 94vh;
        height: 94dvh;
        border-radius: 16px 16px 0 0;
        overflow: hidden;
        animation: lb-slide-up .35s cubic-bezier(.4,0,.2,1);
      }

      /* ── Drag handle at top of sheet ── */
      .lb-modal::before {
        content: '';
        display: block;
        flex-shrink: 0;
        width: 36px;
        height: 4px;
        background: rgba(255,255,255,.25);
        border-radius: 2px;
        margin: 10px auto 6px;
      }

      /* ── Image: constrained height so info side has room to scroll ── */
      .lb-img-side {
        flex: 0 0 auto;
        width: 100%;
        height: 45vw;
        max-height: 220px;      /* cap on tall phones in portrait */
        min-height: 120px;
      }

      .lb-img-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      /* ── Info side: scrollable, fills remaining height ── */
      .lb-info-side {
        flex: 1 1 0;
        min-height: 0;          /* critical — lets flex child scroll */
        padding: 16px 14px 84px;
        gap: 12px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      /* ── Close button: shift to left on stacked layout so it clears the image ── */
      .lb-close {
        top: 10px;
        right: 10px;
        width: 30px;
        height: 30px;
        font-size: 14px;
      }

      /* ── Title: slightly smaller on phone ── */
      .lb-title { font-size: 16px; }

      /* ── Action buttons: wrap and shrink ── */
      .lb-actions { flex-wrap: wrap; gap: 6px; }
      .lb-action-btn {
        font-size: 12px;
        padding: 0 12px;
        height: 30px;
      }

      /* ── Pills: tighter padding ── */
      .lb-pill {
        padding: 5px 10px;
        font-size: 12px;
        gap: 4px;
      }

      /* ── Net Worth amount: scale down on small screen ── */
      .lb-nw-amount { font-size: 20px; }
      .lb-nw-amount-plain { font-size: 18px; }

      /* ── Assets row: wrap so stat boxes don't overflow ── */
      .lb-assets-row { flex-wrap: wrap; gap: 10px; margin: 8px 0 4px; }
      .lb-asset-stat { min-width: 64px; padding: 8px 12px; }
      .lb-asset-val  { font-size: 18px; }

      /* ── Offense sub-row label: remove fixed width so it wraps ── */
      .lb-offense-sub { flex-direction: column; gap: 4px; }
      .lb-offense-sub-lbl { width: auto; }

      /* ── Vote rows: allow badge to wrap below resolution text ── */
      .lb-vote-row { flex-wrap: wrap; gap: 6px; }

      /* ── Tax / wage tables: keep readable, reduce padding ── */
      .lb-wage-table-row span,
      .lb-asset-table-row span { padding: 9px 8px; }
      .lb-wage-val { font-size: 13px; }
      .lb-asset-table-row strong { font-size: 17px; }

      /* ── AIPAC amount ── */
      .lb-govt-aipac-amt { font-size: 17px; }
    }

    /* ── Lightbox — tablets 641–960px ── */
    @media (min-width: 641px) and (max-width: 960px) {
      .lb-overlay { padding: 12px; }
      .lb-modal   { max-width: 98vw; height: 92vh; }
      .lb-img-side { flex: 0 0 44%; }
    }

    /* ─── PLACEHOLDER PAGES ───────────────────────────────────── */
    .placeholder-pg {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      min-height: 60vh;
      padding: 60px 24px;
      gap: 16px;
    }
    .placeholder-pg svg { opacity: .85; }
    .placeholder-pg__title {
      color: #fff;
      font-size: 28px;
      font-weight: 700;
      letter-spacing: -.3px;
    }
    .placeholder-pg__sub {
      color: rgba(255,255,255,.45);
      font-size: 15px;
      max-width: 380px;
      line-height: 1.6;
    }

/* ══════════════════════════════════════════════════════════════
   HELP CENTER
══════════════════════════════════════════════════════════════════ */

/* ── Hero ── */
.hc-hero {
  background: linear-gradient(135deg, #2a0a15 0%, #1a0810 40%, #1d1d1d 100%);
  padding: 64px 24px 80px;
  text-align: center;
}

.hc-hero__title {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.5px;
  margin-bottom: 8px;
}

.hc-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,.5);
  margin-bottom: 24px;
}

.hc-hero__search-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.hc-hero__search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red);
  pointer-events: none;
}

.hc-hero__search {
  width: 100%;
  padding-left: 44px;
  font-size: 15px;
  background: rgba(255,255,255,.95);
  border: 2px solid transparent;
  height: 48px;
  border-radius: 12px;
  outline: none;
  color: var(--text);
  transition: border-color .15s, background .15s;
  margin-bottom: 0;
}

.hc-hero__search:focus {
  border-color: var(--red);
  background: #fff;
}

/* ── Contact Card ── */
.hc-featured {
  max-width: 560px;
  margin: -28px auto 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.22);
  padding: 22px 28px;
  cursor: pointer;
  transition: transform .2s cubic-bezier(.4,0,.2,1), box-shadow .2s;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
  text-decoration: none;
}

.hc-featured:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.28);
}

.hc-featured__body { flex: 1; }

.hc-featured__label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.hc-featured__title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.hc-featured__sub {
  font-size: 13px;
  color: #9b9b9b;
}

.hc-featured__arrow {
  font-size: 22px;
  color: var(--red);
  flex-shrink: 0;
  transition: transform .2s;
}

.hc-featured:hover .hc-featured__arrow { transform: translateX(4px); }

/* ── Topics ── */
.hc-topics {
  padding: 52px 24px 72px;
  background: var(--bg);
}

.hc-topics__heading {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.3px;
  margin-bottom: 36px;
}

.hc-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.hc-col__subhead {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .12em;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  margin-bottom: 18px;
}

.hc-topic-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.4,0,.2,1), border-color .22s, background .22s;
  margin-bottom: 10px;
}

.hc-topic-card:last-child { margin-bottom: 0; }

.hc-topic-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255,36,66,.35);
  background: rgba(255,36,66,.05);
}

.hc-topic-card__icon {
  width: 22px;
  flex-shrink: 0;
  color: var(--red);
  margin-top: 1px;
}

.hc-topic-card__title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.hc-topic-card__desc {
  font-size: 12px;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

/* ── No-results ── */
.hc-no-results {
  text-align: center;
  color: rgba(255,255,255,.4);
  font-size: 14px;
  padding: 8px 24px 32px;
}

/* ── Contact modal extras ── */
.m-select {
  width: 100%;
  height: 42px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0 14px;
  font-size: 14px;
  outline: none;
  margin-bottom: 10px;
  transition: border-color .15s;
  color: var(--text);
  background: #fff;
  appearance: none;
  cursor: pointer;
}

.m-select:focus { border-color: var(--red); }

.m-textarea {
  width: 100%;
  min-height: 110px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  outline: none;
  margin-bottom: 10px;
  transition: border-color .15s;
  color: var(--text);
  resize: vertical;
  font-family: inherit;
  line-height: 1.5;
  box-sizing: border-box;
}

.m-textarea:focus { border-color: var(--red); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hc-cols       { grid-template-columns: 1fr; }
  .hc-featured   { margin: -20px 16px 0; }

  /* Tighten vertical section padding on tablets */
  .hc-topics     { padding: 40px 20px 56px; }
}

@media (max-width: 480px) {
  .hc-hero               { padding: 48px 16px 72px; }
  .hc-featured           { flex-direction: column; gap: 8px; }
  .hc-featured__arrow    { display: none; }

  /* Reduce contact card inner padding so content breathes on narrow screens */
  .hc-featured           { padding: 16px 18px; }

  /* Scale down the topics heading — 30px fixed is too large at 360–480px */
  .hc-topics__heading    { font-size: 22px; }

  /* Bring section vertical padding in on small phones */
  .hc-topics             { padding: 32px 16px 48px; }

  /* Ensure search wrap never overflows the hero on very narrow viewports */
  .hc-hero__search-wrap  { max-width: 100%; }

  /* Bump the contact modal select to meet 44px tap-target minimum */
  .m-select              { height: 44px; }
}

@media (max-width: 430px) {
  /* On the smallest common phones (360–430px) tighten hero padding further
     and ensure the hero title does not produce awkward line breaks */
  .hc-hero               { padding: 32px 14px 56px; }
  .hc-hero__title        { font-size: clamp(22px, 6vw, 36px); letter-spacing: -.3px; }
  .hc-hero__sub          { font-size: 14px; }

  /* Contact card: reduce gap so stacked layout stays compact */
  .hc-featured           { gap: 6px; padding: 14px 16px; margin: -16px 12px 0; }

  /* Topic cards: tighten internal padding on very small screens */
  .hc-topic-card         { padding: 12px 14px; gap: 10px; }

  /* Collapse grid gap slightly to save vertical space */
  .hc-cols               { gap: 16px; }
}
