/* roulang page: index */
:root {
      --bg: #09090b;
      --bg-2: #111114;
      --bg-3: #18181b;
      --card: rgba(24, 24, 27, .82);
      --card-strong: rgba(31, 31, 35, .96);
      --text: #f8fafc;
      --muted: #a1a1aa;
      --soft: #d4d4d8;
      --line: rgba(255, 255, 255, .10);
      --line-strong: rgba(255, 255, 255, .18);
      --rose: #f43f5e;
      --rose-2: #e11d48;
      --amber: #f59e0b;
      --violet: #a855f7;
      --radius: 18px;
      --radius-sm: 14px;
      --shadow: 0 22px 80px rgba(0, 0, 0, .42);
      --glow: 0 0 0 1px rgba(244, 63, 94, .22), 0 18px 55px rgba(244, 63, 94, .18);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 15% 0%, rgba(244, 63, 94, .18), transparent 34%),
        radial-gradient(circle at 86% 8%, rgba(245, 158, 11, .13), transparent 28%),
        linear-gradient(180deg, #09090b 0%, #111114 42%, #09090b 100%);
      line-height: 1.65;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 78%);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input {
      outline: none;
    }

    .site-container {
      width: min(1240px, calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(9, 9, 11, .84);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .nav-shell {
      min-height: 74px;
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      font-weight: 900;
      letter-spacing: 0;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--rose), var(--amber));
      box-shadow: 0 12px 32px rgba(244, 63, 94, .26);
      position: relative;
      overflow: hidden;
    }

    .brand-mark::before {
      content: "";
      width: 0;
      height: 0;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
      border-left: 11px solid #fff;
      margin-left: 3px;
    }

    .brand-text {
      font-size: 16px;
      color: #fff;
      white-space: nowrap;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
      justify-content: center;
    }

    .main-nav a {
      padding: 10px 13px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 650;
      color: var(--muted);
      transition: .2s ease;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: #fff;
      background: rgba(255, 255, 255, .08);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-mini {
      position: relative;
      width: 240px;
    }

    .search-mini input {
      width: 100%;
      height: 42px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .055);
      color: #fff;
      padding: 0 16px 0 38px;
      transition: .2s ease;
      font-size: 14px;
    }

    .search-mini input:focus {
      border-color: rgba(244, 63, 94, .72);
      box-shadow: 0 0 0 4px rgba(244, 63, 94, .12);
    }

    .search-mini span {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--muted);
      font-size: 14px;
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      color: #fff;
      background: rgba(255, 255, 255, .08);
      border: 1px solid var(--line);
    }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 14px;
      padding: 0 18px;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--rose), var(--amber));
      box-shadow: 0 14px 36px rgba(244, 63, 94, .28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 44px rgba(244, 63, 94, .36);
    }

    .btn-secondary {
      color: #fff;
      background: rgba(255, 255, 255, .07);
      border: 1px solid var(--line-strong);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(244, 63, 94, .65);
      background: rgba(255, 255, 255, .105);
    }

    .btn-ghost {
      color: var(--soft);
      background: rgba(255, 255, 255, .055);
      border: 1px solid var(--line);
    }

    .section {
      padding: 84px 0;
      scroll-margin-top: 90px;
    }

    .section-tight {
      padding: 62px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-kicker,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      width: fit-content;
      border-radius: 999px;
      border: 1px solid rgba(244, 63, 94, .28);
      background: rgba(244, 63, 94, .10);
      color: #fecdd3;
      font-size: 13px;
      font-weight: 750;
      padding: 7px 11px;
    }

    .badge.amber {
      border-color: rgba(245, 158, 11, .32);
      background: rgba(245, 158, 11, .11);
      color: #fde68a;
    }

    .badge.gray {
      border-color: var(--line);
      background: rgba(255, 255, 255, .07);
      color: var(--soft);
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    h1 {
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.08;
      letter-spacing: 0;
      font-weight: 900;
    }

    h2 {
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.16;
      font-weight: 900;
    }

    h3 {
      font-size: 21px;
      line-height: 1.28;
      font-weight: 850;
    }

    .lead {
      color: var(--soft);
      font-size: 17px;
      line-height: 1.8;
    }

    .muted {
      color: var(--muted);
    }

    .hero {
      min-height: calc(100vh - 74px);
      display: flex;
      align-items: center;
      padding: 64px 0 52px;
      position: relative;
    }

    .hero-stage {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 26px;
      align-items: stretch;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
      padding: 26px 0;
    }

    .hero-copy .lead {
      max-width: 690px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 2px;
    }

    .choice-panel {
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
      border-radius: 28px;
      padding: 18px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .choice-panel::before {
      content: "";
      position: absolute;
      inset: -1px;
      background:
        radial-gradient(circle at 15% 18%, rgba(244,63,94,.28), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(245,158,11,.20), transparent 26%);
      opacity: .8;
      pointer-events: none;
    }

    .choice-panel > * {
      position: relative;
      z-index: 1;
    }

    .choice-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .choice-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .choice-card {
      border: 1px solid var(--line);
      background: rgba(0, 0, 0, .34);
      border-radius: 18px;
      padding: 16px;
      transition: .2s ease;
    }

    .choice-card.recommended {
      border-color: rgba(244, 63, 94, .75);
      background: linear-gradient(135deg, rgba(244, 63, 94, .18), rgba(245, 158, 11, .10));
      box-shadow: var(--glow);
      transform: scale(1.02);
      order: -1;
    }

    .choice-card:hover {
      transform: translateY(-3px) scale(1.015);
      border-color: rgba(245, 158, 11, .55);
    }

    .choice-card.recommended:hover {
      transform: translateY(-3px) scale(1.035);
    }

    .choice-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 12px;
    }

    .hero-path {
      margin-top: 14px;
      border-top: 1px solid var(--line);
      padding-top: 14px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .path-item {
      min-height: 78px;
      border-radius: 16px;
      background: rgba(255, 255, 255, .055);
      border: 1px solid var(--line);
      padding: 12px;
    }

    .path-num {
      color: #fff;
      width: 26px;
      height: 26px;
      border-radius: 999px;
      display: inline-grid;
      place-items: center;
      background: var(--rose);
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .track-wrap {
      position: relative;
    }

    .track-wrap::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 100px;
      height: 100%;
      pointer-events: none;
      background: linear-gradient(90deg, transparent, var(--bg));
    }

    .scroll-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(250px, 300px);
      gap: 16px;
      overflow-x: auto;
      padding: 4px 4px 18px;
      scrollbar-width: none;
      scroll-snap-type: x proximity;
    }

    .scroll-track::-webkit-scrollbar {
      display: none;
    }

    .portal-card,
    .content-card,
    .info-card,
    .faq-item,
    .testimonial {
      border: 1px solid var(--line);
      background: var(--card);
      border-radius: var(--radius);
      box-shadow: 0 14px 38px rgba(0,0,0,.25);
      transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
      overflow: hidden;
    }

    .portal-card:hover,
    .content-card:hover,
    .info-card:hover,
    .testimonial:hover {
      transform: translateY(-4px) scale(1.025);
      border-color: rgba(244, 63, 94, .62);
      box-shadow: 0 20px 52px rgba(244, 63, 94, .12);
    }

    .portal-card {
      min-height: 190px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      scroll-snap-align: start;
    }

    .card-cover {
      aspect-ratio: 16 / 10;
      border-radius: 16px;
      background:
        linear-gradient(135deg, rgba(244,63,94,.28), rgba(168,85,247,.14) 46%, rgba(245,158,11,.20)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 1px, transparent 1px 14px);
      position: relative;
      overflow: hidden;
    }

    .card-cover::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 58%;
      background: linear-gradient(180deg, transparent, rgba(0,0,0,.72));
    }

    .cover-badges {
      position: absolute;
      top: 12px;
      left: 12px;
      right: 12px;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      gap: 8px;
    }

    .content-card:hover .card-cover {
      filter: saturate(1.08) brightness(1.05);
    }

    .content-body {
      padding: 15px;
      margin-top: -28px;
      position: relative;
      z-index: 3;
      background: rgba(0, 0, 0, .68);
      backdrop-filter: blur(10px);
      border-top: 1px solid rgba(255,255,255,.08);
    }

    .line-clamp-2 {
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .solution-grid {
      display: grid;
      grid-template-columns: 330px 1fr;
      gap: 22px;
      align-items: start;
    }

    .step-nav {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, .055);
      border-radius: 24px;
      padding: 16px;
      position: sticky;
      top: 96px;
    }

    .step-link {
      width: 100%;
      text-align: left;
      display: grid;
      grid-template-columns: 40px 1fr;
      gap: 12px;
      padding: 13px;
      border-radius: 16px;
      color: var(--soft);
      background: transparent;
      transition: .2s ease;
    }

    .step-link span:first-child {
      width: 34px;
      height: 34px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.08);
      color: #fff;
      font-weight: 900;
    }

    .step-link.active,
    .step-link:hover {
      background: rgba(244, 63, 94, .13);
      color: #fff;
    }

    .preview-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-bottom: 24px;
    }

    .stat-card {
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 18px;
      background: rgba(255,255,255,.055);
    }

    .stat-num {
      font-size: 34px;
      font-weight: 950;
      line-height: 1;
      background: linear-gradient(135deg, #fff, #fecdd3 42%, #fde68a);
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 8px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
      gap: 18px;
    }

    .news-list {
      border: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
      background: rgba(255,255,255,.045);
    }

    .news-item {
      display: grid;
      grid-template-columns: 108px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 17px;
      border-bottom: 1px solid var(--line);
      transition: .2s ease;
    }

    .news-item:last-child {
      border-bottom: 0;
    }

    .news-item:hover {
      background: rgba(244, 63, 94, .08);
    }

    .news-date {
      color: #fde68a;
      font-size: 13px;
      font-weight: 800;
    }

    .recommend-box {
      border: 1px solid rgba(244, 63, 94, .34);
      border-radius: 24px;
      padding: 20px;
      background:
        linear-gradient(135deg, rgba(244, 63, 94, .14), rgba(245, 158, 11, .08)),
        rgba(255,255,255,.045);
    }

    .feedback-wall {
      display: grid;
      grid-template-columns: 1fr 310px;
      gap: 18px;
      align-items: stretch;
    }

    .bubble-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
    }

    .testimonial {
      padding: 16px;
      min-height: 116px;
    }

    .testimonial.wide {
      grid-column: span 3;
    }

    .testimonial.mid {
      grid-column: span 2;
    }

    .rating-summary {
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255,255,255,.055);
      padding: 22px;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 360px 1fr;
      gap: 22px;
      align-items: start;
    }

    .faq-search {
      margin-top: 18px;
      position: relative;
    }

    .faq-search input {
      width: 100%;
      min-height: 48px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.06);
      color: #fff;
      padding: 0 14px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      padding: 0;
    }

    .faq-question {
      width: 100%;
      min-height: 58px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      padding: 16px 18px;
      color: #fff;
      background: transparent;
      text-align: left;
      font-weight: 850;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.08);
      transition: .2s ease;
      flex: 0 0 auto;
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--muted);
      line-height: 1.78;
    }

    .faq-item.open {
      border-color: rgba(244, 63, 94, .65);
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: rgba(244, 63, 94, .22);
      color: #fecdd3;
    }

    .faq-item.open .faq-answer {
      display: block;
      animation: fadeIn .18s ease both;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .cta-band {
      border: 1px solid rgba(244, 63, 94, .42);
      border-radius: 28px;
      padding: 34px;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(135deg, rgba(244,63,94,.20), rgba(245,158,11,.10) 52%, rgba(168,85,247,.13)),
        rgba(255,255,255,.045);
      box-shadow: var(--shadow);
    }

    .cta-band::after {
      content: "高清 分类 更新 入口 收藏 提醒 移动端";
      position: absolute;
      right: -40px;
      bottom: 4px;
      font-size: 54px;
      font-weight: 950;
      color: rgba(255,255,255,.045);
      white-space: nowrap;
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 20px;
      align-items: center;
    }

    .site-footer {
      background: #050506;
      border-top: 1px solid var(--line);
      padding: 58px 0 94px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 28px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .footer-links a {
      color: var(--muted);
      transition: .2s ease;
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #fb7185;
    }

    .footer-note {
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .fixed-cta {
      position: fixed;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      z-index: 45;
      width: min(760px, calc(100% - 28px));
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(9,9,11,.88);
      backdrop-filter: blur(18px);
      border-radius: 18px;
      padding: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      box-shadow: 0 18px 60px rgba(0,0,0,.42);
    }

    .fixed-cta p {
      font-size: 14px;
      color: var(--soft);
      padding-left: 10px;
    }

    .mobile-panel {
      display: none;
    }

    @media (max-width: 1024px) {
      .search-mini {
        width: 190px;
      }

      .hero-stage,
      .solution-grid,
      .news-layout,
      .feedback-wall,
      .faq-layout,
      .cta-content {
        grid-template-columns: 1fr;
      }

      .step-nav {
        position: static;
      }

      .stats-row {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 28px, 1240px);
      }

      .nav-shell {
        min-height: 66px;
      }

      .main-nav,
      .nav-actions {
        display: none;
      }

      .mobile-toggle {
        display: inline-grid;
        place-items: center;
        margin-left: auto;
      }

      .mobile-panel {
        display: none;
        border-top: 1px solid var(--line);
        padding: 12px 0 16px;
      }

      .mobile-panel.open {
        display: grid;
        gap: 10px;
      }

      .mobile-panel a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding: 0 14px;
        border-radius: 14px;
        color: var(--soft);
        background: rgba(255,255,255,.05);
      }

      .hero {
        min-height: auto;
        padding: 44px 0 34px;
      }

      .section {
        padding: 56px 0;
      }

      .section-head {
        display: grid;
      }

      .hero-path,
      .preview-grid,
      .stats-row {
        grid-template-columns: 1fr;
      }

      .choice-card.recommended {
        transform: none;
      }

      .choice-card.recommended:hover {
        transform: translateY(-3px) scale(1.015);
      }

      .scroll-track {
        grid-auto-columns: 72vw;
      }

      .news-item {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .bubble-grid {
        grid-template-columns: 1fr;
      }

      .testimonial.wide,
      .testimonial.mid {
        grid-column: auto;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .fixed-cta {
        display: none;
      }

      .btn {
        width: 100%;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 34px;
      }

      .brand-text {
        max-width: 214px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .choice-panel,
      .cta-band {
        border-radius: 22px;
        padding: 16px;
      }

      .section {
        padding: 46px 0;
      }
    }

/* roulang page: category2 */
:root {
      --bg: #09090B;
      --bg-soft: #111114;
      --bg-card: #18181B;
      --text: #F8FAFC;
      --muted: #A1A1AA;
      --muted-2: #D4D4D8;
      --primary: #F43F5E;
      --primary-dark: #E11D48;
      --amber: #F59E0B;
      --violet: #A855F7;
      --border: rgba(255,255,255,.10);
      --border-strong: rgba(244,63,94,.42);
      --overlay: rgba(0,0,0,.68);
      --radius-sm: 12px;
      --radius-md: 16px;
      --radius-lg: 20px;
      --shadow: 0 24px 80px rgba(0,0,0,.38);
      --glow: 0 0 0 1px rgba(244,63,94,.18), 0 18px 50px rgba(244,63,94,.18);
      --container: 1220px;
      --nav-h: 76px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-height: 100vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 0%, rgba(244,63,94,.20), transparent 34%),
        radial-gradient(circle at 90% 8%, rgba(245,158,11,.12), transparent 28%),
        linear-gradient(180deg, #09090B 0%, #111114 48%, #09090B 100%);
      line-height: 1.65;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent 72%);
      z-index: -1;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, select { font: inherit; }
    button { cursor: pointer; }
    section { scroll-margin-top: calc(var(--nav-h) + 24px); }

    .site-container {
      width: min(100% - 40px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(9,9,11,.84);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--border);
    }

    .header-row {
      height: var(--nav-h);
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      font-weight: 900;
      color: var(--text);
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      position: relative;
      background:
        linear-gradient(135deg, var(--primary), var(--amber));
      box-shadow: 0 0 28px rgba(244,63,94,.35);
      flex: 0 0 auto;
    }

    .brand-mark::before {
      content: "";
      position: absolute;
      left: 12px;
      top: 9px;
      width: 0;
      height: 0;
      border-left: 10px solid #fff;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
      filter: drop-shadow(0 2px 5px rgba(0,0,0,.22));
    }

    .brand-text {
      font-size: 17px;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255,255,255,.035);
      margin-left: auto;
    }

    .main-nav a {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 15px;
      border-radius: 999px;
      color: var(--muted-2);
      font-size: 14px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease, transform .2s ease;
    }

    .main-nav a:hover,
    .main-nav a:focus-visible {
      color: #fff;
      background: rgba(255,255,255,.08);
      outline: none;
    }

    .main-nav a.active {
      color: #fff;
      background: linear-gradient(135deg, rgba(244,63,94,.98), rgba(245,158,11,.92));
      box-shadow: 0 12px 30px rgba(244,63,94,.22);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-search {
      width: 238px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 13px;
      border-radius: 999px;
      background: rgba(255,255,255,.045);
      border: 1px solid var(--border);
      color: var(--muted);
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .nav-search:focus-within {
      border-color: var(--border-strong);
      box-shadow: 0 0 0 4px rgba(244,63,94,.10);
    }

    .nav-search input {
      width: 100%;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .nav-search input::placeholder { color: #71717A; }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 14px;
      padding: 0 18px;
      border: 1px solid transparent;
      font-weight: 800;
      font-size: 14px;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); }
    .btn:focus-visible { outline: 3px solid rgba(244,63,94,.36); outline-offset: 3px; }
    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--amber));
      box-shadow: 0 18px 42px rgba(244,63,94,.24);
    }
    .btn-primary:hover { box-shadow: 0 22px 58px rgba(244,63,94,.34); }
    .btn-secondary {
      color: var(--text);
      background: rgba(255,255,255,.045);
      border-color: var(--border);
    }
    .btn-secondary:hover {
      background: rgba(255,255,255,.075);
      border-color: rgba(244,63,94,.52);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 14px;
      background: rgba(255,255,255,.045);
      color: #fff;
    }

    .page-hero {
      padding: 54px 0 32px;
      border-bottom: 1px solid var(--border);
      background:
        linear-gradient(180deg, rgba(255,255,255,.035), transparent),
        radial-gradient(circle at 78% 0%, rgba(244,63,94,.18), transparent 34%);
    }

    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 390px;
      gap: 30px;
      align-items: end;
    }

    .eyebrow-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    .badge,
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      padding: 8px 12px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.055);
      color: var(--muted-2);
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
    }

    .badge.hot {
      color: #fff;
      border-color: rgba(244,63,94,.42);
      background: rgba(244,63,94,.14);
    }

    .hero-title {
      max-width: 780px;
      font-size: clamp(32px, 4.1vw, 54px);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: 0;
      margin: 0;
    }

    .hero-copy {
      max-width: 760px;
      margin: 18px 0 0;
      color: var(--muted-2);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .status-panel {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(24,24,27,.96), rgba(9,9,11,.92));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .status-head {
      padding: 18px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .pulse {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: var(--primary);
      box-shadow: 0 0 0 8px rgba(244,63,94,.13);
    }

    .status-list {
      padding: 16px 18px 18px;
      display: grid;
      gap: 12px;
    }

    .status-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px;
      border-radius: 14px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.08);
    }

    .progress {
      height: 7px;
      width: 104px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255,255,255,.10);
    }

    .progress span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--amber));
    }

    .filter-band {
      position: sticky;
      top: var(--nav-h);
      z-index: 30;
      background: rgba(9,9,11,.92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
    }

    .filter-row {
      min-height: 74px;
      display: flex;
      align-items: center;
      gap: 12px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .filter-row::-webkit-scrollbar,
    .rail::-webkit-scrollbar { display: none; }

    .chip {
      min-height: 42px;
      cursor: pointer;
      transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
    }

    .chip:hover,
    .chip.active {
      color: #fff;
      border-color: rgba(244,63,94,.48);
      background: rgba(244,63,94,.16);
      transform: translateY(-1px);
    }

    .select-lite,
    .input-lite {
      height: 42px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(255,255,255,.045);
      color: var(--text);
      padding: 0 14px;
      outline: none;
      min-width: 132px;
    }

    .input-lite {
      min-width: 220px;
    }

    .select-lite:focus,
    .input-lite:focus {
      border-color: var(--border-strong);
      box-shadow: 0 0 0 4px rgba(244,63,94,.10);
    }

    .section {
      padding: 78px 0;
    }

    .section.tight {
      padding-top: 52px;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-kicker {
      color: var(--primary);
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(28px, 3vw, 38px);
      line-height: 1.22;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-desc {
      max-width: 620px;
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .content-layout {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }

    .side-panel {
      position: sticky;
      top: calc(var(--nav-h) + 96px);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: rgba(24,24,27,.82);
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .side-title {
      font-size: 18px;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .side-list {
      display: grid;
      gap: 10px;
    }

    .side-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px;
      border-radius: 14px;
      color: var(--muted-2);
      background: rgba(255,255,255,.035);
      border: 1px solid rgba(255,255,255,.06);
      transition: border-color .2s ease, background .2s ease, color .2s ease;
    }

    .side-link:hover,
    .side-link.active {
      color: #fff;
      border-color: rgba(244,63,94,.42);
      background: rgba(244,63,94,.13);
    }

    .notice-box {
      margin-top: 16px;
      padding: 14px;
      border-radius: 16px;
      color: var(--muted-2);
      background: rgba(245,158,11,.10);
      border: 1px solid rgba(245,158,11,.24);
      font-size: 13px;
    }

    .rail-wrap {
      position: relative;
      margin-bottom: 30px;
    }

    .rail-wrap::after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 96px;
      pointer-events: none;
      background: linear-gradient(90deg, transparent, var(--bg-soft));
    }

    .rail {
      display: flex;
      gap: 16px;
      overflow-x: auto;
      padding: 4px 4px 14px;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
    }

    .feature-card {
      flex: 0 0 292px;
      scroll-snap-align: start;
    }

    .card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: rgba(24,24,27,.88);
      border: 1px solid var(--border);
      box-shadow: 0 18px 54px rgba(0,0,0,.26);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .card:hover {
      transform: translateY(-3px) scale(1.025);
      border-color: rgba(244,63,94,.48);
      box-shadow: var(--glow);
    }

    .cover {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background:
        radial-gradient(circle at 22% 18%, rgba(244,63,94,.42), transparent 25%),
        radial-gradient(circle at 84% 10%, rgba(245,158,11,.32), transparent 28%),
        linear-gradient(135deg, #27272A, #111114 62%, #09090B);
    }

    .cover::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(135deg, rgba(255,255,255,.08) 0 1px, transparent 1px 12px),
        linear-gradient(rgba(255,255,255,.06), transparent 42%);
      opacity: .8;
      transform: scale(1);
      transition: transform .22s ease;
    }

    .card:hover .cover::before { transform: scale(1.06); }

    .cover-badges {
      position: absolute;
      left: 12px;
      top: 12px;
      right: 12px;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      z-index: 2;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      border-radius: 999px;
      padding: 0 9px;
      font-size: 12px;
      font-weight: 800;
      color: #fff;
      background: rgba(0,0,0,.52);
      border: 1px solid rgba(255,255,255,.14);
    }

    .tag.primary { background: rgba(244,63,94,.78); }
    .tag.amber { background: rgba(245,158,11,.78); color: #111114; }

    .card-body {
      position: relative;
      padding: 16px;
      background: linear-gradient(180deg, rgba(0,0,0,.58), rgba(0,0,0,.72));
      min-height: 184px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: transform .22s ease;
    }

    .card:hover .card-body { transform: translateY(-2px); }

    .card-title {
      margin: 0;
      color: #fff;
      font-size: 18px;
      line-height: 1.35;
      font-weight: 900;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-text {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.6;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
      color: var(--muted);
      font-size: 12px;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      border-radius: 12px;
      padding: 0 12px;
      color: #fff;
      font-size: 13px;
      font-weight: 800;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.10);
      transition: background .2s ease, border-color .2s ease;
    }

    .card-link:hover {
      background: rgba(244,63,94,.20);
      border-color: rgba(244,63,94,.42);
    }

    .mag-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .mag-grid .card:first-child {
      grid-column: span 2;
      grid-row: span 2;
    }

    .mag-grid .card:first-child .cover {
      aspect-ratio: 16 / 8.8;
    }

    .mag-grid .card:first-child .card-body {
      min-height: 210px;
    }

    .info-panel {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(24,24,27,.86), rgba(17,17,20,.72));
      padding: 26px;
    }

    .info-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .info-list li {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr);
      gap: 12px;
      color: var(--muted-2);
    }

    .num {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      background: rgba(244,63,94,.18);
      border: 1px solid rgba(244,63,94,.34);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 360px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .faq-card {
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      background: rgba(24,24,27,.80);
      overflow: hidden;
    }

    .faq-item + .faq-item {
      border-top: 1px solid var(--border);
    }

    .faq-question {
      width: 100%;
      min-height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 20px;
      border: 0;
      background: transparent;
      color: #fff;
      text-align: left;
      font-weight: 900;
    }

    .faq-question span:last-child {
      transition: transform .2s ease;
      color: var(--primary);
      font-size: 22px;
      line-height: 1;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.open {
      background: rgba(244,63,94,.055);
    }

    .faq-item.open .faq-question span:last-child {
      transform: rotate(45deg);
    }

    .faq-item.open .faq-answer {
      display: block;
      animation: fadeIn .18s ease both;
    }

    .cta-band {
      padding: 78px 0 88px;
      background:
        linear-gradient(135deg, rgba(244,63,94,.18), rgba(245,158,11,.10)),
        linear-gradient(180deg, rgba(24,24,27,.88), rgba(9,9,11,.96));
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .cta-box {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      padding: 34px;
      border: 1px solid rgba(244,63,94,.32);
      background:
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025)),
        radial-gradient(circle at 82% 12%, rgba(245,158,11,.22), transparent 30%);
      box-shadow: var(--shadow);
    }

    .cta-box::after {
      content: "高清 分类 更新 提醒 国产 入口";
      position: absolute;
      right: -22px;
      bottom: 8px;
      max-width: 420px;
      color: rgba(255,255,255,.045);
      font-size: 48px;
      font-weight: 900;
      line-height: 1.15;
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 28px;
      align-items: center;
    }

    .site-footer {
      background: #070708;
      border-top: 1px solid var(--border);
      padding: 56px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr .8fr .8fr;
      gap: 30px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
      transition: color .2s ease;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-note {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid var(--border);
      color: #71717A;
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .muted { color: var(--muted); }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @media (max-width: 1120px) {
      .nav-search { display: none; }
      .hero-layout { grid-template-columns: 1fr; }
      .status-panel { max-width: 680px; }
      .content-layout { grid-template-columns: 240px minmax(0, 1fr); }
      .mag-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (max-width: 900px) {
      .header-row { gap: 12px; }
      .main-nav {
        position: fixed;
        top: var(--nav-h);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border-radius: 18px;
        padding: 10px;
        background: rgba(17,17,20,.98);
        box-shadow: var(--shadow);
      }
      .main-nav.open { display: flex; }
      .main-nav a { justify-content: flex-start; border-radius: 12px; }
      .mobile-toggle { display: inline-grid; place-items: center; margin-left: auto; }
      .nav-actions .btn-secondary { display: none; }
      .content-layout { grid-template-columns: 1fr; }
      .side-panel {
        position: static;
        padding: 14px;
      }
      .side-list {
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
      }
      .side-list::-webkit-scrollbar { display: none; }
      .side-link { min-width: 180px; }
      .faq-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cta-content { grid-template-columns: 1fr; }
    }

    @media (max-width: 640px) {
      :root { --nav-h: 68px; }
      .site-container { width: min(100% - 28px, var(--container)); }
      .brand-text { font-size: 15px; max-width: 170px; white-space: normal; line-height: 1.2; }
      .brand-mark { width: 32px; height: 32px; border-radius: 11px; }
      .nav-actions .btn-primary { display: none; }
      .page-hero { padding: 38px 0 26px; }
      .hero-copy { font-size: 15px; }
      .hero-actions .btn { width: 100%; }
      .filter-row { min-height: 68px; }
      .input-lite { min-width: 210px; }
      .section { padding: 54px 0; }
      .section-head { display: block; }
      .rail-wrap::after { width: 42px; }
      .feature-card { flex-basis: 76vw; }
      .mag-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
      .mag-grid .card:first-child { grid-column: span 2; }
      .card-body { padding: 13px; min-height: 172px; }
      .card-title { font-size: 16px; }
      .card-text { font-size: 13px; }
      .info-panel, .cta-box { padding: 22px; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-note { display: grid; }
    }

/* roulang page: category1 */
:root {
      --bg: #09090B;
      --bg-soft: #111114;
      --bg-card: #18181B;
      --text: #F8FAFC;
      --muted: #A1A1AA;
      --muted-2: #D4D4D8;
      --line: rgba(255,255,255,.10);
      --line-strong: rgba(255,255,255,.18);
      --rose: #F43F5E;
      --rose-dark: #E11D48;
      --amber: #F59E0B;
      --violet: #A855F7;
      --info: rgba(0,0,0,.68);
      --radius-sm: 12px;
      --radius: 16px;
      --radius-lg: 20px;
      --shadow: 0 22px 70px rgba(0,0,0,.34);
      --glow: 0 0 0 1px rgba(244,63,94,.22), 0 20px 54px rgba(244,63,94,.12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 16% 0%, rgba(244,63,94,.20), transparent 34%),
        radial-gradient(circle at 86% 8%, rgba(245,158,11,.13), transparent 30%),
        linear-gradient(180deg, #09090B 0%, #111114 45%, #09090B 100%);
      line-height: 1.65;
      letter-spacing: 0;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.18), transparent);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
    }

    button,
    input,
    select {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input,
    select {
      outline: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    section {
      scroll-margin-top: 96px;
    }

    .site-container {
      width: min(100% - 32px, 1220px);
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(9,9,11,.84);
      backdrop-filter: blur(18px);
    }

    .nav-shell {
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      font-weight: 800;
      color: var(--text);
    }

    .brand-mark {
      width: 34px;
      height: 34px;
      border-radius: 11px;
      display: inline-block;
      position: relative;
      background:
        linear-gradient(135deg, rgba(244,63,94,1), rgba(245,158,11,.95));
      box-shadow: 0 0 28px rgba(244,63,94,.28);
      overflow: hidden;
    }

    .brand-mark::before {
      content: "";
      position: absolute;
      left: 12px;
      top: 9px;
      width: 0;
      height: 0;
      border-top: 8px solid transparent;
      border-bottom: 8px solid transparent;
      border-left: 12px solid #fff;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,.24));
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      right: 5px;
      bottom: 5px;
      width: 8px;
      height: 8px;
      border-radius: 3px;
      border: 1px solid rgba(255,255,255,.72);
      opacity: .85;
    }

    .brand-text {
      font-size: 17px;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.04);
    }

    .main-nav a {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      padding: 0 15px;
      border-radius: 999px;
      color: var(--muted-2);
      font-size: 14px;
      font-weight: 650;
    }

    .main-nav a:hover,
    .main-nav a:focus-visible {
      color: #fff;
      background: rgba(255,255,255,.08);
    }

    .main-nav a.active {
      color: #fff;
      background: linear-gradient(135deg, rgba(244,63,94,.92), rgba(245,158,11,.82));
      box-shadow: 0 10px 28px rgba(244,63,94,.20);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-box {
      width: 250px;
      min-height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(24,24,27,.72);
      padding: 0 14px;
      color: var(--muted);
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .search-box:focus-within {
      border-color: rgba(244,63,94,.72);
      box-shadow: 0 0 0 4px rgba(244,63,94,.12);
      background: rgba(24,24,27,.95);
    }

    .search-box input {
      width: 100%;
      color: #fff;
      background: transparent;
      border: 0;
      font-size: 13px;
    }

    .search-box input::placeholder {
      color: #85858f;
    }

    .btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 14px;
      padding: 0 18px;
      font-size: 14px;
      font-weight: 750;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:focus-visible,
    .mobile-toggle:focus-visible,
    .filter-chip:focus-visible,
    .faq-trigger:focus-visible {
      outline: 3px solid rgba(244,63,94,.36);
      outline-offset: 3px;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--rose), var(--amber));
      box-shadow: 0 16px 40px rgba(244,63,94,.23);
    }

    .btn-primary:hover {
      box-shadow: 0 18px 48px rgba(245,158,11,.25);
      filter: brightness(1.05);
    }

    .btn-secondary {
      color: #fff;
      border: 1px solid var(--line-strong);
      background: rgba(255,255,255,.055);
    }

    .btn-secondary:hover {
      border-color: rgba(244,63,94,.62);
      background: rgba(244,63,94,.10);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.06);
      color: #fff;
      align-items: center;
      justify-content: center;
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid var(--line);
      padding: 12px 0 18px;
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-menu .main-nav {
      width: 100%;
      overflow-x: auto;
      justify-content: flex-start;
      border-radius: 16px;
    }

    .page-hero {
      padding: 54px 0 30px;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(244,63,94,.08), transparent 72%),
        radial-gradient(circle at 80% 18%, rgba(168,85,247,.13), transparent 28%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
      gap: 34px;
      align-items: end;
    }

    .eyebrow,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid rgba(244,63,94,.28);
      border-radius: 999px;
      background: rgba(244,63,94,.10);
      color: #fecdd3;
      padding: 7px 11px;
      font-size: 13px;
      font-weight: 700;
    }

    .page-hero h1 {
      margin: 18px 0 14px;
      max-width: 850px;
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 780px;
      color: var(--muted-2);
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .hero-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(24,24,27,.94), rgba(9,9,11,.92));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .panel-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 18px;
      border-bottom: 1px solid var(--line);
    }

    .progress-wrap {
      padding: 18px;
    }

    .progress-bar {
      height: 9px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255,255,255,.09);
    }

    .progress-fill {
      width: 76%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--rose), var(--amber));
      box-shadow: 0 0 24px rgba(244,63,94,.35);
    }

    .status-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 16px;
    }

    .status-mini {
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(255,255,255,.045);
      padding: 12px;
    }

    .status-mini strong {
      display: block;
      font-size: 18px;
      line-height: 1.1;
    }

    .status-mini span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
    }

    .filter-band {
      position: sticky;
      top: 77px;
      z-index: 30;
      border-bottom: 1px solid var(--line);
      background: rgba(9,9,11,.88);
      backdrop-filter: blur(16px);
    }

    .filter-inner {
      display: grid;
      grid-template-columns: minmax(210px, 1fr) auto;
      gap: 14px;
      align-items: center;
      padding: 15px 0;
    }

    .filter-search {
      min-height: 46px;
      display: flex;
      align-items: center;
      gap: 10px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(255,255,255,.055);
      padding: 0 14px;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .filter-search:focus-within {
      border-color: rgba(244,63,94,.72);
      box-shadow: 0 0 0 4px rgba(244,63,94,.12);
    }

    .filter-search input {
      width: 100%;
      border: 0;
      color: #fff;
      background: transparent;
      font-size: 14px;
    }

    .chip-row {
      display: flex;
      align-items: center;
      gap: 9px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .chip-row::-webkit-scrollbar,
    .track::-webkit-scrollbar {
      display: none;
    }

    .filter-chip {
      min-height: 42px;
      flex: 0 0 auto;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.055);
      color: var(--muted-2);
      padding: 0 14px;
      font-size: 13px;
      font-weight: 700;
      transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
    }

    .filter-chip:hover,
    .filter-chip.active {
      color: #fff;
      border-color: rgba(244,63,94,.64);
      background: rgba(244,63,94,.16);
      transform: translateY(-1px);
    }

    .section {
      padding: 72px 0;
    }

    .section-tight {
      padding: 52px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 24px;
    }

    .section-title {
      margin: 0;
      font-size: clamp(26px, 3.2vw, 36px);
      line-height: 1.18;
      font-weight: 850;
      letter-spacing: 0;
    }

    .section-copy {
      max-width: 640px;
      color: var(--muted);
      margin-top: 10px;
      font-size: 15px;
    }

    .track-wrap {
      position: relative;
    }

    .track-wrap::before,
    .track-wrap::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 64px;
      z-index: 2;
      pointer-events: none;
    }

    .track-wrap::before {
      left: 0;
      background: linear-gradient(90deg, var(--bg), transparent);
    }

    .track-wrap::after {
      right: 0;
      background: linear-gradient(270deg, var(--bg), transparent);
    }

    .track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(250px, 292px);
      gap: 18px;
      overflow-x: auto;
      padding: 4px 2px 16px;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
    }

    .media-card {
      position: relative;
      min-height: 330px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #141416;
      box-shadow: 0 14px 34px rgba(0,0,0,.18);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      scroll-snap-align: start;
    }

    .media-card:hover {
      transform: translateY(-3px) scale(1.025);
      border-color: rgba(244,63,94,.62);
      box-shadow: var(--glow);
    }

    .media-cover {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(244,63,94,.28), transparent 32%),
        radial-gradient(circle at 76% 18%, rgba(245,158,11,.22), transparent 28%),
        linear-gradient(145deg, #27272A, #09090B 76%);
      transition: transform .25s ease, filter .25s ease;
    }

    .media-cover::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 24px 24px;
      opacity: .45;
    }

    .media-card:hover .media-cover {
      transform: scale(1.055);
      filter: saturate(1.1);
    }

    .info-layer {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 18px;
      background: linear-gradient(180deg, transparent, rgba(0,0,0,.78) 20%, var(--info));
      transition: transform .22s ease, background .22s ease;
    }

    .media-card:hover .info-layer {
      transform: translateY(-4px);
      background: linear-gradient(180deg, transparent, rgba(0,0,0,.84) 18%, rgba(0,0,0,.78));
    }

    .tag-stack {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 12px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 25px;
      border-radius: 999px;
      background: rgba(255,255,255,.10);
      color: #f4f4f5;
      padding: 0 9px;
      font-size: 12px;
      font-weight: 700;
    }

    .tag.hot {
      color: #ffe4e6;
      background: rgba(244,63,94,.22);
    }

    .tag.gold {
      color: #fef3c7;
      background: rgba(245,158,11,.20);
    }

    .media-card h3,
    .content-card h3 {
      margin: 0;
      font-size: 19px;
      line-height: 1.28;
      font-weight: 800;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .media-card p,
    .content-card p {
      margin: 8px 0 0;
      color: var(--muted-2);
      font-size: 14px;
      line-height: 1.55;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .card-link {
      margin-top: 14px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: #fecdd3;
      font-size: 13px;
      font-weight: 800;
    }

    .card-link:hover {
      color: #fff;
    }

    .content-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .content-card {
      position: relative;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(24,24,27,.86);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .content-card:hover {
      transform: translateY(-3px) scale(1.025);
      border-color: rgba(245,158,11,.55);
      box-shadow: 0 18px 48px rgba(0,0,0,.28);
    }

    .thumb {
      position: relative;
      aspect-ratio: 16 / 11;
      background:
        radial-gradient(circle at 25% 18%, rgba(244,63,94,.22), transparent 30%),
        linear-gradient(135deg, #27272A, #111114);
      overflow: hidden;
    }

    .thumb::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, transparent 0 42%, rgba(255,255,255,.05) 42% 43%, transparent 43%),
        radial-gradient(circle at 78% 78%, rgba(245,158,11,.18), transparent 28%);
      opacity: .86;
      transition: transform .25s ease;
    }

    .content-card:hover .thumb::after {
      transform: scale(1.08);
    }

    .thumb-badge {
      position: absolute;
      left: 12px;
      top: 12px;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      min-height: 27px;
      border-radius: 999px;
      background: rgba(0,0,0,.62);
      border: 1px solid rgba(255,255,255,.14);
      color: #fff;
      padding: 0 10px;
      font-size: 12px;
      font-weight: 800;
    }

    .card-body {
      padding: 16px;
    }

    .meta-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-top: 13px;
      color: var(--muted);
      font-size: 12px;
    }

    .insight-band {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(90deg, rgba(244,63,94,.09), transparent 50%, rgba(245,158,11,.08)),
        rgba(255,255,255,.02);
    }

    .insight-grid {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 30px;
      align-items: center;
    }

    .step-list {
      display: grid;
      gap: 12px;
    }

    .step-item {
      display: grid;
      grid-template-columns: 38px 1fr;
      gap: 13px;
      padding: 15px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.045);
    }

    .step-no {
      width: 38px;
      height: 38px;
      border-radius: 13px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(244,63,94,.18);
      color: #fecdd3;
      font-weight: 900;
    }

    .step-item strong {
      display: block;
      line-height: 1.2;
    }

    .step-item span {
      display: block;
      margin-top: 5px;
      color: var(--muted);
      font-size: 13px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 34px;
      align-items: start;
    }

    .notice-box {
      border: 1px solid rgba(245,158,11,.26);
      border-radius: var(--radius-lg);
      background: rgba(245,158,11,.08);
      padding: 20px;
    }

    .notice-box strong {
      display: block;
      color: #fef3c7;
      margin-bottom: 8px;
    }

    .notice-box p {
      margin: 0;
      color: var(--muted-2);
      font-size: 14px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      overflow: hidden;
      background: rgba(24,24,27,.82);
      transition: border-color .2s ease, background .2s ease;
    }

    .faq-item.open {
      border-color: rgba(244,63,94,.56);
      background: rgba(244,63,94,.06);
    }

    .faq-trigger {
      width: 100%;
      min-height: 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 0 18px;
      background: transparent;
      color: #fff;
      text-align: left;
      font-weight: 800;
    }

    .faq-icon {
      flex: 0 0 auto;
      transition: transform .22s ease;
      color: #fecdd3;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px;
      color: var(--muted-2);
      font-size: 14px;
    }

    .faq-item.open .faq-answer {
      display: block;
      animation: fadeIn .18s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-4px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .cta-band {
      padding: 76px 0;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(244,63,94,.35);
      border-radius: 24px;
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(244,63,94,.18), rgba(245,158,11,.10) 44%, rgba(24,24,27,.94)),
        #111114;
      box-shadow: var(--shadow);
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      inset: auto -4% -48px 40%;
      height: 150px;
      background:
        linear-gradient(90deg, rgba(255,255,255,.08), transparent),
        repeating-linear-gradient(90deg, rgba(244,63,94,.20) 0 110px, rgba(245,158,11,.15) 110px 220px);
      transform: rotate(-4deg);
      opacity: .28;
      pointer-events: none;
    }

    .cta-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 26px;
      align-items: center;
    }

    .cta-content h2 {
      margin: 0;
      font-size: clamp(26px, 3.6vw, 40px);
      line-height: 1.16;
      font-weight: 900;
    }

    .cta-content p {
      margin: 10px 0 0;
      max-width: 720px;
      color: var(--muted-2);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: #070708;
      padding: 54px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr .65fr .75fr .75fr;
      gap: 30px;
      align-items: start;
    }

    .muted {
      color: var(--muted);
    }

    .footer-links {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #fb7185;
      transform: translateX(2px);
    }

    .footer-note {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      margin-top: 38px;
      padding-top: 22px;
      border-top: 1px solid var(--line);
      color: #85858f;
      font-size: 13px;
    }

    @media (max-width: 1080px) {
      .search-box {
        display: none;
      }

      .hero-grid,
      .insight-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

      .content-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 820px) {
      .nav-shell {
        min-height: 68px;
      }

      .desktop-nav,
      .nav-actions .btn {
        display: none;
      }

      .mobile-toggle {
        display: inline-flex;
      }

      .page-hero {
        padding-top: 38px;
      }

      .filter-band {
        top: 69px;
      }

      .filter-inner {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 54px 0;
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
      }

      .content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
      }

      .track {
        grid-auto-columns: 72vw;
      }

      .cta-content {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }

      .footer-note {
        flex-direction: column;
      }
    }

    @media (max-width: 560px) {
      .site-container {
        width: min(100% - 24px, 1220px);
      }

      .brand-text {
        max-width: 190px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .page-hero h1 {
        font-size: 34px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .status-row {
        grid-template-columns: 1fr;
      }

      .content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
      }

      .card-body {
        padding: 13px;
      }

      .content-card h3 {
        font-size: 16px;
      }

      .content-card p {
        font-size: 13px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .cta-panel {
        padding: 24px;
      }
    }
