/* roulang page: index */
:root {
      --bg: #11100f;
      --bg-soft: #191715;
      --bg-warm: #f5efe4;
      --panel: rgba(34, 30, 27, .78);
      --panel-solid: #211d1a;
      --text: #fff7ea;
      --text-dark: #1f1a16;
      --muted: #bdb1a2;
      --muted-dark: #665c52;
      --line: rgba(236, 191, 118, .24);
      --line-soft: rgba(255, 255, 255, .1);
      --gold: #e7ad55;
      --gold-2: #f2ca84;
      --copper: #bd6642;
      --wine: #7f2530;
      --cream: #fff4df;
      --gray: #958b80;
      --radius: 8px;
      --shadow: 0 22px 70px rgba(0, 0, 0, .34);
      --shadow-soft: 0 14px 34px rgba(0, 0, 0, .22);
      --container: 1180px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background: var(--bg);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      line-height: 1.72;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button:focus,
    a:focus,
    input:focus {
      outline: 2px solid rgba(231, 173, 85, .55);
      outline-offset: 3px;
    }

    .site-shell {
      background:
        radial-gradient(circle at 18% 12%, rgba(189, 102, 66, .22), transparent 34%),
        linear-gradient(180deg, #13110f 0%, #191512 48%, #100f0e 100%);
      min-height: 100vh;
    }

    .wrap {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .glass-header {
      position: fixed;
      inset: 14px 0 auto;
      z-index: 60;
      transition: inset var(--ease), background var(--ease), box-shadow var(--ease), border-color var(--ease);
    }

    .glass-header.is-solid {
      inset: 0 0 auto;
    }

    .nav-frame {
      width: min(var(--container), calc(100% - 28px));
      margin: 0 auto;
      border: 1px solid rgba(242, 202, 132, .25);
      border-radius: var(--radius);
      background: rgba(18, 16, 14, .52);
      backdrop-filter: blur(18px);
      box-shadow: 0 16px 44px rgba(0, 0, 0, .25);
      overflow: hidden;
    }

    .glass-header.is-solid .nav-frame {
      width: 100%;
      border-radius: 0;
      border-left: 0;
      border-right: 0;
      background: rgba(18, 16, 14, .92);
    }

    .top-bar,
    .top-bar ul {
      background: transparent;
    }

    .top-bar {
      padding: 12px 16px;
      gap: 18px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--cream);
      font-weight: 900;
      line-height: 1.15;
      max-width: 260px;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      color: #25160e;
      background: linear-gradient(135deg, var(--gold), var(--copper));
      border-radius: 7px;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .35), 0 10px 22px rgba(189, 102, 66, .28);
      font-weight: 950;
    }

    .brand span:last-child {
      overflow-wrap: anywhere;
    }

    .nav-links {
      gap: 4px;
    }

    .nav-links a {
      color: rgba(255, 247, 234, .82);
      padding: 10px 13px;
      border-radius: 7px;
      font-size: 14px;
      font-weight: 700;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--cream);
      background: rgba(231, 173, 85, .13);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-mini {
      width: 190px;
      height: 38px;
      color: var(--cream);
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 7px;
      background: rgba(255, 255, 255, .08);
      padding: 0 12px;
      margin: 0;
      box-shadow: none;
    }

    .search-mini::placeholder {
      color: rgba(255, 247, 234, .58);
    }

    .button,
    .button:visited {
      margin: 0;
      border-radius: 7px;
      font-weight: 850;
      letter-spacing: 0;
      transition: transform var(--ease), box-shadow var(--ease), filter var(--ease), border-color var(--ease);
    }

    .button.primary-cta {
      color: #25160e;
      background: linear-gradient(135deg, var(--gold-2), var(--gold));
      border: 1px solid rgba(255, 255, 255, .22);
      box-shadow: 0 12px 28px rgba(231, 173, 85, .2);
    }

    .button.primary-cta:hover {
      color: #1d120b;
      transform: translateY(-2px);
      filter: brightness(1.05);
      box-shadow: 0 16px 38px rgba(231, 173, 85, .28);
    }

    .button.hollow-cta {
      color: var(--cream);
      border: 1px solid rgba(242, 202, 132, .42);
      background: rgba(255, 255, 255, .05);
    }

    .button.hollow-cta:hover {
      color: var(--cream);
      border-color: var(--gold);
      background: rgba(231, 173, 85, .12);
      transform: translateY(-2px);
    }

    .menu-icon::after {
      background: var(--cream);
      box-shadow: 0 7px 0 var(--cream), 0 14px 0 var(--cream);
    }

    .hero {
      position: relative;
      min-height: 760px;
      padding: 150px 0 76px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(17, 16, 15, .96) 0%, rgba(17, 16, 15, .76) 46%, rgba(17, 16, 15, .44) 100%),
        url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1800&q=82") center/cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(17, 16, 15, .08), rgba(17, 16, 15, .9)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 76px);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(340px, .74fr);
      gap: 34px;
      align-items: stretch;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold-2);
      border: 1px solid rgba(231, 173, 85, .32);
      background: rgba(231, 173, 85, .09);
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 13px;
      font-weight: 850;
      margin-bottom: 18px;
    }

    .kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 5px rgba(231, 173, 85, .16);
    }

    h1,
    h2,
    h3 {
      margin: 0;
      line-height: 1.16;
      letter-spacing: 0;
    }

    h1 {
      max-width: 760px;
      font-size: clamp(42px, 6vw, 76px);
      font-weight: 950;
      color: var(--cream);
      text-wrap: balance;
      overflow-wrap: anywhere;
    }

    .hero-lead {
      max-width: 720px;
      margin: 22px 0 26px;
      color: rgba(255, 247, 234, .82);
      font-size: 18px;
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin-bottom: 30px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      max-width: 720px;
      gap: 12px;
    }

    .point {
      border: 1px solid rgba(255, 255, 255, .11);
      background: rgba(255, 255, 255, .07);
      border-radius: var(--radius);
      padding: 14px 15px;
      backdrop-filter: blur(10px);
    }

    .point strong {
      display: block;
      color: var(--gold-2);
      font-size: 22px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .point span {
      display: block;
      color: rgba(255, 247, 234, .72);
      font-size: 13px;
      line-height: 1.45;
    }

    .support-board {
      border: 1px solid rgba(242, 202, 132, .24);
      background: linear-gradient(180deg, rgba(31, 27, 24, .82), rgba(31, 27, 24, .64));
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      padding: 22px;
      align-self: end;
    }

    .board-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .board-head h2 {
      color: var(--cream);
      font-size: 24px;
      font-weight: 950;
    }

    .board-head p {
      margin: 6px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .progress-ring {
      width: 104px;
      height: 104px;
      flex: 0 0 auto;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background:
        radial-gradient(circle at center, #221c16 0 56%, transparent 57%),
        conic-gradient(var(--gold) 0 78%, rgba(255, 255, 255, .1) 78% 100%);
      box-shadow: inset 0 0 0 1px rgba(242, 202, 132, .18);
    }

    .progress-ring strong {
      color: var(--cream);
      font-size: 24px;
      line-height: 1;
    }

    .tier-list {
      display: grid;
      gap: 10px;
      margin: 18px 0;
    }

    .tier {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      border: 1px solid rgba(255, 255, 255, .11);
      border-radius: 7px;
      background: rgba(255, 255, 255, .055);
      padding: 12px;
    }

    .tier b {
      color: var(--cream);
      font-size: 15px;
    }

    .tier small {
      display: block;
      color: var(--muted);
      margin-top: 2px;
      line-height: 1.45;
    }

    .tier .badge {
      border-radius: 999px;
      background: rgba(231, 173, 85, .14);
      color: var(--gold-2);
      padding: 5px 9px;
      font-weight: 850;
      font-size: 12px;
      white-space: nowrap;
    }

    .heat-strip {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      color: var(--muted);
      font-size: 13px;
      padding-top: 15px;
      border-top: 1px solid rgba(255, 255, 255, .1);
    }

    section {
      position: relative;
      padding: 76px 0;
    }

    .section-dark {
      background: var(--bg);
    }

    .section-soft {
      background: #171412;
    }

    .section-warm {
      background: var(--bg-warm);
      color: var(--text-dark);
    }

    .section-title {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(260px, .55fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-title h2 {
      color: inherit;
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 950;
      overflow-wrap: anywhere;
    }

    .section-title p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
    }

    .section-warm .section-title p {
      color: var(--muted-dark);
    }

    .latest-layout {
      display: grid;
      grid-template-columns: minmax(0, .86fr) minmax(340px, .74fr);
      gap: 22px;
      align-items: stretch;
    }

    .update-rail {
      display: grid;
      gap: 12px;
    }

    .update-row {
      display: grid;
      grid-template-columns: 92px 1fr auto;
      gap: 16px;
      align-items: center;
      min-height: 76px;
      border: 1px solid var(--line-soft);
      background: rgba(255, 255, 255, .045);
      border-radius: var(--radius);
      padding: 14px;
    }

    .update-row:hover {
      border-color: rgba(231, 173, 85, .35);
      background: rgba(231, 173, 85, .08);
      transform: translateY(-2px);
    }

    .date-chip {
      color: var(--gold-2);
      font-size: 13px;
      font-weight: 900;
    }

    .update-row h3 {
      color: var(--cream);
      font-size: 17px;
      font-weight: 900;
      margin-bottom: 3px;
    }

    .update-row p {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
      line-height: 1.5;
    }

    .status-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 0 6px rgba(231, 173, 85, .13);
    }

    .entry-matrix {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      border: 1px solid rgba(242, 202, 132, .2);
      background: rgba(255, 255, 255, .055);
      border-radius: var(--radius);
      padding: 16px;
    }

    .entry-tile {
      min-height: 122px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 7px;
      padding: 15px;
      background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
    }

    .entry-tile:hover {
      border-color: rgba(231, 173, 85, .42);
      transform: translateY(-2px);
    }

    .entry-tile b {
      color: var(--cream);
      font-size: 16px;
    }

    .entry-tile span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .answer-grid {
      display: grid;
      grid-template-columns: .78fr 1fr;
      gap: 22px;
      align-items: start;
    }

    .quick-card {
      border-radius: var(--radius);
      background: #211b17;
      border: 1px solid var(--line);
      padding: 26px;
      box-shadow: var(--shadow-soft);
    }

    .quick-card h2 {
      color: var(--cream);
      font-size: 34px;
      font-weight: 950;
      margin-bottom: 12px;
    }

    .quick-card p {
      color: var(--muted);
      margin: 0 0 18px;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      border: 1px solid rgba(242, 202, 132, .27);
      border-radius: 999px;
      color: var(--gold-2);
      background: rgba(231, 173, 85, .08);
      padding: 6px 12px;
      font-size: 13px;
      font-weight: 800;
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 10px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: var(--radius);
      overflow: hidden;
      background: rgba(255, 255, 255, .045);
    }

    .accordion-title {
      color: var(--cream);
      border: 0;
      font-size: 16px;
      font-weight: 900;
      padding: 18px 52px 18px 18px;
      background: transparent;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--gold-2);
      background: rgba(231, 173, 85, .08);
    }

    .accordion-content {
      color: var(--muted);
      border: 0;
      background: rgba(0, 0, 0, .12);
      padding: 0 18px 18px;
      font-size: 15px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 24px;
      align-items: start;
    }

    .news-list {
      display: grid;
      gap: 10px;
    }

    .news-link {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      color: var(--text-dark);
      border-bottom: 1px solid rgba(31, 26, 22, .14);
      padding: 16px 0;
    }

    .news-link:hover {
      color: #8a3b26;
    }

    .news-link strong {
      font-size: 18px;
      line-height: 1.45;
    }

    .news-link span {
      color: var(--muted-dark);
      font-size: 13px;
      white-space: nowrap;
    }

    .recommend-box {
      border-radius: var(--radius);
      border: 1px solid rgba(31, 26, 22, .14);
      background: #fffaf0;
      padding: 22px;
      box-shadow: 0 16px 40px rgba(70, 48, 24, .1);
    }

    .recommend-box h3 {
      color: var(--text-dark);
      font-size: 22px;
      font-weight: 950;
      margin-bottom: 14px;
    }

    .rank-item {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      padding: 12px 0;
      border-top: 1px solid rgba(31, 26, 22, .1);
    }

    .rank-num {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 7px;
      background: #2a2019;
      color: var(--gold-2);
      font-weight: 950;
      font-size: 13px;
    }

    .rank-item b {
      display: block;
      color: var(--text-dark);
      line-height: 1.4;
    }

    .rank-item small {
      color: var(--muted-dark);
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .trust-card {
      min-height: 178px;
      border: 1px solid rgba(242, 202, 132, .22);
      background: rgba(255, 255, 255, .05);
      border-radius: var(--radius);
      padding: 20px;
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .trust-card:hover {
      transform: translateY(-3px);
      border-color: rgba(231, 173, 85, .42);
      background: rgba(231, 173, 85, .075);
    }

    .trust-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 7px;
      background: rgba(231, 173, 85, .12);
      color: var(--gold-2);
      font-weight: 950;
      margin-bottom: 16px;
    }

    .trust-card h3 {
      color: var(--cream);
      font-size: 18px;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .trust-card p {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
      line-height: 1.65;
    }

    .app-stage {
      display: grid;
      grid-template-columns: minmax(0, .86fr) minmax(320px, .62fr);
      gap: 28px;
      align-items: center;
    }

    .device-panel {
      border: 1px solid rgba(31, 26, 22, .16);
      background: #fffaf0;
      color: var(--text-dark);
      border-radius: var(--radius);
      padding: 26px;
      box-shadow: 0 18px 44px rgba(70, 48, 24, .12);
    }

    .device-panel h2 {
      font-size: 38px;
      font-weight: 950;
      margin-bottom: 14px;
    }

    .device-panel p {
      color: var(--muted-dark);
      margin-bottom: 22px;
    }

    .device-list {
      display: grid;
      gap: 10px;
      margin-bottom: 22px;
    }

    .device-item {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 13px 14px;
      border: 1px solid rgba(31, 26, 22, .11);
      border-radius: 7px;
      background: #fff4df;
    }

    .device-item b {
      color: var(--text-dark);
    }

    .device-item span {
      color: #8a3b26;
      font-weight: 900;
    }

    .poster-collage {
      min-height: 360px;
      border-radius: var(--radius);
      border: 1px solid rgba(242, 202, 132, .24);
      background:
        linear-gradient(140deg, rgba(127, 37, 48, .75), rgba(33, 29, 26, .88)),
        url("https://images.unsplash.com/photo-1492447166138-50c3889fccb1?auto=format&fit=crop&w=900&q=78") center/cover no-repeat;
      box-shadow: var(--shadow);
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      position: relative;
    }

    .poster-collage::after {
      content: "";
      position: absolute;
      inset: auto 24px 24px;
      height: 2px;
      background: linear-gradient(90deg, var(--gold), transparent);
    }

    .poster-collage h3 {
      position: relative;
      z-index: 1;
      color: var(--cream);
      font-size: 26px;
      font-weight: 950;
      margin-bottom: 10px;
    }

    .poster-collage p {
      position: relative;
      z-index: 1;
      color: rgba(255, 247, 234, .78);
      margin: 0;
    }

    .voice-wall {
      display: grid;
      grid-template-columns: .76fr 1fr;
      gap: 24px;
      align-items: start;
    }

    .avatar-wall {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 8px;
      padding: 18px;
      border: 1px solid rgba(242, 202, 132, .2);
      border-radius: var(--radius);
      background: rgba(255, 255, 255, .05);
    }

    .avatar {
      aspect-ratio: 1;
      border-radius: 7px;
      display: grid;
      place-items: center;
      color: #2a1a10;
      font-weight: 950;
      background: linear-gradient(135deg, #f2ca84, #bd6642);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .32);
    }

    .bubble-grid {
      display: grid;
      gap: 12px;
    }

    .bubble {
      border: 1px solid rgba(255, 255, 255, .12);
      background: rgba(255, 255, 255, .055);
      border-radius: var(--radius);
      padding: 16px;
    }

    .bubble p {
      color: var(--cream);
      margin: 0 0 10px;
      font-size: 15px;
    }

    .bubble small {
      color: var(--gold-2);
      font-weight: 850;
    }

    .limit-band {
      border-top: 1px solid rgba(242, 202, 132, .22);
      border-bottom: 1px solid rgba(242, 202, 132, .22);
      background: linear-gradient(90deg, rgba(127, 37, 48, .48), rgba(189, 102, 66, .28), rgba(17, 16, 15, .2));
      padding: 28px 0;
    }

    .limit-inner {
      display: grid;
      grid-template-columns: 1fr auto auto;
      gap: 18px;
      align-items: center;
    }

    .limit-inner h2 {
      color: var(--cream);
      font-size: 28px;
      font-weight: 950;
    }

    .limit-inner p {
      color: rgba(255, 247, 234, .74);
      margin: 5px 0 0;
    }

    .countdown {
      display: flex;
      gap: 8px;
    }

    .timebox {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(242, 202, 132, .28);
      border-radius: 7px;
      background: rgba(0, 0, 0, .2);
      color: var(--gold-2);
      font-weight: 950;
      line-height: 1.1;
    }

    .timebox small {
      display: block;
      color: rgba(255, 247, 234, .62);
      font-size: 11px;
      font-weight: 700;
    }

    .site-footer {
      background: #0d0c0b;
      color: rgba(255, 247, 234, .72);
      padding: 54px 0 28px;
      border-top: 1px solid rgba(242, 202, 132, .18);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: start;
      margin-bottom: 32px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--cream);
      font-weight: 950;
      margin-bottom: 12px;
    }

    .footer-note {
      max-width: 660px;
      margin: 0;
      color: rgba(255, 247, 234, .62);
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 18px;
      justify-content: flex-end;
    }

    .footer-links a {
      color: rgba(255, 247, 234, .7);
      font-weight: 750;
    }

    .footer-links a:hover {
      color: var(--gold-2);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .09);
      color: rgba(255, 247, 234, .52);
      font-size: 13px;
    }

    @media screen and (max-width: 1024px) {
      .hero-grid,
      .latest-layout,
      .answer-grid,
      .news-layout,
      .app-stage,
      .voice-wall {
        grid-template-columns: 1fr;
      }

      .hero {
        min-height: auto;
        padding-top: 136px;
      }

      .support-board {
        align-self: auto;
      }

      .section-title {
        grid-template-columns: 1fr;
      }

      .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .limit-inner {
        grid-template-columns: 1fr;
      }
    }

    @media screen and (max-width: 768px) {
      .wrap {
        width: min(100% - 28px, var(--container));
      }

      .glass-header {
        inset: 8px 0 auto;
      }

      .top-bar {
        padding: 10px 12px;
      }

      .top-bar-right {
        width: 100%;
      }

      .nav-actions {
        width: 100%;
        align-items: stretch;
        flex-direction: column;
        padding-top: 12px;
      }

      .nav-links {
        padding: 8px 0;
      }

      .nav-links a {
        padding: 11px 10px;
      }

      .search-mini {
        width: 100%;
      }

      .hero {
        padding: 124px 0 56px;
      }

      h1 {
        font-size: 40px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-points,
      .entry-matrix,
      .trust-grid {
        grid-template-columns: 1fr;
      }

      .update-row {
        grid-template-columns: 1fr auto;
      }

      .update-row .date-chip {
        grid-column: 1 / -1;
      }

      section {
        padding: 58px 0;
      }

      .news-link {
        grid-template-columns: 1fr;
        gap: 5px;
      }

      .avatar-wall {
        grid-template-columns: repeat(4, 1fr);
      }

      .footer-grid,
      .copyright {
        grid-template-columns: 1fr;
        flex-direction: column;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media screen and (max-width: 520px) {
      .brand {
        max-width: 210px;
        font-size: 14px;
      }

      .hero-actions .button {
        width: 100%;
      }

      .support-board,
      .quick-card,
      .device-panel {
        padding: 18px;
      }

      .board-head {
        flex-direction: column;
      }

      .progress-ring {
        width: 92px;
        height: 92px;
      }

      .countdown {
        flex-wrap: wrap;
      }

      .timebox {
        width: 52px;
        height: 52px;
      }

      .avatar-wall {
        grid-template-columns: repeat(3, 1fr);
      }
    }

/* roulang page: category1 */
:root {
      --ink: #17120f;
      --coal: #221a17;
      --coal-2: #30241f;
      --wine: #6b1f2b;
      --amber: #d89a37;
      --copper: #b86b35;
      --cream: #f5efe5;
      --paper: #fff8ed;
      --muted: #bfb0a2;
      --soft: #e9dccb;
      --line: rgba(245, 239, 229, .18);
      --line-dark: rgba(48, 36, 31, .14);
      --shadow: 0 18px 48px rgba(0, 0, 0, .22);
      --shadow-soft: 0 10px 28px rgba(35, 24, 18, .12);
      --radius: 8px;
      --radius-sm: 6px;
      --max: 1180px;
      --ease: .22s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--coal);
      background: var(--cream);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
      line-height: 1.7;
      text-rendering: optimizeLegibility;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    input:focus,
    button:focus,
    a:focus {
      outline: 2px solid rgba(216, 154, 55, .75);
      outline-offset: 3px;
    }

    .wrap {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .glass-header {
      position: fixed;
      top: 16px;
      left: 0;
      width: 100%;
      z-index: 50;
      transition: top var(--ease), background var(--ease);
    }

    .nav-frame {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
      border: 1px solid rgba(245, 239, 229, .22);
      border-radius: var(--radius);
      background: rgba(23, 18, 15, .54);
      backdrop-filter: blur(18px);
      box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
      overflow: hidden;
    }

    .glass-header.is-solid {
      top: 0;
    }

    .glass-header.is-solid .nav-frame {
      border-radius: 0 0 var(--radius) var(--radius);
      background: rgba(23, 18, 15, .92);
    }

    .top-bar,
    .top-bar ul {
      background: transparent;
    }

    .top-bar {
      padding: 0.72rem 0.9rem;
    }

    .top-bar-right {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--paper);
      font-weight: 800;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand:hover {
      color: #fff;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: var(--radius-sm);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #211511;
      font-weight: 900;
      background: linear-gradient(135deg, var(--amber), #ffe0a3);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .28), 0 8px 22px rgba(216, 154, 55, .24);
    }

    .nav-links {
      gap: 3px;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255, 248, 237, .78);
      border-radius: var(--radius-sm);
      padding: .64rem .86rem;
      font-weight: 650;
      line-height: 1.2;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #fff;
      background: rgba(216, 154, 55, .16);
      box-shadow: inset 0 0 0 1px rgba(216, 154, 55, .24);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-mini {
      width: 210px;
      height: 40px;
      margin: 0;
      border: 1px solid rgba(245, 239, 229, .2);
      border-radius: var(--radius-sm);
      background: rgba(255, 248, 237, .1);
      color: var(--paper);
      box-shadow: none;
      padding: 0 14px;
    }

    .search-mini::placeholder {
      color: rgba(245, 239, 229, .58);
    }

    .button {
      border-radius: var(--radius-sm);
      font-weight: 800;
      letter-spacing: 0;
      margin: 0;
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
    }

    .primary-cta,
    .button.primary-cta {
      color: #211511;
      background: var(--amber);
      border: 1px solid rgba(255, 224, 163, .7);
      box-shadow: 0 12px 24px rgba(216, 154, 55, .22);
    }

    .primary-cta:hover,
    .button.primary-cta:hover {
      color: #211511;
      background: #efb354;
      transform: translateY(-1px);
      box-shadow: 0 16px 30px rgba(216, 154, 55, .3);
    }

    .button.ghost-cta {
      color: var(--paper);
      background: rgba(245, 239, 229, .08);
      border: 1px solid rgba(245, 239, 229, .28);
    }

    .button.ghost-cta:hover {
      color: #fff;
      background: rgba(245, 239, 229, .14);
      transform: translateY(-1px);
    }

    .menu-icon:after {
      background: var(--paper);
      box-shadow: 0 7px 0 var(--paper), 0 14px 0 var(--paper);
    }

    .category-hero {
      min-height: 690px;
      display: flex;
      align-items: center;
      padding: 140px 0 76px;
      color: var(--paper);
      background:
        linear-gradient(90deg, rgba(23, 18, 15, .96), rgba(42, 27, 22, .83) 44%, rgba(107, 31, 43, .62)),
        radial-gradient(circle at 72% 18%, rgba(216, 154, 55, .24), transparent 34%),
        url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=1800&q=80") center/cover;
      position: relative;
      overflow: hidden;
    }

    .category-hero:after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 150px;
      background: linear-gradient(180deg, transparent, var(--cream));
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(340px, .72fr);
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      border: 1px solid rgba(216, 154, 55, .36);
      border-radius: var(--radius-sm);
      color: #ffe2a9;
      background: rgba(216, 154, 55, .12);
      font-size: .88rem;
      font-weight: 800;
    }

    .hero-title {
      margin: 22px 0 16px;
      font-size: clamp(2.25rem, 5vw, 5rem);
      line-height: 1.04;
      font-weight: 950;
      letter-spacing: 0;
      color: #fffaf1;
      max-width: 830px;
      overflow-wrap: anywhere;
    }

    .hero-copy {
      max-width: 680px;
      color: rgba(255, 248, 237, .82);
      font-size: 1.12rem;
      margin-bottom: 28px;
    }

    .reward-strip {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 0 0 24px;
    }

    .reward-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #fff5de;
      padding: 8px 11px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(245, 239, 229, .2);
      background: rgba(255, 248, 237, .08);
      font-size: .92rem;
      font-weight: 750;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .invite-panel {
      border: 1px solid rgba(245, 239, 229, .2);
      border-radius: var(--radius);
      background: rgba(23, 18, 15, .58);
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow);
      padding: 24px;
    }

    .panel-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 18px;
    }

    .panel-kicker {
      color: var(--muted);
      font-size: .9rem;
      margin-bottom: 3px;
    }

    .panel-title {
      color: #fff;
      font-size: 1.34rem;
      font-weight: 900;
      margin: 0;
    }

    .score-badge {
      min-width: 78px;
      text-align: center;
      color: #211511;
      background: #f0b957;
      border-radius: var(--radius-sm);
      padding: 8px 10px;
      font-weight: 900;
      box-shadow: 0 10px 22px rgba(216, 154, 55, .24);
    }

    .progress-label {
      display: flex;
      justify-content: space-between;
      color: rgba(255, 248, 237, .78);
      font-size: .9rem;
      margin-bottom: 9px;
    }

    .progress-shell {
      height: 12px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(245, 239, 229, .12);
      border: 1px solid rgba(245, 239, 229, .12);
    }

    .progress-fill {
      width: 76%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--amber), #ffe0a3);
      box-shadow: 0 0 22px rgba(216, 154, 55, .36);
    }

    .invite-list {
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .invite-list li {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 11px 0;
      border-bottom: 1px solid rgba(245, 239, 229, .1);
      color: rgba(255, 248, 237, .78);
    }

    .invite-list strong {
      color: #fff;
      white-space: nowrap;
    }

    main {
      background: var(--cream);
    }

    .section {
      padding: 76px 0;
    }

    .section.dark {
      color: var(--paper);
      background: linear-gradient(180deg, var(--ink), #261b17);
    }

    .section.tight {
      padding: 54px 0;
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .76fr) minmax(280px, .38fr);
      gap: 30px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-label {
      color: var(--wine);
      font-weight: 900;
      margin-bottom: 8px;
    }

    .section.dark .section-label {
      color: #ffd58d;
    }

    .section-title {
      margin: 0;
      font-size: clamp(1.65rem, 3vw, 2.7rem);
      line-height: 1.15;
      font-weight: 950;
      letter-spacing: 0;
      color: var(--coal);
    }

    .section.dark .section-title {
      color: #fff7ea;
    }

    .section-summary {
      color: #75685f;
      margin: 0;
    }

    .section.dark .section-summary {
      color: rgba(255, 248, 237, .68);
    }

    .filter-dock {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, minmax(130px, .5fr)) auto;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border: 1px solid var(--line-dark);
      border-radius: var(--radius);
      background: rgba(255, 248, 237, .74);
      box-shadow: var(--shadow-soft);
    }

    .filter-input,
    .filter-select {
      height: 46px;
      margin: 0;
      border: 1px solid rgba(48, 36, 31, .16);
      border-radius: var(--radius-sm);
      background-color: #fffdf8;
      color: var(--coal);
      box-shadow: none;
    }

    .filter-input::placeholder {
      color: #8d7f73;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 36px;
      padding: 7px 12px;
      border-radius: var(--radius-sm);
      color: #4b332a;
      background: #fffaf1;
      border: 1px solid rgba(48, 36, 31, .12);
      font-weight: 750;
      font-size: .92rem;
      box-shadow: 0 8px 18px rgba(35, 24, 18, .06);
    }

    .tag.hot {
      color: #3a2116;
      background: #f6c66d;
      border-color: rgba(184, 107, 53, .35);
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .entry-card {
      min-height: 382px;
      display: flex;
      flex-direction: column;
      border-radius: var(--radius);
      overflow: hidden;
      background: #fffaf1;
      border: 1px solid rgba(48, 36, 31, .12);
      box-shadow: var(--shadow-soft);
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }

    .entry-card:hover {
      transform: translateY(-3px);
      border-color: rgba(216, 154, 55, .48);
      box-shadow: 0 18px 38px rgba(35, 24, 18, .16);
    }

    .entry-cover {
      position: relative;
      aspect-ratio: 16 / 9;
      background:
        linear-gradient(135deg, rgba(23, 18, 15, .1), rgba(107, 31, 43, .4)),
        linear-gradient(135deg, #3b2922, #8d4a2f);
      overflow: hidden;
    }

    .entry-cover:before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, transparent 0 46%, rgba(255, 248, 237, .13) 46% 52%, transparent 52%),
        radial-gradient(circle at 24% 24%, rgba(216, 154, 55, .38), transparent 26%);
    }

    .cover-badge {
      position: absolute;
      left: 14px;
      top: 14px;
      padding: 6px 9px;
      border-radius: var(--radius-sm);
      color: #211511;
      background: #ffd58d;
      font-size: .82rem;
      font-weight: 900;
    }

    .card-body {
      padding: 18px;
      display: flex;
      flex: 1;
      flex-direction: column;
    }

    .card-title {
      margin: 0 0 8px;
      color: var(--coal);
      font-size: 1.15rem;
      font-weight: 900;
      line-height: 1.35;
    }

    .card-copy {
      color: #75685f;
      margin: 0 0 14px;
      font-size: .96rem;
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: auto 0 16px;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 8px;
      border-radius: var(--radius-sm);
      color: #5a4538;
      background: #f2e6d7;
      font-size: .82rem;
      font-weight: 800;
    }

    .card-button {
      width: 100%;
      justify-content: center;
      display: inline-flex;
      padding: 12px 14px;
    }

    .proof-bar {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 24px;
      align-items: center;
      padding: 24px;
      border-radius: var(--radius);
      color: var(--paper);
      background: linear-gradient(135deg, #2a1d18, #5c1e2a);
      border: 1px solid rgba(245, 239, 229, .16);
      box-shadow: var(--shadow);
    }

    .proof-score {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .score-tile {
      padding: 16px;
      border-radius: var(--radius-sm);
      background: rgba(255, 248, 237, .08);
      border: 1px solid rgba(245, 239, 229, .12);
    }

    .score-tile strong {
      display: block;
      color: #ffe0a3;
      font-size: 1.65rem;
      line-height: 1;
      margin-bottom: 6px;
    }

    .score-tile span {
      color: rgba(255, 248, 237, .68);
      font-size: .9rem;
    }

    .bubble-row {
      display: grid;
      gap: 12px;
    }

    .bubble {
      position: relative;
      border-radius: var(--radius);
      padding: 14px 16px;
      color: rgba(255, 248, 237, .86);
      background: rgba(255, 248, 237, .09);
      border: 1px solid rgba(245, 239, 229, .14);
    }

    .bubble strong {
      color: #fff;
    }

    .avatar-wall {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #251612;
      font-weight: 900;
      background: linear-gradient(135deg, #ffe0a3, #c17a3f);
      border: 2px solid rgba(255, 248, 237, .72);
      box-shadow: 0 8px 18px rgba(0, 0, 0, .16);
    }

    .trust-line {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
      border-radius: var(--radius);
      background: #fffaf1;
      border: 1px solid rgba(48, 36, 31, .12);
      box-shadow: var(--shadow-soft);
    }

    .trust-line strong {
      color: var(--wine);
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 10px;
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid rgba(48, 36, 31, .12);
      background: #fffaf1;
      box-shadow: 0 8px 18px rgba(35, 24, 18, .06);
    }

    .accordion-title {
      color: var(--coal);
      border: 0;
      font-weight: 900;
      font-size: 1rem;
      padding: 18px 48px 18px 18px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--wine);
      background: #fff3dd;
    }

    .accordion-content {
      border: 0;
      color: #75685f;
      background: #fffaf1;
      padding: 0 18px 18px;
    }

    .cta-band {
      color: var(--paper);
      background:
        linear-gradient(90deg, rgba(23, 18, 15, .95), rgba(80, 29, 29, .88)),
        url("https://images.unsplash.com/photo-1521464302861-ce943915d1c3?auto=format&fit=crop&w=1600&q=80") center/cover;
      padding: 70px 0;
    }

    .cta-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
    }

    .cta-grid h2 {
      margin: 0 0 10px;
      color: #fff;
      font-size: clamp(1.75rem, 3vw, 2.8rem);
      font-weight: 950;
      line-height: 1.15;
    }

    .cta-grid p {
      color: rgba(255, 248, 237, .74);
      margin: 0;
      max-width: 720px;
    }

    .site-footer {
      color: rgba(255, 248, 237, .72);
      background: #17120f;
      border-top: 1px solid rgba(245, 239, 229, .12);
      padding: 46px 0 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 36px;
      align-items: start;
    }

    .footer-note {
      max-width: 610px;
      margin: 16px 0 0;
      color: rgba(255, 248, 237, .62);
      font-size: .95rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 18px;
      justify-content: flex-end;
    }

    .footer-links a {
      color: rgba(255, 248, 237, .74);
      font-weight: 750;
    }

    .footer-links a:hover {
      color: #ffe0a3;
    }

    .copyright {
      display: flex;
      flex-wrap: wrap;
      gap: 12px 24px;
      justify-content: space-between;
      margin-top: 34px;
      padding-top: 18px;
      border-top: 1px solid rgba(245, 239, 229, .1);
      color: rgba(255, 248, 237, .5);
      font-size: .88rem;
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .section-head,
      .proof-bar,
      .cta-grid {
        grid-template-columns: 1fr;
      }

      .filter-dock {
        grid-template-columns: 1fr 1fr;
      }

      .filter-dock .button {
        grid-column: span 2;
      }

      .entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .search-mini {
        width: 170px;
      }
    }

    @media (max-width: 768px) {
      .glass-header {
        top: 10px;
      }

      .nav-frame {
        width: calc(100% - 24px);
      }

      .top-bar-right {
        align-items: stretch;
        flex-direction: column;
        gap: 12px;
        width: 100%;
      }

      .nav-links {
        width: 100%;
        padding-top: 8px;
      }

      .nav-links a {
        width: 100%;
      }

      .nav-actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
      }

      .search-mini,
      .nav-actions .button {
        width: 100%;
      }

      .category-hero {
        min-height: auto;
        padding: 126px 0 66px;
      }

      .hero-grid {
        gap: 28px;
      }

      .invite-panel {
        padding: 18px;
      }

      .section {
        padding: 58px 0;
      }

      .proof-score {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      .wrap {
        width: calc(100% - 28px);
      }

      .hero-title {
        font-size: 2.15rem;
      }

      .hero-actions .button {
        width: 100%;
      }

      .filter-dock {
        grid-template-columns: 1fr;
      }

      .filter-dock .button {
        grid-column: auto;
      }

      .entry-grid {
        grid-template-columns: 1fr;
      }

      .trust-line {
        align-items: flex-start;
        flex-direction: column;
      }

      .cta-grid .button {
        width: 100%;
      }

      .copyright {
        flex-direction: column;
      }
    }

/* roulang page: category2 */
:root {
      --bg: #171311;
      --bg-soft: #211a17;
      --bg-panel: #2b221e;
      --paper: #f5ebdc;
      --paper-soft: #efe2cf;
      --text: #fff7ea;
      --muted: #cbb9a5;
      --muted-2: #9f8c79;
      --gold: #e8b35b;
      --gold-2: #f4cf84;
      --copper: #c46b3c;
      --wine: #6e232a;
      --line: rgba(244, 207, 132, .22);
      --line-soft: rgba(255, 247, 234, .12);
      --shadow: 0 20px 60px rgba(0, 0, 0, .34);
      --shadow-soft: 0 14px 36px rgba(0, 0, 0, .24);
      --radius: 8px;
      --radius-sm: 6px;
      --wrap: 1180px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
      color: var(--text);
      line-height: 1.7;
      background:
        radial-gradient(circle at 12% 0%, rgba(196, 107, 60, .18), transparent 30%),
        linear-gradient(180deg, #120f0e 0%, var(--bg) 42%, #1d1714 100%);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    input:focus,
    button:focus,
    a:focus {
      outline: 2px solid rgba(232, 179, 91, .72);
      outline-offset: 3px;
    }

    .wrap {
      width: min(calc(100% - 32px), var(--wrap));
      margin: 0 auto;
    }

    .glass-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      padding: 14px 0;
    }

    .nav-frame {
      width: min(calc(100% - 28px), var(--wrap));
      margin: 0 auto;
      border: 1px solid rgba(255, 247, 234, .18);
      border-radius: var(--radius);
      background: rgba(23, 19, 17, .62);
      backdrop-filter: blur(18px);
      box-shadow: 0 12px 36px rgba(0, 0, 0, .22);
      overflow: hidden;
    }

    .top-bar {
      padding: 10px 14px;
      background: transparent;
      color: var(--text);
    }

    .top-bar ul {
      background: transparent;
    }

    .brand,
    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      color: var(--text);
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand:hover,
    .brand:focus {
      color: var(--gold-2);
    }

    .brand-mark {
      display: inline-grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border-radius: 7px;
      color: #241813;
      font-size: 15px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--gold-2), var(--copper));
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45), 0 8px 20px rgba(232, 179, 91, .18);
    }

    .nav-links {
      align-items: center;
      gap: 6px;
    }

    .nav-links a {
      border-radius: 999px;
      color: rgba(255, 247, 234, .82);
      font-size: 14px;
      font-weight: 700;
      padding: 10px 13px;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: #241813;
      background: var(--gold);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-left: 14px;
    }

    .search-mini {
      width: 210px;
      height: 40px;
      margin: 0;
      border: 1px solid rgba(255, 247, 234, .18);
      border-radius: 999px;
      color: var(--text);
      background: rgba(255, 247, 234, .08);
      box-shadow: none;
      padding: 0 15px;
    }

    .search-mini::placeholder {
      color: rgba(255, 247, 234, .52);
    }

    .button.primary-cta,
    .button.warm-btn,
    .button.ghost-btn {
      margin: 0;
      border-radius: 999px;
      font-weight: 900;
      letter-spacing: 0;
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
    }

    .button.primary-cta,
    .button.warm-btn {
      color: #241813;
      background: linear-gradient(135deg, var(--gold-2), var(--copper));
      box-shadow: 0 12px 26px rgba(196, 107, 60, .24);
    }

    .button.primary-cta:hover,
    .button.warm-btn:hover {
      color: #241813;
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(232, 179, 91, .32);
      filter: brightness(1.04);
    }

    .button.ghost-btn {
      border: 1px solid rgba(244, 207, 132, .42);
      color: var(--gold-2);
      background: rgba(255, 247, 234, .06);
    }

    .button.ghost-btn:hover {
      color: var(--text);
      border-color: rgba(244, 207, 132, .76);
      background: rgba(244, 207, 132, .12);
      transform: translateY(-2px);
    }

    .menu-icon::after {
      background: var(--gold-2);
      box-shadow: 0 7px 0 var(--gold-2), 0 14px 0 var(--gold-2);
    }

    .hero {
      position: relative;
      min-height: 760px;
      padding: 138px 0 70px;
      overflow: hidden;
      border-bottom: 1px solid var(--line-soft);
      background:
        linear-gradient(90deg, rgba(18, 15, 14, .98) 0%, rgba(18, 15, 14, .78) 45%, rgba(18, 15, 14, .35) 100%),
        url("https://images.unsplash.com/photo-1518929458119-e5bf444c30f4?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 190px;
      background: linear-gradient(180deg, transparent, var(--bg));
      pointer-events: none;
    }

    .hero .wrap {
      position: relative;
      z-index: 2;
    }

    .bento-hero {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
      gap: 18px;
      align-items: stretch;
    }

    .hero-main,
    .hero-side,
    .hero-strip {
      border: 1px solid rgba(255, 247, 234, .16);
      border-radius: var(--radius);
      background: rgba(31, 25, 22, .72);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
    }

    .hero-main {
      min-height: 520px;
      padding: clamp(28px, 5vw, 58px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      border: 1px solid rgba(244, 207, 132, .34);
      border-radius: 999px;
      color: var(--gold-2);
      background: rgba(244, 207, 132, .1);
      padding: 7px 12px;
      font-size: 13px;
      font-weight: 800;
    }

    h1,
    h2,
    h3 {
      margin: 0;
      line-height: 1.16;
      letter-spacing: 0;
    }

    h1 {
      max-width: 760px;
      margin-top: 26px;
      font-size: clamp(38px, 6vw, 72px);
      font-weight: 950;
      text-wrap: balance;
    }

    .hero-lead {
      max-width: 700px;
      margin: 22px 0 0;
      color: var(--paper-soft);
      font-size: 18px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 38px;
    }

    .meta-chip {
      border-top: 1px solid rgba(244, 207, 132, .26);
      padding-top: 14px;
    }

    .meta-chip strong {
      display: block;
      color: var(--gold-2);
      font-size: 24px;
      line-height: 1.1;
    }

    .meta-chip span {
      color: var(--muted);
      font-size: 13px;
    }

    .hero-stack {
      display: grid;
      gap: 18px;
    }

    .hero-side {
      padding: 22px;
    }

    .side-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      margin-bottom: 18px;
    }

    .side-title h2 {
      font-size: 21px;
      font-weight: 950;
    }

    .hot-badge {
      border-radius: 999px;
      color: #241813;
      background: var(--gold);
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .recommend-card {
      display: grid;
      gap: 10px;
      border: 1px solid rgba(255, 247, 234, .12);
      border-radius: var(--radius-sm);
      background: rgba(255, 247, 234, .06);
      padding: 14px;
      margin-bottom: 10px;
    }

    .recommend-card:last-child {
      margin-bottom: 0;
    }

    .recommend-card b {
      color: var(--paper);
      font-size: 16px;
    }

    .score-row,
    .mini-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .bar {
      position: relative;
      height: 7px;
      border-radius: 999px;
      background: rgba(255, 247, 234, .1);
      overflow: hidden;
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--copper), var(--gold-2));
    }

    .hero-strip {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 20px 22px;
    }

    .hero-strip p {
      margin: 0;
      color: var(--paper-soft);
      font-weight: 700;
    }

    main {
      position: relative;
      z-index: 1;
      background: linear-gradient(180deg, var(--bg) 0%, #211814 100%);
    }

    .section {
      padding: 78px 0;
    }

    .section.alt {
      background: rgba(255, 247, 234, .035);
      border-top: 1px solid var(--line-soft);
      border-bottom: 1px solid var(--line-soft);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(260px, .45fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 32px;
    }

    .section-head h2 {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 950;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
    }

    .popular-grid {
      display: grid;
      grid-template-columns: 1.2fr repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .popular-card {
      position: relative;
      min-height: 260px;
      border: 1px solid rgba(255, 247, 234, .14);
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(43, 34, 30, .82), rgba(23, 19, 17, .96)),
        linear-gradient(135deg, rgba(232, 179, 91, .14), rgba(110, 35, 42, .2));
      padding: 22px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .popular-card:hover {
      transform: translateY(-4px);
      border-color: rgba(244, 207, 132, .36);
      box-shadow: 0 24px 54px rgba(0, 0, 0, .34);
    }

    .popular-card.featured {
      grid-row: span 2;
      min-height: 536px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(180deg, rgba(18, 15, 14, .3), rgba(18, 15, 14, .92)),
        url("https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?auto=format&fit=crop&w=1000&q=80") center/cover no-repeat;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      min-height: 28px;
      border: 1px solid rgba(244, 207, 132, .32);
      border-radius: 999px;
      color: var(--gold-2);
      background: rgba(244, 207, 132, .09);
      padding: 3px 10px;
      font-size: 12px;
      font-weight: 900;
    }

    .popular-card h3 {
      margin-top: 18px;
      font-size: 24px;
      font-weight: 950;
    }

    .popular-card p {
      margin: 12px 0 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .card-foot {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--paper-soft);
      font-size: 13px;
      font-weight: 800;
    }

    .tool-band {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(43, 34, 30, .72);
      padding: 18px;
      box-shadow: var(--shadow-soft);
      margin-bottom: 22px;
    }

    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .pill {
      border: 1px solid rgba(255, 247, 234, .15);
      border-radius: 999px;
      color: var(--paper-soft);
      background: rgba(255, 247, 234, .06);
      padding: 9px 13px;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: var(--ease);
    }

    .pill:hover,
    .pill.active {
      color: #241813;
      border-color: transparent;
      background: var(--gold);
      transform: translateY(-1px);
    }

    .sort-note {
      color: var(--muted);
      font-size: 14px;
      white-space: nowrap;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .compare-card {
      border: 1px solid rgba(255, 247, 234, .14);
      border-radius: var(--radius);
      background: rgba(255, 247, 234, .055);
      padding: 20px;
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .compare-card:hover {
      transform: translateY(-3px);
      border-color: rgba(244, 207, 132, .38);
      background: rgba(255, 247, 234, .08);
    }

    .compare-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .rank {
      display: inline-grid;
      place-items: center;
      width: 38px;
      height: 38px;
      border-radius: var(--radius-sm);
      color: #241813;
      background: var(--gold);
      font-weight: 950;
    }

    .rating {
      color: var(--gold-2);
      font-weight: 950;
    }

    .compare-card h3 {
      font-size: 21px;
      font-weight: 950;
    }

    .compare-card p {
      min-height: 78px;
      margin: 10px 0 18px;
      color: var(--muted);
      font-size: 15px;
    }

    .detail-list {
      display: grid;
      gap: 9px;
      margin: 0 0 18px;
      padding: 0;
      list-style: none;
    }

    .detail-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      border-top: 1px solid rgba(255, 247, 234, .09);
      padding-top: 9px;
      color: var(--muted);
      font-size: 14px;
    }

    .detail-list strong {
      color: var(--paper);
    }

    .button.card-btn {
      width: 100%;
      margin: 0;
      border-radius: var(--radius-sm);
      color: #241813;
      background: var(--gold);
      font-weight: 950;
    }

    .button.card-btn:hover {
      color: #241813;
      background: var(--gold-2);
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(232, 179, 91, .2);
    }

    .social-layout {
      display: grid;
      grid-template-columns: minmax(280px, .42fr) minmax(0, .58fr);
      gap: 24px;
      align-items: start;
    }

    .avatar-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(43, 34, 30, .66);
      padding: 24px;
      box-shadow: var(--shadow-soft);
    }

    .avatar-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 10px;
      margin: 20px 0;
    }

    .avatar {
      aspect-ratio: 1;
      border: 2px solid rgba(244, 207, 132, .28);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: #261914;
      background: linear-gradient(135deg, var(--paper-soft), var(--copper));
      font-weight: 950;
    }

    .avatar:nth-child(2n) {
      background: linear-gradient(135deg, #f4cf84, #a44238);
    }

    .avatar:nth-child(3n) {
      background: linear-gradient(135deg, #e9ddd0, #7e4a30);
    }

    .trust-line {
      border-left: 3px solid var(--gold);
      padding-left: 14px;
      color: var(--paper-soft);
      font-weight: 800;
    }

    .bubble-list {
      display: grid;
      gap: 14px;
    }

    .bubble {
      position: relative;
      border: 1px solid rgba(255, 247, 234, .14);
      border-radius: var(--radius);
      background: rgba(255, 247, 234, .06);
      padding: 18px;
    }

    .bubble p {
      margin: 0 0 12px;
      color: var(--paper-soft);
    }

    .bubble span {
      color: var(--gold-2);
      font-size: 13px;
      font-weight: 900;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: minmax(240px, .35fr) minmax(0, .65fr);
      gap: 28px;
      align-items: start;
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      border: 1px solid rgba(255, 247, 234, .13);
      border-radius: var(--radius);
      background: rgba(255, 247, 234, .055);
      margin-bottom: 12px;
      overflow: hidden;
    }

    .accordion-title {
      border: 0;
      color: var(--paper);
      background: transparent;
      font-size: 16px;
      font-weight: 950;
      padding: 18px 48px 18px 18px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--gold-2);
      background: rgba(244, 207, 132, .08);
    }

    .accordion-content {
      border: 0;
      color: var(--muted);
      background: rgba(23, 19, 17, .42);
      padding: 0 18px 18px;
    }

    .accordion-content p {
      margin: 0;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(100deg, rgba(110, 35, 42, .54), rgba(43, 34, 30, .86)),
        url("https://images.unsplash.com/photo-1492684223066-81342ee5ff30?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
      padding: 82px 0;
    }

    .cta-inner {
      max-width: 820px;
    }

    .cta-inner h2 {
      font-size: clamp(30px, 4vw, 48px);
      font-weight: 950;
    }

    .cta-inner p {
      margin: 16px 0 28px;
      color: var(--paper-soft);
      font-size: 18px;
    }

    .site-footer {
      background: #100d0c;
      border-top: 1px solid rgba(244, 207, 132, .16);
      padding: 44px 0 26px;
      color: var(--muted);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(260px, 1fr) auto;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      margin-bottom: 14px;
      color: var(--paper);
    }

    .footer-note {
      max-width: 660px;
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .footer-links a {
      border: 1px solid rgba(255, 247, 234, .12);
      border-radius: 999px;
      color: var(--paper-soft);
      padding: 8px 12px;
      font-size: 14px;
      font-weight: 800;
    }

    .footer-links a:hover {
      color: #241813;
      border-color: var(--gold);
      background: var(--gold);
    }

    .copyright {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      border-top: 1px solid rgba(255, 247, 234, .1);
      margin-top: 28px;
      padding-top: 18px;
      color: var(--muted-2);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .bento-hero,
      .section-head,
      .social-layout,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .popular-grid,
      .compare-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .popular-card.featured {
        grid-row: auto;
        min-height: 360px;
      }

      .nav-actions {
        margin-left: 8px;
      }

      .search-mini {
        width: 170px;
      }
    }

    @media (max-width: 768px) {
      .glass-header {
        padding: 10px 0;
      }

      .nav-frame {
        width: min(calc(100% - 18px), var(--wrap));
      }

      .top-bar {
        padding: 10px 12px;
      }

      #mainMenu {
        border-top: 1px solid rgba(255, 247, 234, .12);
      }

      .top-bar-right {
        align-items: stretch;
        width: 100%;
      }

      .nav-links {
        width: 100%;
        align-items: stretch;
        padding-top: 10px;
      }

      .nav-links a {
        border-radius: var(--radius-sm);
      }

      .nav-actions {
        width: 100%;
        margin: 12px 0 0;
        flex-direction: column;
        align-items: stretch;
      }

      .search-mini {
        width: 100%;
      }

      .button.primary-cta {
        width: 100%;
      }

      .hero {
        min-height: auto;
        padding: 112px 0 48px;
      }

      .hero-main {
        min-height: auto;
        padding: 26px;
      }

      .hero-meta,
      .popular-grid,
      .compare-grid {
        grid-template-columns: 1fr;
      }

      .hero-strip,
      .tool-band {
        grid-template-columns: 1fr;
      }

      .sort-note {
        white-space: normal;
      }

      .section {
        padding: 58px 0;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      .wrap {
        width: min(calc(100% - 22px), var(--wrap));
      }

      h1 {
        font-size: 36px;
      }

      .hero-lead,
      .cta-inner p {
        font-size: 16px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .button,
      .cta-inner .button {
        width: 100%;
      }

      .avatar-grid {
        grid-template-columns: repeat(4, 1fr);
      }

      .popular-card,
      .compare-card,
      .avatar-panel,
      .bubble {
        padding: 16px;
      }

      .copyright {
        display: grid;
      }
    }
