/* roulang page: index */
:root {
      --bg: #100f0d;
      --bg-soft: #191715;
      --paper: #fff8ea;
      --paper-2: #fff2d0;
      --text: #fdf8ed;
      --text-dark: #17120e;
      --muted: #b9aa97;
      --muted-dark: #675846;
      --primary: #ff3b1f;
      --primary-dark: #d92812;
      --accent: #ffd21f;
      --green: #b9ff38;
      --line: rgba(255, 248, 234, .16);
      --line-dark: rgba(23, 18, 14, .14);
      --shadow: 0 24px 70px rgba(0, 0, 0, .34);
      --shadow-card: 0 16px 38px rgba(0, 0, 0, .2);
      --radius: 8px;
      --radius-sm: 5px;
      --container: 1180px;
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(circle at 10% 12%, rgba(255, 59, 31, .28), transparent 28%),
        radial-gradient(circle at 82% 6%, rgba(255, 210, 31, .2), transparent 24%),
        linear-gradient(180deg, #0b0a09 0%, #17110e 46%, #100f0d 100%);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input {
      border: 0;
      outline: none;
    }

    :focus-visible {
      outline: 3px solid rgba(255, 210, 31, .75);
      outline-offset: 3px;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      top: 18px;
      left: 0;
      right: 0;
      z-index: 50;
      pointer-events: none;
    }

    .dock {
      width: min(1040px, calc(100% - 36px));
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px;
      color: var(--text-dark);
      background: #fff4d8;
      border: 2px solid #241812;
      border-radius: 999px;
      box-shadow: 0 12px 0 rgba(0, 0, 0, .25), 0 26px 55px rgba(0, 0, 0, .28);
      pointer-events: auto;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-width: max-content;
      padding: 8px 12px;
      font-weight: 950;
      letter-spacing: -.02em;
    }

    .brand-mark {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      color: #160f0b;
      background: var(--accent);
      border: 2px solid #160f0b;
      border-radius: 7px;
      box-shadow: 3px 3px 0 #160f0b;
      transform: rotate(-4deg);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px;
      background: rgba(23, 18, 14, .06);
      border-radius: 999px;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 13px;
      color: #342419;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      transition: .2s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #fff8ea;
      background: #17120e;
      transform: translateY(-1px);
    }

    .dock-actions {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .search-mini {
      width: 178px;
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 9px 12px;
      color: var(--muted-dark);
      background: #fffaf0;
      border: 1px solid var(--line-dark);
      border-radius: 999px;
    }

    .search-mini input {
      width: 100%;
      color: var(--text-dark);
      background: transparent;
      font-size: 13px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 42px;
      padding: 11px 16px;
      color: var(--text-dark);
      background: var(--accent);
      border: 2px solid #17120e;
      border-radius: var(--radius-sm);
      box-shadow: 4px 4px 0 #17120e;
      font-weight: 900;
      line-height: 1;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, opacity .2s ease;
    }

    .btn:hover {
      transform: translate(-1px, -1px);
      box-shadow: 6px 6px 0 #17120e;
    }

    .btn:active {
      transform: translate(2px, 2px);
      box-shadow: 2px 2px 0 #17120e;
    }

    .btn[disabled],
    .btn.is-disabled {
      opacity: .48;
      cursor: not-allowed;
      transform: none;
      box-shadow: 2px 2px 0 #17120e;
    }

    .btn-primary {
      color: #fff8ea;
      background: var(--primary);
    }

    .btn-dark {
      color: #fff8ea;
      background: #17120e;
      border-color: #fff8ea;
      box-shadow: 4px 4px 0 var(--accent);
    }

    .btn-ghost {
      color: var(--text);
      background: transparent;
      border-color: rgba(255, 248, 234, .45);
      box-shadow: none;
    }

    .btn-ghost:hover {
      color: var(--text-dark);
      background: var(--paper);
      box-shadow: none;
    }

    .icon {
      width: 17px;
      height: 17px;
      flex: 0 0 auto;
    }

    .hero {
      position: relative;
      min-height: 760px;
      display: grid;
      align-items: end;
      padding: 118px 0 68px;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(8, 7, 6, .84) 0%, rgba(8, 7, 6, .5) 48%, rgba(8, 7, 6, .76) 100%),
        linear-gradient(180deg, rgba(8, 7, 6, .2), rgba(8, 7, 6, .82)),
        repeating-linear-gradient(90deg, rgba(255, 248, 234, .06) 0 1px, transparent 1px 90px),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='760' viewBox='0 0 1400 760'%3E%3Crect width='1400' height='760' fill='%23201611'/%3E%3Cpath d='M0 610 C230 500 320 680 520 570 S850 400 1040 500 1250 650 1400 540 L1400 760 L0 760Z' fill='%23ff3b1f' opacity='.78'/%3E%3Cpath d='M80 120 L360 80 L410 470 L130 520Z' fill='%23fff2d0' opacity='.15'/%3E%3Cpath d='M980 85 L1260 125 L1190 545 L910 500Z' fill='%23ffd21f' opacity='.17'/%3E%3Ccircle cx='718' cy='325' r='170' fill='%23ff3b1f' opacity='.26'/%3E%3Ccircle cx='718' cy='325' r='78' fill='%23ffd21f' opacity='.28'/%3E%3C/svg%3E") center/cover no-repeat;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, .055) 1px, transparent 1px);
      background-size: 100% 5px;
      opacity: .28;
      pointer-events: none;
      z-index: -1;
    }

    .hero-stage {
      display: grid;
      grid-template-columns: minmax(0, 1.12fr) minmax(320px, .62fr);
      gap: 44px;
      align-items: end;
    }

    .hero-copy {
      max-width: 760px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 10px;
      color: #17120e;
      background: var(--green);
      border: 2px solid #17120e;
      border-radius: 999px;
      box-shadow: 4px 4px 0 #17120e;
      font-size: 13px;
      font-weight: 950;
      transform: rotate(-1deg);
    }

    h1 {
      margin-top: 22px;
      max-width: 820px;
      font-size: clamp(44px, 8vw, 104px);
      line-height: .92;
      letter-spacing: -.075em;
      font-weight: 1000;
      text-wrap: balance;
    }

    .hero-copy p {
      max-width: 720px;
      margin-top: 22px;
      color: #f4e7d1;
      font-size: clamp(17px, 2vw, 22px);
      line-height: 1.75;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-top: 28px;
    }

    .hero-data {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      max-width: 780px;
      margin-top: 28px;
    }

    .data-tile {
      padding: 15px;
      background: rgba(255, 248, 234, .1);
      border: 1px solid rgba(255, 248, 234, .22);
      border-radius: var(--radius);
    }

    .data-tile strong {
      display: block;
      color: var(--accent);
      font-size: 24px;
      line-height: 1.1;
      font-weight: 950;
    }

    .data-tile span {
      display: block;
      margin-top: 5px;
      color: #d6c7b2;
      font-size: 13px;
    }

    .play-panel {
      position: relative;
      padding: 18px;
      color: var(--text-dark);
      background: var(--paper);
      border: 2px solid #17120e;
      border-radius: var(--radius);
      box-shadow: 12px 12px 0 rgba(0, 0, 0, .5);
      transform: rotate(1deg);
    }

    .burst {
      position: absolute;
      top: -28px;
      right: -20px;
      width: 104px;
      height: 104px;
      display: grid;
      place-items: center;
      color: #17120e;
      background: var(--accent);
      clip-path: polygon(50% 0%, 61% 24%, 87% 13%, 76% 39%, 100% 50%, 76% 61%, 87% 87%, 61% 76%, 50% 100%, 39% 76%, 13% 87%, 24% 61%, 0% 50%, 24% 39%, 13% 13%, 39% 24%);
      font-weight: 1000;
      font-size: 15px;
      text-align: center;
      line-height: 1.15;
      filter: drop-shadow(5px 5px 0 #17120e);
    }

    .cover-frame {
      position: relative;
      aspect-ratio: 9 / 13;
      overflow: hidden;
      border: 2px solid #17120e;
      border-radius: 6px;
      background:
        linear-gradient(150deg, rgba(255, 59, 31, .9), rgba(255, 210, 31, .82)),
        repeating-linear-gradient(45deg, rgba(23, 18, 14, .18) 0 10px, transparent 10px 20px);
    }

    .cover-frame::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 2px dashed rgba(23, 18, 14, .48);
    }

    .play-button {
      position: absolute;
      left: 50%;
      top: 44%;
      width: 76px;
      height: 76px;
      display: grid;
      place-items: center;
      color: #fff8ea;
      background: #17120e;
      border: 3px solid #fff8ea;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 0 10px rgba(255, 248, 234, .16);
    }

    .cover-caption {
      position: absolute;
      left: 14px;
      right: 14px;
      bottom: 14px;
      padding: 12px;
      color: #fff8ea;
      background: #17120e;
      border-radius: 6px;
    }

    .cover-caption b {
      display: block;
      font-size: 18px;
      line-height: 1.3;
    }

    .cover-caption small {
      display: block;
      margin-top: 4px;
      color: #dcccb6;
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 7px;
      margin-top: 12px;
    }

    .time-box {
      padding: 8px 6px;
      text-align: center;
      background: #17120e;
      color: #fff8ea;
      border-radius: 5px;
    }

    .time-box b {
      display: block;
      color: var(--accent);
      font-size: 19px;
      line-height: 1;
    }

    .time-box span {
      font-size: 11px;
      color: #d8c8ad;
    }

    main {
      background: var(--paper);
      color: var(--text-dark);
    }

    .section {
      padding: 72px 0;
    }

    .section.dark {
      color: var(--text);
      background: #17120e;
    }

    .section.alt {
      background: #fff0c3;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-kicker {
      display: inline-flex;
      margin-bottom: 10px;
      padding: 5px 9px;
      color: #17120e;
      background: var(--accent);
      border: 2px solid #17120e;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 950;
    }

    .section-title {
      font-size: clamp(28px, 4vw, 54px);
      line-height: 1;
      letter-spacing: -.055em;
      font-weight: 1000;
    }

    .section-desc {
      max-width: 560px;
      color: var(--muted-dark);
      font-size: 16px;
    }

    .dark .section-desc {
      color: #c9bba8;
    }

    .category-strip {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 20px;
    }

    .entry-card {
      position: relative;
      min-height: 250px;
      padding: 26px;
      overflow: hidden;
      color: #fff8ea;
      background: #17120e;
      border: 2px solid #17120e;
      border-radius: var(--radius);
      box-shadow: var(--shadow-card);
    }

    .entry-card::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -86px;
      bottom: -110px;
      background: var(--primary);
      border-radius: 50%;
      opacity: .82;
    }

    .entry-card h2 {
      position: relative;
      z-index: 1;
      max-width: 620px;
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.05;
      letter-spacing: -.045em;
    }

    .entry-card p {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin-top: 14px;
      color: #e8d9c3;
    }

    .entry-card .btn {
      position: relative;
      z-index: 1;
      margin-top: 22px;
    }

    .quick-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .quick {
      padding: 18px;
      background: #fff8ea;
      border: 2px solid #17120e;
      border-radius: var(--radius);
      transition: .2s ease;
    }

    .quick:hover {
      transform: translateY(-3px);
      box-shadow: 7px 7px 0 #17120e;
    }

    .quick b {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      font-size: 17px;
      font-weight: 950;
    }

    .quick span {
      display: block;
      margin-top: 8px;
      color: var(--muted-dark);
      font-size: 14px;
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .pick-card {
      position: relative;
      overflow: hidden;
      background: #fffaf0;
      border: 2px solid #17120e;
      border-radius: var(--radius);
      box-shadow: 7px 7px 0 rgba(23, 18, 14, .18);
      transition: .2s ease;
    }

    .pick-card:hover {
      transform: translateY(-4px);
      border-color: var(--primary);
      box-shadow: 10px 10px 0 rgba(23, 18, 14, .24);
    }

    .rank {
      position: absolute;
      top: 10px;
      left: 10px;
      z-index: 2;
      padding: 5px 8px;
      color: #fff8ea;
      background: var(--primary);
      border: 2px solid #17120e;
      border-radius: 5px;
      font-weight: 950;
      font-size: 12px;
    }

    .thumb {
      position: relative;
      aspect-ratio: 9 / 14;
      background:
        linear-gradient(150deg, rgba(255, 59, 31, .9), rgba(255, 210, 31, .86)),
        repeating-linear-gradient(135deg, rgba(23, 18, 14, .16) 0 8px, transparent 8px 16px);
      border-bottom: 2px solid #17120e;
    }

    .thumb::after {
      content: "";
      position: absolute;
      inset: 18px;
      border: 2px solid rgba(23, 18, 14, .3);
      border-radius: 6px;
    }

    .hotbar {
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 12px;
      height: 8px;
      overflow: hidden;
      background: rgba(23, 18, 14, .3);
      border: 1px solid #17120e;
      border-radius: 999px;
    }

    .hotbar i {
      display: block;
      height: 100%;
      background: var(--green);
    }

    .card-body {
      padding: 15px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 10px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      padding: 4px 7px;
      color: #17120e;
      background: #ffe6a3;
      border: 1px solid rgba(23, 18, 14, .18);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 850;
    }

    .tag.red {
      color: #fff8ea;
      background: var(--primary);
      border-color: #17120e;
    }

    .tag.green {
      background: var(--green);
    }

    .pick-card h3 {
      font-size: 20px;
      line-height: 1.18;
      letter-spacing: -.025em;
      font-weight: 950;
    }

    .pick-card p {
      margin-top: 8px;
      color: var(--muted-dark);
      font-size: 14px;
    }

    .meta-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-top: 14px;
      color: #4d3d30;
      font-size: 13px;
      font-weight: 800;
    }

    .list-panel {
      display: grid;
      grid-template-columns: minmax(0, .88fr) minmax(320px, .44fr);
      gap: 24px;
      align-items: start;
    }

    .grass-list {
      display: grid;
      gap: 12px;
    }

    .grass-item {
      display: grid;
      grid-template-columns: 50px minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      background: #fffaf0;
      border: 2px solid #17120e;
      border-radius: var(--radius);
      transition: .2s ease;
    }

    .grass-item:hover {
      transform: translateX(4px);
      box-shadow: 6px 6px 0 rgba(23, 18, 14, .18);
    }

    .num {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: #fff8ea;
      background: #17120e;
      border-radius: 6px;
      font-weight: 1000;
    }

    .grass-item h3 {
      font-size: 19px;
      line-height: 1.25;
      font-weight: 950;
    }

    .grass-item p {
      margin-top: 4px;
      color: var(--muted-dark);
      font-size: 14px;
    }

    .wiki-box {
      position: sticky;
      top: 105px;
      padding: 20px;
      background: #17120e;
      color: var(--text);
      border: 2px solid #17120e;
      border-radius: var(--radius);
      box-shadow: var(--shadow-card);
    }

    .wiki-box h3 {
      font-size: 24px;
      line-height: 1;
      letter-spacing: -.03em;
    }

    .wiki-links {
      display: grid;
      gap: 8px;
      margin-top: 16px;
    }

    .wiki-links a {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 10px;
      color: #f5e7d2;
      background: rgba(255, 248, 234, .08);
      border: 1px solid rgba(255, 248, 234, .16);
      border-radius: 6px;
      font-size: 14px;
      transition: .2s ease;
    }

    .wiki-links a:hover {
      color: #17120e;
      background: var(--accent);
    }

    .review-rail {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding-bottom: 10px;
      scrollbar-width: thin;
    }

    .review {
      min-width: 300px;
      padding: 18px;
      color: var(--text-dark);
      background: #fff8ea;
      border: 2px solid #17120e;
      border-radius: var(--radius);
    }

    .stars {
      color: var(--primary);
      font-weight: 950;
      letter-spacing: .08em;
    }

    .review p {
      margin-top: 10px;
      font-size: 15px;
    }

    .review small {
      display: block;
      margin-top: 12px;
      color: var(--muted-dark);
      font-weight: 800;
    }

    .demo-split {
      display: grid;
      grid-template-columns: .82fr 1fr;
      gap: 26px;
      align-items: stretch;
    }

    .demo-board {
      padding: 24px;
      background: #17120e;
      color: var(--text);
      border: 2px solid #17120e;
      border-radius: var(--radius);
    }

    .step-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .step {
      display: flex;
      gap: 12px;
      padding: 13px;
      background: rgba(255, 248, 234, .08);
      border: 1px solid rgba(255, 248, 234, .16);
      border-radius: 6px;
    }

    .step b {
      color: var(--accent);
    }

    .demo-canvas {
      padding: 20px;
      background: #fffaf0;
      border: 2px solid #17120e;
      border-radius: var(--radius);
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-bottom: 16px;
    }

    .filter-pill {
      padding: 8px 10px;
      background: #ffe3a0;
      border: 1px solid rgba(23, 18, 14, .18);
      border-radius: 999px;
      font-weight: 850;
      font-size: 13px;
    }

    .result-row {
      display: grid;
      gap: 10px;
    }

    .result {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 13px;
      background: #fff2d0;
      border: 1px solid rgba(23, 18, 14, .16);
      border-radius: 6px;
    }

    .result b {
      font-weight: 950;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(300px, .42fr);
      gap: 24px;
      align-items: start;
    }

    .news-list {
      display: grid;
      gap: 10px;
    }

    .news-link {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 12px;
      align-items: center;
      padding: 15px;
      background: #fffaf0;
      border: 1px solid var(--line-dark);
      border-left: 5px solid var(--primary);
      border-radius: var(--radius-sm);
      transition: .2s ease;
    }

    .news-link:hover {
      border-color: #17120e;
      transform: translateX(3px);
      box-shadow: 5px 5px 0 rgba(23, 18, 14, .14);
    }

    .news-link strong {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-weight: 950;
    }

    .news-link span {
      color: var(--muted-dark);
      font-size: 13px;
      white-space: nowrap;
    }

    .recommend-box {
      padding: 20px;
      background: #17120e;
      color: var(--text);
      border-radius: var(--radius);
      border: 2px solid #17120e;
    }

    .recommend-box h3 {
      font-size: 25px;
      line-height: 1.05;
      letter-spacing: -.03em;
    }

    .rec-track {
      display: grid;
      gap: 10px;
      margin-top: 15px;
    }

    .rec-track a {
      padding: 12px;
      color: #f6ead8;
      background: rgba(255, 248, 234, .08);
      border: 1px solid rgba(255, 248, 234, .16);
      border-radius: 6px;
      transition: .2s ease;
    }

    .rec-track a:hover {
      color: #17120e;
      background: var(--green);
    }

    .live-card {
      display: grid;
      grid-template-columns: minmax(0, .58fr) minmax(0, .42fr);
      gap: 22px;
      padding: 22px;
      background: #fffaf0;
      border: 2px solid #17120e;
      border-radius: var(--radius);
      box-shadow: 9px 9px 0 rgba(23, 18, 14, .18);
    }

    .live-cover {
      min-height: 260px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255, 59, 31, .95), rgba(255, 210, 31, .86)),
        repeating-linear-gradient(90deg, rgba(23, 18, 14, .18) 0 11px, transparent 11px 22px);
      border: 2px solid #17120e;
      border-radius: 6px;
    }

    .live-cover .play-button {
      width: 62px;
      height: 62px;
    }

    .live-note {
      position: absolute;
      left: 14px;
      bottom: 14px;
      padding: 10px 12px;
      color: #fff8ea;
      background: #17120e;
      border-radius: 6px;
      font-weight: 950;
    }

    .bullet-list {
      display: grid;
      gap: 10px;
      margin: 16px 0;
      color: var(--muted-dark);
    }

    .bullet-list li {
      list-style: none;
      display: flex;
      gap: 8px;
    }

    .bullet-list li::before {
      content: "✓";
      color: var(--primary);
      font-weight: 1000;
    }

    .faq-wrap {
      display: grid;
      gap: 12px;
      max-width: 920px;
      margin: 0 auto;
    }

    .faq-item {
      background: #fffaf0;
      border: 2px solid #17120e;
      border-radius: var(--radius);
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      color: var(--text-dark);
      background: transparent;
      text-align: left;
      font-weight: 950;
      font-size: 17px;
    }

    .faq-q span:last-child {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      background: var(--accent);
      border: 1px solid #17120e;
      border-radius: 50%;
      transition: .2s ease;
    }

    .faq-a {
      display: none;
      padding: 0 20px 18px;
      color: var(--muted-dark);
      border-top: 1px solid var(--line-dark);
    }

    .faq-item.open .faq-a {
      display: block;
      padding-top: 15px;
    }

    .faq-item.open .faq-q span:last-child {
      transform: rotate(45deg);
      background: var(--primary);
      color: #fff8ea;
    }

    .cta-banner {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 22px;
      align-items: center;
      padding: 28px;
      color: #fff8ea;
      background:
        linear-gradient(110deg, #17120e 0%, #2b120c 46%, #ff3b1f 100%);
      border: 2px solid #17120e;
      border-radius: var(--radius);
      box-shadow: 10px 10px 0 rgba(23, 18, 14, .22);
    }

    .cta-banner h2 {
      font-size: clamp(28px, 4vw, 48px);
      line-height: 1.05;
      letter-spacing: -.045em;
    }

    .cta-banner p {
      max-width: 720px;
      margin-top: 10px;
      color: #f1ddc0;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .download-guide {
      display: grid;
      grid-template-columns: .7fr 1fr;
      gap: 24px;
      align-items: stretch;
    }

    .download-panel {
      padding: 24px;
      background: #17120e;
      color: #fff8ea;
      border: 2px solid #17120e;
      border-radius: var(--radius);
    }

    .download-panel p {
      color: #d6c7b2;
      margin-top: 12px;
    }

    .download-list {
      display: grid;
      gap: 12px;
    }

    .download-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 15px;
      background: #fffaf0;
      border: 2px solid #17120e;
      border-radius: var(--radius);
    }

    .download-item b {
      font-size: 17px;
      font-weight: 950;
    }

    .download-item span {
      display: block;
      color: var(--muted-dark);
      font-size: 13px;
    }

    .sticky-cta {
      position: fixed;
      left: 50%;
      bottom: 18px;
      z-index: 45;
      width: min(780px, calc(100% - 28px));
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 10px 12px 10px 16px;
      color: #17120e;
      background: var(--accent);
      border: 2px solid #17120e;
      border-radius: 999px;
      box-shadow: 0 10px 0 rgba(0, 0, 0, .25), 0 20px 50px rgba(0, 0, 0, .28);
      transform: translateX(-50%);
    }

    .sticky-cta b {
      font-weight: 950;
    }

    .sticky-cta span {
      color: #5b402c;
      font-size: 13px;
    }

    .site-footer {
      padding: 54px 0 86px;
      color: #dbcbb7;
      background: #100f0d;
      border-top: 1px solid var(--line);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .6fr .6fr;
      gap: 28px;
    }

    .footer-brand {
      color: #fff8ea;
      font-size: 24px;
      font-weight: 1000;
      letter-spacing: -.03em;
    }

    .footer-grid p {
      max-width: 520px;
      margin-top: 10px;
      color: #b9aa97;
    }

    .footer-col h3 {
      color: #fff8ea;
      font-size: 15px;
      margin-bottom: 12px;
    }

    .footer-col a {
      display: block;
      width: fit-content;
      margin: 8px 0;
      color: #cbbca8;
      transition: .2s ease;
    }

    .footer-col a:hover {
      color: var(--accent);
      transform: translateX(2px);
    }

    .copyright {
      margin-top: 32px;
      padding-top: 20px;
      color: #8d806f;
      border-top: 1px solid rgba(255, 248, 234, .12);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .dock {
        width: calc(100% - 24px);
      }

      .search-mini {
        display: none;
      }

      .hero-stage,
      .category-strip,
      .list-panel,
      .demo-split,
      .news-layout,
      .download-guide {
        grid-template-columns: 1fr;
      }

      .play-panel {
        max-width: 480px;
        margin: 0 auto;
      }

      .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .wiki-box {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 768px) {
      .site-header {
        top: 10px;
      }

      .dock {
        border-radius: 18px;
        align-items: center;
        gap: 8px;
      }

      .brand {
        padding: 7px 8px;
        font-size: 14px;
      }

      .brand-mark {
        width: 26px;
        height: 26px;
      }

      .nav-links {
        flex: 1;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
      }

      .nav-links::-webkit-scrollbar {
        display: none;
      }

      .nav-link {
        white-space: nowrap;
        padding: 8px 10px;
        font-size: 13px;
      }

      .dock .btn {
        min-height: 36px;
        padding: 9px 10px;
        font-size: 13px;
        box-shadow: 3px 3px 0 #17120e;
      }

      .hero {
        min-height: auto;
        padding: 112px 0 48px;
      }

      .hero-data {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 52px 0;
      }

      .section-head {
        display: block;
      }

      .section-desc {
        margin-top: 12px;
      }

      .quick-grid,
      .cards-grid {
        grid-template-columns: 1fr;
      }

      .grass-item,
      .download-item,
      .news-link {
        grid-template-columns: 1fr;
      }

      .grass-item .btn,
      .download-item .btn {
        width: 100%;
      }

      .live-card,
      .cta-banner {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .sticky-cta {
        bottom: 10px;
        border-radius: 14px;
        align-items: flex-start;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .dock {
        padding: 8px;
      }

      .nav-links .nav-link span {
        display: none;
      }

      .dock-actions .btn span {
        display: none;
      }

      h1 {
        font-size: 44px;
      }

      .hero-copy p {
        font-size: 16px;
      }

      .hero-actions .btn,
      .cta-actions .btn {
        width: 100%;
      }

      .play-panel {
        transform: none;
      }

      .burst {
        right: -8px;
        top: -20px;
        width: 86px;
        height: 86px;
        font-size: 13px;
      }

      .sticky-cta {
        display: none;
      }

      .site-footer {
        padding-bottom: 42px;
      }
    }

/* roulang page: category1 */
:root{
  --bg:#0e1014;
  --bg-soft:#141820;
  --panel:#171b22;
  --panel-2:#1d222c;
  --line:#2a303c;
  --text:#f4f2eb;
  --muted:#a9afbc;
  --faint:#6f7684;
  --primary:#ff4d2d;
  --primary-2:#ff8a00;
  --accent:#ffd84d;
  --accent-2:#79f17d;
  --shadow:0 22px 45px rgba(0,0,0,.34);
  --shadow-soft:0 10px 24px rgba(0,0,0,.24);
  --radius:8px;
  --radius-sm:6px;
  --container:1240px;
  --gap:24px;
  --gap-sm:14px;
  --ring:0 0 0 3px rgba(255,77,45,.22);
  --focus:0 0 0 2px rgba(255,216,77,.45),0 0 0 5px rgba(255,77,45,.18);
}
*,
*::before,
*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,"PingFang SC","Hiragino Sans GB","Microsoft YaHei",system-ui,-apple-system,sans-serif;
  line-height:1.6;
  color:var(--text);
  background:
    linear-gradient(180deg, rgba(255,77,45,.08), transparent 18%),
    radial-gradient(circle at top right, rgba(255,216,77,.06), transparent 24%),
    linear-gradient(180deg, #0c0f13 0%, #0e1014 42%, #0b0d11 100%);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size:48px 48px;
  mask-image:linear-gradient(180deg, rgba(0,0,0,.45), rgba(0,0,0,0) 84%);
  opacity:.35;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button,input{font:inherit}
button{
  border:0;
  background:none;
  color:inherit;
}
svg{display:block;flex:none}
::selection{background:rgba(255,77,45,.35);color:#fff}
.container{
  width:min(var(--container), calc(100% - 32px));
  margin-inline:auto;
}
.section{
  padding:28px 0;
}
.site-header{
  position:sticky;
  top:12px;
  z-index:20;
  padding:8px 0 0;
}
.dock{
  width:min(var(--container), calc(100% - 24px));
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:14px;
  justify-content:space-between;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:
    linear-gradient(180deg, rgba(25,29,37,.98), rgba(17,20,26,.98));
  box-shadow:var(--shadow-soft);
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-width:0;
  font-weight:800;
  letter-spacing:0;
  color:var(--text);
  white-space:nowrap;
}
.brand-mark{
  width:32px;
  height:32px;
  display:grid;
  place-items:center;
  border-radius:10px;
  color:#160f0c;
  background:linear-gradient(135deg, var(--accent) 0%, #ffbd3b 45%, var(--primary) 100%);
  box-shadow:0 8px 22px rgba(255,77,45,.28);
  font-size:15px;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:8px;
  flex:1;
  justify-content:center;
  min-width:0;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:12px;
  color:var(--muted);
  background:transparent;
  border:1px solid transparent;
  transition:transform .18s ease,border-color .18s ease,background .18s ease,color .18s ease,box-shadow .18s ease;
  white-space:nowrap;
}
.nav-link .icon,
.btn .icon,
.search-mini .icon{
  width:18px;
  height:18px;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.nav-link:hover{
  color:var(--text);
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
  transform:translateY(-1px);
}
.nav-link.active{
  color:#fff;
  background:linear-gradient(135deg, rgba(255,77,45,.18), rgba(255,138,0,.14));
  border-color:rgba(255,77,45,.42);
  box-shadow:0 12px 26px rgba(255,77,45,.16);
}
.dock-actions{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}
.search-mini{
  display:flex;
  align-items:center;
  gap:8px;
  min-width:220px;
  max-width:320px;
  padding:10px 12px;
  border-radius:12px;
  background:var(--bg-soft);
  border:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.search-mini input{
  width:100%;
  min-width:0;
  border:0;
  outline:none;
  background:transparent;
  color:var(--text);
}
.search-mini input::placeholder{color:#818898}
.search-mini:focus-within{
  border-color:rgba(255,216,77,.45);
  box-shadow:var(--focus);
  background:#171b21;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:44px;
  padding:10px 15px;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:700;
  letter-spacing:0;
  cursor:pointer;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(0)}
.btn:focus-visible,
.nav-link:focus-visible,
.search-mini input:focus-visible,
.filter-btn:focus-visible,
.card-action:focus-visible,
.accordion summary:focus-visible,
.footer-col a:focus-visible,
.brand:focus-visible{
  outline:none;
  box-shadow:var(--focus);
}
.btn-primary{
  color:#180f0a;
  background:linear-gradient(135deg, var(--accent) 0%, #ffbf3c 45%, var(--primary) 100%);
  box-shadow:0 14px 28px rgba(255,77,45,.22);
}
.btn-primary:hover{box-shadow:0 16px 30px rgba(255,77,45,.28)}
.btn-secondary{
  color:var(--text);
  background:rgba(255,255,255,.03);
  border-color:rgba(255,255,255,.08);
}
.btn-secondary:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.14);
}
.btn-ghost{
  color:var(--muted);
  background:transparent;
  border-color:rgba(255,255,255,.08);
}
.btn[disabled],
.btn.is-loading{
  opacity:.56;
  pointer-events:none;
}
.hero{
  padding:22px 0 12px;
}
.hero-shell{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  background:
    linear-gradient(135deg, rgba(255,77,45,.15), transparent 28%),
    linear-gradient(180deg, rgba(26,29,36,.96), rgba(17,20,26,.98));
  box-shadow:var(--shadow);
}
.hero-shell::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(255,216,77,.42), transparent);
}
.hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(330px,.9fr);
  gap:22px;
  padding:24px;
}
.crumbs{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--muted);
  font-size:14px;
  margin-bottom:14px;
}
.crumbs a{
  color:#fff;
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:14px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#f7d66a;
  font-size:13px;
  font-weight:700;
}
.kicker .pulse{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent-2);
  box-shadow:0 0 0 4px rgba(121,241,125,.12);
}
.hero h1{
  margin:0 0 12px;
  font-size:clamp(30px, 4vw, 52px);
  line-height:1.06;
  letter-spacing:0;
}
.hero p{
  margin:0;
  color:var(--muted);
  font-size:16px;
  max-width:62ch;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.hero-stats{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
.stat{
  padding:14px 14px 13px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.stat strong{
  display:block;
  font-size:24px;
  line-height:1;
  margin-bottom:6px;
}
.stat span{
  color:var(--muted);
  font-size:13px;
}
.hero-spotlight{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.spotlight-card{
  position:relative;
  overflow:hidden;
  min-height:100%;
  padding:18px;
  border-radius:20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
    linear-gradient(180deg, #1c2028, #15181f);
  border:1px solid rgba(255,255,255,.08);
}
.spotlight-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(135deg, rgba(255,77,45,.16), transparent 35%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.02) 0 10px, transparent 10px 20px);
  opacity:.7;
  pointer-events:none;
}
.spotlight-inner{
  position:relative;
  z-index:1;
  display:grid;
  gap:14px;
}
.poster-panel{
  position:relative;
  aspect-ratio:9/12;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(180deg, rgba(18,20,25,.1), rgba(18,20,25,.85)),
    linear-gradient(135deg, #ff562f 0%, #1a1d25 56%, #0e1014 100%);
  box-shadow:0 16px 28px rgba(0,0,0,.22);
}
.poster-panel::before{
  content:"";
  position:absolute;
  inset:12px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:14px;
}
.poster-panel::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:42%;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.62));
}
.poster-text{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:1;
}
.poster-label{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.34);
  border:1px solid rgba(255,255,255,.16);
  color:#ffe27a;
  font-size:12px;
  font-weight:700;
}
.poster-title{
  display:block;
  margin-top:10px;
  font-size:28px;
  line-height:1.02;
  font-weight:900;
  letter-spacing:0;
}
.poster-sub{
  margin-top:8px;
  color:#f0ede5;
  font-size:13px;
  max-width:22ch;
}
.compare{
  display:grid;
  gap:10px;
}
.compare-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:11px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.compare-item strong{
  font-size:14px;
}
.compare-item span{
  color:var(--muted);
  font-size:13px;
}
.compare-item.featured{
  background:linear-gradient(135deg, rgba(255,77,45,.18), rgba(255,138,0,.12));
  border-color:rgba(255,77,45,.35);
}
.compare-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:56px;
  padding:5px 8px;
  border-radius:999px;
  background:rgba(255,216,77,.15);
  color:#ffe27a;
  font-size:12px;
  font-weight:800;
}
.countdown{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.countdown b{
  font-size:16px;
}
.countdown small{
  display:block;
  color:var(--muted);
  font-size:12px;
}
.timer{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(121,241,125,.12);
  color:#b8ffba;
  font-weight:700;
  font-size:12px;
  white-space:nowrap;
}
.summary-band{
  margin-top:18px;
}
.summary-card{
  padding:18px 20px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(23,26,32,.96), rgba(18,21,27,.96));
  box-shadow:var(--shadow-soft);
}
.section-heading{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:14px;
}
.section-heading h2{
  margin:0;
  font-size:24px;
  line-height:1.1;
}
.section-heading p{
  margin:0;
  color:var(--muted);
  max-width:60ch;
}
.summary-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}
.summary-item{
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.summary-item strong{
  display:block;
  font-size:22px;
  line-height:1;
  margin-bottom:6px;
}
.summary-item span{
  color:var(--muted);
  font-size:13px;
}
.controls{
  margin-top:22px;
}
.control-bar{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(23,26,33,.96), rgba(17,20,26,.96));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow-soft);
}
.filter-group{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.filter-btn{
  min-height:40px;
  padding:9px 14px;
  border-radius:999px;
  cursor:pointer;
  color:var(--muted);
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  transition:transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.filter-btn:hover{
  color:var(--text);
  border-color:rgba(255,255,255,.16);
  transform:translateY(-1px);
}
.filter-btn.is-active{
  color:#170e09;
  background:linear-gradient(135deg, var(--accent) 0%, #ffbf3c 48%, var(--primary) 100%);
  border-color:transparent;
  box-shadow:0 10px 22px rgba(255,77,45,.2);
}
.control-meta{
  color:var(--muted);
  font-size:14px;
}
.catalog{
  padding-top:22px;
}
.catalog-grid{
  display:grid;
  grid-template-columns:minmax(0,1.32fr) minmax(290px,.68fr);
  gap:20px;
  align-items:start;
}
.cards-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.pick-card{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(25,29,37,.98), rgba(17,20,26,.98));
  box-shadow:var(--shadow-soft);
  transition:transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.pick-card:hover{
  transform:translateY(-3px);
  border-color:rgba(255,77,45,.28);
  box-shadow:0 18px 38px rgba(0,0,0,.32);
}
.pick-card.hidden{display:none}
.pick-media{
  position:relative;
  aspect-ratio:9/11;
  padding:14px;
  background:
    linear-gradient(180deg, rgba(255,77,45,.15), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.05), transparent 32%),
    linear-gradient(180deg, #232833, #171b22);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.pick-rank{
  position:absolute;
  top:12px;
  left:12px;
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:12px;
  background:linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color:#160f0c;
  font-size:16px;
  font-weight:900;
  box-shadow:0 10px 20px rgba(255,77,45,.24);
}
.pick-flags{
  position:absolute;
  top:12px;
  right:12px;
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  justify-content:flex-end;
}
.flag{
  display:inline-flex;
  align-items:center;
  padding:5px 9px;
  border-radius:999px;
  background:rgba(0,0,0,.28);
  color:#fff4be;
  border:1px solid rgba(255,255,255,.12);
  font-size:11px;
  font-weight:800;
}
.flag.hot{
  background:rgba(255,77,45,.16);
  color:#ffd5c8;
  border-color:rgba(255,77,45,.24);
}
.pick-visual{
  position:absolute;
  inset:auto 14px 14px 14px;
  padding:14px;
  border-radius:16px;
  background:rgba(8,10,13,.58);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:none;
}
.pick-visual h3{
  margin:8px 0 6px;
  font-size:24px;
  line-height:1.06;
}
.pick-visual p{
  margin:0;
  color:#d7dbe2;
  font-size:13px;
}
.progress{
  margin-top:14px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  overflow:hidden;
}
.progress span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg, var(--accent) 0%, var(--primary) 100%);
}
.pick-body{
  padding:16px;
}
.pick-body h3{
  margin:0 0 8px;
  font-size:19px;
  line-height:1.2;
}
.pick-body p{
  margin:0 0 12px;
  color:var(--muted);
  font-size:14px;
}
.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:14px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:28px;
  padding:4px 9px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#d4d8e1;
  font-size:12px;
}
.tag.state{
  background:rgba(121,241,125,.12);
  color:#c7ffc8;
  border-color:rgba(121,241,125,.2);
}
.pick-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.08);
}
.pick-meta .stats{
  color:var(--muted);
  font-size:13px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.card-action{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 12px;
  border-radius:12px;
  background:linear-gradient(135deg, rgba(255,77,45,.2), rgba(255,138,0,.16));
  border:1px solid rgba(255,77,45,.36);
  color:#fff;
  font-weight:700;
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card-action:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 22px rgba(255,77,45,.18);
}
.sidebar{
  position:sticky;
  top:92px;
  display:grid;
  gap:14px;
}
.side-panel{
  padding:18px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(23,26,33,.96), rgba(17,20,26,.96));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow-soft);
}
.side-panel h3{
  margin:0 0 12px;
  font-size:18px;
}
.index-list{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
}
.index-list a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:11px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
  color:var(--text);
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}
.index-list a:hover{
  transform:translateY(-1px);
  border-color:rgba(255,77,45,.22);
  background:rgba(255,255,255,.05);
}
.index-list .mini{
  color:var(--muted);
  font-size:12px;
}
.hot-cloud{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.hot-cloud span{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#dee2ea;
  font-size:12px;
}
.review-strip{
  margin-top:22px;
}
.review-card{
  padding:18px 0 0;
}
.reviews{
  display:flex;
  gap:12px;
  overflow-x:auto;
  padding-bottom:6px;
  scroll-snap-type:x proximity;
}
.reviews::-webkit-scrollbar{height:10px}
.reviews::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,.14);
  border-radius:999px;
}
.review{
  flex:0 0 280px;
  scroll-snap-align:start;
  padding:14px;
  border-radius:16px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.08);
}
.review .top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:8px;
}
.score{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#ffe27a;
  font-weight:800;
}
.source{
  color:var(--muted);
  font-size:12px;
}
.review p{
  margin:0;
  color:#e6e8ee;
  font-size:14px;
}
.faq{
  padding-top:22px;
}
.accordion{
  display:grid;
  gap:12px;
}
.accordion details{
  border-radius:16px;
  background:linear-gradient(180deg, rgba(23,26,33,.96), rgba(17,20,26,.96));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow-soft);
  overflow:hidden;
}
.accordion summary{
  list-style:none;
  cursor:pointer;
  padding:16px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-weight:800;
}
.accordion summary::-webkit-details-marker{display:none}
.accordion summary span{
  color:var(--muted);
  font-weight:600;
}
.accordion .answer{
  padding:0 18px 16px;
  color:var(--muted);
}
.cta-band{
  padding:26px 0 34px;
}
.cta-shell{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:22px;
  border-radius:22px;
  background:
    linear-gradient(135deg, rgba(255,77,45,.18), rgba(255,138,0,.14)),
    linear-gradient(180deg, rgba(25,29,37,.98), rgba(17,20,26,.98));
  border:1px solid rgba(255,77,45,.26);
  box-shadow:var(--shadow);
}
.cta-shell h2{
  margin:0 0 8px;
  font-size:26px;
  line-height:1.1;
}
.cta-shell p{
  margin:0;
  color:#f3efe8;
  max-width:58ch;
}
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}
.site-footer{
  border-top:1px solid rgba(255,255,255,.08);
  background:rgba(11,13,17,.94);
  padding:24px 0 18px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr;
  gap:20px;
}
.footer-brand{
  font-size:20px;
  font-weight:900;
  margin-bottom:8px;
}
.site-footer p{
  margin:0;
  color:var(--muted);
  max-width:46ch;
}
.footer-col h3{
  margin:0 0 10px;
  font-size:15px;
}
.footer-col{
  display:grid;
  gap:8px;
  align-content:start;
}
.footer-col a{
  color:var(--muted);
  transition:color .18s ease, transform .18s ease;
}
.footer-col a:hover{
  color:#fff;
  transform:translateX(2px);
}
.copyright{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
  color:var(--faint);
  font-size:13px;
}
@media (max-width: 1180px){
  .catalog-grid{grid-template-columns:1fr}
  .sidebar{
    position:static;
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width: 1024px){
  .hero-grid{grid-template-columns:1fr}
  .hero-stats,
  .summary-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .cards-grid{grid-template-columns:1fr 1fr}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 768px){
  .site-header{
    top:8px;
    padding-top:4px;
  }
  .dock{
    width:min(var(--container), calc(100% - 16px));
    padding:10px 12px;
    border-radius:16px;
    flex-wrap:wrap;
  }
  .nav-links{
    order:3;
    width:100%;
    justify-content:flex-start;
    overflow-x:auto;
    padding-bottom:2px;
  }
  .dock-actions{
    margin-left:auto;
    flex:1 1 auto;
    justify-content:flex-end;
  }
  .search-mini{
    min-width:0;
    width:100%;
    max-width:none;
    flex:1 1 100%;
  }
  .hero-grid,
  .summary-card,
  .control-bar,
  .cta-shell,
  .side-panel{
    padding:16px;
  }
  .cards-grid{
    grid-template-columns:1fr;
  }
  .sidebar{
    grid-template-columns:1fr;
  }
  .cta-shell{
    flex-direction:column;
    align-items:flex-start;
  }
  .cta-actions{
    width:100%;
    justify-content:flex-start;
  }
  .footer-grid{
    grid-template-columns:1fr;
  }
}
@media (max-width: 520px){
  .section{padding:18px 0}
  .hero h1{font-size:28px}
  .section-heading{
    flex-direction:column;
    align-items:flex-start;
  }
  .hero-stats,
  .summary-grid{
    grid-template-columns:1fr 1fr;
  }
  .hero-actions,
  .cta-actions{
    width:100%;
  }
  .btn{
    flex:1 1 auto;
    min-width:0;
  }
  .control-bar{
    gap:10px;
  }
  .filter-group{
    width:100%;
  }
  .filter-btn{
    flex:1 1 calc(50% - 8px);
    justify-content:center;
  }
  .pick-meta{
    flex-direction:column;
    align-items:flex-start;
  }
  .review{
    flex-basis:250px;
  }
}
