/* roulang page: index */
:root {
      --bg: #0B0711;
      --bg-2: #120A1F;
      --panel: #171021;
      --panel-2: #201428;
      --panel-soft: #2A1834;
      --primary: #E15BA6;
      --primary-2: #FF3DAE;
      --accent: #C065FF;
      --accent-2: #5EF2D6;
      --text: #FFF3F8;
      --muted: #B8AAB6;
      --muted-2: #E8DDE6;
      --border: #3A2446;
      --border-strong: rgba(255, 61, 174, .55);
      --radius-lg: 30px;
      --radius-md: 22px;
      --radius-sm: 16px;
      --shadow-neon: 0 0 0 1px rgba(255,61,174,.18), 0 22px 70px rgba(255,61,174,.12), 0 18px 60px rgba(0,0,0,.45);
      --shadow-card: 0 22px 55px rgba(0,0,0,.36);
      --container: 1200px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", sans-serif;
      line-height: 1.75;
      background:
        radial-gradient(circle at 18% 8%, rgba(255,61,174,.22), transparent 34%),
        radial-gradient(circle at 84% 18%, rgba(192,101,255,.18), transparent 32%),
        linear-gradient(180deg, #0B0711 0%, #120A1F 42%, #0B0711 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: .34;
      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), transparent 78%);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input, textarea, select {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
      background: none;
      color: inherit;
    }

    ::selection {
      color: #0B0711;
      background: #F2A7C8;
    }

    ::-webkit-scrollbar {
      width: 10px;
      height: 10px;
    }

    ::-webkit-scrollbar-track {
      background: #100918;
    }

    ::-webkit-scrollbar-thumb {
      border-radius: 999px;
      background: linear-gradient(180deg, var(--primary), var(--accent));
      border: 2px solid #100918;
    }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .age-strip {
      position: relative;
      z-index: 60;
      border-bottom: 1px solid rgba(255,61,174,.26);
      background: linear-gradient(90deg, rgba(11,7,17,.96), rgba(32,20,40,.96));
      color: var(--muted-2);
      font-size: 13px;
    }

    .age-strip-inner {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .age-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255,61,174,.36);
      background: rgba(255,61,174,.08);
      color: #FFD7EA;
      padding: 4px 10px;
      border-radius: 999px;
      white-space: nowrap;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(255,61,174,.2);
      background: rgba(11,7,17,.82);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 60px rgba(0,0,0,.32);
    }

    .site-header::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,61,174,.82), rgba(192,101,255,.72), transparent);
    }

    .nav-wrap {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,61,174,.95), rgba(192,101,255,.82)),
        #201428;
      box-shadow: 0 0 26px rgba(255,61,174,.42);
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 9px;
      border: 1px solid rgba(255,255,255,.72);
      border-radius: 10px;
      transform: rotate(-8deg);
    }

    .brand-mark::after {
      inset: 16px 8px;
      border-radius: 999px;
      transform: rotate(18deg);
      opacity: .7;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.05;
    }

    .brand-title {
      font-size: 16px;
      font-weight: 900;
      letter-spacing: .02em;
    }

    .brand-sub {
      margin-top: 4px;
      color: #F2A7C8;
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: .22em;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 8px;
      border: 1px solid rgba(255,255,255,.07);
      border-radius: 999px;
      background: rgba(255,255,255,.035);
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 0 16px;
      border-radius: 999px;
      color: var(--muted-2);
      font-size: 14px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease, box-shadow .2s ease, transform .2s ease;
      outline: none;
    }

    .nav-link:hover,
    .nav-link:focus-visible {
      color: #fff;
      background: rgba(255,61,174,.09);
      box-shadow: inset 0 0 0 1px rgba(255,61,174,.26);
    }

    .nav-link.active {
      color: #fff;
      background: linear-gradient(135deg, rgba(255,61,174,.22), rgba(192,101,255,.15));
      box-shadow: 0 0 22px rgba(255,61,174,.18), inset 0 -2px 0 rgba(255,61,174,.8);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-search {
      width: 170px;
      height: 42px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 999px;
      background: rgba(255,255,255,.05);
      color: #fff;
      padding: 0 14px;
      outline: none;
      transition: border .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .nav-search::placeholder {
      color: rgba(232,221,230,.58);
    }

    .nav-search:focus {
      border-color: var(--primary-2);
      box-shadow: 0 0 0 4px rgba(255,61,174,.12);
      background: rgba(255,255,255,.07);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 850;
      letter-spacing: .01em;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
      outline: none;
      white-space: nowrap;
    }

    .btn:focus-visible {
      box-shadow: 0 0 0 4px rgba(255,61,174,.18), 0 0 0 1px rgba(255,61,174,.7);
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, #B84C8D 0%, #FF3DAE 48%, #C065FF 100%);
      box-shadow: 0 13px 34px rgba(255,61,174,.28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 45px rgba(255,61,174,.42);
    }

    .btn-secondary {
      border: 1px solid rgba(255,61,174,.36);
      color: #FFD7EA;
      background: rgba(255,255,255,.045);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(255,61,174,.78);
      background: rgba(255,61,174,.1);
      box-shadow: 0 16px 38px rgba(255,61,174,.18);
    }

    .btn-ghost {
      min-height: 38px;
      padding: 0 15px;
      border: 1px solid rgba(255,255,255,.12);
      color: var(--muted-2);
      background: rgba(255,255,255,.035);
    }

    .btn-ghost:hover {
      color: #fff;
      border-color: rgba(255,61,174,.52);
      background: rgba(255,61,174,.08);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255,61,174,.4);
      border-radius: 14px;
      background: rgba(255,255,255,.05);
      box-shadow: 0 0 18px rgba(255,61,174,.12);
    }

    .toggle-bars {
      width: 18px;
      height: 12px;
      margin: 0 auto;
      position: relative;
      border-top: 2px solid #fff;
      border-bottom: 2px solid #fff;
    }

    .toggle-bars::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 4px;
      height: 2px;
      background: #fff;
    }

    .mobile-panel {
      display: none;
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto 16px;
      padding: 12px;
      border: 1px solid rgba(255,61,174,.22);
      border-radius: 22px;
      background: rgba(23,16,33,.96);
      box-shadow: var(--shadow-card);
    }

    .mobile-panel.open {
      display: block;
    }

    .mobile-panel a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 48px;
      padding: 0 14px;
      border-radius: 14px;
      color: var(--muted-2);
      font-weight: 750;
    }

    .mobile-panel a + a {
      margin-top: 5px;
    }

    .mobile-panel a.active,
    .mobile-panel a:hover {
      color: #fff;
      background: rgba(255,61,174,.1);
    }

    .section {
      padding: 96px 0;
    }

    .section-tight {
      padding: 70px 0;
    }

    .section-heading {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 34px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 14px;
      color: #F2A7C8;
      font-size: 13px;
      font-weight: 850;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 26px;
      height: 1px;
      background: linear-gradient(90deg, var(--primary-2), transparent);
    }

    .section-title {
      margin: 0;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.15;
      font-weight: 900;
      letter-spacing: -.04em;
    }

    .section-desc {
      max-width: 600px;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .hero {
      position: relative;
      min-height: 760px;
      display: flex;
      align-items: center;
      padding: 84px 0 58px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      width: 640px;
      height: 640px;
      right: -180px;
      top: 20px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,61,174,.22), transparent 64%);
      filter: blur(4px);
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, .72fr);
      gap: 54px;
      align-items: center;
    }

    .hero-copy h1 {
      margin: 0;
      max-width: 780px;
      font-size: clamp(42px, 6.2vw, 74px);
      line-height: 1.06;
      font-weight: 950;
      letter-spacing: -.065em;
    }

    .brand-chip {
      display: inline-flex;
      vertical-align: middle;
      align-items: center;
      padding: .08em .22em .12em;
      margin-left: .08em;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(255,61,174,.18), rgba(192,101,255,.14));
      color: #FFD7EA;
      text-shadow: 0 0 22px rgba(255,61,174,.45);
      box-shadow: inset 0 0 0 1px rgba(255,61,174,.3);
      letter-spacing: -.03em;
    }

    .hero-lead {
      max-width: 660px;
      margin: 24px 0 0;
      color: var(--muted-2);
      font-size: clamp(16px, 1.7vw, 20px);
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .trust-mini {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 42px;
      max-width: 740px;
    }

    .mini-item {
      min-height: 76px;
      padding: 14px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      background: rgba(255,255,255,.035);
      color: var(--muted);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .mini-item:hover {
      transform: translateY(-3px);
      border-color: rgba(255,61,174,.34);
      background: rgba(255,61,174,.06);
    }

    .mini-item strong {
      display: block;
      color: #fff;
      font-size: 15px;
      line-height: 1.3;
      margin-bottom: 3px;
    }

    .hero-showcase {
      position: relative;
      padding: 16px;
      border-radius: 34px;
      background: linear-gradient(145deg, rgba(255,61,174,.32), rgba(192,101,255,.08), rgba(255,255,255,.05));
      box-shadow: var(--shadow-neon);
    }

    .hero-card {
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(32,20,40,.96), rgba(18,10,31,.98));
    }

    .poster {
      position: relative;
      min-height: 430px;
      overflow: hidden;
      background:
        radial-gradient(circle at 42% 28%, rgba(242,167,200,.55), transparent 16%),
        radial-gradient(circle at 52% 47%, rgba(255,61,174,.28), transparent 20%),
        linear-gradient(145deg, rgba(42,24,52,.95), rgba(9,6,14,1));
    }

    .poster::before {
      content: "";
      position: absolute;
      inset: 20px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 22px;
      background:
        linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 24px 24px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 92%);
    }

    .poster::after {
      content: "";
      position: absolute;
      width: 170px;
      height: 250px;
      left: 50%;
      bottom: 42px;
      transform: translateX(-50%);
      border-radius: 52% 52% 34% 34%;
      background:
        radial-gradient(circle at 50% 20%, rgba(255,243,248,.34), transparent 24%),
        linear-gradient(180deg, rgba(242,167,200,.34), rgba(184,76,141,.1));
      filter: blur(.2px);
      opacity: .72;
      box-shadow: 0 0 70px rgba(255,61,174,.18);
    }

    .poster-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 999px;
      background: rgba(11,7,17,.66);
      backdrop-filter: blur(10px);
      color: #FFD7EA;
      padding: 7px 12px;
      font-size: 13px;
      font-weight: 800;
    }

    .poster-side {
      position: absolute;
      right: 20px;
      top: 22px;
      writing-mode: vertical-rl;
      color: rgba(255,243,248,.62);
      letter-spacing: .22em;
      font-size: 12px;
      z-index: 2;
    }

    .hero-card-body {
      padding: 22px;
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      margin: 12px 0 18px;
    }

    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,61,174,.24);
      background: rgba(255,61,174,.08);
      color: #FFD7EA;
      font-size: 12px;
      font-weight: 800;
    }

    .badge.alt {
      border-color: rgba(94,242,214,.25);
      background: rgba(94,242,214,.07);
      color: #C9FFF6;
    }

    .score {
      color: #FFE4F1;
      font-weight: 900;
      letter-spacing: .02em;
    }

    .activity-strip {
      margin-top: -24px;
      position: relative;
      z-index: 4;
    }

    .activity-panel {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr .8fr;
      gap: 14px;
      padding: 18px;
      border: 1px solid rgba(255,61,174,.18);
      border-radius: 26px;
      background: rgba(23,16,33,.9);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow-card);
    }

    .kpi {
      padding: 18px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025));
      border: 1px solid rgba(255,255,255,.08);
    }

    .kpi span {
      color: var(--muted);
      font-size: 13px;
    }

    .kpi strong {
      display: block;
      margin-top: 5px;
      font-size: 28px;
      line-height: 1;
      color: #fff;
      letter-spacing: -.04em;
    }

    .kpi:first-child {
      background:
        radial-gradient(circle at 15% 10%, rgba(255,61,174,.2), transparent 45%),
        linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 24px;
    }

    .feature-panel {
      min-height: 330px;
      padding: 30px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 90% 10%, rgba(192,101,255,.18), transparent 40%),
        linear-gradient(145deg, rgba(32,20,40,.86), rgba(18,10,31,.96));
      box-shadow: var(--shadow-card);
    }

    .feature-list {
      display: grid;
      gap: 14px;
      margin-top: 24px;
    }

    .feature-list li {
      list-style: none;
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 18px;
      background: rgba(255,255,255,.035);
      color: var(--muted-2);
    }

    .dot {
      width: 10px;
      height: 10px;
      margin-top: 9px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--primary-2);
      box-shadow: 0 0 16px rgba(255,61,174,.85);
    }

    .category-cards {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 24px;
    }

    .category-card {
      position: relative;
      overflow: hidden;
      min-height: 330px;
      padding: 28px;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(145deg, rgba(255,61,174,.13), transparent 42%),
        linear-gradient(180deg, rgba(32,20,40,.92), rgba(15,9,23,.98));
      box-shadow: var(--shadow-card);
      transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
    }

    .category-card:hover {
      transform: translateY(-5px);
      border-color: var(--border-strong);
      box-shadow: var(--shadow-neon);
    }

    .category-card::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      right: -60px;
      bottom: -70px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,61,174,.24), transparent 68%);
    }

    .product-grid {
      display: grid;
      grid-template-columns: 1.16fr repeat(3, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }

    .content-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.085);
      border-radius: var(--radius-md);
      background: linear-gradient(180deg, rgba(32,20,40,.92), rgba(18,10,31,.98));
      box-shadow: var(--shadow-card);
      transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
    }

    .content-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255,61,174,.72);
      box-shadow: var(--shadow-neon);
    }

    .content-card.featured {
      grid-row: span 2;
      border-radius: 30px;
    }

    .cover {
      position: relative;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background:
        radial-gradient(circle at 45% 28%, rgba(242,167,200,.34), transparent 17%),
        radial-gradient(circle at 72% 64%, rgba(192,101,255,.22), transparent 30%),
        linear-gradient(145deg, #2A1834, #08050D);
    }

    .content-card.featured .cover {
      aspect-ratio: 4 / 5.8;
    }

    .cover::before {
      content: "";
      position: absolute;
      inset: 12px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.08);
      background-image: linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
      background-size: 18px 18px;
      opacity: .54;
    }

    .cover::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 55%;
      background: linear-gradient(180deg, transparent, rgba(11,7,17,.9));
    }

    .cover-label {
      position: absolute;
      z-index: 2;
      left: 14px;
      top: 14px;
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      background: rgba(11,7,17,.68);
      border: 1px solid rgba(255,255,255,.14);
      color: #FFD7EA;
      backdrop-filter: blur(12px);
      font-size: 12px;
      font-weight: 850;
    }

    .card-body {
      padding: 18px;
    }

    .card-title {
      margin: 0;
      color: #fff;
      font-size: 18px;
      line-height: 1.35;
      font-weight: 880;
      letter-spacing: -.02em;
    }

    .content-card.featured .card-title {
      font-size: 24px;
    }

    .card-desc {
      margin: 9px 0 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .card-foot {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 16px;
      color: var(--muted-2);
      font-size: 13px;
    }

    .reviews-wrap {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,61,174,.16);
      border-radius: var(--radius-lg);
      background:
        radial-gradient(circle at 0% 0%, rgba(255,61,174,.16), transparent 35%),
        linear-gradient(145deg, rgba(32,20,40,.88), rgba(11,7,17,.98));
      box-shadow: var(--shadow-card);
    }

    .reviews-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(300px, 1fr);
      gap: 18px;
      overflow-x: auto;
      padding: 26px;
      scroll-snap-type: x mandatory;
      scrollbar-width: thin;
    }

    .review-card {
      scroll-snap-align: start;
      min-height: 230px;
      padding: 24px;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 24px;
      background: rgba(255,255,255,.045);
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }

    .review-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,61,174,.46);
      background: rgba(255,61,174,.07);
    }

    .review-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255,61,174,.85), rgba(192,101,255,.7));
      box-shadow: 0 0 18px rgba(255,61,174,.24);
    }

    .quote {
      color: #FFF3F8;
      font-size: 16px;
      line-height: 1.75;
    }

    .guard-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 14px;
    }

    .guard-item {
      padding: 20px 16px;
      border: 1px solid rgba(255,255,255,.085);
      border-radius: 22px;
      background: rgba(255,255,255,.04);
      text-align: center;
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .guard-item:hover {
      transform: translateY(-4px);
      border-color: rgba(94,242,214,.32);
      background: rgba(94,242,214,.045);
    }

    .guard-icon {
      width: 42px;
      height: 42px;
      margin: 0 auto 12px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(255,61,174,.2), rgba(94,242,214,.1));
      border: 1px solid rgba(255,255,255,.1);
      color: #C9FFF6;
      font-weight: 900;
    }

    .faq-list {
      display: grid;
      gap: 14px;
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.09);
      border-radius: 20px;
      background: rgba(255,255,255,.04);
      transition: border-color .22s ease, background .22s ease;
    }

    .faq-item.active {
      border-color: rgba(255,61,174,.5);
      background: rgba(255,61,174,.06);
    }

    .faq-question {
      width: 100%;
      min-height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 0 20px;
      color: #fff;
      font-weight: 850;
      text-align: left;
    }

    .faq-icon {
      width: 28px;
      height: 28px;
      flex: 0 0 auto;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,61,174,.32);
      color: #FFD7EA;
      transition: transform .2s ease, background .2s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      background: rgba(255,61,174,.14);
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    .cta-card {
      position: relative;
      overflow: hidden;
      padding: 46px;
      border-radius: 34px;
      border: 1px solid rgba(255,61,174,.34);
      background:
        radial-gradient(circle at 12% 15%, rgba(255,61,174,.26), transparent 36%),
        radial-gradient(circle at 88% 70%, rgba(192,101,255,.18), transparent 42%),
        linear-gradient(145deg, rgba(32,20,40,.96), rgba(11,7,17,.98));
      box-shadow: var(--shadow-neon);
    }

    .cta-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, transparent 0 40%, rgba(255,255,255,.055) 40% 41%, transparent 41% 100%);
      pointer-events: none;
    }

    .cta-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 28px;
      align-items: center;
    }

    .site-footer {
      padding: 68px 0 34px;
      border-top: 1px solid rgba(255,61,174,.18);
      background:
        radial-gradient(circle at 50% 0%, rgba(255,61,174,.12), transparent 34%),
        rgba(8,5,13,.88);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .7fr .7fr;
      gap: 34px;
      align-items: start;
    }

    .footer-title {
      margin: 0 0 14px;
      font-size: 18px;
      font-weight: 900;
      color: #fff;
    }

    .footer-text,
    .footer-link,
    .copyright {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-link {
      transition: color .2s ease, transform .2s ease;
    }

    .footer-link:hover {
      color: #FFD7EA;
      transform: translateX(3px);
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 44px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.08);
    }

    @media (max-width: 1180px) {
      .nav-search {
        display: none;
      }

      .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .content-card.featured {
        grid-column: span 2;
        grid-row: span 1;
      }

      .activity-panel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .guard-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 980px) {
      .desktop-nav,
      .nav-actions {
        display: none;
      }

      .mobile-toggle {
        display: grid;
        place-items: center;
      }

      .hero {
        min-height: auto;
        padding-top: 62px;
      }

      .hero-grid,
      .feature-grid,
      .cta-grid {
        grid-template-columns: 1fr;
      }

      .hero-showcase {
        max-width: 520px;
      }

      .trust-mini {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .product-grid,
      .category-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .content-card.featured {
        grid-column: span 2;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .site-container,
      .nav-wrap {
        width: min(100% - 28px, var(--container));
      }

      .age-strip-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 10px 0;
      }

      .brand-mark {
        width: 40px;
        height: 40px;
      }

      .brand-title {
        font-size: 14px;
      }

      .brand-sub {
        font-size: 10px;
        letter-spacing: .16em;
      }

      .nav-wrap {
        min-height: 70px;
      }

      .section {
        padding: 68px 0;
      }

      .section-tight {
        padding: 52px 0;
      }

      .section-heading {
        display: block;
      }

      .hero-copy h1 {
        font-size: 40px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .trust-mini,
      .activity-panel,
      .product-grid,
      .category-cards,
      .guard-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .content-card.featured {
        grid-column: auto;
      }

      .poster {
        min-height: 360px;
      }

      .activity-strip {
        margin-top: 0;
      }

      .cta-card {
        padding: 28px;
        border-radius: 26px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }

      .reviews-track {
        grid-auto-columns: 86%;
        padding: 18px;
      }
    }

/* roulang page: category2 */
:root{
      --bg:#0B0711;
      --bg-soft:#120A1F;
      --panel:#171021;
      --panel-2:#201428;
      --panel-3:#26172F;
      --primary:#E15BA6;
      --accent:#FF3DAE;
      --violet:#C065FF;
      --text:#FFF3F8;
      --muted:#B8AAB6;
      --soft:#E8DDE6;
      --border:#3A2446;
      --border-strong:#6E3A77;
      --radius-lg:30px;
      --radius-md:22px;
      --radius-sm:16px;
      --shadow:0 26px 70px rgba(0,0,0,.46);
      --glow:0 0 0 1px rgba(255,61,174,.32),0 0 28px rgba(255,61,174,.22);
      --container:1220px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 8%, rgba(255,61,174,.18), transparent 34%),
        radial-gradient(circle at 92% 18%, rgba(192,101,255,.14), transparent 32%),
        linear-gradient(180deg,#0B0711 0%,#120A1F 48%,#0B0711 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      z-index:-2;
      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:44px 44px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.18));
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(255,61,174,.35);color:#fff}
    ::-webkit-scrollbar{width:10px;height:10px}
    ::-webkit-scrollbar-track{background:#0B0711}
    ::-webkit-scrollbar-thumb{background:linear-gradient(180deg,var(--accent),var(--violet));border-radius:999px;border:2px solid #0B0711}
    .site-container{width:min(var(--container),calc(100% - 40px));margin-inline:auto}
    .age-strip{
      background:linear-gradient(90deg,#09050d,#1b1024 45%,#09050d);
      color:var(--soft);
      border-bottom:1px solid rgba(255,61,174,.28);
      font-size:13px;
      letter-spacing:.02em;
    }
    .age-strip .dot{width:8px;height:8px;border-radius:999px;background:var(--accent);box-shadow:0 0 16px rgba(255,61,174,.8)}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(12,7,18,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,61,174,.18);
      box-shadow:0 14px 48px rgba(0,0,0,.35);
    }
    .site-header:after{
      content:"";
      position:absolute;
      left:0;right:0;bottom:-1px;height:1px;
      background:linear-gradient(90deg,transparent,rgba(255,61,174,.75),rgba(192,101,255,.55),transparent);
    }
    .nav-wrap{
      width:min(var(--container),calc(100% - 40px));
      margin-inline:auto;
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand{display:inline-flex;align-items:center;gap:13px;min-width:max-content}
    .brand-mark{
      width:44px;height:44px;border-radius:16px;
      background:
        linear-gradient(135deg,rgba(255,61,174,.95),rgba(192,101,255,.78)),
        radial-gradient(circle at 30% 25%,#fff,transparent 30%);
      position:relative;
      box-shadow:0 0 26px rgba(255,61,174,.35);
    }
    .brand-mark:before,.brand-mark:after{
      content:"";position:absolute;inset:9px;border:1px solid rgba(255,255,255,.48);border-radius:10px;
    }
    .brand-mark:after{inset:auto;left:12px;right:12px;top:20px;height:2px;border:0;background:rgba(255,255,255,.72);border-radius:999px}
    .brand-text{display:flex;flex-direction:column;line-height:1.1}
    .brand-title{font-weight:900;font-size:17px;letter-spacing:.01em;color:#fff}
    .brand-sub{font-size:11px;text-transform:uppercase;letter-spacing:.18em;color:var(--muted);margin-top:4px}
    .desktop-nav{display:flex;align-items:center;gap:8px;padding:7px;border:1px solid rgba(255,255,255,.08);border-radius:999px;background:rgba(255,255,255,.035)}
    .nav-link{
      position:relative;
      padding:10px 16px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      transition:.22s ease;
      white-space:nowrap;
    }
    .nav-link:hover{color:#fff;background:rgba(255,61,174,.08)}
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(255,61,174,.22),rgba(192,101,255,.14));
      box-shadow:inset 0 0 0 1px rgba(255,61,174,.35),0 0 20px rgba(255,61,174,.16);
    }
    .nav-link.active:after{
      content:"";position:absolute;left:18px;right:18px;bottom:5px;height:2px;border-radius:999px;background:var(--accent);box-shadow:0 0 12px var(--accent);
    }
    .nav-actions{display:flex;align-items:center;gap:12px}
    .nav-search{
      width:154px;
      height:42px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.045);
      color:var(--text);
      padding:0 15px;
      outline:none;
      transition:.22s ease;
    }
    .nav-search::placeholder{color:rgba(232,221,230,.52)}
    .nav-search:focus{border-color:rgba(255,61,174,.72);box-shadow:0 0 0 4px rgba(255,61,174,.13)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      font-size:14px;
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--accent) 48%,var(--violet));
      box-shadow:0 14px 30px rgba(255,61,174,.24);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 44px rgba(255,61,174,.38)}
    .btn-secondary{
      color:var(--soft);
      background:rgba(255,255,255,.055);
      border-color:rgba(255,255,255,.14);
    }
    .btn-secondary:hover{border-color:rgba(255,61,174,.55);box-shadow:var(--glow);transform:translateY(-2px)}
    .btn-ghost{
      color:#fff;
      border-color:rgba(255,61,174,.35);
      background:rgba(255,61,174,.08);
    }
    .btn-ghost:hover{background:rgba(255,61,174,.16);box-shadow:var(--glow)}
    .mobile-toggle{
      display:none;
      width:46px;height:46px;border-radius:16px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,61,174,.35);
      align-items:center;justify-content:center;
    }
    .toggle-bars,.toggle-bars:before,.toggle-bars:after{
      display:block;width:20px;height:2px;border-radius:999px;background:#fff;position:relative;transition:.22s ease;
    }
    .toggle-bars:before,.toggle-bars:after{content:"";position:absolute;left:0}
    .toggle-bars:before{top:-7px}.toggle-bars:after{top:7px}
    .mobile-toggle[aria-expanded="true"] .toggle-bars{background:transparent}
    .mobile-toggle[aria-expanded="true"] .toggle-bars:before{top:0;transform:rotate(45deg)}
    .mobile-toggle[aria-expanded="true"] .toggle-bars:after{top:0;transform:rotate(-45deg)}
    .mobile-panel{
      display:none;
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto 16px;
      padding:10px;
      border:1px solid rgba(255,61,174,.22);
      border-radius:22px;
      background:rgba(23,16,33,.96);
      box-shadow:var(--shadow);
    }
    .mobile-panel a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:14px 14px;
      border-radius:16px;
      color:var(--muted);
      border-bottom:1px solid rgba(255,255,255,.06);
      font-weight:750;
    }
    .mobile-panel a:last-child{border-bottom:0}
    .mobile-panel a.active,.mobile-panel a:hover{color:#fff;background:rgba(255,61,174,.1)}
    .mobile-panel span{font-size:12px;color:rgba(232,221,230,.62)}
    .section{padding:94px 0}
    .section-tight{padding:66px 0}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:7px 12px;border-radius:999px;
      color:#FFD7EC;
      background:rgba(255,61,174,.10);
      border:1px solid rgba(255,61,174,.24);
      font-size:13px;font-weight:800;
      letter-spacing:.08em;
    }
    .eyebrow:before{content:"";width:7px;height:7px;border-radius:50%;background:var(--accent);box-shadow:0 0 14px var(--accent)}
    .hero-showcase{
      position:relative;
      min-height:680px;
      padding:76px 0 58px;
      overflow:hidden;
    }
    .hero-showcase:before{
      content:"";
      position:absolute;
      width:520px;height:520px;border-radius:50%;
      right:-130px;top:40px;
      background:radial-gradient(circle,rgba(255,61,174,.23),transparent 65%);
      filter:blur(6px);
      pointer-events:none;
    }
    .breadcrumb{
      display:flex;align-items:center;gap:9px;
      color:rgba(232,221,230,.66);
      font-size:13px;margin-bottom:28px;
    }
    .breadcrumb a:hover{color:#fff}
    .hero-title{
      font-size:clamp(2.45rem,6vw,4.65rem);
      line-height:1.08;
      font-weight:950;
      letter-spacing:-.045em;
      max-width:920px;
    }
    .hero-title .neon-text{
      color:transparent;
      -webkit-text-stroke:1px rgba(255,243,248,.78);
      text-shadow:0 0 26px rgba(255,61,174,.34);
    }
    .hero-desc{
      max-width:760px;
      color:var(--muted);
      font-size:17px;
      line-height:1.85;
      margin-top:22px;
    }
    .hero-filter{
      display:flex;gap:10px;overflow-x:auto;padding:16px;margin-top:30px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.035);
      border-radius:24px;
      scrollbar-width:none;
    }
    .hero-filter::-webkit-scrollbar{display:none}
    .pill{
      display:inline-flex;align-items:center;gap:7px;
      flex:0 0 auto;
      padding:10px 14px;border-radius:999px;
      color:var(--soft);
      background:rgba(18,10,31,.82);
      border:1px solid rgba(255,255,255,.11);
      font-size:13px;font-weight:800;
      transition:.22s ease;
    }
    .pill.active,.pill:hover{border-color:rgba(255,61,174,.58);background:rgba(255,61,174,.15);box-shadow:0 0 18px rgba(255,61,174,.12)}
    .topic-rail{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:22px;
      margin-top:42px;
    }
    .topic-card{
      position:relative;
      min-height:278px;
      border-radius:var(--radius-lg);
      overflow:hidden;
      border:1px solid rgba(255,255,255,.1);
      background:
        linear-gradient(145deg,rgba(255,61,174,.18),rgba(192,101,255,.08) 48%,rgba(255,255,255,.035)),
        var(--panel);
      box-shadow:var(--shadow);
      transition:.25s ease;
    }
    .topic-card:hover{transform:translateY(-5px);border-color:rgba(255,61,174,.58);box-shadow:var(--shadow),0 0 34px rgba(255,61,174,.18)}
    .topic-card:before{
      content:"";
      position:absolute;inset:0;
      background:
        linear-gradient(135deg,rgba(255,255,255,.12),transparent 22%),
        radial-gradient(circle at 78% 20%,rgba(255,61,174,.28),transparent 32%);
      pointer-events:none;
    }
    .poster-lines{
      position:absolute;inset:18px;border:1px solid rgba(255,255,255,.12);border-radius:22px;
      background:
        linear-gradient(90deg,transparent 0 12%,rgba(255,255,255,.06) 12% 13%,transparent 13% 100%),
        linear-gradient(180deg,transparent 0 66%,rgba(0,0,0,.22) 66% 100%);
    }
    .topic-content{position:relative;z-index:2;height:100%;display:flex;flex-direction:column;justify-content:flex-end;padding:28px}
    .tag{
      display:inline-flex;width:max-content;
      padding:6px 10px;border-radius:999px;
      background:rgba(255,61,174,.13);
      border:1px solid rgba(255,61,174,.25);
      color:#FFD5EB;
      font-size:12px;font-weight:850;
    }
    .topic-content h2,.topic-content h3{margin:14px 0 8px;font-size:25px;line-height:1.2;font-weight:900}
    .topic-content p{color:rgba(232,221,230,.76);font-size:14px;margin:0 0 18px}
    .panel{
      border:1px solid rgba(255,255,255,.1);
      background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.028));
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
    }
    .section-head{
      display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:34px;
    }
    .section-title{font-size:clamp(1.85rem,3.5vw,2.75rem);line-height:1.15;font-weight:950;letter-spacing:-.035em}
    .section-text{color:var(--muted);max-width:620px;margin-top:12px}
    .matrix{
      display:grid;
      grid-template-columns:7fr 5fr;
      gap:26px;
      align-items:stretch;
    }
    .feature-cover{
      position:relative;
      min-height:520px;
      overflow:hidden;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,61,174,.24);
      background:
        radial-gradient(circle at 25% 25%,rgba(255,61,174,.28),transparent 32%),
        linear-gradient(145deg,#24132c,#120a1f 54%,#0B0711);
      box-shadow:var(--shadow);
    }
    .feature-cover:before{
      content:"";
      position:absolute;inset:26px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:26px;
      background:
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px);
      background-size:28px 28px;
    }
    .feature-cover:after{
      content:"";
      position:absolute;right:44px;top:60px;width:170px;height:250px;
      border-radius:90px 90px 34px 34px;
      background:linear-gradient(180deg,rgba(255,243,248,.16),rgba(255,61,174,.06));
      filter:blur(.2px);
      border:1px solid rgba(255,255,255,.10);
    }
    .feature-info{position:absolute;left:34px;right:34px;bottom:34px;z-index:2}
    .feature-info h2{font-size:clamp(1.8rem,3vw,3.1rem);line-height:1.08;font-weight:950;margin:16px 0 12px}
    .feature-info p{color:rgba(232,221,230,.78);max-width:560px}
    .meta-row{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 24px}
    .mini-stat{
      display:flex;align-items:center;gap:8px;
      padding:8px 11px;border-radius:999px;
      color:var(--soft);
      border:1px solid rgba(255,255,255,.10);
      background:rgba(0,0,0,.20);
      font-size:13px;font-weight:750;
    }
    .side-list{display:flex;flex-direction:column;gap:16px}
    .list-card{
      display:grid;
      grid-template-columns:112px 1fr;
      gap:16px;
      padding:16px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.045);
      transition:.22s ease;
    }
    .list-card:hover{transform:translateX(4px);border-color:rgba(255,61,174,.5);background:rgba(255,61,174,.07)}
    .thumb{
      min-height:132px;border-radius:18px;overflow:hidden;position:relative;
      background:linear-gradient(145deg,rgba(225,91,166,.24),rgba(192,101,255,.10)),#1a1022;
      border:1px solid rgba(255,255,255,.1);
    }
    .thumb:before{
      content:"";position:absolute;inset:12px;border-radius:13px;border:1px solid rgba(255,255,255,.12);
      background:radial-gradient(circle at 60% 22%,rgba(255,255,255,.14),transparent 34%);
    }
    .list-card h3{font-size:18px;font-weight:900;line-height:1.28;margin:4px 0 7px}
    .list-card p{font-size:13px;color:rgba(232,221,230,.7);line-height:1.65;margin:0 0 10px}
    .rating{color:#FFD2EA;font-size:13px;font-weight:850}
    .grid-cards{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:22px;
    }
    .content-card{
      overflow:hidden;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.1);
      background:var(--panel);
      transition:.25s ease;
      box-shadow:0 18px 48px rgba(0,0,0,.26);
    }
    .content-card:hover{transform:translateY(-5px);border-color:rgba(255,61,174,.55);box-shadow:0 22px 54px rgba(0,0,0,.32),0 0 28px rgba(255,61,174,.14)}
    .card-cover{
      aspect-ratio:4/5;
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 40% 20%,rgba(255,61,174,.24),transparent 32%),
        linear-gradient(145deg,#2a1732,#120a1f);
    }
    .card-cover:before{
      content:"";
      position:absolute;inset:14px;border-radius:17px;
      border:1px solid rgba(255,255,255,.12);
      background:linear-gradient(180deg,transparent,rgba(0,0,0,.28));
      transition:.25s ease;
    }
    .content-card:hover .card-cover:before{transform:scale(1.03)}
    .card-body{padding:18px}
    .card-body h3{font-size:18px;font-weight:900;line-height:1.3;margin:10px 0 8px}
    .card-body p{font-size:13px;color:rgba(232,221,230,.7);line-height:1.65;margin:0 0 14px}
    .card-actions{display:flex;align-items:center;justify-content:space-between;gap:10px}
    .small-btn{
      min-height:34px;
      padding:0 12px;border-radius:999px;
      background:rgba(255,61,174,.12);
      border:1px solid rgba(255,61,174,.25);
      color:#FFE5F2;
      font-size:12px;font-weight:850;
      transition:.22s ease;
    }
    .small-btn:hover{background:rgba(255,61,174,.22);box-shadow:0 0 18px rgba(255,61,174,.18)}
    .notice-strip{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:26px;
      align-items:center;
      padding:28px;
      border-radius:28px;
      border:1px solid rgba(255,61,174,.28);
      background:
        linear-gradient(90deg,rgba(255,61,174,.12),rgba(192,101,255,.05)),
        rgba(255,255,255,.04);
      position:relative;
      overflow:hidden;
    }
    .notice-strip:before{
      content:"";
      position:absolute;left:0;top:0;bottom:0;width:4px;
      background:linear-gradient(180deg,var(--accent),var(--violet));
      box-shadow:0 0 18px var(--accent);
    }
    .notice-strip h2{font-size:24px;font-weight:950;margin-bottom:8px}
    .notice-strip p{color:var(--muted);margin:0}
    .trust-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .trust-item{
      padding:20px;
      border-radius:22px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.1);
    }
    .trust-icon{
      width:38px;height:38px;border-radius:14px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,rgba(255,61,174,.18),rgba(192,101,255,.12));
      color:#fff;
      border:1px solid rgba(255,61,174,.22);
      margin-bottom:13px;
    }
    .trust-item h3{font-size:17px;font-weight:900;margin-bottom:5px}
    .trust-item p{color:rgba(232,221,230,.68);font-size:13px;margin:0}
    .faq-wrap{display:grid;grid-template-columns:.9fr 1.1fr;gap:34px;align-items:start}
    .faq-list{display:flex;flex-direction:column;gap:14px}
    .faq-item{
      border:1px solid rgba(255,255,255,.1);
      border-radius:22px;
      background:rgba(255,255,255,.045);
      overflow:hidden;
      transition:.22s ease;
    }
    .faq-item:hover{border-color:rgba(255,61,174,.34)}
    .faq-question{
      width:100%;
      padding:18px 20px;
      display:flex;align-items:center;justify-content:space-between;gap:16px;
      color:#fff;background:transparent;border:0;text-align:left;
      font-weight:900;
    }
    .faq-icon{
      width:28px;height:28px;display:grid;place-items:center;border-radius:50%;
      background:rgba(255,61,174,.12);color:#FFD3EA;flex:0 0 auto;
    }
    .faq-answer{display:none;padding:0 20px 18px;color:rgba(232,221,230,.72);font-size:14px}
    .faq-item.open .faq-answer{display:block}
    .faq-item.open .faq-icon{background:var(--accent);color:#fff}
    .cta-banner{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      padding:38px;
      border:1px solid rgba(255,61,174,.34);
      background:
        linear-gradient(112deg,rgba(255,61,174,.18),transparent 45%),
        radial-gradient(circle at 88% 20%,rgba(192,101,255,.22),transparent 34%),
        #120A1F;
      box-shadow:var(--shadow),0 0 36px rgba(255,61,174,.12);
    }
    .cta-banner:after{
      content:"";
      position:absolute;
      right:-70px;top:0;width:280px;height:100%;
      background:repeating-linear-gradient(115deg,rgba(255,255,255,.06) 0 2px,transparent 2px 18px);
      transform:skewX(-10deg);
      opacity:.8;
    }
    .cta-inner{position:relative;z-index:2;display:flex;align-items:center;justify-content:space-between;gap:26px}
    .cta-inner h2{font-size:clamp(1.8rem,3vw,2.7rem);font-weight:950;line-height:1.15;margin-bottom:10px}
    .cta-inner p{color:var(--muted);max-width:700px;margin:0}
    .site-footer{
      padding:58px 0 28px;
      background:#09050d;
      border-top:1px solid rgba(255,61,174,.22);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .7fr 1fr;
      gap:34px;
      padding-bottom:34px;
    }
    .footer-title{font-size:16px;font-weight:900;margin:3px 0 15px;color:#fff}
    .footer-text{color:rgba(232,221,230,.66);font-size:14px;line-height:1.75}
    .footer-links{display:flex;flex-direction:column;gap:10px}
    .footer-link{color:rgba(232,221,230,.68);font-size:14px;transition:.2s ease}
    .footer-link:hover{color:#fff;transform:translateX(3px)}
    .footer-bottom{
      display:flex;align-items:center;justify-content:space-between;gap:18px;
      padding-top:24px;border-top:1px solid rgba(255,255,255,.08);
    }
    .copyright{color:rgba(232,221,230,.54);font-size:13px;margin:0}
    @media (max-width:1100px){
      .desktop-nav,.nav-search{display:none}
      .mobile-toggle{display:flex}
      .mobile-panel.show{display:block}
      .matrix,.faq-wrap,.notice-strip{grid-template-columns:1fr}
      .topic-rail{grid-template-columns:1fr}
      .grid-cards{grid-template-columns:repeat(2,minmax(0,1fr))}
      .trust-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-grid{grid-template-columns:1fr 1fr}
      .cta-inner{flex-direction:column;align-items:flex-start}
    }
    @media (max-width:760px){
      .site-container,.nav-wrap,.mobile-panel{width:min(100% - 28px,var(--container))}
      .age-strip{font-size:12px}
      .nav-wrap{min-height:70px}
      .brand-title{font-size:15px}
      .brand-sub{font-size:10px}
      .nav-actions .btn{display:none}
      .section{padding:64px 0}
      .section-tight{padding:48px 0}
      .hero-showcase{min-height:auto;padding:52px 0 42px}
      .hero-desc{font-size:15px}
      .topic-card{min-height:248px}
      .matrix{gap:18px}
      .feature-cover{min-height:470px}
      .feature-info{left:22px;right:22px;bottom:24px}
      .list-card{grid-template-columns:92px 1fr;padding:13px}
      .thumb{min-height:118px}
      .grid-cards,.trust-grid{grid-template-columns:1fr}
      .section-head{display:block}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{flex-direction:column;align-items:flex-start}
      .cta-banner{padding:28px 22px}
    }
    @media (max-width:520px){
      .hero-filter{margin-left:-2px;margin-right:-2px;padding:12px;border-radius:20px}
      .btn{width:100%}
      .hero-ctas{flex-direction:column;width:100%}
      .topic-content{padding:22px}
      .feature-cover{min-height:500px}
      .meta-row{gap:8px}
      .list-card{grid-template-columns:1fr}
      .thumb{min-height:170px}
      .card-actions{align-items:flex-start;flex-direction:column}
      .small-btn{width:100%;display:inline-flex;justify-content:center}
    }

/* roulang page: category1 */
:root{
      --bg:#0B0711;
      --bg-2:#120A1F;
      --panel:#171021;
      --panel-2:#201428;
      --panel-soft:#261831;
      --primary:#E15BA6;
      --primary-2:#FF3DAE;
      --accent:#C065FF;
      --text:#FFF3F8;
      --muted:#B8AAB6;
      --soft:#E8DDE6;
      --border:#3A2446;
      --border-hot:rgba(255,61,174,.72);
      --radius-lg:30px;
      --radius-md:22px;
      --radius-sm:16px;
      --shadow:0 26px 80px rgba(0,0,0,.45);
      --glow:0 0 0 1px rgba(255,61,174,.25), 0 0 30px rgba(255,61,174,.18);
      --container:1200px;
      --ease:220ms cubic-bezier(.2,.8,.2,1);
    }

    *{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",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 18% 8%, rgba(255,61,174,.22), transparent 32%),
        radial-gradient(circle at 84% 18%, rgba(192,101,255,.16), transparent 30%),
        linear-gradient(180deg,var(--bg) 0%, #0E0715 48%, #08050D 100%);
      line-height:1.75;
      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:46px 46px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.8), transparent 78%);
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(255,61,174,.35);color:#fff}
    :focus-visible{outline:2px solid var(--primary-2);outline-offset:3px}
    body::-webkit-scrollbar{width:10px}
    body::-webkit-scrollbar-track{background:#09050d}
    body::-webkit-scrollbar-thumb{background:linear-gradient(var(--primary),var(--accent));border-radius:999px}

    .site-container{
      width:min(calc(100% - 40px), var(--container));
      margin-inline:auto;
    }
    .section{padding:96px 0}
    .section-tight{padding:70px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(255,61,174,.28);
      border-radius:999px;
      color:#FFD8EC;
      background:rgba(255,61,174,.08);
      font-size:13px;
      letter-spacing:.04em;
    }
    .section-kicker::before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:var(--primary-2);
      box-shadow:0 0 16px var(--primary-2);
    }
    .section-title{
      margin:16px 0 0;
      font-weight:850;
      line-height:1.15;
      letter-spacing:-.04em;
      font-size:clamp(30px,4vw,46px);
      color:var(--text);
    }
    .section-desc{
      margin:16px 0 0;
      color:var(--muted);
      max-width:760px;
      font-size:16px;
    }

    .age-strip{
      position:relative;
      z-index:60;
      background:#08050D;
      border-bottom:1px solid rgba(255,61,174,.28);
      color:#E8DDE6;
      font-size:13px;
    }
    .age-strip .inner{
      width:min(calc(100% - 40px), var(--container));
      margin:auto;
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .age-pill{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#fff;
      font-weight:700;
    }
    .age-pill span{
      display:inline-grid;
      place-items:center;
      width:28px;height:22px;
      border-radius:999px;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      box-shadow:0 0 22px rgba(255,61,174,.28);
      font-size:12px;
    }
    .age-note{color:var(--muted)}

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(11,7,17,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,61,174,.22);
      box-shadow:0 16px 40px rgba(0,0,0,.32);
    }
    .site-header::after{
      content:"";
      position:absolute;
      left:0;right:0;bottom:-1px;height:1px;
      background:linear-gradient(90deg,transparent,var(--primary-2),var(--accent),transparent);
      opacity:.72;
    }
    .nav-wrap{
      width:min(calc(100% - 40px), var(--container));
      height:78px;
      margin:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      width:42px;height:42px;
      position:relative;
      border-radius:15px;
      background:
        linear-gradient(135deg,rgba(255,61,174,.9),rgba(192,101,255,.85)),
        radial-gradient(circle at 30% 30%,#fff,transparent 28%);
      box-shadow:0 0 28px rgba(255,61,174,.34);
      overflow:hidden;
    }
    .brand-mark::before,.brand-mark::after{
      content:"";
      position:absolute;
      background:rgba(11,7,17,.58);
      border-radius:999px;
    }
    .brand-mark::before{inset:9px 13px}
    .brand-mark::after{width:8px;height:54px;right:8px;top:-6px;transform:rotate(28deg)}
    .brand-text{display:flex;flex-direction:column;line-height:1.05}
    .brand-title{
      font-weight:900;
      font-size:17px;
      letter-spacing:-.02em;
      color:#fff;
    }
    .brand-sub{
      margin-top:5px;
      font-size:10px;
      letter-spacing:.18em;
      text-transform:uppercase;
      color:#F2A7C8;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      padding:6px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:999px;
      background:rgba(255,255,255,.035);
    }
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      height:40px;
      padding:0 16px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      transition:color var(--ease), background var(--ease), box-shadow var(--ease);
    }
    .nav-link:hover{
      color:#fff;
      background:rgba(255,61,174,.08);
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(255,61,174,.22),rgba(192,101,255,.16));
      box-shadow:inset 0 0 0 1px rgba(255,61,174,.32),0 0 24px rgba(255,61,174,.14);
    }
    .nav-link.active::after{
      content:"";
      position:absolute;
      left:18px;right:18px;bottom:4px;height:2px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary-2),var(--accent));
      box-shadow:0 0 12px var(--primary-2);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .nav-search{
      width:150px;
      height:42px;
      border:1px solid rgba(255,255,255,.1);
      border-radius:999px;
      background:rgba(255,255,255,.05);
      color:#fff;
      padding:0 15px;
      font-size:13px;
      transition:border var(--ease), box-shadow var(--ease), background var(--ease);
    }
    .nav-search::placeholder{color:#8F7E8C}
    .nav-search:focus{
      border-color:var(--primary-2);
      background:rgba(255,61,174,.06);
      box-shadow:0 0 0 4px rgba(255,61,174,.12);
      outline:none;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:0 18px;
      border:1px solid transparent;
      border-radius:999px;
      font-weight:800;
      font-size:14px;
      transition:transform var(--ease), box-shadow var(--ease), border var(--ease), background var(--ease), color var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-2) 55%,var(--accent));
      box-shadow:0 12px 30px rgba(255,61,174,.26);
    }
    .btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 45px rgba(255,61,174,.38);
    }
    .btn-secondary{
      color:#FFD8EC;
      border-color:rgba(255,61,174,.34);
      background:rgba(255,61,174,.08);
    }
    .btn-secondary:hover{
      color:#fff;
      border-color:rgba(255,61,174,.72);
      background:rgba(255,61,174,.14);
      box-shadow:var(--glow);
      transform:translateY(-2px);
    }
    .btn-ghost{
      color:#E8DDE6;
      border-color:rgba(255,255,255,.11);
      background:rgba(255,255,255,.04);
    }
    .btn-ghost:hover{
      border-color:rgba(192,101,255,.55);
      color:#fff;
      box-shadow:0 0 22px rgba(192,101,255,.18);
    }
    .mobile-toggle{
      display:none;
      width:46px;height:46px;
      border:1px solid rgba(255,61,174,.36);
      border-radius:16px;
      background:rgba(255,61,174,.08);
      position:relative;
    }
    .toggle-bars,.toggle-bars::before,.toggle-bars::after{
      position:absolute;
      left:12px;
      width:20px;height:2px;
      border-radius:999px;
      background:#FFD8EC;
      transition:transform var(--ease), top var(--ease), opacity var(--ease);
    }
    .toggle-bars{top:22px}
    .toggle-bars::before{content:"";top:-7px;left:0}
    .toggle-bars::after{content:"";top:7px;left:0}
    .mobile-toggle[aria-expanded="true"] .toggle-bars{background:transparent}
    .mobile-toggle[aria-expanded="true"] .toggle-bars::before{top:0;transform:rotate(45deg)}
    .mobile-toggle[aria-expanded="true"] .toggle-bars::after{top:0;transform:rotate(-45deg)}
    .mobile-panel{
      display:none;
      width:min(calc(100% - 40px), var(--container));
      margin:0 auto 16px;
      padding:10px;
      border:1px solid rgba(255,61,174,.22);
      border-radius:22px;
      background:rgba(23,16,33,.96);
      box-shadow:var(--shadow);
    }
    .mobile-panel a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 12px;
      border-radius:16px;
      color:var(--muted);
      font-weight:750;
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .mobile-panel a:last-child{border-bottom:0}
    .mobile-panel a span{
      font-size:12px;
      color:#F2A7C8;
    }
    .mobile-panel a.active{
      color:#fff;
      background:rgba(255,61,174,.12);
      box-shadow:inset 0 0 0 1px rgba(255,61,174,.24);
    }
    .mobile-panel.open{display:block}

    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:10px;
      color:var(--muted);
      font-size:13px;
      margin-bottom:24px;
    }
    .breadcrumb a{color:#F2A7C8}
    .breadcrumb span{color:#7E7080}

    .category-hero{
      position:relative;
      min-height:660px;
      display:flex;
      align-items:center;
      padding:72px 0 58px;
      overflow:hidden;
    }
    .category-hero::before{
      content:"";
      position:absolute;
      inset:42px 4vw 0;
      border-radius:38px;
      background:
        linear-gradient(120deg, rgba(255,61,174,.12), transparent 38%),
        radial-gradient(circle at 78% 22%, rgba(192,101,255,.26), transparent 34%),
        linear-gradient(135deg, rgba(23,16,33,.88), rgba(11,7,17,.42));
      border:1px solid rgba(255,61,174,.18);
      box-shadow:var(--shadow);
      z-index:-1;
    }
    .category-hero::after{
      content:"";
      position:absolute;
      right:-80px;top:110px;
      width:430px;height:430px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,61,174,.22), transparent 68%);
      filter:blur(8px);
      z-index:-1;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(360px,.95fr);
      align-items:center;
      gap:44px;
    }
    .hero-title{
      margin:0;
      font-size:clamp(38px,6vw,68px);
      line-height:1.08;
      letter-spacing:-.06em;
      font-weight:900;
    }
    .hero-title .neon-word{
      display:inline-flex;
      margin-top:8px;
      padding:4px 14px 8px;
      border-radius:18px;
      color:#fff;
      background:linear-gradient(135deg,rgba(255,61,174,.18),rgba(192,101,255,.12));
      border:1px solid rgba(255,61,174,.35);
      text-shadow:0 0 20px rgba(255,61,174,.55);
      letter-spacing:-.02em;
    }
    .hero-copy{
      margin:22px 0 0;
      color:var(--soft);
      font-size:17px;
      max-width:620px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:14px;
      margin-top:30px;
    }
    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:30px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:8px 12px;
      font-size:13px;
      color:#FFD8EC;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.1);
    }
    .badge i{
      width:8px;height:8px;border-radius:50%;
      background:var(--primary-2);
      box-shadow:0 0 12px var(--primary-2);
    }

    .channel-board{
      border-radius:32px;
      padding:18px;
      background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
    }
    .poster-card{
      position:relative;
      min-height:430px;
      border-radius:26px;
      overflow:hidden;
      background:
        linear-gradient(160deg, rgba(255,61,174,.35), transparent 34%),
        radial-gradient(circle at 74% 18%, rgba(242,167,200,.3), transparent 26%),
        linear-gradient(145deg,#2A1734,#130B1D 58%,#0B0711);
      border:1px solid rgba(255,61,174,.28);
    }
    .poster-card::before{
      content:"";
      position:absolute;
      inset:16px;
      border:1px solid rgba(255,255,255,.1);
      border-radius:22px;
      background:
        linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px) 0 0/24px 24px,
        radial-gradient(ellipse at 55% 34%, rgba(255,243,248,.14), transparent 22%);
      mask-image:linear-gradient(to bottom,#000,rgba(0,0,0,.22));
    }
    .poster-card::after{
      content:"";
      position:absolute;
      width:190px;height:300px;
      right:54px;bottom:52px;
      border-radius:50% 50% 38% 38%;
      background:linear-gradient(180deg,rgba(255,243,248,.15),rgba(255,61,174,.08));
      filter:blur(.2px);
      box-shadow:0 0 55px rgba(255,61,174,.15);
    }
    .poster-info{
      position:absolute;
      left:24px;right:24px;bottom:24px;
      z-index:2;
      padding:18px;
      border-radius:22px;
      background:rgba(11,7,17,.76);
      border:1px solid rgba(255,255,255,.12);
      backdrop-filter:blur(12px);
    }
    .mini-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      color:var(--muted);
      font-size:13px;
    }
    .poster-info h2{
      margin:12px 0 8px;
      font-size:24px;
      line-height:1.25;
      font-weight:850;
    }
    .rating{
      color:#FFD8EC;
      font-weight:800;
    }

    .filter-shell{
      position:sticky;
      top:80px;
      z-index:20;
      padding:12px;
      border-radius:24px;
      border:1px solid rgba(255,61,174,.18);
      background:rgba(18,10,31,.86);
      backdrop-filter:blur(16px);
      box-shadow:0 20px 60px rgba(0,0,0,.22);
      margin-top:-24px;
    }
    .filter-row{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .filter-row::-webkit-scrollbar{display:none}
    .filter-chip{
      flex:0 0 auto;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.045);
      color:var(--muted);
      border-radius:999px;
      padding:10px 15px;
      font-size:13px;
      font-weight:780;
      transition:all var(--ease);
    }
    .filter-chip:hover,.filter-chip.active{
      color:#fff;
      border-color:rgba(255,61,174,.6);
      background:rgba(255,61,174,.14);
      box-shadow:0 0 22px rgba(255,61,174,.18);
    }

    .magazine-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 320px;
      gap:28px;
      align-items:start;
    }
    .magazine-grid{
      display:grid;
      grid-template-columns:repeat(6,minmax(0,1fr));
      gap:22px;
    }
    .content-card{
      position:relative;
      border-radius:24px;
      background:linear-gradient(180deg,rgba(32,20,40,.96),rgba(23,16,33,.96));
      border:1px solid rgba(255,255,255,.1);
      overflow:hidden;
      transition:transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }
    .content-card:hover{
      transform:translateY(-4px);
      border-color:rgba(255,61,174,.62);
      box-shadow:0 20px 52px rgba(0,0,0,.34),0 0 32px rgba(255,61,174,.14);
    }
    .content-card.featured{
      grid-column:span 3;
      grid-row:span 2;
      min-height:610px;
    }
    .content-card.small{grid-column:span 3}
    .cover{
      position:relative;
      height:255px;
      overflow:hidden;
      background:linear-gradient(145deg,#35203E,#191023);
    }
    .featured .cover{height:390px}
    .cover::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 30% 18%, rgba(255,61,174,.26), transparent 28%),
        radial-gradient(circle at 70% 48%, rgba(192,101,255,.18), transparent 33%),
        linear-gradient(160deg, rgba(255,255,255,.08), transparent 55%);
      transition:transform var(--ease);
    }
    .cover::after{
      content:"";
      position:absolute;
      left:18%;right:18%;bottom:-34px;height:78%;
      border-radius:46% 46% 18px 18px;
      background:linear-gradient(180deg,rgba(255,243,248,.1),rgba(255,61,174,.055));
      box-shadow:0 0 42px rgba(255,61,174,.12);
    }
    .content-card:hover .cover::before{transform:scale(1.04)}
    .corner-label{
      position:absolute;
      top:14px;left:14px;
      z-index:2;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:850;
      color:#fff;
      background:rgba(11,7,17,.72);
      border:1px solid rgba(255,61,174,.34);
      backdrop-filter:blur(10px);
    }
    .card-body{padding:20px}
    .card-body h3{
      margin:0;
      font-size:22px;
      line-height:1.28;
      font-weight:850;
      letter-spacing:-.02em;
    }
    .small .card-body h3{font-size:19px}
    .card-body p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }
    .tag-list{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:14px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      height:28px;
      padding:0 10px;
      border-radius:999px;
      background:rgba(255,61,174,.09);
      border:1px solid rgba(255,61,174,.17);
      color:#F2A7C8;
      font-size:12px;
      font-weight:750;
    }
    .card-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:18px;
      color:#D9C8D4;
      font-size:13px;
    }
    .card-meta strong{color:#fff}
    .card-link{
      color:#fff;
      font-weight:850;
      font-size:13px;
      padding:8px 12px;
      border-radius:999px;
      background:linear-gradient(135deg,rgba(255,61,174,.22),rgba(192,101,255,.14));
      border:1px solid rgba(255,61,174,.26);
      transition:all var(--ease);
    }
    .card-link:hover{
      box-shadow:0 0 22px rgba(255,61,174,.22);
      border-color:rgba(255,61,174,.65);
    }

    .sidebar{
      position:sticky;
      top:160px;
      display:grid;
      gap:18px;
    }
    .side-card{
      border-radius:24px;
      padding:20px;
      background:linear-gradient(180deg,rgba(32,20,40,.92),rgba(18,10,31,.92));
      border:1px solid rgba(255,255,255,.1);
      box-shadow:0 18px 50px rgba(0,0,0,.24);
    }
    .side-card h3{
      margin:0 0 14px;
      font-size:18px;
      font-weight:850;
    }
    .hot-tags{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .hot-tags a{
      display:inline-flex;
      padding:8px 10px;
      border-radius:999px;
      color:#E8DDE6;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.08);
      font-size:12px;
      transition:all var(--ease);
    }
    .hot-tags a:hover{
      color:#fff;
      border-color:rgba(255,61,174,.48);
      background:rgba(255,61,174,.11);
    }
    .protect-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .protect-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
      font-size:14px;
    }
    .protect-list i{
      flex:0 0 auto;
      width:18px;height:18px;
      margin-top:3px;
      border-radius:6px;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      box-shadow:0 0 14px rgba(255,61,174,.24);
    }
    .update-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 0;
      border-bottom:1px solid rgba(255,255,255,.07);
      color:var(--muted);
      font-size:13px;
    }
    .update-item:last-child{border-bottom:0}
    .update-item strong{color:#fff;font-size:14px}

    .notice-band{
      position:relative;
      overflow:hidden;
      border-radius:30px;
      padding:26px;
      background:
        linear-gradient(90deg, rgba(255,61,174,.16), rgba(192,101,255,.08)),
        rgba(23,16,33,.92);
      border:1px solid rgba(255,61,174,.26);
      box-shadow:0 22px 70px rgba(0,0,0,.25);
    }
    .notice-band::before{
      content:"";
      position:absolute;
      left:0;top:0;bottom:0;width:4px;
      background:linear-gradient(var(--primary-2),var(--accent));
      box-shadow:0 0 28px var(--primary-2);
    }
    .notice-band h2{
      margin:0;
      font-size:24px;
      font-weight:850;
    }
    .notice-band p{
      margin:8px 0 0;
      color:var(--soft);
      max-width:820px;
    }

    .steps-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:18px;
      margin-top:30px;
    }
    .step-card{
      padding:22px;
      min-height:190px;
      border-radius:24px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.09);
      transition:all var(--ease);
    }
    .step-card:hover{
      transform:translateY(-4px);
      border-color:rgba(255,61,174,.45);
      background:rgba(255,61,174,.07);
    }
    .step-no{
      display:inline-grid;
      place-items:center;
      width:42px;height:42px;
      border-radius:15px;
      color:#fff;
      font-weight:900;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      box-shadow:0 0 24px rgba(255,61,174,.24);
    }
    .step-card h3{
      margin:16px 0 8px;
      font-size:18px;
      font-weight:850;
    }
    .step-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .pager{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:10px;
      margin-top:34px;
    }
    .pager a,.pager button{
      min-width:42px;height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.045);
      color:var(--muted);
      font-weight:850;
      transition:all var(--ease);
    }
    .pager a.active,.pager a:hover,.pager button:hover{
      color:#fff;
      border-color:rgba(255,61,174,.55);
      background:rgba(255,61,174,.13);
      box-shadow:0 0 22px rgba(255,61,174,.16);
    }
    .pager button{
      padding:0 16px;
      width:auto;
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:32px;
      align-items:start;
    }
    .faq-list{
      display:grid;
      gap:14px;
    }
    .faq-item{
      border-radius:20px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.045);
      overflow:hidden;
      transition:border-color var(--ease), background var(--ease);
    }
    .faq-item.open{
      border-color:rgba(255,61,174,.42);
      background:rgba(255,61,174,.07);
    }
    .faq-question{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px 20px;
      border:0;
      background:transparent;
      color:#fff;
      text-align:left;
      font-weight:850;
      font-size:16px;
    }
    .faq-icon{
      flex:0 0 auto;
      width:26px;height:26px;
      display:grid;
      place-items:center;
      border-radius:9px;
      color:#fff;
      background:rgba(255,61,174,.16);
      border:1px solid rgba(255,61,174,.26);
      transition:transform var(--ease);
    }
    .faq-item.open .faq-icon{transform:rotate(45deg)}
    .faq-answer{
      display:none;
      padding:0 20px 18px;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .faq-item.open .faq-answer{display:block}

    .cta-banner{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      padding:40px;
      background:
        linear-gradient(135deg,rgba(255,61,174,.22),rgba(192,101,255,.1) 45%,rgba(23,16,33,.95)),
        linear-gradient(180deg,#201428,#120A1F);
      border:1px solid rgba(255,61,174,.32);
      box-shadow:var(--shadow),0 0 50px rgba(255,61,174,.13);
    }
    .cta-banner::before{
      content:"";
      position:absolute;
      inset:0;
      background:repeating-linear-gradient(115deg, transparent 0 22px, rgba(255,255,255,.045) 22px 23px);
      opacity:.42;
      pointer-events:none;
    }
    .cta-inner{
      position:relative;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .cta-banner h2{
      margin:0;
      font-size:clamp(28px,4vw,44px);
      line-height:1.16;
      font-weight:900;
      letter-spacing:-.04em;
    }
    .cta-banner p{
      margin:12px 0 0;
      color:var(--soft);
      max-width:720px;
    }

    .site-footer{
      padding:70px 0 28px;
      background:#07040B;
      border-top:1px solid rgba(255,61,174,.2);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .7fr 1fr;
      gap:42px;
      align-items:start;
    }
    .footer-text{
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .footer-title{
      margin:0 0 16px;
      color:#fff;
      font-weight:850;
      font-size:16px;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-link{
      color:var(--muted);
      font-size:14px;
      transition:color var(--ease), transform var(--ease);
    }
    .footer-link:hover{
      color:#fff;
      transform:translateX(3px);
    }
    .footer-bottom{
      margin-top:44px;
      padding-top:20px;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
    }
    .copyright{
      margin:0;
      color:#897A88;
      font-size:13px;
    }

    @media (max-width:1080px){
      .desktop-nav,.nav-actions{display:none}
      .mobile-toggle{display:inline-flex}
      .hero-grid,.magazine-layout,.faq-wrap,.cta-inner{grid-template-columns:1fr}
      .category-hero{min-height:auto;padding:56px 0}
      .filter-shell{top:78px}
      .sidebar{position:relative;top:auto;grid-template-columns:repeat(3,minmax(0,1fr))}
      .steps-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:760px){
      .site-container,.nav-wrap,.age-strip .inner,.mobile-panel{width:min(calc(100% - 28px), var(--container))}
      .age-strip .inner{align-items:flex-start;flex-direction:column;padding:9px 0;gap:4px}
      .nav-wrap{height:68px}
      .brand-title{font-size:15px}
      .brand-sub{font-size:9px}
      .brand-mark{width:38px;height:38px;border-radius:14px}
      .section{padding:66px 0}
      .section-tight{padding:48px 0}
      .category-hero::before{inset:18px 8px 0;border-radius:28px}
      .hero-actions .btn{width:100%}
      .channel-board{padding:12px;border-radius:24px}
      .poster-card{min-height:360px;border-radius:20px}
      .poster-info{left:16px;right:16px;bottom:16px;padding:15px}
      .filter-shell{margin-top:0;border-radius:20px}
      .magazine-grid{grid-template-columns:1fr}
      .content-card.featured,.content-card.small{grid-column:auto;min-height:auto}
      .featured .cover,.cover{height:285px}
      .sidebar{grid-template-columns:1fr}
      .steps-grid{grid-template-columns:1fr}
      .notice-band,.cta-banner{border-radius:24px;padding:24px}
      .pager{flex-wrap:wrap}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{display:grid}
    }
    @media (max-width:520px){
      .hero-title{font-size:36px}
      .hero-copy,.section-desc{font-size:15px}
      .card-body h3{font-size:20px}
      .small .card-body h3{font-size:18px}
      .faq-question{font-size:15px;padding:16px}
      .faq-answer{padding:0 16px 16px}
    }
