/* roulang page: index */
:root {
      --bg: #07070b;
      --bg-soft: #0e0b14;
      --bg-panel: #14101d;
      --bg-panel-2: #1b1425;
      --text: #f6f2f5;
      --muted: #a79aae;
      --muted-2: #7f7288;
      --primary: #ff2e88;
      --primary-2: #f43f9b;
      --cyan: #00e5c8;
      --amber: #f5b84b;
      --line: rgba(246, 242, 245, .13);
      --line-strong: rgba(255, 46, 136, .45);
      --radius-sm: 12px;
      --radius: 16px;
      --radius-lg: 22px;
      --shadow: 0 22px 70px rgba(0, 0, 0, .38);
      --shadow-neon: 0 0 0 1px rgba(255, 46, 136, .28), 0 18px 56px rgba(255, 46, 136, .12);
      --container: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--text);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.7;
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px),
        radial-gradient(1200px 520px at 50% -10%, rgba(255,46,136,.13), transparent 56%),
        linear-gradient(180deg, #07070b 0%, #0e0b14 46%, #07070b 100%);
      background-size: 42px 42px, 42px 42px, auto, auto;
      overflow-x: hidden;
    }
    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: .26;
      background-image:
        repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0, rgba(255,255,255,.035) 1px, transparent 1px, transparent 5px);
      mix-blend-mode: soft-light;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, select, textarea { font: inherit; }
    button { cursor: pointer; border: 0; }
    ::selection { background: rgba(255,46,136,.35); color: #fff; }

    .container {
      width: min(100% - 64px, var(--container));
      margin: 0 auto;
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(7, 7, 11, .78);
      backdrop-filter: blur(18px);
    }
    .nav-wrap {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      color: var(--text);
      white-space: nowrap;
    }
    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--primary), #8c2cff);
      box-shadow: 0 0 0 1px rgba(255,255,255,.12), 0 0 28px rgba(255,46,136,.28);
      font-size: 14px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 34px;
      color: var(--muted);
      font-size: 15px;
      font-weight: 600;
    }
    .nav-links a {
      position: relative;
      padding: 24px 0 22px;
      transition: color .2s ease;
    }
    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 17px;
      height: 2px;
      border-radius: 99px;
      background: var(--primary);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .2s ease;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--text); }
    .nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      color: var(--text);
      background: rgba(255,255,255,.05);
      border: 1px solid var(--line);
    }
    .menu-btn span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      background: currentColor;
      border-radius: 99px;
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 12px 20px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.25;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease, color .2s ease;
      white-space: nowrap;
    }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), #b522ff);
      box-shadow: 0 14px 34px rgba(255,46,136,.22);
    }
    .btn-secondary {
      color: var(--text);
      background: rgba(255,255,255,.035);
      border: 1px solid rgba(167,154,174,.34);
    }
    .btn-ghost {
      color: var(--cyan);
      background: transparent;
      border: 1px solid rgba(0,229,200,.35);
    }
    .btn:hover {
      transform: translateY(-2px);
    }
    .btn-primary:hover {
      box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 18px 44px rgba(255,46,136,.34);
      filter: brightness(1.08);
    }
    .btn-secondary:hover {
      border-color: rgba(255,46,136,.6);
      background: rgba(255,46,136,.08);
    }
    .btn-ghost:hover {
      border-color: var(--cyan);
      background: rgba(0,229,200,.08);
    }
    a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 3px;
    }

    main { overflow: hidden; }
    section { position: relative; }
    .section-pad { padding: 92px 0; }
    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 34px;
    }
    .section-kicker {
      color: var(--cyan);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0;
      margin-bottom: 10px;
    }
    h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: 0; }
    h1 {
      max-width: 1040px;
      font-size: clamp(38px, 5vw, 64px);
      font-weight: 800;
    }
    h2 {
      font-size: clamp(28px, 3vw, 38px);
      font-weight: 800;
    }
    h3 {
      font-size: 20px;
      font-weight: 800;
    }
    p { margin: 0; }
    .lead {
      max-width: 820px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
    }
    .muted { color: var(--muted); }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 30px;
      padding: 5px 11px;
      border-radius: 999px;
      color: var(--text);
      background: rgba(255,255,255,.055);
      border: 1px solid var(--line);
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }
    .badge.amber {
      color: #ffd98b;
      border-color: rgba(245,184,75,.35);
      background: rgba(245,184,75,.08);
    }
    .badge.cyan {
      color: var(--cyan);
      border-color: rgba(0,229,200,.32);
      background: rgba(0,229,200,.08);
    }
    .dot {
      width: 8px;
      height: 8px;
      border-radius: 99px;
      background: var(--cyan);
      box-shadow: 0 0 16px rgba(0,229,200,.85);
      flex: 0 0 auto;
    }

    .hero {
      min-height: calc(100vh - 72px);
      padding: 20px 0 66px;
      display: flex;
      align-items: stretch;
    }
    .hero-kv {
      position: relative;
      width: 100%;
      min-height: 640px;
      display: flex;
      align-items: end;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(7,7,11,.04), rgba(7,7,11,.92)),
        linear-gradient(90deg, rgba(7,7,11,.9), rgba(7,7,11,.38) 48%, rgba(7,7,11,.86)),
        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='%23100b17'/%3E%3Cg opacity='.88'%3E%3Crect x='70' y='82' width='150' height='210' rx='14' fill='%2321152c' stroke='%23ff2e88' stroke-opacity='.34'/%3E%3Crect x='242' y='38' width='168' height='248' rx='14' fill='%23181222' stroke='%2300e5c8' stroke-opacity='.28'/%3E%3Crect x='432' y='118' width='132' height='190' rx='12' fill='%23261a31' stroke='%23ffffff' stroke-opacity='.12'/%3E%3Crect x='586' y='52' width='182' height='262' rx='15' fill='%23160f20' stroke='%23ff2e88' stroke-opacity='.24'/%3E%3Crect x='790' y='104' width='142' height='206' rx='13' fill='%2320182a' stroke='%23ffffff' stroke-opacity='.12'/%3E%3Crect x='954' y='34' width='174' height='252' rx='14' fill='%231a1024' stroke='%2300e5c8' stroke-opacity='.22'/%3E%3Crect x='1150' y='88' width='162' height='218' rx='13' fill='%23201829' stroke='%23ff2e88' stroke-opacity='.3'/%3E%3Crect x='116' y='334' width='182' height='254' rx='14' fill='%23170f21' stroke='%23ffffff' stroke-opacity='.1'/%3E%3Crect x='320' y='358' width='138' height='198' rx='12' fill='%23241a30' stroke='%23ff2e88' stroke-opacity='.2'/%3E%3Crect x='480' y='328' width='196' height='282' rx='16' fill='%23160f20' stroke='%2300e5c8' stroke-opacity='.22'/%3E%3Crect x='698' y='354' width='156' height='224' rx='13' fill='%2320162b' stroke='%23ffffff' stroke-opacity='.1'/%3E%3Crect x='876' y='320' width='186' height='270' rx='15' fill='%23181022' stroke='%23ff2e88' stroke-opacity='.28'/%3E%3Crect x='1084' y='350' width='150' height='214' rx='12' fill='%23231a2e' stroke='%2300e5c8' stroke-opacity='.24'/%3E%3C/g%3E%3Cg opacity='.18'%3E%3Cpath d='M0 674H1400' stroke='%23fff'/%3E%3Cpath d='M0 620H1400' stroke='%23fff'/%3E%3Cpath d='M0 566H1400' stroke='%23fff'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
    }
    .hero-kv::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(120deg, transparent 0 34%, rgba(255,46,136,.12) 48%, transparent 62% 100%);
      transform: translateX(-42%);
      animation: scan 6s ease-in-out infinite;
    }
    @keyframes scan {
      0%, 18% { transform: translateX(-58%); opacity: 0; }
      38%, 54% { opacity: 1; }
      86%, 100% { transform: translateX(58%); opacity: 0; }
    }
    .hero-inner {
      position: relative;
      z-index: 2;
      width: 100%;
      padding-bottom: 42px;
    }
    .countdown-bar {
      margin: 0 0 42px;
      padding: 13px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      border: 1px solid rgba(255,46,136,.32);
      border-left-color: rgba(0,229,200,.42);
      border-right-color: rgba(0,229,200,.2);
      border-radius: 999px;
      background: rgba(10, 8, 15, .78);
      box-shadow: var(--shadow-neon);
      backdrop-filter: blur(16px);
    }
    .countdown-copy {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }
    .countdown-copy strong {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      font-size: 14px;
    }
    .countdown {
      display: flex;
      align-items: center;
      gap: 8px;
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }
    .time-box {
      width: 44px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      color: #fff;
      background: rgba(255,255,255,.075);
      border: 1px solid rgba(255,255,255,.14);
      font-weight: 800;
      line-height: 1;
    }
    .time-sep { color: var(--muted); font-weight: 800; }
    .hero-copy {
      max-width: 960px;
    }
    .hero-copy .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }
    .hero-copy .lead {
      max-width: 780px;
      margin-top: 22px;
    }
    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }
    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 760px;
      margin-top: 34px;
    }
    .metric {
      padding: 14px 16px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.045);
      backdrop-filter: blur(10px);
    }
    .metric b {
      display: block;
      color: var(--text);
      font-size: 24px;
      line-height: 1.1;
      font-variant-numeric: tabular-nums;
    }
    .metric span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .stage-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(320px, .72fr);
      gap: 28px;
      align-items: stretch;
    }
    .stage-panel {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
      box-shadow: var(--shadow);
    }
    .poster-wall {
      position: absolute;
      inset: 22px;
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      grid-auto-rows: 86px;
      gap: 12px;
    }
    .poster-tile {
      position: relative;
      overflow: hidden;
      border-radius: 13px;
      border: 1px solid rgba(255,255,255,.12);
      background: linear-gradient(145deg, rgba(255,46,136,.22), rgba(0,229,200,.06)), #15101f;
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }
    .poster-tile:nth-child(2n) { background: linear-gradient(145deg, rgba(0,229,200,.16), rgba(255,46,136,.08)), #171020; }
    .poster-tile:nth-child(3n) { background: linear-gradient(145deg, rgba(245,184,75,.15), rgba(255,46,136,.12)), #191321; }
    .poster-tile.tall { grid-row: span 2; }
    .poster-tile.wide { grid-column: span 2; }
    .poster-tile::after {
      content: attr(data-label);
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 10px;
      padding: 6px 8px;
      border-radius: 999px;
      color: var(--text);
      background: rgba(7,7,11,.72);
      border: 1px solid rgba(255,255,255,.12);
      font-size: 12px;
      font-weight: 700;
      text-align: center;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .poster-tile:hover {
      transform: scale(1.025);
      border-color: rgba(255,46,136,.62);
      box-shadow: 0 0 28px rgba(255,46,136,.18);
    }
    .stage-note {
      position: absolute;
      left: 28px;
      right: 28px;
      bottom: 26px;
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,46,136,.35);
      background: rgba(7,7,11,.78);
      backdrop-filter: blur(16px);
    }
    .stage-note h3 { margin-bottom: 8px; }
    .matrix {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }
    .info-card {
      min-height: 150px;
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.045);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }
    .info-card:hover {
      transform: translateY(-3px);
      border-color: rgba(255,46,136,.52);
      background: rgba(255,46,136,.06);
    }
    .info-card .icon {
      width: 34px;
      height: 34px;
      margin-bottom: 14px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: var(--cyan);
      border: 1px solid rgba(0,229,200,.32);
      background: rgba(0,229,200,.07);
    }
    .info-card p {
      margin-top: 8px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
    }

    .step-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }
    .step-card {
      position: relative;
      padding: 24px;
      min-height: 214px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
    }
    .step-num {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      margin-bottom: 22px;
      border-radius: 999px;
      color: #fff;
      background: rgba(255,46,136,.18);
      border: 1px solid rgba(255,46,136,.46);
      font-weight: 800;
      font-variant-numeric: tabular-nums;
    }
    .step-card p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 15px;
    }

    .highlight-wall {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      grid-auto-rows: 172px;
      gap: 14px;
    }
    .cover-card {
      position: relative;
      overflow: hidden;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: linear-gradient(150deg, rgba(255,46,136,.2), rgba(20,16,29,.92));
      box-shadow: 0 14px 36px rgba(0,0,0,.26);
      transition: transform .25s ease, border-color .25s ease;
    }
    .cover-card.large { grid-column: span 2; grid-row: span 2; }
    .cover-card.mid { grid-column: span 2; }
    .cover-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, transparent 40%, rgba(7,7,11,.9)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 12px);
      opacity: .78;
    }
    .cover-card::after {
      content: "";
      position: absolute;
      inset: 0;
      transform: translateX(-110%);
      background: linear-gradient(100deg, transparent, rgba(255,46,136,.26), transparent);
      transition: transform .42s ease;
    }
    .cover-card:hover {
      transform: translateY(-4px) scale(1.015);
      border-color: rgba(255,46,136,.58);
    }
    .cover-card:hover::after { transform: translateX(110%); }
    .cover-info {
      position: absolute;
      z-index: 2;
      left: 14px;
      right: 14px;
      bottom: 14px;
    }
    .cover-info strong {
      display: block;
      font-size: 16px;
      line-height: 1.35;
    }
    .cover-info span {
      display: inline-flex;
      margin-top: 8px;
      color: var(--muted);
      font-size: 12px;
    }
    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }
    .filter-tags .tag {
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--muted);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.035);
      font-size: 14px;
      transition: color .2s ease, border-color .2s ease, background .2s ease;
    }
    .filter-tags .tag.active,
    .filter-tags .tag:hover {
      color: #fff;
      border-color: rgba(255,46,136,.56);
      background: rgba(255,46,136,.13);
    }

    .timeline {
      border-left: 1px solid rgba(255,255,255,.16);
      padding-left: 24px;
      display: grid;
      gap: 18px;
    }
    .timeline-item {
      position: relative;
      padding: 18px 20px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.04);
    }
    .timeline-item::before {
      content: "";
      position: absolute;
      left: -31px;
      top: 25px;
      width: 13px;
      height: 13px;
      border-radius: 99px;
      background: var(--primary);
      box-shadow: 0 0 22px rgba(255,46,136,.8);
    }
    .timeline-item time {
      color: var(--cyan);
      font-size: 13px;
      font-weight: 800;
    }
    .timeline-item h3 { margin: 6px 0 8px; }
    .timeline-item p { color: var(--muted); font-size: 15px; }

    .quote-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr 1fr;
      gap: 18px;
      align-items: stretch;
    }
    .quote-card {
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.045);
    }
    .quote-card.feature {
      background: linear-gradient(145deg, rgba(255,46,136,.16), rgba(255,255,255,.04));
      border-color: rgba(255,46,136,.32);
    }
    .quote-card p {
      color: var(--text);
      font-size: 16px;
    }
    .quote-card span {
      display: block;
      margin-top: 18px;
      color: var(--muted);
      font-size: 13px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 26px;
    }
    .news-list {
      border-top: 1px solid var(--line);
    }
    .news-item {
      display: grid;
      grid-template-columns: 112px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      padding: 20px 0;
      border-bottom: 1px solid var(--line);
    }
    .news-item time {
      color: var(--muted);
      font-size: 13px;
      font-variant-numeric: tabular-nums;
    }
    .news-item a {
      font-weight: 800;
      transition: color .2s ease;
    }
    .news-item a:hover { color: var(--primary); }
    .news-item p {
      margin-top: 5px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
    }
    .side-panel {
      padding: 22px;
      border-radius: var(--radius);
      border: 1px solid rgba(0,229,200,.22);
      background: rgba(0,229,200,.045);
    }
    .side-panel ul {
      padding: 0;
      margin: 18px 0 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }
    .side-panel li {
      display: flex;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .cta-band {
      padding: 34px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 420px;
      gap: 32px;
      align-items: center;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255,46,136,.34);
      background:
        linear-gradient(90deg, rgba(255,46,136,.16), transparent 42%),
        linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
      box-shadow: var(--shadow-neon);
    }
    .lead-form {
      display: grid;
      gap: 12px;
    }
    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .field {
      width: 100%;
      min-height: 48px;
      padding: 0 15px;
      border-radius: 999px;
      color: var(--text);
      background: rgba(7,7,11,.62);
      border: 1px solid rgba(255,255,255,.14);
      outline: none;
    }
    .field::placeholder { color: rgba(167,154,174,.82); }
    .form-note {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
    }

    .faq-list {
      border-top: 1px solid var(--line);
    }
    .faq-item {
      border-bottom: 1px solid var(--line);
    }
    .faq-q {
      width: 100%;
      min-height: 64px;
      padding: 20px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      color: var(--text);
      background: transparent;
      text-align: left;
      font-weight: 800;
      font-size: 17px;
    }
    .faq-icon {
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 99px;
      color: var(--cyan);
      border: 1px solid rgba(0,229,200,.28);
      transition: transform .2s ease, color .2s ease;
    }
    .faq-a {
      display: none;
      margin: 0 0 20px;
      padding: 14px 18px 14px 18px;
      border-left: 2px solid var(--primary);
      color: var(--muted);
      background: rgba(255,255,255,.035);
      border-radius: 0 12px 12px 0;
      font-size: 15px;
    }
    .faq-item.open .faq-a { display: block; }
    .faq-item.open .faq-icon { transform: rotate(45deg); color: var(--primary); }

    .site-footer {
      padding: 46px 0 26px;
      border-top: 1px solid var(--line);
      background: rgba(7,7,11,.82);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 220px 220px;
      gap: 34px;
    }
    .footer-brand p {
      max-width: 620px;
      margin-top: 14px;
      color: var(--muted);
      font-size: 14px;
    }
    .footer-col h3 {
      font-size: 15px;
      margin-bottom: 13px;
    }
    .footer-col a {
      display: block;
      color: var(--muted);
      font-size: 14px;
      margin: 9px 0;
      transition: color .2s ease;
    }
    .footer-col a:hover { color: var(--primary); }
    .footer-bottom {
      margin-top: 34px;
      padding-top: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      border-top: 1px solid var(--line);
      color: var(--muted-2);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .container { width: min(100% - 44px, var(--container)); }
      .nav-links { gap: 22px; }
      .stage-wrap, .news-layout, .cta-band {
        grid-template-columns: 1fr;
      }
      .quote-grid {
        grid-template-columns: 1fr 1fr;
      }
      .highlight-wall {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
      .hero-metrics, .step-row {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .container { width: min(100% - 36px, var(--container)); }
      .site-header {
        position: sticky;
      }
      .nav-wrap { min-height: 66px; }
      .nav-links {
        position: fixed;
        inset: 66px 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 22px 22px;
        background: rgba(7, 7, 11, .96);
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
      }
      .nav-links.open { display: flex; }
      .nav-links a {
        padding: 18px 0;
        border-bottom: 1px solid var(--line);
      }
      .nav-links a::after { bottom: 12px; transform-origin: left; }
      .nav-actions .btn { display: none; }
      .menu-btn { display: inline-block; }
      .hero {
        min-height: auto;
        padding-top: 12px;
        padding-bottom: 46px;
      }
      .hero-kv {
        min-height: 610px;
        align-items: end;
      }
      .countdown-bar {
        align-items: flex-start;
        flex-direction: column;
        border-radius: 20px;
      }
      .countdown-copy strong {
        white-space: normal;
      }
      .hero-actions .btn {
        width: 100%;
      }
      .stage-panel {
        min-height: 470px;
      }
      .poster-wall {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 78px;
      }
      .matrix {
        grid-template-columns: 1fr;
      }
      .section-pad {
        padding: 64px 0;
      }
      .section-head {
        display: block;
      }
      .section-head .lead {
        margin-top: 14px;
      }
      .highlight-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 166px;
      }
      .cover-card.large,
      .cover-card.mid {
        grid-column: span 1;
        grid-row: span 1;
      }
      .quote-grid {
        grid-template-columns: 1fr;
      }
      .news-item {
        grid-template-columns: 1fr;
        gap: 7px;
      }
      .form-row {
        grid-template-columns: 1fr;
      }
      .cta-band {
        padding: 24px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
      }
    }
    @media (max-width: 520px) {
      h1 { font-size: 36px; }
      .brand-text { max-width: 220px; white-space: normal; line-height: 1.25; }
      .hero-kv { min-height: 650px; }
      .countdown {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
      }
      .time-box {
        width: 40px;
        height: 32px;
      }
      .hero-metrics {
        gap: 10px;
      }
      .poster-wall {
        inset: 14px;
        gap: 9px;
      }
      .stage-note {
        left: 16px;
        right: 16px;
        bottom: 16px;
      }
      .highlight-wall {
        gap: 10px;
      }
      .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
      }
      .footer-bottom {
        font-size: 12px;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #07070b;
      --bg-soft: #0e0b14;
      --panel: #14101d;
      --panel-2: #1a1424;
      --text: #f6f2f5;
      --muted: #a79aae;
      --muted-2: #7f7388;
      --line: rgba(246, 242, 245, .12);
      --line-strong: rgba(255, 46, 136, .42);
      --pink: #ff2e88;
      --pink-2: #f43f9b;
      --purple: #8f3cff;
      --cyan: #00e5c8;
      --amber: #f5b84b;
      --shadow: 0 24px 70px rgba(0, 0, 0, .38);
      --radius-sm: 10px;
      --radius: 14px;
      --radius-lg: 18px;
      --container: 1240px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
      line-height: 1.65;
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px),
        radial-gradient(circle at 22% 12%, rgba(255,46,136,.16), transparent 32%),
        radial-gradient(circle at 78% 4%, rgba(0,229,200,.10), transparent 28%),
        var(--bg);
      background-size: 42px 42px, 42px 42px, auto, auto, auto;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background:
        repeating-linear-gradient(0deg, rgba(255,255,255,.028) 0, rgba(255,255,255,.028) 1px, transparent 1px, transparent 5px);
      opacity: .22;
      mix-blend-mode: screen;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 3px;
    }

    .container {
      width: min(100% - 64px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(7, 7, 11, .82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .nav-wrap {
      height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      font-weight: 800;
      letter-spacing: 0;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--pink), var(--purple));
      box-shadow: 0 0 0 1px rgba(255,255,255,.16), 0 0 28px rgba(255,46,136,.32);
      font-size: 15px;
    }

    .brand-text {
      font-size: 17px;
      line-height: 1.2;
      white-space: normal;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 34px;
      margin-left: auto;
    }

    .nav-links a {
      position: relative;
      color: var(--muted);
      font-size: 15px;
      font-weight: 600;
      padding: 25px 0 23px;
    }

    .nav-links a:hover {
      color: var(--text);
    }

    .nav-links a.active {
      color: var(--text);
    }

    .nav-links a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 17px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--pink), var(--cyan));
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.2;
      white-space: nowrap;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, filter .2s ease;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--pink), #b92bff);
      box-shadow: 0 12px 34px rgba(255,46,136,.28), inset 0 0 0 1px rgba(255,255,255,.16);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      filter: brightness(1.08);
      box-shadow: 0 16px 42px rgba(255,46,136,.38), 0 0 0 1px rgba(255,46,136,.28);
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(255,255,255,.035);
      border-color: rgba(167,154,174,.32);
    }

    .btn-secondary:hover {
      color: #fff;
      background: rgba(255,46,136,.12);
      border-color: rgba(255,46,136,.52);
      transform: translateY(-1px);
    }

    .btn-ghost {
      color: var(--cyan);
      border-color: rgba(0,229,200,.44);
      background: rgba(0,229,200,.06);
    }

    .btn-ghost:hover {
      background: rgba(0,229,200,.12);
      border-color: var(--cyan);
      transform: translateY(-1px);
    }

    .menu-btn {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.035);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
    }

    .menu-btn span {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: var(--text);
      transition: transform .2s ease, opacity .2s ease;
    }

    .menu-open .menu-btn span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-open .menu-btn span:nth-child(2) {
      opacity: 0;
    }

    .menu-open .menu-btn span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 88px 0;
      position: relative;
    }

    .section-tight {
      padding: 48px 0 82px;
    }

    .countdown-strip {
      margin-top: 24px;
      border: 1px solid rgba(255,46,136,.34);
      border-left-color: rgba(0,229,200,.65);
      border-radius: var(--radius);
      background: linear-gradient(90deg, rgba(255,46,136,.10), rgba(0,229,200,.055), rgba(255,255,255,.025));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 50px rgba(0,0,0,.28);
      overflow: hidden;
    }

    .strip-inner {
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 14px 18px;
    }

    .strip-copy {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .status-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      flex: 0 0 auto;
      background: var(--cyan);
      box-shadow: 0 0 16px rgba(0,229,200,.75);
    }

    .strip-copy strong {
      display: block;
      font-size: 15px;
      line-height: 1.3;
    }

    .strip-copy span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }

    .time-boxes {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 0 0 auto;
    }

    .time-box {
      width: 48px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 10px;
      color: #fff;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
      font-weight: 800;
      background: rgba(255,255,255,.075);
      border: 1px solid rgba(255,255,255,.12);
      box-shadow: inset 0 0 18px rgba(255,46,136,.09);
    }

    .hero {
      padding: 50px 0 86px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
      gap: 54px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--cyan);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--cyan);
      box-shadow: 0 0 16px rgba(0,229,200,.7);
    }

    h1,
    h2,
    h3 {
      margin: 0;
      letter-spacing: 0;
      line-height: 1.12;
    }

    h1 {
      max-width: 820px;
      font-size: clamp(36px, 5vw, 62px);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(28px, 3.2vw, 38px);
      font-weight: 800;
    }

    h3 {
      font-size: 20px;
      font-weight: 800;
    }

    .lead {
      max-width: 760px;
      margin: 22px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 32px;
    }

    .hero-note {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 28px;
      padding: 15px 16px;
      border-radius: var(--radius);
      border: 1px solid rgba(245,184,75,.28);
      background: rgba(245,184,75,.08);
      color: #f8dfaa;
      font-size: 14px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 30px;
      padding: 6px 11px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      color: var(--muted);
      background: rgba(255,255,255,.04);
      font-size: 13px;
      font-weight: 700;
      line-height: 1.2;
    }

    .badge.pink {
      color: #ffd6e7;
      border-color: rgba(255,46,136,.42);
      background: rgba(255,46,136,.12);
    }

    .badge.cyan {
      color: #c6fff7;
      border-color: rgba(0,229,200,.42);
      background: rgba(0,229,200,.10);
    }

    .badge.amber {
      color: #ffe0a2;
      border-color: rgba(245,184,75,.42);
      background: rgba(245,184,75,.10);
    }

    .visual-panel {
      position: relative;
      min-height: 520px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)),
        var(--panel);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .visual-panel::before {
      content: "限时";
      position: absolute;
      top: 22px;
      right: 22px;
      z-index: 4;
      width: 74px;
      height: 74px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--pink), var(--purple));
      box-shadow: 0 0 34px rgba(255,46,136,.46);
      transform: rotate(10deg);
    }

    .poster-stack {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      height: 100%;
    }

    .poster-tile {
      position: relative;
      min-height: 148px;
      border-radius: 13px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.12);
      background: var(--panel-2);
    }

    .poster-tile img {
      width: 100%;
      height: 100%;
      min-height: inherit;
      object-fit: cover;
      opacity: .86;
      transition: transform .35s ease, opacity .35s ease;
    }

    .poster-tile:hover img {
      transform: scale(1.05);
      opacity: 1;
    }

    .poster-tile::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.72));
      pointer-events: none;
    }

    .poster-tile span {
      position: absolute;
      left: 10px;
      right: 10px;
      bottom: 10px;
      z-index: 2;
      font-size: 13px;
      font-weight: 800;
      line-height: 1.35;
    }

    .poster-tile.tall {
      grid-row: span 2;
      min-height: 300px;
    }

    .poster-tile.mid {
      min-height: 210px;
    }

    .filter-band {
      border-block: 1px solid var(--line);
      background: rgba(14,11,20,.68);
    }

    .filter-layout {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: end;
      padding: 26px 0;
    }

    .filter-title p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .filter-controls {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .search-field,
    .select-field {
      height: 46px;
      border-radius: 999px;
      border: 1px solid rgba(167,154,174,.26);
      color: var(--text);
      background: rgba(255,255,255,.045);
      padding: 0 16px;
      outline: none;
      min-width: 170px;
    }

    .search-field::placeholder {
      color: var(--muted-2);
    }

    .select-field {
      appearance: none;
      padding-right: 42px;
      background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
      background-position: calc(100% - 20px) 20px, calc(100% - 14px) 20px;
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .tag {
      border: 1px solid rgba(167,154,174,.28);
      color: var(--muted);
      background: rgba(255,255,255,.035);
      min-height: 38px;
      padding: 8px 13px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
    }

    .tag:hover {
      color: var(--text);
      border-color: rgba(255,46,136,.48);
      background: rgba(255,46,136,.10);
      transform: translateY(-1px);
    }

    .tag.active {
      color: #fff;
      border-color: rgba(255,46,136,.64);
      background: linear-gradient(135deg, rgba(255,46,136,.8), rgba(143,60,255,.72));
    }

    .content-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 292px;
      gap: 28px;
      align-items: start;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 30px;
    }

    .section-head p {
      max-width: 660px;
      margin: 12px 0 0;
      color: var(--muted);
    }

    .poster-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .item-card {
      position: relative;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(20,16,29,.72);
      overflow: hidden;
      min-width: 0;
      transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    }

    .item-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,46,136,.5);
      box-shadow: 0 18px 46px rgba(0,0,0,.34), 0 0 0 1px rgba(255,46,136,.18);
    }

    .item-cover {
      position: relative;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      background: var(--panel-2);
    }

    .item-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .35s ease;
    }

    .item-card:hover .item-cover img {
      transform: scale(1.055);
    }

    .item-cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.62));
    }

    .item-state {
      position: absolute;
      left: 12px;
      top: 12px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 9px;
      border-radius: 999px;
      color: #d8fff9;
      background: rgba(0,0,0,.42);
      border: 1px solid rgba(0,229,200,.36);
      font-size: 12px;
      font-weight: 800;
      backdrop-filter: blur(8px);
    }

    .item-info {
      position: relative;
      margin-top: -28px;
      padding: 0 14px 15px;
      z-index: 3;
      transition: transform .25s ease;
    }

    .item-card:hover .item-info {
      transform: translateY(-3px);
    }

    .info-panel {
      border-radius: 12px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(10,8,14,.78);
      backdrop-filter: blur(12px);
      padding: 13px;
    }

    .item-info h3 {
      font-size: 17px;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }

    .item-info p {
      margin: 8px 0 12px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .mini-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }

    .mini-tags span {
      color: #d9cfdf;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      border-radius: 999px;
      padding: 4px 8px;
      font-size: 12px;
      line-height: 1.2;
    }

    .item-link {
      width: 100%;
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      border: 1px solid rgba(255,46,136,.34);
      color: #ffd6e7;
      background: rgba(255,46,136,.08);
      font-size: 13px;
      font-weight: 800;
    }

    .item-link:hover {
      color: #fff;
      background: rgba(255,46,136,.17);
      border-color: rgba(255,46,136,.64);
    }

    .side-panel {
      position: sticky;
      top: 100px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
      padding: 18px;
      box-shadow: 0 18px 46px rgba(0,0,0,.24);
    }

    .side-panel + .side-panel {
      margin-top: 16px;
    }

    .side-panel h3 {
      font-size: 18px;
      margin-bottom: 12px;
    }

    .rule-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .rule-list li {
      display: flex;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .rule-list li:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .rule-list i {
      width: 8px;
      height: 8px;
      margin-top: 8px;
      border-radius: 50%;
      flex: 0 0 auto;
      background: var(--pink);
      box-shadow: 0 0 14px rgba(255,46,136,.7);
    }

    .quick-links {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .quick-links a {
      color: var(--muted);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      padding: 7px 10px;
      font-size: 13px;
      font-weight: 700;
      background: rgba(255,255,255,.035);
    }

    .quick-links a:hover {
      color: var(--cyan);
      border-color: rgba(0,229,200,.4);
      background: rgba(0,229,200,.08);
    }

    .pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      margin-top: 34px;
      flex-wrap: wrap;
    }

    .page-link {
      min-width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      border: 1px solid rgba(167,154,174,.26);
      color: var(--muted);
      background: rgba(255,255,255,.035);
      font-size: 14px;
      font-weight: 800;
    }

    .page-link:hover {
      color: var(--text);
      border-color: rgba(0,229,200,.42);
    }

    .page-link.current {
      color: #fff;
      border-color: rgba(255,46,136,.58);
      background: rgba(255,46,136,.22);
      box-shadow: 0 0 0 1px rgba(255,46,136,.12);
    }

    .page-link.wide {
      padding: 0 16px;
      min-width: 76px;
    }

    .process {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 30px;
      align-items: stretch;
    }

    .process-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
      padding: 28px;
      overflow: hidden;
      position: relative;
    }

    .process-panel::before {
      content: "";
      position: absolute;
      left: 0;
      top: 28px;
      bottom: 28px;
      width: 2px;
      background: linear-gradient(var(--pink), var(--cyan));
      box-shadow: 0 0 18px rgba(255,46,136,.5);
    }

    .steps {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .step {
      display: grid;
      grid-template-columns: 46px 1fr;
      gap: 14px;
      align-items: start;
      padding: 15px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.035);
      border: 1px solid rgba(255,255,255,.09);
    }

    .step-num {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: rgba(255,46,136,.18);
      border: 1px solid rgba(255,46,136,.42);
      font-weight: 900;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    }

    .step strong {
      display: block;
      margin-bottom: 4px;
      font-size: 16px;
    }

    .step span {
      color: var(--muted);
      font-size: 14px;
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      margin-top: 22px;
    }

    .metric {
      min-height: 118px;
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.035);
    }

    .metric b {
      display: block;
      color: var(--cyan);
      font-size: 26px;
      line-height: 1.1;
      margin-bottom: 8px;
      font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    }

    .metric span {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }

    .cta-band {
      border-block: 1px solid rgba(255,46,136,.24);
      background:
        linear-gradient(90deg, rgba(255,46,136,.12), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.015)),
        var(--bg-soft);
    }

    .cta-wrap {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 34px;
      align-items: center;
      padding: 54px 0;
    }

    .cta-wrap p {
      max-width: 720px;
      color: var(--muted);
      margin: 14px 0 0;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .cta-checks {
      display: grid;
      gap: 10px;
      padding: 18px;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.035);
    }

    .cta-checks span {
      display: flex;
      gap: 9px;
      align-items: center;
      color: var(--muted);
      font-size: 14px;
    }

    .cta-checks i {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(0,229,200,.7);
    }

    .faq-list {
      max-width: 900px;
      margin: 30px auto 0;
      border-top: 1px solid var(--line);
    }

    .faq-item {
      border-bottom: 1px solid var(--line);
    }

    .faq-question {
      width: 100%;
      min-height: 66px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      border: 0;
      color: var(--text);
      background: transparent;
      padding: 20px 0;
      text-align: left;
      font-weight: 800;
      font-size: 17px;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.14);
      color: var(--cyan);
      transition: transform .2s ease, background .2s ease, color .2s ease;
    }

    .faq-answer {
      display: none;
      margin: 0 0 18px;
      padding: 0 18px 0 16px;
      border-left: 2px solid var(--pink);
      color: var(--muted);
      background: rgba(255,255,255,.025);
      border-radius: 0 10px 10px 0;
      line-height: 1.8;
    }

    .faq-item.open .faq-answer {
      display: block;
      padding-top: 12px;
      padding-bottom: 12px;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      color: #fff;
      background: rgba(255,46,136,.16);
      border-color: rgba(255,46,136,.46);
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: rgba(7,7,11,.96);
      padding: 56px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) .7fr .7fr;
      gap: 42px;
      align-items: start;
    }

    .footer-brand p {
      max-width: 560px;
      margin: 18px 0 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.8;
    }

    .filter-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .footer-col h3 {
      margin: 0 0 14px;
      font-size: 15px;
    }

    .footer-col a {
      display: block;
      color: var(--muted);
      padding: 6px 0;
      font-size: 14px;
    }

    .footer-col a:hover {
      color: var(--cyan);
      transform: translateX(2px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      margin-top: 38px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: var(--muted-2);
      font-size: 13px;
    }

    @media (max-width: 1180px) {
      .poster-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .hero-grid,
      .content-layout,
      .process,
      .cta-wrap {
        grid-template-columns: 1fr;
      }

      .visual-panel {
        min-height: 460px;
      }

      .side-panel {
        position: static;
      }
    }

    @media (max-width: 900px) {
      .container {
        width: min(100% - 40px, var(--container));
      }

      .nav-wrap {
        height: 68px;
      }

      .menu-btn {
        display: inline-flex;
      }

      .nav-links {
        position: fixed;
        inset: 68px 0 auto 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 20px 22px;
        background: rgba(7,7,11,.97);
        border-bottom: 1px solid var(--line);
        box-shadow: 0 26px 60px rgba(0,0,0,.42);
      }

      .menu-open .nav-links {
        display: flex;
      }

      .nav-links a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
      }

      .nav-links a.active::after {
        width: 34px;
        bottom: 10px;
        right: auto;
      }

      .nav-actions .btn {
        display: none;
      }

      .filter-layout {
        grid-template-columns: 1fr;
      }

      .filter-controls {
        justify-content: flex-start;
      }

      .search-field,
      .select-field {
        width: 100%;
        min-width: 0;
      }

      .section-head {
        display: block;
      }

      .poster-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 620px) {
      .container {
        width: min(100% - 36px, var(--container));
      }

      .brand-text {
        font-size: 14px;
        max-width: 190px;
      }

      .hero {
        padding: 34px 0 56px;
      }

      .section {
        padding: 58px 0;
      }

      h1 {
        font-size: 38px;
      }

      .lead {
        font-size: 15px;
      }

      .strip-inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .time-boxes {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 2px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .hero-actions .btn,
      .cta-actions .btn {
        width: 100%;
      }

      .visual-panel {
        min-height: auto;
        padding: 12px;
      }

      .poster-stack {
        grid-template-columns: repeat(2, 1fr);
      }

      .poster-tile.tall,
      .poster-tile.mid,
      .poster-tile {
        min-height: 176px;
        grid-row: auto;
      }

      .metric-grid {
        grid-template-columns: 1fr;
      }

      .step {
        grid-template-columns: 40px 1fr;
      }

      .step-num {
        width: 40px;
        height: 40px;
      }

      .poster-grid {
        gap: 13px;
      }

      .item-info {
        padding-inline: 9px;
      }

      .info-panel {
        padding: 11px;
      }

      .item-info h3 {
        font-size: 15px;
      }

      .item-info p {
        font-size: 12px;
      }

      .cta-wrap {
        padding: 42px 0;
      }
    }
