/* roulang page: index */
:root {
      --bg: #09050b;
      --bg-2: #120814;
      --bg-3: #1a0d1e;
      --panel: rgba(30, 14, 36, .82);
      --panel-strong: rgba(42, 18, 48, .94);
      --card: rgba(25, 12, 30, .88);
      --card-soft: rgba(255, 255, 255, .045);
      --text: #f7eef8;
      --muted: #c4aec8;
      --subtle: #917e99;
      --line: rgba(255, 105, 180, .22);
      --line-2: rgba(181, 91, 255, .26);
      --primary: #ff3f9d;
      --primary-2: #b15cff;
      --primary-3: #ff7a4f;
      --ok: #70f0c8;
      --warn: #ffb75e;
      --danger: #ff6f86;
      --radius-sm: 12px;
      --radius: 18px;
      --radius-lg: 28px;
      --shadow: 0 22px 70px rgba(0, 0, 0, .48);
      --glow: 0 0 0 1px rgba(255, 63, 157, .26), 0 20px 70px rgba(255, 63, 157, .16);
      --glow-2: 0 0 0 1px rgba(177, 92, 255, .28), 0 22px 64px rgba(177, 92, 255, .15);
      --ease: all .22s ease-out;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 14% 8%, rgba(255, 63, 157, .18), transparent 30%),
        radial-gradient(circle at 84% 20%, rgba(177, 92, 255, .16), transparent 32%),
        linear-gradient(135deg, #070409 0%, #110812 46%, #1b0d1b 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .42;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, black, transparent 82%);
      z-index: -2;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    a:hover {
      color: #fff;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, select, textarea {
      font: inherit;
    }

    ::selection {
      background: rgba(255, 63, 157, .38);
      color: #fff;
    }

    .site-shell {
      position: relative;
      overflow: hidden;
    }

    .site-shell::after {
      content: "";
      position: absolute;
      top: 120px;
      right: -180px;
      width: 460px;
      height: 460px;
      background: radial-gradient(circle, rgba(255, 63, 157, .18), transparent 68%);
      filter: blur(8px);
      z-index: -1;
    }

    .container {
      max-width: 1200px;
    }

    .section {
      padding: 86px 0;
      position: relative;
    }

    .section-tight {
      padding: 58px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: #ffd4e8;
      background: rgba(255, 63, 157, .08);
      font-size: 13px;
      letter-spacing: .02em;
      box-shadow: inset 0 0 18px rgba(255, 63, 157, .06);
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 0 16px rgba(255, 63, 157, .9);
    }

    .section-title {
      margin: 16px 0 14px;
      font-size: clamp(28px, 3vw, 44px);
      line-height: 1.14;
      letter-spacing: -.04em;
      font-weight: 800;
    }

    .section-desc {
      max-width: 760px;
      color: var(--muted);
      font-size: 16px;
      margin: 0;
    }

    .text-muted-custom {
      color: var(--muted) !important;
    }

    .btn-neon {
      border: 0;
      color: #fff;
      padding: 13px 22px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), #d83baf 48%, var(--primary-2));
      box-shadow: 0 16px 42px rgba(255, 63, 157, .28);
      font-weight: 700;
      letter-spacing: .01em;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      transition: var(--ease);
    }

    .btn-neon:hover,
    .btn-neon:focus {
      color: #fff;
      transform: translateY(-2px);
      filter: brightness(1.08);
      box-shadow: 0 22px 60px rgba(255, 63, 157, .38);
    }

    .btn-ghost {
      color: #fff;
      border: 1px solid rgba(255, 105, 180, .38);
      background: rgba(255, 255, 255, .045);
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      transition: var(--ease);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      color: #fff;
      background: rgba(255, 63, 157, .14);
      border-color: rgba(255, 63, 157, .72);
      transform: translateY(-2px);
      box-shadow: var(--glow);
    }

    .btn-small {
      padding: 9px 14px;
      font-size: 14px;
    }

    .top-header {
      position: sticky;
      top: 0;
      z-index: 1030;
      background: rgba(9, 5, 11, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255, 105, 180, .15);
      box-shadow: 0 18px 60px rgba(0, 0, 0, .25);
    }

    .top-header::after {
      content: "";
      display: block;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 63, 157, .74), rgba(177, 92, 255, .7), transparent);
      opacity: .82;
    }

    .brand-row {
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      background:
        linear-gradient(135deg, rgba(255, 63, 157, .96), rgba(177, 92, 255, .86)),
        radial-gradient(circle at 30% 20%, #fff, transparent 28%);
      box-shadow: 0 0 26px rgba(255, 63, 157, .35);
      position: relative;
      flex: 0 0 auto;
    }

    .logo-mark::after {
      content: "18+";
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
    }

    .brand-text {
      font-weight: 900;
      letter-spacing: -.04em;
      font-size: 20px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      max-width: 360px;
    }

    .brand-actions {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
      flex-wrap: wrap;
    }

    .age-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      min-height: 38px;
      padding: 8px 12px;
      border-radius: 999px;
      color: #ffd9e9;
      background: rgba(255, 63, 157, .1);
      border: 1px solid rgba(255, 105, 180, .24);
      font-size: 13px;
      white-space: nowrap;
    }

    .age-chip .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--ok);
      box-shadow: 0 0 14px rgba(112, 240, 200, .9);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(255, 105, 180, .24);
      background: rgba(255, 255, 255, .05);
      color: #fff;
      align-items: center;
      justify-content: center;
    }

    .channel-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 0 14px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .channel-row::-webkit-scrollbar {
      display: none;
    }

    .channel-link {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 16px;
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255, 255, 255, .035);
      border: 1px solid rgba(255, 255, 255, .075);
      white-space: nowrap;
      font-weight: 700;
      font-size: 14px;
    }

    .channel-link:hover,
    .channel-link.active {
      color: #fff;
      background: linear-gradient(135deg, rgba(255, 63, 157, .22), rgba(177, 92, 255, .16));
      border-color: rgba(255, 63, 157, .62);
      box-shadow: 0 0 22px rgba(255, 63, 157, .13);
    }

    .hero {
      padding: 72px 0 46px;
    }

    .hero-stage {
      position: relative;
      min-height: 560px;
      border-radius: 36px;
      padding: clamp(28px, 5vw, 58px);
      background:
        linear-gradient(135deg, rgba(255, 63, 157, .13), transparent 34%),
        radial-gradient(circle at 78% 20%, rgba(177, 92, 255, .2), transparent 33%),
        linear-gradient(145deg, rgba(33, 14, 39, .94), rgba(13, 7, 16, .92));
      border: 1px solid rgba(255, 105, 180, .22);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .hero-stage::before {
      content: "";
      position: absolute;
      inset: 18px;
      border-radius: 30px;
      border: 1px solid rgba(255, 255, 255, .045);
      pointer-events: none;
    }

    .hero-stage::after {
      content: "";
      position: absolute;
      right: -70px;
      bottom: -120px;
      width: 520px;
      height: 520px;
      background: conic-gradient(from 180deg, rgba(255, 63, 157, .2), rgba(177, 92, 255, .08), rgba(255, 122, 79, .12), rgba(255, 63, 157, .2));
      border-radius: 50%;
      filter: blur(2px);
      opacity: .6;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
    }

    .hero h1 {
      max-width: 760px;
      margin: 18px 0 20px;
      font-size: clamp(38px, 6vw, 76px);
      line-height: .98;
      letter-spacing: -.06em;
      font-weight: 950;
    }

    .hero-lead {
      max-width: 820px;
      color: #dbc9df;
      font-size: clamp(16px, 1.6vw, 19px);
      margin: 0 0 26px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .meta-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 13px;
      border-radius: 999px;
      color: #f1d8f2;
      background: rgba(255, 255, 255, .055);
      border: 1px solid rgba(255, 255, 255, .09);
      font-size: 13px;
    }

    .hero-bento {
      position: relative;
      z-index: 1;
      margin-top: 36px;
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 16px;
      align-items: stretch;
    }

    .progress-card,
    .tier-card,
    .entry-mini {
      border-radius: 24px;
      border: 1px solid rgba(255, 105, 180, .2);
      background: rgba(9, 5, 11, .62);
      box-shadow: inset 0 0 36px rgba(255, 63, 157, .04);
      backdrop-filter: blur(14px);
    }

    .progress-card {
      padding: 24px;
      display: grid;
      grid-template-columns: 132px 1fr;
      gap: 22px;
      align-items: center;
    }

    .ring {
      width: 132px;
      height: 132px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background:
        conic-gradient(var(--primary) 0 72%, rgba(255, 255, 255, .08) 72% 100%);
      box-shadow: 0 0 34px rgba(255, 63, 157, .22);
      position: relative;
    }

    .ring::before {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 50%;
      background: #120814;
      border: 1px solid rgba(255, 255, 255, .08);
    }

    .ring strong {
      position: relative;
      z-index: 1;
      font-size: 30px;
      line-height: 1;
    }

    .progress-copy h2,
    .tier-card h2,
    .entry-mini h2 {
      font-size: 21px;
      margin: 0 0 8px;
      font-weight: 850;
    }

    .progress-copy p,
    .tier-card p,
    .entry-mini p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .tier-card,
    .entry-mini {
      padding: 22px;
    }

    .tier-list {
      display: grid;
      gap: 10px;
      margin-top: 18px;
    }

    .tier-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 11px 12px;
      border-radius: 15px;
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(255,255,255,.075);
      color: #f7e9fa;
      font-size: 14px;
    }

    .tier-item span:last-child {
      color: #ffd0e6;
      font-weight: 800;
    }

    .entry-grid {
      display: grid;
      gap: 10px;
      margin-top: 16px;
    }

    .entry-grid a {
      padding: 11px 12px;
      border-radius: 14px;
      background: rgba(255, 63, 157, .08);
      border: 1px solid rgba(255, 105, 180, .18);
      color: #f8deec;
      font-weight: 700;
      font-size: 14px;
    }

    .entry-grid a:hover {
      background: rgba(255, 63, 157, .16);
      border-color: rgba(255, 63, 157, .55);
      transform: translateX(3px);
    }

    .benefit-strip {
      border-radius: 28px;
      background: linear-gradient(135deg, rgba(255, 63, 157, .1), rgba(177, 92, 255, .075));
      border: 1px solid rgba(255, 105, 180, .2);
      padding: 26px;
      box-shadow: var(--shadow);
    }

    .benefit-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 24px;
    }

    .benefit-item {
      min-height: 150px;
      padding: 20px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .045);
      border: 1px solid rgba(255, 255, 255, .075);
      transition: var(--ease);
    }

    .benefit-item:hover {
      transform: translateY(-4px);
      border-color: rgba(255, 63, 157, .5);
      box-shadow: var(--glow);
    }

    .benefit-icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, rgba(255, 63, 157, .88), rgba(177, 92, 255, .82));
      margin-bottom: 14px;
    }

    .benefit-item h3 {
      font-size: 18px;
      font-weight: 850;
      margin: 0 0 8px;
    }

    .benefit-item p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .story-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
    }

    .story-panel {
      border-radius: 28px;
      background: var(--panel);
      border: 1px solid rgba(255, 105, 180, .2);
      padding: 30px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .story-panel::before {
      content: "";
      position: absolute;
      top: 28px;
      bottom: 28px;
      left: 0;
      width: 3px;
      background: linear-gradient(to bottom, var(--primary), var(--primary-2), transparent);
      box-shadow: 0 0 16px rgba(255, 63, 157, .75);
    }

    .story-panel h2 {
      font-size: clamp(26px, 3vw, 40px);
      line-height: 1.16;
      letter-spacing: -.04em;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .story-panel p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .rule-stack {
      display: grid;
      gap: 14px;
    }

    .rule-card {
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .045);
      border: 1px solid rgba(255, 255, 255, .08);
      transition: var(--ease);
    }

    .rule-card:hover {
      background: rgba(255, 63, 157, .07);
      border-color: rgba(255, 63, 157, .34);
      transform: translateY(-2px);
    }

    .rule-num {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      color: #fff;
      font-weight: 900;
      background: rgba(255, 63, 157, .16);
      border: 1px solid rgba(255, 105, 180, .34);
    }

    .rule-card h3 {
      margin: 0 0 5px;
      font-size: 17px;
      font-weight: 850;
    }

    .rule-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .poster-layout {
      display: grid;
      grid-template-columns: 1.08fr 1fr;
      gap: 18px;
      margin-top: 28px;
    }

    .poster-grid-small {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .poster-card {
      min-height: 312px;
      border-radius: 24px;
      background: rgba(18, 8, 20, .86);
      border: 1px solid rgba(255, 105, 180, .18);
      overflow: hidden;
      box-shadow: 0 22px 60px rgba(0,0,0,.28);
      transition: var(--ease);
      position: relative;
    }

    .poster-card.large {
      min-height: 642px;
    }

    .poster-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 63, 157, .68);
      box-shadow: var(--glow);
    }

    .poster-cover {
      min-height: 190px;
      position: relative;
      background:
        linear-gradient(135deg, rgba(255, 63, 157, .22), transparent 45%),
        radial-gradient(circle at 70% 20%, rgba(177, 92, 255, .32), transparent 28%),
        linear-gradient(145deg, #221026, #0e0711);
      overflow: hidden;
    }

    .large .poster-cover {
      min-height: 400px;
    }

    .poster-cover::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, transparent 0 42%, rgba(255,255,255,.06) 42% 43%, transparent 43% 100%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.035) 0 1px, transparent 1px 20px);
      opacity: .7;
      transition: transform .28s ease-out;
    }

    .poster-card:hover .poster-cover::before {
      transform: scale(1.04) translateX(8px);
    }

    .poster-badge {
      position: absolute;
      left: 16px;
      top: 16px;
      z-index: 1;
      padding: 7px 11px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      color: #fff;
      background: rgba(255, 63, 157, .22);
      border: 1px solid rgba(255, 105, 180, .36);
      backdrop-filter: blur(10px);
    }

    .poster-body {
      padding: 20px;
    }

    .poster-body h3 {
      font-size: 20px;
      font-weight: 880;
      margin: 0 0 10px;
      letter-spacing: -.02em;
    }

    .poster-body p {
      color: var(--muted);
      font-size: 14px;
      margin: 0 0 14px;
    }

    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      padding: 6px 10px;
      border-radius: 999px;
      color: #f2d5f4;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .08);
      font-size: 12px;
      font-weight: 700;
    }

    .poster-arrow {
      position: absolute;
      right: 18px;
      bottom: 18px;
      color: #fff;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: rgba(255, 63, 157, .16);
      border: 1px solid rgba(255, 105, 180, .28);
    }

    .trust-band {
      border-radius: 30px;
      border: 1px solid rgba(255, 105, 180, .22);
      background:
        radial-gradient(circle at 18% 20%, rgba(255, 63, 157, .16), transparent 28%),
        linear-gradient(135deg, rgba(28, 13, 33, .92), rgba(10, 5, 12, .94));
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 24px;
    }

    .stat-card {
      padding: 20px;
      border-radius: 22px;
      background: rgba(255, 255, 255, .045);
      border: 1px solid rgba(255, 255, 255, .075);
    }

    .stat-card strong {
      display: block;
      font-size: clamp(28px, 3vw, 42px);
      line-height: 1;
      letter-spacing: -.04em;
      margin-bottom: 9px;
      background: linear-gradient(135deg, #fff, #ffbfe0 42%, #cda7ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .stat-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .membership-panel {
      border-radius: 30px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      padding: 28px;
    }

    .membership-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .membership-card {
      border-radius: 24px;
      padding: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
      border: 1px solid rgba(255,255,255,.09);
      position: relative;
      overflow: hidden;
      transition: var(--ease);
    }

    .membership-card.featured {
      border-color: rgba(255, 63, 157, .55);
      box-shadow: var(--glow);
    }

    .membership-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255, 63, 157, .48);
    }

    .membership-card h3 {
      font-size: 22px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .membership-card .price {
      font-size: 34px;
      font-weight: 950;
      letter-spacing: -.04em;
      margin: 14px 0;
    }

    .membership-card ul {
      padding: 0;
      margin: 0 0 20px;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .membership-card li {
      color: var(--muted);
      font-size: 14px;
      display: flex;
      gap: 8px;
    }

    .membership-card li::before {
      content: "✓";
      color: var(--ok);
      font-weight: 900;
    }

    .guide-wrap {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 22px;
      align-items: start;
    }

    .guide-panel,
    .news-panel,
    .faq-panel,
    .form-panel {
      border-radius: 28px;
      background: var(--panel);
      border: 1px solid rgba(255, 105, 180, .18);
      padding: 28px;
      box-shadow: var(--shadow);
    }

    .guide-list {
      display: grid;
      gap: 13px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .guide-list li {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 12px;
      padding: 15px;
      border-radius: 18px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.075);
    }

    .guide-list b {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255, 63, 157, .16);
      border: 1px solid rgba(255, 105, 180, .28);
      color: #fff;
    }

    .guide-list span {
      color: var(--muted);
      font-size: 14px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.25fr .75fr;
      gap: 22px;
      margin-top: 26px;
    }

    .news-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .news-list a {
      display: grid;
      grid-template-columns: 110px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 15px;
      border-radius: 20px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.075);
      transition: var(--ease);
    }

    .news-list a:hover {
      transform: translateX(4px);
      border-color: rgba(255, 63, 157, .48);
      background: rgba(255, 63, 157, .075);
    }

    .news-date {
      color: #ffd1e7;
      font-weight: 850;
      font-size: 13px;
    }

    .news-title {
      font-weight: 800;
      color: #fff;
      line-height: 1.45;
    }

    .news-arrow {
      color: var(--primary);
      font-size: 20px;
    }

    .recommend-card {
      min-height: 100%;
      padding: 22px;
      border-radius: 24px;
      background:
        radial-gradient(circle at 80% 16%, rgba(255, 63, 157, .18), transparent 30%),
        rgba(255,255,255,.045);
      border: 1px solid rgba(255, 105, 180, .18);
    }

    .recommend-card h3 {
      font-size: 22px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .recommend-card p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 18px;
    }

    .accordion {
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: transparent;
      --bs-accordion-btn-focus-box-shadow: none;
      display: grid;
      gap: 12px;
    }

    .accordion-item {
      color: var(--text);
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.08) !important;
      border-radius: 20px !important;
      overflow: hidden;
      position: relative;
    }

    .accordion-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 14px;
      bottom: 14px;
      width: 3px;
      border-radius: 999px;
      background: linear-gradient(to bottom, var(--primary), var(--primary-2));
      box-shadow: 0 0 14px rgba(255,63,157,.75);
    }

    .accordion-button {
      color: #fff;
      background: transparent;
      border: 0;
      padding: 20px 22px 20px 24px;
      font-weight: 850;
      border-radius: 20px !important;
    }

    .accordion-button:not(.collapsed) {
      color: #fff;
      background: rgba(255, 63, 157, .075);
      box-shadow: none;
    }

    .accordion-button::after {
      filter: invert(1) sepia(1) saturate(4) hue-rotate(280deg);
    }

    .accordion-body {
      color: var(--muted);
      padding: 0 24px 22px;
      font-size: 15px;
    }

    .cta-form-wrap {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 24px;
      align-items: center;
      border-radius: 34px;
      padding: clamp(26px, 4vw, 42px);
      background:
        linear-gradient(135deg, rgba(255, 63, 157, .15), rgba(177, 92, 255, .09)),
        linear-gradient(145deg, rgba(32, 13, 37, .96), rgba(9, 5, 11, .96));
      border: 1px solid rgba(255, 105, 180, .24);
      box-shadow: var(--shadow);
    }

    .form-control,
    .form-select {
      min-height: 52px;
      color: #fff;
      background-color: rgba(9, 5, 11, .72);
      border: 1px solid rgba(255, 105, 180, .22);
      border-radius: 16px;
      padding: 12px 15px;
    }

    .form-control::placeholder {
      color: rgba(196, 174, 200, .68);
    }

    .form-control:focus,
    .form-select:focus {
      color: #fff;
      background-color: rgba(15, 7, 18, .92);
      border-color: rgba(255, 63, 157, .82);
      box-shadow: 0 0 0 .25rem rgba(255, 63, 157, .16);
    }

    .form-select option {
      background: #160a19;
      color: #fff;
    }

    .form-check {
      display: flex;
      align-items: center;
      gap: 10px;
      padding-left: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .form-check-input {
      width: 20px;
      height: 20px;
      margin: 0;
      background-color: rgba(9, 5, 11, .8);
      border: 1px solid rgba(255, 105, 180, .42);
      flex: 0 0 auto;
    }

    .form-check-input:checked {
      background-color: var(--primary);
      border-color: var(--primary);
    }

    .form-note {
      color: var(--subtle);
      font-size: 13px;
      margin-top: 12px;
    }

    .site-footer {
      background: #070409;
      border-top: 1px solid rgba(255, 105, 180, .18);
      position: relative;
      padding: 44px 0 28px;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255, 63, 157, .8), rgba(177, 92, 255, .7), transparent);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr 1fr;
      gap: 28px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      font-size: 18px;
      margin-bottom: 12px;
    }

    .footer-text {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
      max-width: 420px;
    }

    .footer-title {
      font-size: 15px;
      font-weight: 900;
      color: #fff;
      margin-bottom: 13px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a,
    .footer-links span {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #fff;
      transform: translateX(3px);
    }

    .copyright {
      margin-top: 30px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.075);
      color: var(--subtle);
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    .offcanvas {
      background: #0b050d;
      color: #fff;
      border-left: 1px solid rgba(255, 105, 180, .22);
    }

    .offcanvas-header {
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .btn-close {
      filter: invert(1);
      opacity: .85;
    }

    .mobile-menu-links {
      display: grid;
      gap: 10px;
    }

    .mobile-menu-links a {
      padding: 13px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.08);
      color: var(--muted);
      font-weight: 800;
    }

    .mobile-menu-links a.active,
    .mobile-menu-links a:hover {
      color: #fff;
      border-color: rgba(255, 63, 157, .58);
      background: rgba(255, 63, 157, .12);
    }

    .focus-ring:focus-visible,
    a:focus-visible,
    button:focus-visible {
      outline: 2px solid rgba(255, 63, 157, .85);
      outline-offset: 3px;
    }

    @media (max-width: 991.98px) {
      .brand-actions .age-chip,
      .brand-actions .btn-ghost,
      .brand-actions .btn-neon {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .brand-text {
        max-width: 58vw;
        font-size: 18px;
      }

      .hero {
        padding-top: 44px;
      }

      .hero-stage {
        min-height: auto;
        border-radius: 28px;
      }

      .hero-bento,
      .story-grid,
      .guide-wrap,
      .news-layout,
      .cta-form-wrap,
      .poster-layout,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .benefit-row,
      .stat-grid,
      .membership-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .poster-card.large {
        min-height: 420px;
      }

      .large .poster-cover {
        min-height: 240px;
      }

      .progress-card {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 767.98px) {
      .section {
        padding: 58px 0;
      }

      .hero-stage {
        padding: 24px;
      }

      .hero h1 {
        font-size: clamp(34px, 12vw, 50px);
        line-height: 1.05;
      }

      .hero-actions .btn-neon,
      .hero-actions .btn-ghost {
        width: 100%;
      }

      .benefit-row,
      .stat-grid,
      .membership-grid,
      .poster-grid-small {
        grid-template-columns: 1fr;
      }

      .poster-card,
      .poster-card.large {
        min-height: auto;
      }

      .news-list a {
        grid-template-columns: 1fr auto;
      }

      .news-date {
        grid-column: 1 / -1;
      }

      .cta-form-wrap,
      .benefit-strip,
      .trust-band,
      .guide-panel,
      .news-panel,
      .faq-panel,
      .form-panel,
      .membership-panel {
        border-radius: 22px;
        padding: 22px;
      }

      .copyright {
        display: grid;
      }
    }

    @media (max-width: 520px) {
      .brand-row {
        min-height: 62px;
      }

      .logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
      }

      .brand-text {
        max-width: 66vw;
        font-size: 16px;
      }

      .channel-row {
        padding-bottom: 12px;
      }

      .channel-link {
        min-height: 38px;
        padding: 8px 13px;
        font-size: 13px;
      }

      .ring {
        width: 112px;
        height: 112px;
      }

      .ring strong {
        font-size: 26px;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#08060b;
      --bg-2:#120915;
      --bg-3:#1a0f20;
      --panel:#151019;
      --panel-2:#201425;
      --text:#f6eef7;
      --muted:#bcaec5;
      --soft:#8f7f99;
      --line:rgba(255,91,171,.22);
      --line-2:rgba(184,99,255,.25);
      --primary:#ff4fa3;
      --primary-2:#b85cff;
      --accent:#ffb15c;
      --danger:#ff8c5a;
      --radius-sm:12px;
      --radius:20px;
      --radius-lg:28px;
      --shadow:0 22px 70px rgba(0,0,0,.45);
      --glow:0 0 0 1px rgba(255,79,163,.22),0 20px 60px rgba(255,79,163,.14);
      --container:1180px;
      --ease:all .22s ease-out;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      font-family:PingFang SC,Microsoft YaHei,Noto Sans SC,Arial,sans-serif;
      line-height:1.75;
      background:
        radial-gradient(circle at 18% 0%,rgba(255,79,163,.18),transparent 30%),
        radial-gradient(circle at 84% 8%,rgba(184,92,255,.14),transparent 32%),
        linear-gradient(180deg,#08060b 0%,#120915 48%,#08060b 100%);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.28;
      background-image:
        linear-gradient(120deg,rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(0deg,rgba(255,79,163,.03) 1px,transparent 1px);
      background-size:56px 56px,100% 80px;
      mask-image:linear-gradient(180deg,#000,transparent 82%);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:#fff}
    img{max-width:100%;height:auto}
    button,input,select,textarea{font:inherit}
    .container{max-width:var(--container)}
    .focus-ring:focus-visible,
    .btn-main:focus-visible,
    .btn-ghost:focus-visible,
    .form-control:focus,
    .form-select:focus,
    .form-check-input:focus{
      outline:none;
      box-shadow:0 0 0 4px rgba(255,79,163,.18),0 0 0 1px rgba(255,79,163,.8);
      border-color:rgba(255,79,163,.75);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(8,6,11,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.06);
      box-shadow:0 16px 46px rgba(0,0,0,.28);
    }
    .site-header:after{
      content:"";
      display:block;
      height:1px;
      background:linear-gradient(90deg,transparent,rgba(255,79,163,.75),rgba(184,92,255,.55),transparent);
    }
    .brand-row{
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand-link{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:.02em;
      font-size:20px;
      white-space:nowrap;
    }
    .logo-mark{
      width:34px;
      height:34px;
      border-radius:12px;
      display:inline-block;
      position:relative;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      box-shadow:0 0 28px rgba(255,79,163,.42);
      flex:0 0 auto;
    }
    .logo-mark:after{
      content:"";
      position:absolute;
      inset:8px;
      border-radius:8px;
      border:1px solid rgba(255,255,255,.58);
      background:rgba(255,255,255,.08);
    }
    .brand-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .age-chip,.mini-chip{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:34px;
      padding:6px 12px;
      border-radius:999px;
      color:#ffeaf5;
      font-size:13px;
      border:1px solid rgba(255,79,163,.32);
      background:rgba(255,79,163,.08);
      white-space:nowrap;
    }
    .btn-main,.btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:0;
      border-radius:999px;
      min-height:44px;
      padding:11px 18px;
      font-weight:700;
      letter-spacing:.01em;
      transition:var(--ease);
      cursor:pointer;
    }
    .btn-main{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#d83c8f 48%,var(--primary-2));
      box-shadow:0 14px 34px rgba(255,79,163,.26);
    }
    .btn-main:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 44px rgba(255,79,163,.36);
      filter:brightness(1.06);
    }
    .btn-ghost{
      color:#fff;
      border:1px solid rgba(255,79,163,.36);
      background:rgba(255,255,255,.035);
    }
    .btn-ghost:hover{
      color:#fff;
      transform:translateY(-2px);
      background:rgba(255,79,163,.12);
      border-color:rgba(255,79,163,.7);
      box-shadow:0 12px 34px rgba(255,79,163,.16);
    }
    .channel-row{
      display:flex;
      align-items:center;
      gap:10px;
      padding:0 0 14px;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .channel-row::-webkit-scrollbar{display:none}
    .channel-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:8px 16px;
      border-radius:999px;
      color:var(--muted);
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.035);
      white-space:nowrap;
      font-size:14px;
      font-weight:700;
    }
    .channel-link:hover{
      color:#fff;
      border-color:rgba(255,79,163,.42);
      background:rgba(255,79,163,.10);
    }
    .channel-link.active{
      color:#fff;
      border-color:rgba(255,79,163,.68);
      background:linear-gradient(135deg,rgba(255,79,163,.22),rgba(184,92,255,.16));
      box-shadow:inset 0 0 18px rgba(255,79,163,.08),0 0 28px rgba(255,79,163,.12);
    }
    .mobile-menu-btn{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.04);
      color:#fff;
    }
    .offcanvas-neon{
      background:#100b14;
      color:var(--text);
      border-left:1px solid rgba(255,79,163,.25);
    }
    .offcanvas-neon .btn-close{
      filter:invert(1);
      opacity:.8;
    }
    main{position:relative}
    .section{
      padding:82px 0;
      position:relative;
    }
    .section-tight{padding:58px 0}
    .kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#ffd9ed;
      font-size:13px;
      font-weight:800;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(255,79,163,.32);
      background:rgba(255,79,163,.08);
      margin-bottom:18px;
    }
    .kicker:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 16px var(--primary);
    }
    .page-hero{
      padding:58px 0 46px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,79,163,.22);
      background:
        radial-gradient(circle at 18% 10%,rgba(255,79,163,.22),transparent 30%),
        radial-gradient(circle at 86% 24%,rgba(184,92,255,.18),transparent 34%),
        linear-gradient(145deg,rgba(32,20,37,.95),rgba(12,8,15,.96));
      box-shadow:var(--shadow);
      padding:36px;
    }
    .hero-shell:after{
      content:"";
      position:absolute;
      right:-120px;
      top:-120px;
      width:360px;
      height:360px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,79,163,.22),transparent 68%);
      pointer-events:none;
    }
    .breadcrumb{
      --bs-breadcrumb-divider-color:rgba(255,255,255,.28);
      margin-bottom:16px;
    }
    .breadcrumb-item,.breadcrumb-item a{color:var(--soft);font-size:14px}
    .breadcrumb-item.active{color:#fff}
    .hero-title{
      font-size:clamp(34px,5vw,62px);
      line-height:1.08;
      font-weight:900;
      letter-spacing:-.04em;
      margin:0 0 18px;
      max-width:820px;
    }
    .hero-title .grad{
      background:linear-gradient(135deg,#fff,#ffd3e8 40%,#cda7ff);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .hero-desc{
      color:var(--muted);
      font-size:18px;
      max-width:760px;
      margin:0 0 26px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin-top:24px;
    }
    .choice-card{
      position:relative;
      height:100%;
      padding:22px;
      border-radius:24px;
      background:rgba(8,6,11,.54);
      border:1px solid rgba(255,255,255,.08);
      overflow:hidden;
      transition:var(--ease);
    }
    .choice-card.recommended{
      border-color:rgba(255,79,163,.56);
      background:linear-gradient(150deg,rgba(255,79,163,.16),rgba(184,92,255,.10),rgba(8,6,11,.62));
      box-shadow:var(--glow);
    }
    .choice-card:hover{
      transform:translateY(-4px);
      border-color:rgba(255,79,163,.48);
      box-shadow:0 22px 58px rgba(0,0,0,.34),0 0 34px rgba(255,79,163,.12);
    }
    .choice-card .badge-hot{
      display:inline-flex;
      padding:5px 10px;
      border-radius:999px;
      color:#fff;
      font-size:12px;
      font-weight:800;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      margin-bottom:12px;
    }
    .choice-title{
      font-size:20px;
      font-weight:900;
      margin:0 0 8px;
    }
    .choice-text{color:var(--muted);margin:0;font-size:14px}
    .filter-bar{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      padding:14px;
      border-radius:22px;
      background:rgba(255,255,255,.035);
      border:1px solid rgba(255,255,255,.08);
    }
    .filter-pill{
      border:1px solid rgba(255,255,255,.09);
      color:var(--muted);
      background:rgba(255,255,255,.035);
      border-radius:999px;
      padding:9px 14px;
      min-height:40px;
      font-weight:700;
      font-size:14px;
      transition:var(--ease);
    }
    .filter-pill:hover,.filter-pill.active{
      color:#fff;
      border-color:rgba(255,79,163,.62);
      background:rgba(255,79,163,.13);
      box-shadow:0 0 24px rgba(255,79,163,.12);
    }
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:30px;
    }
    .section-title{
      font-size:clamp(26px,3.3vw,42px);
      line-height:1.15;
      font-weight:900;
      letter-spacing:-.03em;
      margin:0;
      position:relative;
      padding-top:14px;
    }
    .section-title:before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      width:74px;
      height:3px;
      border-radius:99px;
      background:linear-gradient(90deg,var(--primary),var(--primary-2));
      box-shadow:0 0 18px rgba(255,79,163,.52);
    }
    .section-note{
      color:var(--muted);
      max-width:560px;
      margin:10px 0 0;
    }
    .featured-card{
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,79,163,.28);
      background:
        radial-gradient(circle at 22% 12%,rgba(255,79,163,.20),transparent 36%),
        linear-gradient(145deg,rgba(32,20,37,.92),rgba(13,9,16,.98));
      box-shadow:var(--shadow);
      overflow:hidden;
      padding:28px;
      min-height:100%;
    }
    .poster-art{
      min-height:220px;
      border-radius:24px;
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(135deg,rgba(255,79,163,.38),transparent 38%),
        linear-gradient(315deg,rgba(184,92,255,.32),transparent 42%),
        repeating-linear-gradient(90deg,rgba(255,255,255,.05) 0 1px,transparent 1px 14px),
        #140d18;
    }
    .poster-art:before{
      content:"18+";
      position:absolute;
      top:18px;
      left:18px;
      border-radius:999px;
      padding:6px 11px;
      font-size:13px;
      font-weight:900;
      color:#fff;
      background:rgba(0,0,0,.32);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter:blur(8px);
    }
    .poster-art:after{
      content:"";
      position:absolute;
      inset:auto 18px 18px;
      height:2px;
      border-radius:99px;
      background:linear-gradient(90deg,var(--primary),transparent);
      box-shadow:0 0 18px rgba(255,79,163,.45);
    }
    .feature-list{
      display:grid;
      gap:12px;
      margin:22px 0 0;
      padding:0;
      list-style:none;
    }
    .feature-list li{
      display:flex;
      gap:10px;
      color:var(--muted);
      padding:11px 12px;
      border-radius:16px;
      background:rgba(255,255,255,.035);
      border:1px solid rgba(255,255,255,.06);
    }
    .feature-list li:before{
      content:"";
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 15px var(--primary);
      margin-top:9px;
      flex:0 0 auto;
    }
    .poster-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .poster-card{
      position:relative;
      border-radius:24px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.035);
      transition:var(--ease);
      min-height:100%;
    }
    .poster-card:hover{
      transform:translateY(-6px);
      border-color:rgba(255,79,163,.55);
      box-shadow:0 24px 58px rgba(0,0,0,.36),0 0 36px rgba(255,79,163,.14);
    }
    .poster-cover{
      height:190px;
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 30% 20%,rgba(255,79,163,.36),transparent 34%),
        radial-gradient(circle at 80% 80%,rgba(184,92,255,.30),transparent 35%),
        linear-gradient(145deg,#211326,#0e0a12);
    }
    .poster-cover:before{
      content:attr(data-no);
      position:absolute;
      top:14px;
      right:14px;
      font-weight:900;
      font-size:42px;
      line-height:1;
      color:rgba(255,255,255,.10);
    }
    .poster-cover:after{
      content:"";
      position:absolute;
      inset:0;
      background:repeating-linear-gradient(135deg,rgba(255,255,255,.04) 0 1px,transparent 1px 14px);
      transform:translateX(-6px);
      transition:var(--ease);
    }
    .poster-card:hover .poster-cover:after{transform:translateX(6px)}
    .poster-body{
      padding:18px;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:12px;
    }
    .tag{
      display:inline-flex;
      border-radius:999px;
      padding:4px 9px;
      color:#ffd6ea;
      background:rgba(255,79,163,.08);
      border:1px solid rgba(255,79,163,.22);
      font-size:12px;
      font-weight:800;
    }
    .poster-title{
      font-size:17px;
      font-weight:900;
      line-height:1.35;
      margin:0 0 8px;
    }
    .poster-text{
      color:var(--muted);
      font-size:14px;
      margin:0 0 14px;
      display:-webkit-box;
      -webkit-line-clamp:3;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .card-link{
      color:#ffd8ed;
      font-weight:800;
      font-size:14px;
    }
    .card-link:after{content:" →";transition:var(--ease)}
    .poster-card:hover .card-link:after{margin-left:4px}
    .stat-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .stat-item{
      padding:22px;
      border-radius:22px;
      background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.025));
      border:1px solid rgba(255,255,255,.08);
    }
    .stat-num{
      display:block;
      font-size:34px;
      line-height:1;
      font-weight:950;
      background:linear-gradient(135deg,#fff,#ffb9da,var(--primary-2));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
      margin-bottom:8px;
    }
    .stat-label{color:var(--muted);font-size:14px}
    .accordion{
      display:grid;
      gap:12px;
    }
    .accordion-item{
      overflow:hidden;
      border-radius:20px!important;
      border:1px solid rgba(255,79,163,.20)!important;
      background:rgba(255,255,255,.035)!important;
      color:var(--text);
      box-shadow:none;
    }
    .accordion-button{
      color:#fff!important;
      background:rgba(255,255,255,.035)!important;
      font-weight:900;
      padding:18px 20px;
      box-shadow:none!important;
      border-left:3px solid rgba(255,79,163,.7);
    }
    .accordion-button:not(.collapsed){
      background:linear-gradient(135deg,rgba(255,79,163,.13),rgba(184,92,255,.08))!important;
    }
    .accordion-button:after{
      filter:invert(1);
      opacity:.75;
    }
    .accordion-body{
      color:var(--muted);
      padding:18px 22px 22px;
      background:rgba(0,0,0,.12);
    }
    .cta-panel{
      border-radius:var(--radius-lg);
      padding:34px;
      border:1px solid rgba(255,79,163,.28);
      background:
        radial-gradient(circle at 12% 18%,rgba(255,79,163,.18),transparent 34%),
        linear-gradient(135deg,rgba(32,20,37,.98),rgba(10,7,12,.98));
      box-shadow:var(--shadow);
    }
    .form-control,.form-select{
      min-height:50px;
      border-radius:16px;
      color:#fff;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.10);
    }
    .form-control::placeholder{color:rgba(255,255,255,.42)}
    .form-select{
      --bs-form-select-bg-img:none;
      color:var(--muted);
    }
    .form-check-input{
      width:1.15em;
      height:1.15em;
      border-color:rgba(255,79,163,.45);
      background-color:rgba(255,255,255,.05);
    }
    .form-check-input:checked{
      background-color:var(--primary);
      border-color:var(--primary);
    }
    .form-text,.small-note{color:var(--soft);font-size:13px}
    .pagination{
      gap:8px;
      margin:30px 0 0;
    }
    .page-link{
      color:var(--muted);
      border:1px solid rgba(255,255,255,.09);
      background:rgba(255,255,255,.035);
      border-radius:12px!important;
      min-width:42px;
      text-align:center;
    }
    .page-link:hover{
      color:#fff;
      background:rgba(255,79,163,.12);
      border-color:rgba(255,79,163,.44);
    }
    .page-item.active .page-link{
      color:#fff;
      border-color:rgba(255,79,163,.65);
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
    }
    .page-item.disabled .page-link{
      color:rgba(255,255,255,.26);
      background:rgba(255,255,255,.02);
      border-color:rgba(255,255,255,.06);
    }
    .site-footer{
      background:#070509;
      border-top:1px solid rgba(255,255,255,.06);
      position:relative;
      padding:54px 0 28px;
    }
    .site-footer:before{
      content:"";
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:1px;
      background:linear-gradient(90deg,transparent,rgba(255,79,163,.72),rgba(184,92,255,.55),transparent);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.5fr 1fr 1.1fr;
      gap:36px;
    }
    .footer-brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-size:20px;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-text{
      color:var(--muted);
      max-width:430px;
      margin:0;
    }
    .footer-title{
      font-weight:900;
      margin-bottom:14px;
      color:#fff;
    }
    .footer-links{
      display:grid;
      gap:9px;
      color:var(--muted);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(3px);
    }
    .copyright{
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      justify-content:space-between;
      gap:16px;
      color:var(--soft);
      font-size:13px;
      flex-wrap:wrap;
    }
    @media (max-width: 991.98px){
      .brand-actions .age-chip,.brand-actions .btn-main{display:none}
      .mobile-menu-btn{display:inline-flex;align-items:center;justify-content:center}
      .hero-shell{padding:28px}
      .section{padding:64px 0}
      .section-head{display:block}
      .poster-grid{grid-template-columns:repeat(2,1fr)}
      .stat-strip{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width: 767.98px){
      .brand-row{min-height:64px}
      .brand-link{font-size:17px;min-width:0}
      .logo-mark{width:30px;height:30px;border-radius:10px}
      .page-hero{padding:34px 0 28px}
      .hero-shell{padding:22px;border-radius:22px}
      .hero-desc{font-size:16px}
      .hero-actions .btn-main,.hero-actions .btn-ghost{width:100%}
      .filter-bar{flex-wrap:nowrap;overflow-x:auto;scrollbar-width:none}
      .filter-bar::-webkit-scrollbar{display:none}
      .filter-pill{white-space:nowrap}
      .poster-grid{grid-template-columns:1fr}
      .poster-cover{height:170px}
      .stat-strip{grid-template-columns:1fr}
      .cta-panel{padding:24px}
      .footer-grid{grid-template-columns:1fr}
      .copyright{display:grid}
    }
    @media (max-width: 520px){
      .container{padding-left:18px;padding-right:18px}
      .channel-link{padding:8px 13px}
      .section{padding:52px 0}
      .section-tight{padding:44px 0}
      .choice-card,.featured-card{padding:20px;border-radius:20px}
      .stat-num{font-size:30px}
    }

/* roulang page: category2 */
:root{
      --bg:#08050a;
      --bg-2:#120811;
      --bg-3:#1a0c18;
      --panel:#171019;
      --panel-2:#211320;
      --text:#fff7fb;
      --muted:#c8b5c5;
      --soft:#9c8798;
      --primary:#ff3f8f;
      --primary-2:#b827ff;
      --accent:#ff9a5f;
      --line:rgba(255,63,143,.24);
      --line-strong:rgba(255,63,143,.48);
      --white-line:rgba(255,255,255,.08);
      --radius-lg:28px;
      --radius-md:20px;
      --radius-sm:14px;
      --shadow:0 24px 70px rgba(0,0,0,.55);
      --glow:0 0 28px rgba(255,63,143,.28);
      --container:1180px;
      --speed:220ms ease-out;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      line-height:1.75;
      background:
        radial-gradient(circle at 12% 8%, rgba(255,63,143,.18), transparent 34%),
        radial-gradient(circle at 88% 12%, rgba(184,39,255,.17), transparent 30%),
        linear-gradient(135deg,#08050a 0%,#120811 44%,#0b070d 100%);
      min-height:100vh;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(120deg, transparent 0 32%, rgba(255,63,143,.08) 32.15%, transparent 32.4% 65%, rgba(184,39,255,.07) 65.2%, transparent 65.5%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 92px);
      opacity:.7;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:color var(--speed),background var(--speed),border-color var(--speed),transform var(--speed),box-shadow var(--speed)}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    .container{max-width:var(--container)}
    .focus-ring:focus-visible,
    .btn-neon:focus-visible,
    .btn-ghost:focus-visible,
    .form-control:focus,
    .form-select:focus,
    .form-check-input:focus{
      outline:none;
      box-shadow:0 0 0 4px rgba(255,63,143,.18),0 0 0 1px rgba(255,63,143,.52);
      border-color:var(--primary);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      background:rgba(8,5,10,.92);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
      box-shadow:0 16px 42px rgba(0,0,0,.32);
    }
    .brand-row{
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:12px 0;
    }
    .brand-link{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:.02em;
      font-size:1.12rem;
      color:var(--text);
    }
    .logo-mark{
      width:38px;
      height:38px;
      flex:0 0 auto;
      border-radius:14px;
      display:inline-block;
      background:
        radial-gradient(circle at 35% 28%, #fff 0 8%, transparent 9%),
        linear-gradient(135deg,var(--primary),var(--primary-2) 72%);
      box-shadow:0 0 28px rgba(255,63,143,.45), inset 0 0 18px rgba(255,255,255,.2);
      position:relative;
    }
    .logo-mark::after{
      content:"";
      position:absolute;
      inset:8px;
      border:1px solid rgba(255,255,255,.42);
      border-radius:10px;
    }
    .brand-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .age-chip,.mini-chip{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:38px;
      padding:8px 13px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.04);
      color:#f3d9ea;
      font-size:.88rem;
      white-space:nowrap;
    }
    .age-chip::before{
      content:"18+";
      display:inline-grid;
      place-items:center;
      width:28px;
      height:22px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--primary),var(--primary-2));
      color:#fff;
      font-size:.75rem;
      font-weight:800;
    }
    .header-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:9px 17px;
      border-radius:999px;
      color:#fff;
      font-weight:700;
      background:linear-gradient(135deg,var(--primary),#d62a8d 48%,var(--primary-2));
      box-shadow:0 10px 26px rgba(255,63,143,.25);
    }
    .header-cta:hover{transform:translateY(-1px);box-shadow:0 16px 34px rgba(255,63,143,.34);color:#fff}
    .mobile-menu-btn{
      display:none;
      width:44px;
      height:44px;
      border:1px solid var(--line);
      border-radius:14px;
      background:rgba(255,255,255,.05);
      color:#fff;
    }
    .channel-wrap{
      border-top:1px solid rgba(255,255,255,.06);
      position:relative;
    }
    .channel-wrap::after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:-1px;
      height:1px;
      background:linear-gradient(90deg,transparent,var(--primary),var(--primary-2),transparent);
      opacity:.82;
    }
    .channel-row{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      padding:11px 0 13px;
      scrollbar-width:none;
    }
    .channel-row::-webkit-scrollbar{display:none}
    .channel-link{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:39px;
      padding:8px 17px;
      border:1px solid rgba(255,255,255,.09);
      border-radius:999px;
      color:#dccbdd;
      background:rgba(255,255,255,.035);
      font-weight:650;
      font-size:.94rem;
    }
    .channel-link:hover{
      color:#fff;
      background:rgba(255,63,143,.14);
      border-color:var(--line-strong);
      transform:translateY(-1px);
    }
    .channel-link.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(255,63,143,.92),rgba(184,39,255,.78));
      border-color:transparent;
      box-shadow:0 0 22px rgba(255,63,143,.28);
    }
    .offcanvas{
      background:#0d0710;
      color:var(--text);
      border-left:1px solid var(--line);
    }
    .offcanvas-header{border-bottom:1px solid rgba(255,255,255,.08)}
    .btn-close{filter:invert(1);opacity:.75}
    .main{position:relative}
    .section{padding:84px 0}
    .section-tight{padding:58px 0}
    .breadcrumb-wrap{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
      color:var(--soft);
      font-size:.92rem;
      margin-bottom:22px;
    }
    .breadcrumb-wrap a:hover{color:#fff}
    .breadcrumb-dot{width:5px;height:5px;border-radius:50%;background:var(--primary);box-shadow:0 0 12px var(--primary)}
    .category-hero{
      padding:48px 0 42px;
      position:relative;
    }
    .hero-panel{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,rgba(255,63,143,.12),transparent 34%),
        radial-gradient(circle at 92% 16%,rgba(184,39,255,.18),transparent 30%),
        rgba(18,8,17,.82);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
      padding:34px;
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(110deg,transparent 0 45%,rgba(255,255,255,.045) 45.2%,transparent 45.7%),
        repeating-linear-gradient(0deg,rgba(255,255,255,.025) 0 1px,transparent 1px 44px);
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:1}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      color:#ffd8eb;
      background:rgba(255,63,143,.08);
      font-size:.9rem;
      margin-bottom:18px;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 14px var(--primary);
    }
    h1{
      font-size:clamp(2.08rem,4.4vw,4.55rem);
      line-height:1.08;
      letter-spacing:-.045em;
      margin:0 0 18px;
      font-weight:900;
    }
    .hero-lead{
      max-width:680px;
      color:var(--muted);
      font-size:1.08rem;
      margin:0 0 26px;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;align-items:center}
    .btn-neon,.btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:48px;
      padding:12px 21px;
      border-radius:999px;
      font-weight:800;
      border:1px solid transparent;
      cursor:pointer;
    }
    .btn-neon{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#d72a8e 48%,var(--primary-2));
      box-shadow:0 14px 34px rgba(255,63,143,.28);
    }
    .btn-neon:hover{color:#fff;transform:translateY(-2px);box-shadow:0 20px 46px rgba(255,63,143,.36)}
    .btn-ghost{
      color:#fff;
      background:rgba(255,255,255,.04);
      border-color:var(--line);
    }
    .btn-ghost:hover{color:#fff;background:rgba(255,63,143,.12);border-color:var(--line-strong);transform:translateY(-1px)}
    .readiness-card{
      position:relative;
      z-index:1;
      height:100%;
      border:1px solid rgba(255,255,255,.1);
      border-radius:24px;
      padding:22px;
      background:rgba(5,4,8,.52);
      box-shadow:inset 0 0 34px rgba(255,63,143,.08);
    }
    .progress-ring{
      width:164px;
      height:164px;
      margin:0 auto 18px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:
        conic-gradient(var(--primary) 0 82%, rgba(255,255,255,.08) 82% 100%);
      box-shadow:0 0 34px rgba(255,63,143,.18);
      position:relative;
    }
    .progress-ring::after{
      content:"";
      position:absolute;
      inset:13px;
      border-radius:50%;
      background:#100810;
      border:1px solid rgba(255,255,255,.08);
    }
    .ring-value{
      position:relative;
      z-index:1;
      text-align:center;
      font-weight:900;
      font-size:2.2rem;
      line-height:1;
    }
    .ring-value small{
      display:block;
      margin-top:8px;
      color:var(--soft);
      font-size:.78rem;
      font-weight:650;
    }
    .tier-list{display:grid;gap:10px;margin-top:18px}
    .tier-item{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:12px 13px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.035);
      color:#eadce8;
      font-size:.92rem;
    }
    .tier-item strong{color:#fff}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:28px;
    }
    .section-kicker{
      display:inline-block;
      color:#ffd3e8;
      font-size:.88rem;
      font-weight:800;
      letter-spacing:.12em;
      margin-bottom:8px;
    }
    h2{
      margin:0;
      font-size:clamp(1.55rem,2.7vw,2.55rem);
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.025em;
      position:relative;
    }
    .section-desc{
      max-width:560px;
      color:var(--muted);
      margin:0;
    }
    .topic-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:18px;
    }
    .topic-card{
      min-height:232px;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:24px;
      background:
        radial-gradient(circle at 18% 18%,rgba(255,63,143,.18),transparent 30%),
        linear-gradient(135deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
      box-shadow:0 18px 50px rgba(0,0,0,.34);
      position:relative;
      overflow:hidden;
      transition:transform var(--speed),border-color var(--speed),box-shadow var(--speed);
    }
    .topic-card::after{
      content:"";
      position:absolute;
      right:-36px;
      bottom:-54px;
      width:160px;
      height:160px;
      border-radius:42px;
      transform:rotate(18deg);
      border:1px solid rgba(255,63,143,.18);
      background:linear-gradient(135deg,rgba(255,63,143,.14),rgba(184,39,255,.1));
    }
    .topic-card:hover{transform:translateY(-4px);border-color:var(--line-strong);box-shadow:var(--shadow),var(--glow)}
    .topic-card.wide{grid-row:span 2;min-height:482px}
    .topic-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-bottom:48px;
      position:relative;
      z-index:1;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      min-height:30px;
      padding:5px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.09);
      background:rgba(0,0,0,.18);
      color:#f0d6e7;
      font-size:.82rem;
      font-weight:650;
    }
    .topic-card h3{
      position:relative;
      z-index:1;
      font-size:1.38rem;
      line-height:1.25;
      margin:0 0 12px;
      font-weight:850;
    }
    .topic-card p{
      position:relative;
      z-index:1;
      color:var(--muted);
      margin:0 0 20px;
    }
    .topic-link{
      position:relative;
      z-index:1;
      display:inline-flex;
      gap:8px;
      align-items:center;
      color:#fff;
      font-weight:800;
    }
    .topic-link:hover{color:#ffd1e8;transform:translateX(3px)}
    .content-zone{
      border-top:1px solid rgba(255,255,255,.06);
      border-bottom:1px solid rgba(255,255,255,.06);
      background:linear-gradient(180deg,rgba(255,255,255,.025),rgba(255,255,255,.01));
    }
    .filter-card{
      position:sticky;
      top:150px;
      border:1px solid var(--line);
      border-radius:24px;
      padding:20px;
      background:rgba(18,8,17,.86);
      box-shadow:0 18px 48px rgba(0,0,0,.28);
    }
    .filter-title{
      font-size:1.05rem;
      font-weight:850;
      margin-bottom:14px;
    }
    .filter-group{
      padding:16px 0;
      border-top:1px solid rgba(255,255,255,.07);
    }
    .filter-group:first-of-type{border-top:0;padding-top:0}
    .filter-label{
      color:#ffe0ef;
      font-size:.88rem;
      font-weight:750;
      margin-bottom:10px;
    }
    .form-check{margin-bottom:9px;color:var(--muted)}
    .form-check-input{
      background-color:rgba(255,255,255,.05);
      border-color:rgba(255,63,143,.38);
    }
    .form-check-input:checked{
      background-color:var(--primary);
      border-color:var(--primary);
    }
    .sort-pills{display:flex;flex-wrap:wrap;gap:8px}
    .sort-pill{
      border:1px solid rgba(255,255,255,.09);
      background:rgba(255,255,255,.04);
      color:#eadde8;
      border-radius:999px;
      padding:7px 10px;
      font-size:.83rem;
      cursor:pointer;
      transition:all var(--speed);
    }
    .sort-pill.active,.sort-pill:hover{
      border-color:var(--line-strong);
      background:rgba(255,63,143,.14);
      color:#fff;
    }
    .mobile-filter-btn{display:none;margin-bottom:18px;width:100%}
    .compact-list{display:grid;gap:14px}
    .list-item{
      display:grid;
      grid-template-columns:118px 1fr auto;
      gap:18px;
      align-items:center;
      border:1px solid rgba(255,255,255,.085);
      border-radius:22px;
      padding:14px;
      background:rgba(255,255,255,.035);
      transition:transform var(--speed),border-color var(--speed),background var(--speed),box-shadow var(--speed);
    }
    .list-item:hover{
      transform:translateY(-3px);
      border-color:var(--line-strong);
      background:rgba(255,63,143,.07);
      box-shadow:0 18px 46px rgba(0,0,0,.34),0 0 24px rgba(255,63,143,.12);
    }
    .thumb{
      height:92px;
      border-radius:18px;
      background:
        linear-gradient(135deg,rgba(255,63,143,.38),rgba(184,39,255,.18)),
        repeating-linear-gradient(135deg,rgba(255,255,255,.08) 0 1px,transparent 1px 11px);
      position:relative;
      overflow:hidden;
    }
    .thumb::after{
      content:attr(data-no);
      position:absolute;
      left:12px;
      bottom:8px;
      color:rgba(255,255,255,.72);
      font-weight:900;
      font-size:1.45rem;
      letter-spacing:-.04em;
    }
    .item-body h3{
      margin:0 0 6px;
      font-size:1.08rem;
      font-weight:850;
      line-height:1.32;
    }
    .item-body p{
      margin:0 0 10px;
      color:var(--muted);
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
      line-height:1.58;
      font-size:.95rem;
    }
    .item-tags{display:flex;gap:7px;flex-wrap:wrap}
    .item-meta{
      min-width:104px;
      text-align:right;
      color:var(--soft);
      font-size:.86rem;
    }
    .status-dot{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:#ffd8ea;
      white-space:nowrap;
    }
    .status-dot::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 12px var(--primary);
    }
    .info-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:26px;
    }
    .info-tile{
      border:1px solid rgba(255,255,255,.08);
      border-radius:20px;
      padding:18px;
      background:rgba(255,255,255,.035);
    }
    .info-tile strong{
      display:block;
      font-size:1.42rem;
      line-height:1;
      margin-bottom:8px;
      color:#fff;
    }
    .info-tile span{color:var(--muted);font-size:.9rem}
    .accordion{display:grid;gap:12px}
    .accordion-item{
      color:var(--text);
      background:rgba(255,255,255,.035);
      border:1px solid rgba(255,255,255,.09)!important;
      border-left:3px solid rgba(255,63,143,.76)!important;
      border-radius:18px!important;
      overflow:hidden;
    }
    .accordion-button{
      color:#fff;
      background:transparent;
      font-weight:800;
      padding:18px 20px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:#fff;
      background:linear-gradient(90deg,rgba(255,63,143,.12),rgba(184,39,255,.06));
    }
    .accordion-button::after{filter:invert(1) sepia(1) saturate(4) hue-rotate(285deg)}
    .accordion-body{
      color:var(--muted);
      padding:0 20px 20px;
    }
    .cta-panel{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:32px;
      background:
        radial-gradient(circle at 76% 18%,rgba(255,63,143,.18),transparent 28%),
        linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .cta-panel::before{
      content:"";
      position:absolute;
      inset:auto -20% 0 -20%;
      height:1px;
      background:linear-gradient(90deg,transparent,var(--primary),var(--primary-2),transparent);
      box-shadow:0 0 26px rgba(255,63,143,.55);
    }
    .cta-panel h2{margin-bottom:12px}
    .cta-panel p{color:var(--muted);margin:0}
    .form-control,.form-select{
      min-height:50px;
      border-radius:16px;
      border:1px solid rgba(255,63,143,.28);
      background:rgba(0,0,0,.2);
      color:#fff;
      padding:12px 15px;
    }
    .form-control::placeholder{color:#8d7a8b}
    .form-select{
      --bs-form-select-bg-img:none;
      color:#f1dce9;
    }
    .form-select option{background:#160b16;color:#fff}
    .form-note{color:var(--soft);font-size:.86rem;margin-top:10px}
    .site-footer{
      background:#070408;
      border-top:1px solid var(--line);
      position:relative;
      padding:48px 0 28px;
    }
    .site-footer::before{
      content:"";
      position:absolute;
      top:-1px;
      left:0;
      right:0;
      height:1px;
      background:linear-gradient(90deg,transparent,var(--primary),var(--primary-2),transparent);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .8fr 1fr;
      gap:34px;
      padding-bottom:28px;
      border-bottom:1px solid rgba(255,255,255,.07);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:850;
      font-size:1.06rem;
      margin-bottom:12px;
    }
    .footer-text{color:var(--muted);margin:0;max-width:440px}
    .footer-title{font-weight:850;margin-bottom:12px;color:#fff}
    .footer-links{display:grid;gap:8px;color:var(--muted);font-size:.94rem}
    .footer-links a:hover{color:#fff;transform:translateX(2px)}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding-top:20px;
      color:#9f8d9c;
      font-size:.88rem;
    }
    @media (max-width:991.98px){
      .brand-actions .mini-chip,.brand-actions .header-cta{display:none}
      .mobile-menu-btn{display:inline-grid;place-items:center}
      .hero-panel{padding:26px}
      .topic-grid{grid-template-columns:1fr}
      .topic-card.wide{grid-row:auto;min-height:280px}
      .filter-card{display:none}
      .mobile-filter-btn{display:inline-flex}
      .list-item{grid-template-columns:100px 1fr}
      .item-meta{grid-column:2;text-align:left}
      .info-strip{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:767.98px){
      .section{padding:58px 0}
      .category-hero{padding:30px 0 32px}
      .brand-row{min-height:64px}
      .brand-link{font-size:.98rem;max-width:72%;line-height:1.25}
      .logo-mark{width:34px;height:34px;border-radius:12px}
      .age-chip{display:none}
      .hero-panel{border-radius:22px;padding:22px}
      h1{font-size:2.1rem;line-height:1.14}
      .hero-lead{font-size:1rem}
      .hero-actions .btn-neon,.hero-actions .btn-ghost{width:100%}
      .section-head{display:block}
      .section-desc{margin-top:12px}
      .readiness-card{margin-top:22px}
      .list-item{grid-template-columns:1fr;gap:12px}
      .thumb{height:138px}
      .item-meta{grid-column:auto;text-align:left}
      .info-strip{grid-template-columns:1fr}
      .cta-panel{padding:24px}
      .footer-grid{grid-template-columns:1fr;gap:24px}
      .copyright{display:grid}
    }
    @media (max-width:520px){
      .channel-link{padding:8px 14px;font-size:.9rem}
      .hero-panel{margin-left:-2px;margin-right:-2px}
      .topic-card{padding:20px;border-radius:22px}
      .topic-meta{margin-bottom:34px}
      .progress-ring{width:140px;height:140px}
      .ring-value{font-size:1.9rem}
      .info-tile{padding:16px}
    }
