/* roulang page: index */
:root {
      --bg: #0B090D;
      --bg-soft: #111014;
      --bg-panel: #171219;
      --bg-raised: #1E171F;
      --gold: #D8B76A;
      --gold-2: #F1D58A;
      --gold-dim: rgba(216, 183, 106, .22);
      --wine: #7A2333;
      --purple: #2A1835;
      --green: #123C36;
      --text: #E8E0D2;
      --muted: #A99F90;
      --weak: #756D63;
      --line: rgba(216, 183, 106, .28);
      --line-soft: rgba(255, 255, 255, .08);
      --shadow: 0 14px 40px rgba(0, 0, 0, .35);
      --radius: 8px;
      --radius-sm: 6px;
      --container: 1220px;
      --space: clamp(56px, 7vw, 92px);
      --font: PingFang SC, Microsoft YaHei, Noto Sans SC, Helvetica Neue, Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(circle at 18% 10%, rgba(122, 35, 51, .22), transparent 34%),
        linear-gradient(180deg, #0B090D 0%, #111014 46%, #0B090D 100%);
      line-height: 1.78;
      letter-spacing: 0;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .18;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 34px 34px;
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
      outline: 2px solid var(--gold-2);
      outline-offset: 3px;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(11, 9, 13, .92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--gold-2);
      white-space: nowrap;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      border: 1px solid var(--gold);
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      background: linear-gradient(145deg, rgba(216,183,106,.22), rgba(122,35,51,.18));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
      color: var(--gold-2);
      font-size: 18px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
    }

    .nav-links a {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      padding: 0 15px;
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      color: var(--muted);
      font-size: 14px;
      transition: .2s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--gold-2);
      border-color: var(--gold-dim);
      background: rgba(216, 183, 106, .08);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--bg-panel);
      color: var(--gold-2);
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 18px;
      border-radius: var(--radius-sm);
      border: 1px solid transparent;
      font-weight: 700;
      font-size: 14px;
      transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: #14100B;
      background: linear-gradient(180deg, var(--gold-2), var(--gold));
      box-shadow: 0 10px 24px rgba(216, 183, 106, .18);
    }

    .btn-secondary {
      color: var(--gold-2);
      background: rgba(23, 18, 25, .84);
      border-color: var(--line);
    }

    .btn-muted {
      color: var(--text);
      background: rgba(255,255,255,.04);
      border-color: var(--line-soft);
    }

    .btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.06);
      box-shadow: 0 12px 28px rgba(0,0,0,.28);
    }

    .btn:active {
      transform: translateY(0);
      box-shadow: none;
    }

    main {
      overflow: hidden;
    }

    section {
      padding: var(--space) 0;
    }

    .hero {
      padding-top: 34px;
      padding-bottom: 52px;
    }

    .hero-shell {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, .78fr);
      gap: 24px;
      min-height: 560px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(135deg, rgba(42, 24, 53, .78), rgba(17, 16, 20, .92) 48%, rgba(18, 60, 54, .42)),
        linear-gradient(90deg, rgba(216,183,106,.08), transparent);
      box-shadow: var(--shadow);
      padding: clamp(24px, 4vw, 46px);
      overflow: hidden;
    }

    .hero-shell::after {
      content: "";
      position: absolute;
      right: 28px;
      bottom: 28px;
      width: 210px;
      height: 210px;
      border: 1px solid rgba(216,183,106,.14);
      transform: rotate(10deg);
      opacity: .45;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      max-width: 720px;
      align-self: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 11px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--gold-2);
      background: rgba(216,183,106,.08);
      font-size: 12px;
      font-weight: 700;
      line-height: 1.3;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold-2);
      box-shadow: 0 0 0 4px rgba(216,183,106,.12);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin: 22px 0 18px;
      font-size: clamp(32px, 4.6vw, 54px);
      line-height: 1.14;
      letter-spacing: 0;
      max-width: 780px;
    }

    .hero-lead {
      max-width: 690px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.86;
      margin-bottom: 26px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 690px;
    }

    .stat-card {
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-sm);
      padding: 15px;
      background: rgba(11, 9, 13, .48);
    }

    .stat-card strong {
      display: block;
      color: var(--gold-2);
      font-size: 22px;
      line-height: 1.2;
      margin-bottom: 5px;
    }

    .stat-card span {
      color: var(--muted);
      font-size: 13px;
    }

    .hero-panel {
      position: relative;
      z-index: 2;
      align-self: stretch;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(11, 9, 13, .58);
      padding: 20px;
      min-height: 460px;
    }

    .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-bottom: 1px solid var(--line-soft);
      padding-bottom: 14px;
      margin-bottom: 14px;
    }

    .panel-head b {
      font-size: 16px;
    }

    .mini-badge,
    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 0 9px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--gold-2);
      background: rgba(216,183,106,.08);
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      white-space: nowrap;
    }

    .rank-list {
      display: grid;
      gap: 10px;
    }

    .rank-item {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border: 1px solid var(--line-soft);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.035);
      transition: .2s ease;
    }

    .rank-item:hover {
      border-color: var(--line);
      background: rgba(216,183,106,.065);
    }

    .rank-num {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      color: #14100B;
      background: var(--gold);
      border-radius: var(--radius-sm);
      font-weight: 900;
    }

    .rank-item h3 {
      margin: 0 0 2px;
      font-size: 15px;
    }

    .rank-item p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: end;
      margin-bottom: 26px;
    }

    .section-head h2 {
      margin-bottom: 8px;
      font-size: clamp(28px, 3vw, 36px);
      line-height: 1.22;
    }

    .section-head p {
      max-width: 700px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .coupon-grid {
      padding-top: 28px;
    }

    .ticket-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .ticket {
      position: relative;
      min-height: 230px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(216,183,106,.09), transparent 44%),
        var(--bg-panel);
      padding: 20px;
      overflow: hidden;
      transition: .22s ease;
    }

    .ticket::before,
    .ticket::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--bg);
      border: 1px solid var(--line);
      transform: translateY(-50%);
    }

    .ticket::before {
      left: -12px;
    }

    .ticket::after {
      right: -12px;
    }

    .ticket:hover {
      transform: translateY(-2px);
      border-color: rgba(241,213,138,.65);
      box-shadow: var(--shadow);
    }

    .ticket small {
      color: var(--gold-2);
      font-weight: 800;
    }

    .ticket h3 {
      margin: 16px 0 10px;
      font-size: 21px;
      line-height: 1.28;
    }

    .ticket p {
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.72;
    }

    .ticket .btn {
      width: 100%;
    }

    .rules {
      background: linear-gradient(180deg, rgba(42,24,53,.28), rgba(11,9,13,0));
    }

    .rules-layout {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 22px;
      align-items: start;
    }

    .rule-note {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg-panel);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .rule-note h2 {
      font-size: 30px;
      line-height: 1.25;
      margin-bottom: 14px;
    }

    .rule-note p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .rule-list {
      display: grid;
      gap: 12px;
    }

    .rule-item {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      padding: 18px;
      border: 1px solid var(--line-soft);
      border-radius: var(--radius);
      background: rgba(255,255,255,.035);
    }

    .rule-icon {
      width: 46px;
      height: 46px;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      color: var(--gold-2);
      background: rgba(216,183,106,.1);
      border: 1px solid var(--line);
      font-weight: 900;
    }

    .rule-item h3 {
      margin: 0 0 4px;
      font-size: 18px;
    }

    .rule-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .news-section {
      padding-top: 42px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.32fr) minmax(300px, .68fr);
      gap: 20px;
    }

    .news-list {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg-panel);
      overflow: hidden;
    }

    .news-item {
      display: grid;
      grid-template-columns: 92px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line-soft);
      transition: .2s ease;
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-item:hover {
      background: rgba(216,183,106,.055);
    }

    .news-date {
      color: var(--gold-2);
      font-weight: 800;
      font-size: 13px;
    }

    .news-item h3 {
      margin: 0 0 4px;
      font-size: 18px;
    }

    .news-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .side-recommend {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(18,60,54,.42), rgba(17,16,20,.92));
      padding: 22px;
      min-height: 100%;
    }

    .side-recommend h3 {
      margin-bottom: 10px;
      font-size: 22px;
    }

    .side-recommend p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .mini-list {
      display: grid;
      gap: 10px;
    }

    .mini-list a {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      padding: 11px 0;
      border-bottom: 1px solid var(--line-soft);
      color: var(--text);
      transition: .2s ease;
    }

    .mini-list a:hover {
      color: var(--gold-2);
      padding-left: 6px;
    }

    .directory {
      padding-top: 42px;
    }

    .directory-board {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 0;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg-panel);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .directory-index {
      padding: 22px;
      background: linear-gradient(180deg, rgba(122,35,51,.3), rgba(42,24,53,.2));
      border-right: 1px solid var(--line);
    }

    .directory-index strong {
      display: block;
      color: var(--gold-2);
      font-size: 26px;
      line-height: 1;
      margin-bottom: 10px;
    }

    .directory-index p {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
    }

    .directory-items {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .directory-item {
      padding: 22px;
      border-right: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
      transition: .2s ease;
    }

    .directory-item:nth-child(2n) {
      border-right: 0;
    }

    .directory-item:hover {
      background: rgba(216,183,106,.06);
    }

    .directory-item h3 {
      margin: 12px 0 8px;
      font-size: 20px;
    }

    .directory-item p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .featured-grid {
      display: grid;
      grid-template-columns: 1.18fr .82fr;
      gap: 20px;
    }

    .feature-main,
    .feature-stack article {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--bg-panel);
      transition: .22s ease;
    }

    .feature-main {
      padding: 28px;
      min-height: 410px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(122,35,51,.28), transparent 46%),
        var(--bg-panel);
    }

    .feature-main:hover,
    .feature-stack article:hover {
      border-color: rgba(241,213,138,.65);
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }

    .feature-main h3 {
      margin: 18px 0 10px;
      font-size: clamp(25px, 3vw, 34px);
      line-height: 1.24;
    }

    .feature-main p,
    .feature-stack p {
      color: var(--muted);
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0;
    }

    .feature-stack {
      display: grid;
      gap: 16px;
    }

    .feature-stack article {
      padding: 22px;
      border-left: 4px solid var(--gold);
    }

    .feature-stack h3 {
      margin: 12px 0 8px;
      font-size: 20px;
    }

    .related-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .related-card {
      border: 1px solid var(--line-soft);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(42,24,53,.38), rgba(17,16,20,.94));
      padding: 20px;
      min-height: 210px;
      transition: .2s ease;
    }

    .related-card:hover {
      border-color: var(--line);
      transform: translateY(-2px);
    }

    .issue {
      color: var(--gold-2);
      font-weight: 900;
      font-size: 13px;
    }

    .related-card h3 {
      margin: 16px 0 8px;
      font-size: 19px;
    }

    .related-card p {
      margin-bottom: 16px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.68;
    }

    .trust-band {
      border-top: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
      background: rgba(18,60,54,.16);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: .85fr repeat(3, 1fr);
      gap: 16px;
      align-items: stretch;
    }

    .trust-copy,
    .trust-metric {
      border: 1px solid var(--line-soft);
      border-radius: var(--radius);
      background: rgba(17,16,20,.72);
      padding: 22px;
    }

    .trust-copy h2 {
      font-size: 30px;
      margin-bottom: 10px;
    }

    .trust-copy p {
      color: var(--muted);
      margin: 0;
    }

    .trust-metric strong {
      display: block;
      color: var(--gold-2);
      font-size: 31px;
      line-height: 1.1;
      margin-bottom: 8px;
    }

    .trust-metric span {
      color: var(--muted);
      font-size: 14px;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .72fr 1.28fr;
      gap: 24px;
      align-items: start;
    }

    .faq-intro {
      position: sticky;
      top: 104px;
    }

    .faq-intro h2 {
      font-size: 32px;
      margin-bottom: 10px;
    }

    .faq-intro p {
      color: var(--muted);
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    details {
      border: 1px solid var(--line-soft);
      border-radius: var(--radius);
      background: var(--bg-panel);
      padding: 0;
      overflow: hidden;
      transition: .2s ease;
    }

    details[open] {
      border-color: var(--line);
      background: rgba(216,183,106,.055);
    }

    summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 20px;
      font-weight: 800;
      color: var(--text);
      display: flex;
      justify-content: space-between;
      gap: 16px;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      color: var(--gold-2);
      font-size: 20px;
      line-height: 1;
    }

    details[open] summary::after {
      content: "-";
    }

    details p {
      margin: 0;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .cta-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background:
        linear-gradient(120deg, rgba(216,183,106,.16), rgba(122,35,51,.22) 42%, rgba(18,60,54,.22)),
        var(--bg-panel);
      box-shadow: var(--shadow);
      padding: clamp(24px, 4vw, 42px);
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
    }

    .cta-panel h2 {
      font-size: clamp(27px, 3.2vw, 38px);
      line-height: 1.22;
      margin-bottom: 10px;
    }

    .cta-panel p {
      color: var(--muted);
      margin: 0;
      max-width: 760px;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: #08070A;
      padding: 42px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 26px;
      margin-bottom: 26px;
    }

    .footer-brand p {
      color: var(--muted);
      max-width: 520px;
      margin: 14px 0 0;
      font-size: 14px;
    }

    .footer-col h3 {
      margin: 0 0 12px;
      color: var(--gold-2);
      font-size: 15px;
    }

    .footer-col a {
      display: block;
      color: var(--muted);
      margin: 8px 0;
      font-size: 14px;
      transition: .2s ease;
    }

    .footer-col a:hover {
      color: var(--gold-2);
      padding-left: 5px;
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-top: 20px;
      border-top: 1px solid var(--line-soft);
      color: var(--weak);
      font-size: 13px;
    }

    .mobile-panel {
      display: none;
    }

    @media (max-width: 1024px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      .hero-shell,
      .rules-layout,
      .news-layout,
      .featured-grid,
      .faq-wrap,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        min-height: auto;
      }

      .ticket-grid,
      .related-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .trust-copy {
        grid-column: 1 / -1;
      }

      .faq-intro {
        position: static;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 820px) {
      .nav {
        min-height: 70px;
      }

      .nav-links {
        display: none;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-actions .btn-secondary {
        display: none;
      }

      .mobile-panel {
        display: none;
        border-top: 1px solid var(--line-soft);
        padding: 12px 0 16px;
      }

      .mobile-panel.open {
        display: grid;
        gap: 10px;
      }

      .mobile-panel a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        border: 1px solid var(--line-soft);
        border-radius: var(--radius-sm);
        color: var(--muted);
        background: rgba(255,255,255,.03);
      }

      .mobile-panel a.active {
        color: var(--gold-2);
        border-color: var(--line);
      }

      .hero-shell {
        min-height: auto;
        padding: 22px;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .directory-board {
        grid-template-columns: 1fr;
      }

      .directory-index {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .directory-items {
        grid-template-columns: 1fr;
      }

      .directory-item,
      .directory-item:nth-child(2n) {
        border-right: 0;
      }

      .news-item {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .news-item .btn {
        justify-self: start;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 560px) {
      section {
        padding: 48px 0;
      }

      .container {
        width: min(100% - 28px, var(--container));
      }

      .logo span {
        max-width: 176px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .nav-actions .btn-primary {
        min-height: 40px;
        padding: 0 12px;
        font-size: 13px;
      }

      .hero {
        padding-top: 18px;
      }

      h1 {
        font-size: 32px;
      }

      .hero-lead {
        font-size: 15px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .btn {
        width: 100%;
      }

      .ticket-grid,
      .related-strip,
      .trust-grid {
        grid-template-columns: 1fr;
      }

      .section-head {
        grid-template-columns: 1fr;
      }

      .rule-item {
        grid-template-columns: 1fr;
      }

      .rank-item {
        grid-template-columns: 32px 1fr;
      }

      .rank-item .mini-badge {
        grid-column: 2;
        justify-self: start;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #0B090D;
      --bg-soft: #111014;
      --bg-card: #171219;
      --bg-panel: #1D151B;
      --gold: #D8B76A;
      --gold-soft: #F1D58A;
      --gold-muted: rgba(216, 183, 106, .16);
      --wine: #7A2333;
      --purple: #2A1835;
      --green: #123C36;
      --text: #E8E0D2;
      --muted: #A99F90;
      --weak: #756D63;
      --line: rgba(216, 183, 106, .28);
      --line-soft: rgba(255, 255, 255, .08);
      --shadow: 0 14px 40px rgba(0, 0, 0, .35);
      --radius: 8px;
      --container: 1200px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
      background:
        radial-gradient(circle at 18% 0%, rgba(122, 35, 51, .22), transparent 30%),
        linear-gradient(180deg, #0B090D 0%, #111014 46%, #0B090D 100%);
      color: var(--text);
      line-height: 1.75;
      font-size: 16px;
      letter-spacing: 0;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible {
      outline: 2px solid var(--gold-soft);
      outline-offset: 3px;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(11, 9, 13, .94);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 10px 28px rgba(0, 0, 0, .26);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--text);
      white-space: nowrap;
    }

    .logo-mark {
      width: 36px;
      height: 36px;
      display: inline-grid;
      place-items: center;
      border: 1px solid var(--gold);
      background: linear-gradient(145deg, rgba(216, 183, 106, .22), rgba(122, 35, 51, .28));
      color: var(--gold-soft);
      border-radius: 8px;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px;
      border: 1px solid var(--line-soft);
      background: rgba(255, 255, 255, .03);
      border-radius: 8px;
    }

    .nav-links a,
    .mobile-panel a {
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      padding: 10px 13px;
      border-radius: 6px;
      transition: color var(--ease), background var(--ease), border-color var(--ease);
    }

    .nav-links a:hover,
    .mobile-panel a:hover {
      color: var(--gold-soft);
      background: rgba(216, 183, 106, .08);
    }

    .nav-links a.active,
    .mobile-panel a.active {
      color: #111014;
      background: var(--gold);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 18px;
      border-radius: 8px;
      border: 1px solid transparent;
      font-weight: 800;
      font-size: 14px;
      transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease), opacity var(--ease);
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-primary {
      background: linear-gradient(180deg, var(--gold-soft), var(--gold));
      color: #14100B;
      border-color: rgba(216, 183, 106, .7);
      box-shadow: 0 10px 24px rgba(216, 183, 106, .18);
    }

    .btn-primary:hover {
      filter: brightness(1.05);
    }

    .btn-secondary {
      background: rgba(23, 18, 25, .9);
      color: var(--gold-soft);
      border-color: var(--line);
    }

    .btn-secondary:hover {
      background: rgba(42, 24, 53, .62);
      border-color: rgba(216, 183, 106, .52);
    }

    .btn-block {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(216, 183, 106, .08);
      color: var(--gold-soft);
      font-size: 20px;
    }

    .mobile-panel {
      display: none;
      padding: 0 0 16px;
      gap: 8px;
    }

    .top-strip {
      border-bottom: 1px solid rgba(20, 16, 11, .22);
      background: linear-gradient(90deg, #E9D39B, #CFA85A 52%, #A87345);
      color: #171219;
    }

    .top-strip .container {
      min-height: 42px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 13px;
      font-weight: 800;
    }

    .strip-note {
      color: rgba(23, 18, 25, .78);
    }

    .hero {
      padding: 46px 0 38px;
      border-bottom: 1px solid var(--line-soft);
      background:
        linear-gradient(90deg, rgba(42, 24, 53, .42), rgba(18, 60, 54, .2)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0, rgba(255, 255, 255, .025) 1px, transparent 1px, transparent 34px);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
      gap: 28px;
      align-items: stretch;
    }

    .eyebrow,
    .badge,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--gold-soft);
      background: rgba(216, 183, 106, .08);
      font-size: 12px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
    }

    .eyebrow {
      padding: 8px 11px;
      margin-bottom: 16px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 820px;
      margin-bottom: 18px;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.15;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 740px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 24px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .badge {
      padding: 8px 10px;
      background: rgba(17, 16, 20, .82);
    }

    .hero-panel {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(23, 18, 25, .94), rgba(17, 16, 20, .94));
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 18px;
      border-bottom: 1px solid var(--line-soft);
      background: rgba(122, 35, 51, .22);
    }

    .panel-head strong {
      font-size: 17px;
    }

    .mini-status {
      color: var(--gold-soft);
      font-size: 12px;
      font-weight: 800;
      padding: 6px 8px;
      border-radius: 999px;
      border: 1px solid rgba(216, 183, 106, .32);
      background: rgba(216, 183, 106, .1);
    }

    .entry-matrix {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1px;
      background: var(--line-soft);
    }

    .matrix-item {
      min-height: 118px;
      padding: 18px;
      background: rgba(11, 9, 13, .62);
      transition: background var(--ease), color var(--ease);
    }

    .matrix-item:hover {
      background: rgba(216, 183, 106, .08);
    }

    .matrix-item span {
      display: block;
      color: var(--gold-soft);
      font-size: 22px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .matrix-item b {
      display: block;
      margin-bottom: 5px;
      font-size: 15px;
    }

    .matrix-item small {
      color: var(--muted);
      line-height: 1.55;
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 70px 0;
    }

    .section-alt {
      background: rgba(255, 255, 255, .018);
      border-top: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
    }

    .section-lead {
      display: grid;
      grid-template-columns: minmax(0, .78fr) minmax(260px, .22fr);
      gap: 24px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-kicker {
      color: var(--gold-soft);
      font-size: 13px;
      font-weight: 900;
      margin-bottom: 9px;
    }

    h2 {
      font-size: clamp(28px, 3vw, 36px);
      line-height: 1.2;
      margin-bottom: 12px;
      letter-spacing: 0;
    }

    .section-lead p,
    .muted {
      color: var(--muted);
      margin-bottom: 0;
    }

    .quick-note {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 14px 16px;
      background: rgba(216, 183, 106, .08);
      color: var(--gold-soft);
      font-size: 14px;
      font-weight: 800;
    }

    .filter-bar {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding: 2px 2px 12px;
      scrollbar-width: thin;
      margin-bottom: 24px;
    }

    .filter-btn {
      min-height: 42px;
      padding: 0 16px;
      border: 1px solid var(--line-soft);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(17, 16, 20, .86);
      font-weight: 800;
      white-space: nowrap;
      transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
    }

    .filter-btn:hover,
    .filter-btn.active {
      color: #14100B;
      background: var(--gold);
      border-color: var(--gold);
    }

    .filter-btn:active {
      transform: translateY(1px);
    }

    .directory-list {
      display: grid;
      gap: 14px;
    }

    .directory-item {
      display: grid;
      grid-template-columns: 78px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 18px;
      border: 1px solid var(--line-soft);
      border-radius: var(--radius);
      background: rgba(23, 18, 25, .78);
      transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    .directory-item:hover {
      border-color: rgba(216, 183, 106, .5);
      transform: translateY(-1px);
      box-shadow: var(--shadow);
    }

    .issue-no {
      color: var(--gold-soft);
      font-size: 13px;
      font-weight: 900;
      border-left: 3px solid var(--gold);
      padding-left: 12px;
    }

    .directory-item h3 {
      font-size: 20px;
      line-height: 1.35;
      margin-bottom: 6px;
    }

    .directory-item p {
      color: var(--muted);
      margin-bottom: 0;
      font-size: 15px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 11px;
    }

    .tag {
      padding: 7px 9px;
      color: var(--muted);
      background: rgba(255, 255, 255, .035);
      border-color: var(--line-soft);
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .entry-card {
      position: relative;
      min-height: 236px;
      padding: 22px;
      border: 1px solid var(--line-soft);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(23, 18, 25, .96), rgba(11, 9, 13, .9));
      box-shadow: 0 10px 26px rgba(0, 0, 0, .16);
      transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    .entry-card:before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
      background: linear-gradient(180deg, var(--gold), var(--wine));
      border-radius: 8px 0 0 8px;
    }

    .entry-card:hover {
      transform: translateY(-2px);
      border-color: rgba(216, 183, 106, .55);
      box-shadow: var(--shadow);
    }

    .card-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .status {
      padding: 6px 9px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      color: var(--gold-soft);
      background: rgba(122, 35, 51, .28);
      border: 1px solid rgba(216, 183, 106, .22);
    }

    .time {
      color: var(--weak);
      font-size: 13px;
      font-weight: 700;
    }

    .entry-card h3 {
      font-size: 22px;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .entry-card p {
      color: var(--muted);
      margin-bottom: 18px;
      font-size: 15px;
    }

    .entry-card .btn {
      min-height: 40px;
      padding: 0 14px;
    }

    .benefit-layout {
      display: grid;
      grid-template-columns: minmax(260px, .38fr) minmax(0, .62fr);
      gap: 22px;
    }

    .benefit-panel,
    .steps-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(23, 18, 25, .82);
      box-shadow: var(--shadow);
    }

    .benefit-panel {
      padding: 24px;
      background:
        linear-gradient(145deg, rgba(18, 60, 54, .35), rgba(23, 18, 25, .86)),
        rgba(23, 18, 25, .82);
    }

    .benefit-panel h3 {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .benefit-panel p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .check-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      color: var(--text);
    }

    .check-list li:before {
      content: "✓";
      flex: 0 0 22px;
      height: 22px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(216, 183, 106, .14);
      color: var(--gold-soft);
      border: 1px solid var(--line);
      font-size: 12px;
      margin-top: 3px;
    }

    .steps-panel {
      overflow: hidden;
    }

    .step-row {
      display: grid;
      grid-template-columns: 64px minmax(0, 1fr);
      gap: 16px;
      padding: 20px;
      border-bottom: 1px solid var(--line-soft);
    }

    .step-row:last-child {
      border-bottom: 0;
    }

    .step-no {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      color: #14100B;
      background: var(--gold);
      font-weight: 900;
    }

    .step-row h3 {
      margin-bottom: 5px;
      font-size: 19px;
    }

    .step-row p {
      color: var(--muted);
      margin-bottom: 0;
      font-size: 15px;
    }

    .recommend-strip {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
    }

    .recommend-main,
    .recommend-stack a {
      border: 1px solid var(--line-soft);
      border-radius: var(--radius);
      background: rgba(17, 16, 20, .88);
      transition: border-color var(--ease), background var(--ease), transform var(--ease);
    }

    .recommend-main {
      padding: 24px;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(122, 35, 51, .28), rgba(42, 24, 53, .28)),
        rgba(17, 16, 20, .9);
    }

    .recommend-main:hover,
    .recommend-stack a:hover {
      border-color: rgba(216, 183, 106, .55);
      transform: translateY(-1px);
    }

    .recommend-main h3 {
      font-size: 26px;
      line-height: 1.28;
      margin-bottom: 12px;
    }

    .recommend-main p,
    .recommend-stack p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .recommend-stack {
      display: grid;
      gap: 14px;
    }

    .recommend-stack a {
      padding: 18px;
      display: grid;
      gap: 8px;
    }

    .recommend-stack strong {
      font-size: 18px;
    }

    .empty-state,
    .loading-state {
      margin-top: 18px;
      padding: 18px;
      border: 1px dashed var(--line);
      border-radius: var(--radius);
      color: var(--muted);
      background: rgba(216, 183, 106, .045);
    }

    .loading-lines {
      display: grid;
      gap: 10px;
    }

    .loading-lines span {
      height: 12px;
      border-radius: 99px;
      background: linear-gradient(90deg, rgba(255, 255, 255, .05), rgba(216, 183, 106, .12), rgba(255, 255, 255, .05));
      background-size: 220% 100%;
      animation: sheen 1.8s linear infinite;
    }

    .loading-lines span:nth-child(2) {
      width: 76%;
    }

    @keyframes sheen {
      from {
        background-position: 220% 0;
      }
      to {
        background-position: -220% 0;
      }
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--line-soft);
      border-radius: var(--radius);
      background: rgba(23, 18, 25, .72);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 58px;
      padding: 17px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border: 0;
      background: transparent;
      color: var(--text);
      text-align: left;
      font-weight: 900;
    }

    .faq-question span {
      color: var(--gold-soft);
      font-size: 20px;
      transition: transform var(--ease);
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--muted);
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-question span {
      transform: rotate(45deg);
    }

    .save-cta {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(216, 183, 106, .48);
      border-radius: var(--radius);
      background:
        linear-gradient(90deg, rgba(216, 183, 106, .13), rgba(122, 35, 51, .18), rgba(18, 60, 54, .18)),
        rgba(17, 16, 20, .94);
      box-shadow: var(--shadow);
      padding: 30px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
    }

    .save-cta h2 {
      margin-bottom: 10px;
    }

    .save-cta p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .cta-actions {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: #08070A;
      padding: 46px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .7fr .7fr;
      gap: 34px;
      margin-bottom: 28px;
    }

    .footer-brand p {
      color: var(--muted);
      max-width: 520px;
      margin: 16px 0 0;
      font-size: 14px;
    }

    .footer-col h3 {
      font-size: 15px;
      margin-bottom: 12px;
      color: var(--gold-soft);
    }

    .footer-col a {
      display: block;
      color: var(--muted);
      font-size: 14px;
      padding: 5px 0;
      transition: color var(--ease);
    }

    .footer-col a:hover {
      color: var(--gold-soft);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-top: 18px;
      border-top: 1px solid var(--line-soft);
      color: var(--weak);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .nav-links {
        display: none;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .mobile-panel.open {
        display: grid;
      }

      .hero-grid,
      .benefit-layout,
      .recommend-strip,
      .save-cta {
        grid-template-columns: 1fr;
      }

      .hero-panel {
        max-width: none;
      }

      .section-lead {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .entry-grid {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .site-header .btn-secondary {
        display: none;
      }

      .nav {
        min-height: 70px;
        gap: 12px;
      }

      .logo span:last-child {
        max-width: 168px;
        overflow-wrap: anywhere;
        line-height: 1.25;
      }

      .top-strip .container {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        padding: 10px 0;
        gap: 4px;
      }

      .hero {
        padding: 34px 0 30px;
      }

      .hero-copy {
        font-size: 16px;
      }

      .entry-matrix {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 52px 0;
      }

      .directory-item {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .directory-item .btn {
        width: 100%;
      }

      .step-row {
        grid-template-columns: 48px minmax(0, 1fr);
        padding: 18px;
      }

      .save-cta {
        padding: 22px;
      }

      .cta-actions,
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .footer-grid,
      .copyright {
        grid-template-columns: 1fr;
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      body {
        font-size: 15px;
      }

      h1 {
        font-size: 32px;
      }

      .nav-actions .btn-primary {
        padding: 0 12px;
        min-width: 88px;
      }

      .logo-mark {
        width: 34px;
        height: 34px;
      }

      .hero-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
      }

      .badge {
        justify-content: center;
        white-space: normal;
        text-align: center;
      }

      .entry-card,
      .benefit-panel,
      .recommend-main {
        padding: 18px;
      }

      .card-meta {
        align-items: flex-start;
        flex-direction: column;
      }
    }

/* roulang page: category2 */
:root{
      --bg:#0B090D;
      --bg-2:#111014;
      --panel:#171219;
      --panel-2:#1D171D;
      --panel-3:#241C26;
      --text:#E8E0D2;
      --muted:#A99F90;
      --faint:#756D63;
      --gold:#D8B76A;
      --gold-2:#CFA85A;
      --rose:#7A2333;
      --violet:#2A1835;
      --green:#123C36;
      --line:rgba(216,183,106,.28);
      --line-soft:rgba(255,255,255,.08);
      --line-strong:rgba(216,183,106,.42);
      --shadow:0 14px 40px rgba(0,0,0,.35);
      --radius:8px;
      --radius-sm:6px;
      --space:24px;
      --space-sm:16px;
      --container:1240px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:PingFang SC, Microsoft YaHei, Noto Sans SC, Helvetica Neue, Arial, sans-serif;
      background:
        linear-gradient(180deg, rgba(255,255,255,.02), transparent 140px),
        linear-gradient(135deg, rgba(122,35,51,.10), transparent 38%),
        linear-gradient(225deg, rgba(18,60,54,.12), transparent 36%),
        var(--bg);
      color:var(--text);
      line-height:1.8;
      letter-spacing:0;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size:100% 100%, 32px 32px;
      opacity:.18;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.7), rgba(0,0,0,.18) 72%, transparent);
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(216,183,106,.26);color:#fff}

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(11,9,13,.95);
      border-bottom:1px solid rgba(216,183,106,.18);
      backdrop-filter:blur(10px);
      -webkit-backdrop-filter:blur(10px);
    }
    .nav{
      min-height:80px;
      display:flex;
      align-items:center;
      gap:18px;
    }
    .logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-size:18px;
      font-weight:700;
      color:var(--text);
      white-space:nowrap;
      flex-shrink:0;
    }
    .logo-mark{
      width:34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:6px;
      border:1px solid rgba(255,255,255,.10);
      background:linear-gradient(180deg, #E4C983, #CFA85A);
      color:#120F12;
      font-size:15px;
      box-shadow:0 10px 20px rgba(0,0,0,.2);
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:10px;
      flex:1;
      margin-left:8px;
      min-width:0;
    }
    .nav-links a{
      padding:10px 14px;
      border-radius:6px;
      border:1px solid transparent;
      color:var(--muted);
      font-size:15px;
      line-height:1.2;
      transition:transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
    }
    .nav-links a:hover,
    .nav-links a.active{
      color:var(--text);
      border-color:var(--line);
      background:rgba(216,183,106,.08);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-shrink:0;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:0 18px;
      border-radius:6px;
      border:1px solid transparent;
      font-size:15px;
      line-height:1;
      cursor:pointer;
      transition:transform .18s ease, background-color .18s ease, border-color .18s ease, filter .18s ease, box-shadow .18s ease;
      white-space:nowrap;
      user-select:none;
    }
    .btn:hover{transform:translateY(-1px);filter:brightness(1.05)}
    .btn:active{transform:translateY(0)}
    .btn:focus-visible,
    .nav-links a:focus-visible,
    .chip:focus-visible,
    .entry-actions a:focus-visible,
    .related-card a:focus-visible,
    details summary:focus-visible,
    .menu-toggle:focus-visible{
      outline:2px solid var(--gold);
      outline-offset:2px;
    }
    .btn-primary{
      background:linear-gradient(180deg, #E4C983, #CFA85A);
      color:#120F12;
      border-color:rgba(255,255,255,.08);
      box-shadow:0 10px 24px rgba(0,0,0,.24);
    }
    .btn-primary:hover{box-shadow:0 14px 28px rgba(0,0,0,.30)}
    .btn-secondary{
      background:rgba(255,255,255,.02);
      color:var(--text);
      border-color:var(--line);
    }
    .btn-secondary:hover{
      border-color:var(--line-strong);
      background:rgba(216,183,106,.06);
    }
    .menu-toggle{
      display:none;
      min-height:44px;
      padding:0 14px;
      border-radius:6px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.02);
      color:var(--text);
      cursor:pointer;
    }

    .mobile-panel{
      display:none;
      max-height:0;
      overflow:hidden;
      opacity:0;
      transition:max-height .26s ease, opacity .22s ease;
    }
    .mobile-panel.open{
      max-height:320px;
      opacity:1;
      padding-bottom:16px;
    }
    .mobile-panel a{
      display:block;
      padding:12px 4px;
      border-top:1px solid rgba(255,255,255,.08);
      color:var(--muted);
      font-size:15px;
    }
    .mobile-panel a.active{color:var(--text)}

    main{display:block}
    .hero{
      padding:30px 0 14px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      padding:28px;
      border-radius:var(--radius);
      border:1px solid rgba(216,183,106,.22);
      background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
        linear-gradient(135deg, rgba(42,24,53,.34), rgba(17,16,20,.74) 55%, rgba(18,60,54,.24));
      box-shadow:var(--shadow);
    }
    .hero-shell::before{
      content:"";
      position:absolute;
      inset:16px;
      border:1px solid rgba(255,255,255,.05);
      border-radius:calc(var(--radius) - 2px);
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
      gap:24px;
      align-items:stretch;
    }
    .crumbs{
      display:flex;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      color:var(--muted);
      font-size:13px;
    }
    .crumbs a{color:var(--muted)}
    .crumbs span{color:rgba(216,183,106,.7)}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      min-height:30px;
      border-radius:999px;
      border:1px solid rgba(216,183,106,.28);
      background:rgba(216,183,106,.06);
      color:#F4E1AF;
      font-size:12px;
      letter-spacing:0;
    }
    .hero h1{
      margin:16px 0 14px;
      font-size:56px;
      line-height:1.14;
      letter-spacing:0;
      max-width:11ch;
    }
    .hero p{
      margin:0;
      max-width:44rem;
      color:var(--muted);
      font-size:17px;
      line-height:1.85;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:22px 0 18px;
    }
    .hero-badges,
    .stage-badges,
    .cta-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:0 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.02);
      color:var(--text);
      font-size:12px;
      line-height:1;
      white-space:nowrap;
    }
    .badge-gold{
      color:#F4E1AF;
      border-color:rgba(216,183,106,.28);
      background:rgba(216,183,106,.07);
    }
    .badge-rose{
      color:#F0C2C9;
      border-color:rgba(122,35,51,.42);
      background:rgba(122,35,51,.18);
    }
    .badge-green{
      color:#CDEDE5;
      border-color:rgba(18,60,54,.42);
      background:rgba(18,60,54,.18);
    }

    .hero-stage{
      display:flex;
      flex-direction:column;
      gap:16px;
      padding:20px;
      border-radius:var(--radius);
      border:1px solid rgba(216,183,106,.18);
      background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)),
        radial-gradient(circle at top right, rgba(122,35,51,.12), transparent 46%),
        rgba(17,16,20,.82);
    }
    .stage-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      padding-bottom:14px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .stage-head h2{
      margin:0;
      font-size:18px;
      line-height:1.35;
      color:#F6E4BA;
    }
    .stage-head .count{
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(216,183,106,.24);
      background:rgba(216,183,106,.06);
      color:#F4E1AF;
      font-size:12px;
      white-space:nowrap;
    }
    .stage-board{
      display:grid;
      gap:12px;
    }
    .stage-row{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      padding:14px 15px;
      border-radius:6px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(11,9,13,.54);
    }
    .stage-row span{
      color:var(--muted);
      font-size:14px;
    }
    .stage-row strong{
      color:#F3DE9D;
      font-size:22px;
      line-height:1;
    }
    .stage-note{
      padding-top:14px;
      border-top:1px solid rgba(255,255,255,.08);
      color:var(--muted);
      font-size:14px;
      line-height:1.8;
    }

    .section{
      padding:52px 0;
    }
    .section-alt{
      background:linear-gradient(180deg, rgba(42,24,53,.10), rgba(11,9,13,0));
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:20px;
      margin-bottom:18px;
    }
    .section-copy{
      max-width:760px;
    }
    .section-kicker{
      color:#F1D58A;
      font-size:12px;
      line-height:1;
      margin-bottom:8px;
      letter-spacing:0;
    }
    .section-title{
      margin:0;
      font-size:32px;
      line-height:1.2;
      color:var(--text);
    }
    .section-sub{
      margin:10px 0 0;
      color:var(--muted);
      font-size:16px;
      line-height:1.85;
    }

    .filter-bar{
      display:flex;
      gap:10px;
      align-items:center;
      overflow-x:auto;
      padding-bottom:6px;
      scrollbar-width:thin;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:0 16px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.02);
      color:var(--muted);
      cursor:pointer;
      white-space:nowrap;
      transition:transform .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
      flex-shrink:0;
    }
    .chip:hover{
      color:var(--text);
      border-color:rgba(216,183,106,.42);
      background:rgba(216,183,106,.06);
      transform:translateY(-1px);
    }
    .chip.active{
      color:#120F12;
      border-color:transparent;
      background:linear-gradient(180deg, #E4C983, #CFA85A);
      box-shadow:0 10px 24px rgba(0,0,0,.24);
    }

    .layout-grid{
      display:grid;
      grid-template-columns:320px minmax(0,1fr);
      gap:22px;
      align-items:start;
      margin-top:18px;
    }
    .directory-panel{
      position:relative;
    }
    .directory-card{
      position:sticky;
      top:100px;
      padding:20px;
      border-radius:var(--radius);
      border:1px solid rgba(216,183,106,.18);
      background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)), var(--panel);
      box-shadow:var(--shadow);
    }
    .directory-card h3{
      margin:0 0 8px;
      font-size:18px;
      line-height:1.4;
      color:#F4E1AF;
    }
    .directory-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .directory-list{
      list-style:none;
      margin:16px 0 0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .directory-list a{
      display:grid;
      grid-template-columns:auto 1fr;
      gap:12px;
      padding:14px;
      border-radius:6px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.02);
      transition:transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
    }
    .directory-list a:hover{
      transform:translateY(-1px);
      border-color:rgba(216,183,106,.42);
      background:rgba(216,183,106,.05);
      box-shadow:0 10px 22px rgba(0,0,0,.22);
    }
    .directory-list .num{
      color:#F1D58A;
      font-weight:700;
      font-size:14px;
      line-height:1;
      margin-top:2px;
    }
    .directory-list .title{
      display:block;
      font-size:15px;
      line-height:1.35;
      color:var(--text);
      margin-bottom:4px;
    }
    .directory-list .meta{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
    }

    .feed-panel{
      display:grid;
      gap:18px;
      min-width:0;
    }
    .story-group{
      padding:18px;
      border-radius:var(--radius);
      border:1px solid rgba(216,183,106,.16);
      background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012)), var(--panel);
      box-shadow:var(--shadow);
    }
    .group-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:14px;
      margin-bottom:14px;
      padding-bottom:12px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .group-head h3{
      margin:0;
      font-size:22px;
      line-height:1.25;
      color:var(--text);
    }
    .group-head p{
      margin:6px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .group-count{
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(216,183,106,.22);
      background:rgba(216,183,106,.06);
      color:#F4E1AF;
      font-size:12px;
      white-space:nowrap;
    }

    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0, 1fr));
      gap:16px;
    }
    .entry-card{
      position:relative;
      overflow:hidden;
      display:flex;
      flex-direction:column;
      gap:12px;
      min-height:100%;
      padding:18px 18px 16px 18px;
      border-radius:6px;
      border:1px solid rgba(255,255,255,.08);
      background:var(--bg-2);
      transition:transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
    }
    .entry-card::before{
      content:"";
      position:absolute;
      left:0;
      top:0;
      bottom:0;
      width:4px;
      background:linear-gradient(180deg, rgba(216,183,106,1), rgba(216,183,106,.18));
    }
    .entry-card:hover{
      transform:translateY(-1px);
      border-color:rgba(216,183,106,.42);
      box-shadow:0 14px 30px rgba(0,0,0,.28);
    }
    .entry-top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:flex-start;
    }
    .entry-title{
      margin:0;
      font-size:20px;
      line-height:1.35;
      color:var(--text);
    }
    .status{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:28px;
      padding:0 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      font-size:12px;
      white-space:nowrap;
      flex-shrink:0;
    }
    .status-live{
      color:#CDEDE5;
      background:rgba(18,60,54,.24);
      border-color:rgba(18,60,54,.34);
    }
    .status-hot{
      color:#F2D8DE;
      background:rgba(122,35,51,.22);
      border-color:rgba(122,35,51,.36);
    }
    .status-gold{
      color:#F7E5B5;
      background:rgba(216,183,106,.08);
      border-color:rgba(216,183,106,.24);
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      color:var(--muted);
      font-size:12px;
      line-height:1.4;
    }
    .entry-summary{
      margin:0;
      color:#D8D0C2;
      font-size:15px;
      line-height:1.8;
    }
    .entry-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      min-height:26px;
      padding:0 10px;
      border-radius:999px;
      border:1px solid rgba(216,183,106,.22);
      background:rgba(216,183,106,.06);
      color:#F4E1AF;
      font-size:12px;
      line-height:1;
      white-space:nowrap;
    }
    .tag.alt{
      border-color:rgba(255,255,255,.08);
      background:rgba(255,255,255,.03);
      color:var(--text);
    }
    .entry-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:auto;
      padding-top:4px;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:0 14px;
      border-radius:6px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.02);
      color:var(--text);
      font-size:14px;
      line-height:1;
      transition:transform .18s ease, border-color .18s ease, background-color .18s ease;
    }
    .text-link:hover{
      transform:translateY(-1px);
      border-color:rgba(216,183,106,.42);
      background:rgba(216,183,106,.06);
    }
    .text-link.gold{
      border-color:rgba(216,183,106,.24);
      color:#F6E4BA;
    }

    .feed-empty{
      display:none;
      padding:20px;
      border-radius:var(--radius);
      border:1px dashed rgba(216,183,106,.28);
      background:rgba(255,255,255,.02);
      color:var(--muted);
      box-shadow:var(--shadow);
    }
    .feed-empty strong{
      display:block;
      margin-bottom:8px;
      color:var(--text);
      font-size:16px;
    }
    .feed-empty .empty-actions{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:14px;
    }

    .related-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0, 1fr));
      gap:16px;
      margin-top:18px;
    }
    .related-card{
      padding:18px;
      border-radius:var(--radius);
      border:1px solid rgba(216,183,106,.16);
      background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012)), var(--panel-2);
      box-shadow:var(--shadow);
      transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .related-card:hover{
      transform:translateY(-1px);
      border-color:rgba(216,183,106,.38);
      box-shadow:0 14px 32px rgba(0,0,0,.28);
    }
    .related-card .num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:30px;
      min-height:30px;
      padding:0 8px;
      border-radius:999px;
      border:1px solid rgba(216,183,106,.24);
      background:rgba(216,183,106,.06);
      color:#F4E1AF;
      font-size:12px;
      margin-bottom:10px;
    }
    .related-card h3{
      margin:0 0 8px;
      font-size:18px;
      line-height:1.4;
    }
    .related-card p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .related-card a{
      color:#F4E1AF;
      font-size:14px;
    }

    .cta-band{
      padding:34px 0 52px;
    }
    .cta-shell{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      padding:24px;
      border-radius:var(--radius);
      border:1px solid rgba(216,183,106,.26);
      background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.015)),
        linear-gradient(135deg, rgba(122,35,51,.18), rgba(18,60,54,.12));
      box-shadow:var(--shadow);
    }
    .cta-copy{
      max-width:760px;
    }
    .cta-copy h2{
      margin:0 0 8px;
      font-size:28px;
      line-height:1.25;
      color:#F6E4BA;
    }
    .cta-copy p{
      margin:0;
      color:var(--muted);
      font-size:15px;
      line-height:1.8;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      flex-shrink:0;
    }

    .faq-list{
      display:grid;
      gap:12px;
      margin-top:18px;
    }
    details.faq-item{
      border-radius:var(--radius);
      border:1px solid rgba(216,183,106,.16);
      background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.012)), var(--panel);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    details.faq-item[open]{
      border-color:rgba(216,183,106,.34);
    }
    details.faq-item summary{
      list-style:none;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding:16px 18px;
      cursor:pointer;
      font-size:16px;
      font-weight:600;
      line-height:1.5;
      color:var(--text);
    }
    details.faq-item summary::-webkit-details-marker{display:none}
    details.faq-item summary::after{
      content:"+";
      color:#F4E1BA;
      font-size:20px;
      line-height:1;
      flex-shrink:0;
    }
    details.faq-item[open] summary::after{content:"–"}
    .faq-body{
      padding:0 18px 18px;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
    }

    .site-footer{
      padding:34px 0 22px;
      border-top:1px solid rgba(216,183,106,.18);
      background:linear-gradient(180deg, rgba(255,255,255,.015), rgba(255,255,255,0));
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .8fr .8fr;
      gap:28px;
      padding-top:22px;
    }
    .footer-brand p{
      margin:14px 0 0;
      color:var(--muted);
      font-size:15px;
      line-height:1.85;
      max-width:34em;
    }
    .footer-col h3{
      margin:0 0 12px;
      font-size:14px;
      line-height:1.4;
      color:#F4E1AF;
    }
    .footer-col a{
      display:block;
      padding:7px 0;
      color:var(--muted);
      font-size:15px;
      transition:color .18s ease;
    }
    .footer-col a:hover{color:var(--text)}
    .copyright{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      flex-wrap:wrap;
      padding-top:18px;
      margin-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      color:var(--faint);
      font-size:13px;
      line-height:1.7;
    }

    .visually-hidden{
      position:absolute!important;
      width:1px!important;
      height:1px!important;
      margin:-1px!important;
      padding:0!important;
      overflow:hidden!important;
      clip:rect(0,0,0,0)!important;
      border:0!important;
      white-space:nowrap!important;
    }

    @media (max-width: 1180px){
      .hero h1{font-size:48px;max-width:12ch}
      .related-grid{grid-template-columns:repeat(2, minmax(0, 1fr))}
    }

    @media (max-width: 1024px){
      .nav-links{display:none}
      .menu-toggle{display:inline-flex}
      .mobile-panel{display:block}
      .hero-grid{grid-template-columns:1fr}
      .layout-grid{grid-template-columns:1fr}
      .directory-card{
        position:relative;
        top:auto;
      }
      .entry-grid{grid-template-columns:1fr 1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }

    @media (max-width: 768px){
      .container{width:min(var(--container), calc(100% - 24px))}
      .nav{min-height:72px}
      .nav-actions{gap:8px}
      .btn{min-height:42px;padding:0 15px;font-size:14px}
      .hero{padding-top:20px}
      .hero-shell{padding:18px}
      .hero h1{font-size:36px;max-width:100%}
      .hero p{font-size:15px}
      .hero-stage{padding:16px}
      .section{padding:42px 0}
      .section-title{font-size:26px}
      .section-sub{font-size:15px}
      .entry-grid{grid-template-columns:1fr}
      .related-grid{grid-template-columns:1fr}
      .cta-shell{flex-direction:column;align-items:flex-start}
      .cta-actions{width:100%}
      .cta-actions .btn{width:100%}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column}
      details.faq-item summary{font-size:15px}
    }

    @media (max-width: 520px){
      .container{width:min(var(--container), calc(100% - 20px))}
      .hero-shell{padding:16px}
      .hero h1{font-size:32px}
      .hero-actions,.cta-actions{gap:10px}
      .hero-actions .btn,.cta-actions .btn,.nav-actions .btn{width:100%}
      .nav-actions{flex:1;justify-content:flex-end}
      .nav .logo{font-size:16px}
      .logo-mark{width:32px;height:32px}
      .stage-row{padding:12px}
      .stage-row strong{font-size:20px}
      .entry-card,.story-group,.related-card,.directory-card,.cta-shell{padding:16px}
      .entry-title{font-size:18px}
      .group-head h3{font-size:19px}
      .section-title{font-size:24px}
    }

    @media (prefers-reduced-motion: reduce){
      html{scroll-behavior:auto}
      *,*::before,*::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        transition-duration:.01ms!important;
        scroll-behavior:auto!important;
      }
    }
