/* roulang page: index */
:root {
      --bg: #08060d;
      --bg-soft: #120d18;
      --panel: rgba(24, 18, 34, .78);
      --panel-strong: rgba(35, 25, 48, .92);
      --text: #fff7fb;
      --muted: #b9aabd;
      --weak: #7d7185;
      --line: rgba(255, 255, 255, .12);
      --line-hot: rgba(255, 55, 141, .48);
      --pink: #ff2d86;
      --purple: #9b5cff;
      --orange: #ff8a4a;
      --cyan: #32f5e7;
      --green: #69f0a8;
      --radius: 28px;
      --radius-sm: 18px;
      --shadow: 0 24px 80px rgba(0, 0, 0, .45);
      --glow: 0 0 38px rgba(255, 45, 134, .28);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--text);
      line-height: 1.7;
      background:
        radial-gradient(circle at 14% 8%, rgba(255, 45, 134, .22), transparent 28%),
        radial-gradient(circle at 88% 18%, rgba(155, 92, 255, .22), transparent 26%),
        radial-gradient(circle at 64% 82%, rgba(255, 138, 74, .12), transparent 26%),
        linear-gradient(135deg, #08060d 0%, #100817 46%, #09070d 100%);
      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: 34px 34px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.65), transparent 85%);
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: .28;
      background-image: radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px);
      background-size: 4px 4px;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button, input, select, textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    textarea:focus-visible {
      outline: 3px solid rgba(50, 245, 231, .78);
      outline-offset: 3px;
    }

    .site-container {
      width: min(1180px, calc(100% - 40px));
      margin-inline: auto;
    }

    .top-strip {
      min-height: 36px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(8, 6, 13, .92);
      color: var(--muted);
      font-size: 12px;
    }

    .main-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(255,255,255,.1);
      background: rgba(11, 8, 16, .76);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 42px rgba(0,0,0,.16);
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background:
        linear-gradient(135deg, rgba(255,45,134,1), rgba(155,92,255,1) 58%, rgba(50,245,231,.78));
      box-shadow: var(--glow);
      position: relative;
    }

    .brand-icon::after {
      content: "18+";
      position: absolute;
      inset: 8px 5px;
      display: grid;
      place-items: center;
      border-radius: 9px;
      background: rgba(8,6,13,.72);
      color: #fff;
      font-size: 10px;
      font-weight: 900;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      min-height: 44px;
      padding: 0 12px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      transition: .22s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: #fff;
      background: rgba(255,255,255,.08);
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 7px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--pink), var(--purple));
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 800;
      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(--pink), var(--purple));
      box-shadow: 0 16px 42px rgba(255,45,134,.28);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 55px rgba(255,45,134,.36);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,.16);
      color: #fff;
      background: rgba(255,255,255,.06);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(50,245,231,.56);
      box-shadow: 0 12px 34px rgba(50,245,231,.12);
    }

    .mobile-panel {
      display: none;
      border-top: 1px solid rgba(255,255,255,.1);
      background: rgba(14, 10, 20, .96);
      backdrop-filter: blur(18px);
    }

    .mobile-panel.open {
      display: block;
    }

    .section {
      padding: 88px 0;
      position: relative;
    }

    .section-tight {
      padding: 54px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 999px;
      background: rgba(255,255,255,.06);
      color: #ffd9ec;
      font-size: 13px;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--cyan);
      box-shadow: 0 0 16px var(--cyan);
    }

    .hero {
      padding: 72px 0 60px;
    }

    .hero-poster {
      position: relative;
      min-height: 620px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 34px;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,45,134,.23), transparent 42%),
        radial-gradient(circle at 72% 18%, rgba(155,92,255,.34), transparent 28%),
        linear-gradient(160deg, rgba(24,18,34,.92), rgba(12,8,18,.96));
      box-shadow: var(--shadow);
    }

    .hero-poster::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, rgba(255,255,255,.1) 0 1px, transparent 1px 14px),
        radial-gradient(circle at 82% 76%, rgba(255,138,74,.16), transparent 26%);
      opacity: .5;
    }

    .burst {
      position: absolute;
      top: 28px;
      right: 28px;
      width: 118px;
      height: 118px;
      display: grid;
      place-items: center;
      text-align: center;
      border-radius: 50%;
      color: #fff;
      font-weight: 900;
      line-height: 1.15;
      background: conic-gradient(from 15deg, var(--orange), var(--pink), var(--purple), var(--orange));
      box-shadow: 0 18px 54px rgba(255,45,134,.38);
      transform: rotate(8deg);
    }

    .burst span {
      display: block;
      width: 86px;
      font-size: 16px;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      min-height: 620px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      align-items: end;
      gap: 34px;
      padding: 46px;
    }

    .hero-copy {
      padding-bottom: 10px;
    }

    h1 {
      margin: 18px 0 20px;
      max-width: 760px;
      font-size: clamp(34px, 6vw, 64px);
      line-height: 1.03;
      font-weight: 950;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 660px;
      color: #eaddea;
      font-size: 17px;
      line-height: 1.8;
    }

    .hero-data {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 28px;
    }

    .data-pill {
      min-height: 78px;
      padding: 14px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.065);
    }

    .data-pill strong {
      display: block;
      font-size: 22px;
      line-height: 1.1;
    }

    .data-pill span {
      color: var(--muted);
      font-size: 12px;
    }

    .entry-matrix {
      align-self: stretch;
      display: grid;
      align-content: end;
      gap: 14px;
    }

    .matrix-card,
    .glass-card {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
      box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 18px 48px rgba(0,0,0,.24);
      backdrop-filter: blur(14px);
    }

    .matrix-card {
      padding: 18px;
    }

    .level-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 14px;
    }

    .level-tile {
      min-height: 96px;
      padding: 13px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(11,8,16,.58);
      transition: .22s ease;
    }

    .level-tile:hover {
      transform: translateY(-2px);
      border-color: rgba(255,45,134,.48);
      box-shadow: var(--glow);
    }

    .param-list {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }

    .param-item {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(0,0,0,.22);
      color: var(--muted);
      font-size: 13px;
    }

    .param-item b {
      color: #fff;
    }

    .age-note {
      padding: 16px;
      border-radius: 22px;
      border: 1px solid rgba(50,245,231,.28);
      background: rgba(50,245,231,.075);
      color: #dffdfb;
      font-size: 14px;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-head h2 {
      margin: 10px 0 0;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.12;
      font-weight: 950;
    }

    .section-head p {
      max-width: 620px;
      color: var(--muted);
      margin: 0;
    }

    .compare-wrap {
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 30px;
      overflow: hidden;
      background: rgba(18,13,24,.76);
      box-shadow: var(--shadow);
    }

    .compare-grid {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, 1fr);
    }

    .compare-cell {
      min-height: 74px;
      padding: 18px;
      border-right: 1px solid rgba(255,255,255,.09);
      border-bottom: 1px solid rgba(255,255,255,.09);
      color: var(--muted);
      display: flex;
      align-items: center;
    }

    .compare-cell:last-child {
      border-right: 0;
    }

    .compare-head {
      min-height: 118px;
      align-items: flex-start;
      flex-direction: column;
      justify-content: center;
      color: #fff;
      background: rgba(255,255,255,.045);
    }

    .compare-head.featured {
      position: relative;
      background: linear-gradient(180deg, rgba(255,45,134,.23), rgba(155,92,255,.13));
      border-inline: 1px solid rgba(255,45,134,.45);
    }

    .recommend {
      display: inline-flex;
      padding: 4px 9px;
      border-radius: 999px;
      background: rgba(255,45,134,.18);
      color: #ffd3e6;
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .check {
      color: var(--green);
      font-weight: 900;
    }

    .mobile-plans {
      display: none;
      gap: 14px;
    }

    .plan-card {
      padding: 22px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 24px;
      background: rgba(255,255,255,.055);
    }

    .countdown-band {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 28px;
      padding: 22px;
      background:
        linear-gradient(90deg, rgba(255,45,134,.18), rgba(155,92,255,.12), rgba(50,245,231,.08)),
        rgba(255,255,255,.045);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
    }

    .time-boxes {
      display: flex;
      gap: 10px;
    }

    .time-box {
      width: 72px;
      height: 66px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(0,0,0,.23);
      display: grid;
      place-items: center;
      text-align: center;
    }

    .time-box b {
      display: block;
      font-size: 22px;
      line-height: 1;
    }

    .time-box span {
      display: block;
      color: var(--muted);
      font-size: 12px;
    }

    .level-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 18px;
    }

    .level-card {
      min-height: 420px;
      position: relative;
      overflow: hidden;
      padding: 24px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 30px;
      background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
      transition: .22s ease;
    }

    .level-card:hover,
    .preview-card:hover,
    .news-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,45,134,.42);
      box-shadow: var(--glow);
    }

    .level-card.featured {
      background:
        radial-gradient(circle at 82% 8%, rgba(255,45,134,.28), transparent 34%),
        linear-gradient(180deg, rgba(255,255,255,.1), rgba(255,255,255,.05));
    }

    .score-ring {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      margin: 24px 0;
      background:
        radial-gradient(circle at center, #15101d 0 56%, transparent 57%),
        conic-gradient(var(--pink) 0 82%, rgba(255,255,255,.12) 82% 100%);
    }

    .score-ring b {
      font-size: 24px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 16px 0;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 5px 10px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.06);
      color: #eaddea;
      font-size: 12px;
      font-weight: 700;
    }

    .preview-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .preview-card {
      min-height: 360px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 28px;
      overflow: hidden;
      background: rgba(255,255,255,.055);
      transition: .22s ease;
    }

    .cover {
      aspect-ratio: 4 / 5;
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(255,45,134,.38), transparent 50%),
        radial-gradient(circle at 80% 22%, rgba(50,245,231,.28), transparent 27%),
        linear-gradient(160deg, #20142c, #0e0a14);
      position: relative;
    }

    .cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image: linear-gradient(120deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
      opacity: .45;
    }

    .cover > * {
      position: relative;
      z-index: 1;
    }

    .cover-badge {
      width: fit-content;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(8,6,13,.72);
      border: 1px solid rgba(255,255,255,.16);
      font-size: 12px;
      font-weight: 900;
    }

    .preview-body {
      padding: 16px;
    }

    .preview-body h3,
    .news-card h3,
    .level-card h3 {
      margin: 0 0 8px;
      font-size: 20px;
      font-weight: 900;
      line-height: 1.3;
    }

    .preview-body p,
    .news-card p,
    .level-card p {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 18px;
    }

    .news-list {
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 28px;
      background: rgba(255,255,255,.05);
      overflow: hidden;
    }

    .news-link {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 18px 20px;
      border-bottom: 1px solid rgba(255,255,255,.09);
      transition: .2s ease;
    }

    .news-link:last-child {
      border-bottom: 0;
    }

    .news-link:hover {
      background: rgba(255,255,255,.07);
      color: #fff;
    }

    .news-index {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: 12px;
      background: rgba(255,45,134,.16);
      color: #ffd7e9;
      font-weight: 900;
    }

    .news-card {
      padding: 24px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 28px;
      background:
        radial-gradient(circle at 80% 18%, rgba(155,92,255,.22), transparent 34%),
        rgba(255,255,255,.055);
      transition: .22s ease;
    }

    .trust-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .trust-item {
      padding: 20px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.052);
    }

    .trust-item b {
      display: block;
      font-size: 28px;
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 24px;
      background: rgba(255,255,255,.052);
      overflow: hidden;
      transition: .22s ease;
    }

    .faq-item.open {
      border-color: rgba(155,92,255,.5);
      background: rgba(155,92,255,.09);
    }

    .faq-question {
      width: 100%;
      min-height: 64px;
      padding: 18px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      color: #fff;
      background: transparent;
      text-align: left;
      font-weight: 900;
    }

    .faq-icon {
      flex: 0 0 auto;
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      transition: .22s ease;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
      background: rgba(255,45,134,.24);
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .cta-panel {
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 34px;
      padding: 34px;
      background:
        radial-gradient(circle at 82% 20%, rgba(255,45,134,.26), transparent 32%),
        linear-gradient(135deg, rgba(155,92,255,.2), rgba(255,138,74,.11)),
        rgba(255,255,255,.055);
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 24px;
      align-items: center;
    }

    .choice-box {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 24px;
      padding: 18px;
      background: rgba(0,0,0,.2);
    }

    .footer {
      padding: 52px 0 30px;
      border-top: 1px solid rgba(255,255,255,.1);
      background: rgba(5,4,8,.62);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr;
      gap: 28px;
    }

    .footer a {
      color: var(--muted);
      transition: .2s ease;
    }

    .footer a:hover {
      color: #fff;
    }

    .footer-note {
      margin-top: 34px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: var(--weak);
      font-size: 13px;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    @media (max-width: 1024px) {
      .desktop-nav,
      .desktop-actions {
        display: none;
      }

      .mobile-menu-btn {
        display: inline-flex;
      }

      .hero-content,
      .cta-panel,
      .news-layout {
        grid-template-columns: 1fr;
      }

      .hero-content {
        align-items: start;
        min-height: auto;
      }

      .hero-poster {
        min-height: auto;
      }

      .burst {
        width: 96px;
        height: 96px;
        right: 18px;
        top: 18px;
      }

      .burst span {
        width: 70px;
        font-size: 13px;
      }

      .compare-grid {
        display: none;
      }

      .mobile-plans {
        display: grid;
        padding: 14px;
      }

      .level-grid,
      .trust-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .preview-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 640px) {
      .site-container {
        width: min(100% - 28px, 1180px);
      }

      .top-strip .site-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        padding: 7px 0;
      }

      .hero {
        padding-top: 34px;
      }

      .hero-content {
        padding: 22px;
        gap: 18px;
      }

      .hero-data,
      .level-row,
      .level-grid,
      .trust-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .preview-grid {
        gap: 12px;
      }

      .preview-card {
        border-radius: 22px;
      }

      .preview-body h3 {
        font-size: 16px;
      }

      .countdown-band {
        grid-template-columns: 1fr;
      }

      .time-boxes {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
      }

      .time-box {
        width: auto;
      }

      .section {
        padding: 64px 0;
      }

      .news-link {
        grid-template-columns: auto 1fr;
      }

      .news-link .tag {
        grid-column: 2;
        width: fit-content;
      }

      .cta-panel {
        padding: 24px;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #08060d;
      --bg-2: #120b18;
      --panel: rgba(24, 18, 32, .82);
      --panel-2: rgba(33, 24, 43, .78);
      --text: #fff7fb;
      --muted: #b9a9c4;
      --soft: #81718f;
      --line: rgba(255, 255, 255, .12);
      --line-strong: rgba(255, 93, 177, .35);
      --hot: #ff3d9a;
      --violet: #a855f7;
      --orange: #ff7a45;
      --cyan: #20e3d2;
      --radius: 28px;
      --radius-sm: 16px;
      --shadow: 0 24px 80px rgba(0, 0, 0, .45);
      --glow: 0 0 28px rgba(255, 61, 154, .28);
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.7;
      background:
        radial-gradient(circle at 18% 12%, rgba(255, 61, 154, .22), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(168, 85, 247, .20), transparent 32%),
        radial-gradient(circle at 65% 82%, rgba(255, 122, 69, .14), transparent 28%),
        linear-gradient(135deg, #08060d 0%, #130914 42%, #09070f 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background:
        linear-gradient(115deg, rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(25deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 54px 54px, 38px 38px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), rgba(0,0,0,.22));
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      opacity: .12;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(/%23n)' opacity='.55'/%3E%3C/svg%3E");
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, border-color .22s ease, transform .22s ease, background .22s ease, box-shadow .22s ease;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button,
    a {
      -webkit-tap-highlight-color: transparent;
    }

    :focus-visible {
      outline: 3px solid rgba(32, 227, 210, .68);
      outline-offset: 3px;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin-inline: auto;
    }

    .main-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(8, 6, 13, .72);
      backdrop-filter: blur(22px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, .26);
    }

    .top-strip {
      min-height: 36px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      color: var(--muted);
      font-size: 12px;
      background: rgba(0, 0, 0, .28);
    }

    .top-strip a:hover {
      color: var(--text);
    }

    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-height: 44px;
      font-weight: 900;
      letter-spacing: 0;
    }

    .brand-icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      position: relative;
      background:
        radial-gradient(circle at 70% 28%, rgba(255,255,255,.75), transparent 15%),
        linear-gradient(135deg, var(--hot), var(--violet) 58%, var(--cyan));
      box-shadow: 0 0 30px rgba(255, 61, 154, .36);
    }

    .brand-icon::after {
      content: "18+";
      position: absolute;
      inset: auto 5px 5px auto;
      font-size: 9px;
      font-weight: 900;
      color: #0b0710;
    }

    .desktop-nav {
      padding: 6px;
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 999px;
      background: rgba(255,255,255,.04);
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 0 16px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--text);
      background: rgba(255, 61, 154, .14);
      box-shadow: inset 0 0 0 1px rgba(255, 61, 154, .22);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 900;
      font-size: 14px;
      white-space: nowrap;
      cursor: pointer;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: white;
      background: linear-gradient(135deg, var(--hot), var(--violet));
      box-shadow: var(--glow);
    }

    .btn-primary:hover {
      box-shadow: 0 14px 40px rgba(255, 61, 154, .36);
    }

    .btn-secondary {
      color: var(--text);
      border-color: rgba(255,255,255,.14);
      background: rgba(255,255,255,.055);
    }

    .btn-secondary:hover {
      border-color: rgba(32, 227, 210, .48);
      background: rgba(32, 227, 210, .08);
      box-shadow: 0 12px 34px rgba(32, 227, 210, .12);
    }

    .mobile-panel {
      display: none;
      border-top: 1px solid rgba(255,255,255,.08);
      background: rgba(11, 8, 18, .94);
    }

    .mobile-panel.open {
      display: block;
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 86px 0;
      position: relative;
    }

    .section-tight {
      padding: 56px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 0 13px;
      border-radius: 999px;
      color: #ffddec;
      font-size: 13px;
      font-weight: 900;
      background: rgba(255, 61, 154, .12);
      border: 1px solid rgba(255, 61, 154, .28);
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--cyan);
      box-shadow: 0 0 14px var(--cyan);
    }

    .hero-title {
      margin-top: 22px;
      max-width: 760px;
      font-size: clamp(34px, 6vw, 62px);
      line-height: 1.06;
      font-weight: 950;
      letter-spacing: 0;
    }

    .hero-copy {
      max-width: 640px;
      margin-top: 22px;
      color: var(--muted);
      font-size: 17px;
    }

    .section-title {
      max-width: 760px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.14;
      font-weight: 950;
      letter-spacing: 0;
    }

    .section-copy {
      max-width: 700px;
      margin-top: 14px;
      color: var(--muted);
      font-size: 16px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(340px, .78fr);
      gap: 34px;
      align-items: center;
      min-height: 660px;
      padding: 56px 0 50px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .notice-line {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 34px;
      padding: 0 12px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.045);
    }

    .pill.hot {
      color: #ffd7e9;
      border-color: rgba(255,61,154,.32);
      background: rgba(255,61,154,.12);
    }

    .panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .panel::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(255,61,154,.22), transparent 36%, rgba(32,227,210,.12));
      opacity: .62;
    }

    .panel > * {
      position: relative;
      z-index: 1;
    }

    .filter-console {
      padding: 24px;
    }

    .console-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .score-ring {
      width: 84px;
      height: 84px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      font-weight: 950;
      color: #fff;
      background:
        radial-gradient(circle at center, #1a1021 58%, transparent 59%),
        conic-gradient(var(--hot) 0 82%, rgba(255,255,255,.14) 82% 100%);
      box-shadow: 0 0 30px rgba(255,61,154,.22);
    }

    .filter-search {
      display: flex;
      gap: 10px;
      margin: 20px 0;
      padding: 10px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(0,0,0,.22);
    }

    .filter-search input {
      width: 100%;
      min-height: 46px;
      border: 0;
      outline: 0;
      color: var(--text);
      background: transparent;
    }

    .filter-search input::placeholder {
      color: var(--soft);
    }

    .metric-list {
      display: grid;
      gap: 12px;
    }

    .metric-item {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(255,255,255,.045);
    }

    .metric-item strong {
      display: block;
      font-size: 14px;
    }

    .metric-item span {
      color: var(--muted);
      font-size: 12px;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tag-btn {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 0 14px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 850;
      background: rgba(255,255,255,.045);
      cursor: pointer;
      transition: transform .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
    }

    .tag-btn:hover,
    .tag-btn.active {
      color: var(--text);
      transform: translateY(-2px);
      border-color: rgba(255,61,154,.46);
      background: rgba(255,61,154,.13);
    }

    .layout-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 22px;
      align-items: start;
    }

    .side-panel {
      position: sticky;
      top: 124px;
      padding: 20px;
    }

    .side-panel ul {
      display: grid;
      gap: 12px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .side-panel li {
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
      color: var(--muted);
    }

    .content-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .vertical-card {
      min-height: 420px;
      display: flex;
      flex-direction: column;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 26px;
      overflow: hidden;
      background: rgba(255,255,255,.045);
      box-shadow: 0 18px 46px rgba(0,0,0,.26);
      transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
    }

    .vertical-card:hover {
      transform: translateY(-5px);
      border-color: rgba(255,61,154,.48);
      box-shadow: 0 26px 70px rgba(255,61,154,.13);
    }

    .cover {
      aspect-ratio: 4 / 5;
      padding: 16px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      background:
        linear-gradient(135deg, rgba(255,61,154,.45), rgba(168,85,247,.28) 48%, rgba(32,227,210,.16)),
        repeating-linear-gradient(45deg, rgba(255,255,255,.11) 0 1px, transparent 1px 12px);
    }

    .cover.alt {
      background:
        linear-gradient(135deg, rgba(255,122,69,.44), rgba(255,61,154,.24) 45%, rgba(168,85,247,.24)),
        radial-gradient(circle at 70% 28%, rgba(255,255,255,.24), transparent 22%);
    }

    .cover.deep {
      background:
        linear-gradient(135deg, rgba(32,227,210,.24), rgba(168,85,247,.38), rgba(255,61,154,.25)),
        repeating-linear-gradient(-35deg, rgba(255,255,255,.10) 0 1px, transparent 1px 10px);
    }

    .cover-title {
      font-size: 24px;
      line-height: 1.16;
      font-weight: 950;
      text-shadow: 0 12px 28px rgba(0,0,0,.36);
    }

    .card-body {
      padding: 18px;
      display: flex;
      flex: 1;
      flex-direction: column;
      gap: 14px;
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      min-height: 28px;
      padding: 0 10px;
      border-radius: 999px;
      color: #ffe9f4;
      font-size: 12px;
      font-weight: 900;
      background: rgba(0,0,0,.32);
      border: 1px solid rgba(255,255,255,.18);
    }

    .mini-badge.cyan {
      color: #c9fffb;
      border-color: rgba(32,227,210,.34);
    }

    .card-body p {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
    }

    .card-actions {
      display: flex;
      gap: 10px;
      margin-top: auto;
    }

    .info-band {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 22px;
      align-items: stretch;
    }

    .feature-block {
      padding: 26px;
      min-height: 100%;
    }

    .check-list {
      display: grid;
      gap: 13px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 12px;
      color: var(--muted);
    }

    .check-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      margin-top: 9px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(32,227,210,.55);
    }

    .rule-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .rule-card {
      padding: 18px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.1);
      background: rgba(0,0,0,.18);
    }

    .rule-card strong {
      display: block;
      margin-bottom: 8px;
      font-size: 16px;
    }

    .rule-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .faq-wrap {
      display: grid;
      gap: 12px;
      margin-top: 28px;
    }

    .faq-item {
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 22px;
      background: rgba(255,255,255,.045);
      overflow: hidden;
    }

    .faq-q {
      width: 100%;
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 0 20px;
      border: 0;
      color: var(--text);
      text-align: left;
      font-weight: 900;
      background: transparent;
      cursor: pointer;
    }

    .faq-q span:last-child {
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--text);
      background: rgba(255,61,154,.16);
      transition: transform .22s ease, background .22s ease;
    }

    .faq-a {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.open {
      border-color: rgba(168,85,247,.42);
      background: rgba(168,85,247,.08);
    }

    .faq-item.open .faq-a {
      display: block;
    }

    .faq-item.open .faq-q span:last-child {
      transform: rotate(45deg);
      background: rgba(32,227,210,.18);
    }

    .cta-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 24px;
      align-items: center;
      padding: 34px;
      border-radius: 32px;
      border: 1px solid rgba(255,61,154,.28);
      background:
        radial-gradient(circle at 20% 20%, rgba(255,61,154,.22), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
      box-shadow: 0 28px 90px rgba(255,61,154,.16);
    }

    .price-box {
      padding: 20px;
      border-radius: 24px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(0,0,0,.22);
    }

    .footer {
      padding: 64px 0 28px;
      border-top: 1px solid rgba(255,255,255,.1);
      background: rgba(0,0,0,.28);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .7fr 1fr;
      gap: 34px;
    }

    .footer a {
      color: var(--muted);
    }

    .footer a:hover {
      color: var(--text);
    }

    .footer-note {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 36px;
      padding-top: 20px;
      border-top: 1px solid rgba(255,255,255,.1);
      color: var(--soft);
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .desktop-nav,
      .desktop-actions {
        display: none !important;
      }

      .mobile-menu-btn {
        display: inline-flex !important;
      }

      .hero-grid,
      .layout-grid,
      .info-band,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        min-height: auto;
        padding: 46px 0 38px;
      }

      .side-panel {
        position: static;
      }

      .content-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(100% - 28px, var(--container));
      }

      .top-strip .site-container {
        justify-content: center;
        text-align: center;
      }

      .top-strip .site-container > div:first-child,
      .top-strip .site-container > div:last-child {
        display: none;
      }

      .section {
        padding: 64px 0;
      }

      .filter-search {
        flex-direction: column;
      }

      .content-grid,
      .rule-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .vertical-card {
        min-height: auto;
      }

      .card-actions,
      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .cta-panel {
        padding: 24px;
      }
    }

    @media (max-width: 520px) {
      .hero-title {
        font-size: 36px;
      }

      .brand-mark span:last-child {
        font-size: 15px;
      }

      .filter-console,
      .feature-block {
        padding: 18px;
      }

      .console-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .score-ring {
        width: 72px;
        height: 72px;
      }
    }
