/* roulang page: index */
:root {
      --bg: #120711;
      --bg-2: #1E0B18;
      --bg-3: #260D12;
      --panel: #21101d;
      --panel-2: #2b101f;
      --pink: #FF2E88;
      --lime: #D7FF3F;
      --orange: #FF8A00;
      --cyan: #20E0FF;
      --text: #FFF6FB;
      --muted: #C9AFC0;
      --weak: #8E7182;
      --line: rgba(255, 46, 136, .36);
      --line-lime: rgba(215, 255, 63, .52);
      --radius: 12px;
      --radius-sm: 8px;
      --shadow-hard: 6px 6px 0 rgba(255, 46, 136, .45);
      --shadow-lime: 5px 5px 0 rgba(215, 255, 63, .55);
      --container: 1200px;
    }

    * {
      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.65;
      background:
        linear-gradient(135deg, rgba(255, 46, 136, .08) 0 10%, transparent 10% 20%, rgba(215, 255, 63, .05) 20% 30%, transparent 30% 100%),
        radial-gradient(circle at 8% 12%, rgba(255, 46, 136, .18), transparent 24%),
        linear-gradient(180deg, var(--bg), var(--bg-2) 42%, var(--bg-3));
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .18;
      background-image:
        radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px),
        repeating-linear-gradient(115deg, transparent 0 12px, rgba(255,255,255,.035) 12px 13px);
      background-size: 18px 18px, 100% 100%;
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img, svg {
      display: block;
      max-width: 100%;
    }

    button, input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    button:disabled,
    .btn[aria-disabled="true"] {
      cursor: not-allowed;
      opacity: .48;
      box-shadow: none;
      transform: none;
    }

    :focus-visible {
      outline: 3px solid var(--lime);
      outline-offset: 3px;
    }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .wide-container {
      width: min(1320px, calc(100% - 32px));
      margin: 0 auto;
    }

    .top-alert {
      position: relative;
      z-index: 60;
      background: linear-gradient(90deg, var(--lime), var(--orange) 48%, var(--pink));
      color: #120711;
      font-weight: 800;
      border-bottom: 2px solid #000;
    }

    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 5px 10px;
      border-radius: 999px;
      background: #120711;
      color: var(--lime);
      border: 1px solid rgba(0,0,0,.5);
      font-size: 13px;
      white-space: nowrap;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(30, 11, 24, .94);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid var(--pink);
      box-shadow: 0 8px 0 rgba(215, 255, 63, .12);
    }

    .nav-shell {
      height: 78px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 24px;
    }

    .nav-left,
    .nav-right {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .nav-left {
      justify-content: flex-end;
    }

    .nav-right {
      justify-content: flex-start;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      min-height: 40px;
      padding: 8px 14px;
      border: 1px solid transparent;
      border-radius: var(--radius-sm);
      color: var(--muted);
      font-weight: 800;
      transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
    }

    .nav-link:hover {
      color: var(--text);
      border-color: var(--line-lime);
      background: rgba(215, 255, 63, .08);
      transform: translateY(-1px);
    }

    .nav-link:active {
      transform: translateY(0);
    }

    .nav-link.active {
      color: #120711;
      background: var(--lime);
      border-color: var(--lime);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-width: 260px;
      padding: 11px 18px;
      color: var(--text);
      border: 2px solid var(--pink);
      background: #120711;
      box-shadow: var(--shadow-hard);
      border-radius: var(--radius);
      font-size: 21px;
      font-weight: 900;
      line-height: 1.15;
      text-align: center;
    }

    .age-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 42px;
      height: 26px;
      border-radius: 999px;
      background: var(--orange);
      color: #120711;
      font-size: 12px;
      font-weight: 900;
    }

    .mobile-actions {
      display: none;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    .icon-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: #120711;
      color: var(--text);
      transition: background .18s ease, border-color .18s ease, transform .18s ease;
    }

    .icon-btn:hover {
      background: rgba(255,46,136,.16);
      border-color: var(--lime);
      transform: translateY(-1px);
    }

    .mobile-menu {
      display: none;
      border-top: 1px solid var(--line);
      padding: 12px 0 18px;
    }

    .mobile-menu.open {
      display: grid;
      gap: 10px;
    }

    .section {
      padding: 82px 0;
      position: relative;
    }

    .section.compact {
      padding: 58px 0;
    }

    .section-title {
      font-size: clamp(26px, 4vw, 40px);
      line-height: 1.15;
      font-weight: 900;
      letter-spacing: 0;
      margin: 0;
    }

    .section-copy {
      margin: 14px 0 0;
      color: var(--muted);
      max-width: 760px;
      font-size: 17px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 10px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      background: rgba(18,7,17,.76);
      font-size: 13px;
      font-weight: 800;
    }

    .tag.hot {
      color: #120711;
      background: var(--lime);
      border-color: var(--lime);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 27px;
      padding: 4px 9px;
      border-radius: 6px;
      background: var(--pink);
      color: #fff;
      font-size: 13px;
      font-weight: 900;
      box-shadow: 3px 3px 0 rgba(0,0,0,.55);
    }

    .badge.lime {
      background: var(--lime);
      color: #120711;
    }

    .badge.orange {
      background: var(--orange);
      color: #120711;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 18px;
      border-radius: var(--radius-sm);
      border: 2px solid var(--pink);
      background: var(--pink);
      color: #fff;
      font-weight: 900;
      line-height: 1.2;
      transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
      box-shadow: 4px 4px 0 rgba(0,0,0,.55);
    }

    .btn:hover {
      background: var(--lime);
      border-color: var(--lime);
      color: #120711;
      transform: translateY(-2px);
      box-shadow: var(--shadow-lime);
    }

    .btn:active {
      transform: translateY(0);
      box-shadow: 2px 2px 0 rgba(0,0,0,.55);
    }

    .btn.secondary {
      background: transparent;
      color: var(--text);
      border-color: var(--line-lime);
    }

    .btn.secondary:hover {
      background: rgba(215,255,63,.12);
      color: var(--lime);
    }

    .hero {
      min-height: calc(100vh - 116px);
      padding: 46px 0 24px;
      display: flex;
      align-items: center;
    }

    .hero-stage {
      position: relative;
      overflow: hidden;
      min-height: 610px;
      border: 2px solid var(--line-lime);
      border-radius: 18px;
      background:
        linear-gradient(90deg, rgba(18,7,17,.96), rgba(18,7,17,.62) 46%, rgba(18,7,17,.92)),
        repeating-linear-gradient(135deg, rgba(255,46,136,.18) 0 18px, rgba(215,255,63,.12) 18px 22px, transparent 22px 42px),
        radial-gradient(circle at 78% 22%, rgba(255,138,0,.24), transparent 28%);
      box-shadow: 10px 10px 0 rgba(255,46,136,.28);
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(320px, .72fr);
      gap: 28px;
      min-height: 610px;
      align-items: stretch;
      padding: 46px;
    }

    .hero-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      max-width: 760px;
    }

    .hero h1 {
      margin: 16px 0 0;
      font-size: clamp(34px, 5.2vw, 64px);
      line-height: 1.1;
      letter-spacing: 0;
      font-weight: 900;
    }

    .hero p {
      margin: 20px 0 0;
      max-width: 720px;
      color: #F3D6E7;
      font-size: 18px;
      line-height: 1.72;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .hero-data {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 30px;
      max-width: 760px;
    }

    .data-chip {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(18,7,17,.72);
      padding: 14px;
    }

    .data-chip strong {
      display: block;
      color: var(--lime);
      font-size: 24px;
      line-height: 1.1;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    }

    .data-chip span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .coupon-wall {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 460px;
    }

    .coupon-main {
      position: relative;
      width: min(360px, 100%);
      min-height: 420px;
      padding: 30px 26px;
      border: 2px dashed #120711;
      border-radius: 18px;
      color: #120711;
      background: linear-gradient(160deg, var(--lime), #fff26b 54%, var(--orange));
      box-shadow: 12px 12px 0 rgba(0,0,0,.58);
      transform: rotate(2deg);
    }

    .coupon-main::before,
    .coupon-main::after {
      content: "";
      position: absolute;
      top: 48%;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--bg-2);
    }

    .coupon-main::before {
      left: -18px;
    }

    .coupon-main::after {
      right: -18px;
    }

    .coupon-main .coupon-kicker {
      font-weight: 900;
      font-size: 14px;
    }

    .coupon-main .coupon-title {
      margin-top: 28px;
      font-size: 42px;
      line-height: 1.05;
      font-weight: 900;
      letter-spacing: 0;
    }

    .coupon-main .coupon-desc {
      margin-top: 18px;
      color: #2b101f;
      font-size: 15px;
      font-weight: 800;
    }

    .coupon-mini {
      position: absolute;
      left: 0;
      bottom: 36px;
      padding: 13px 16px;
      border-radius: var(--radius-sm);
      border: 2px solid var(--pink);
      background: #120711;
      color: var(--text);
      box-shadow: var(--shadow-hard);
      transform: rotate(-5deg);
      font-weight: 900;
    }

    .burst {
      position: absolute;
      right: 28px;
      top: 28px;
      width: 116px;
      height: 116px;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 16px;
      background: var(--orange);
      color: #120711;
      font-weight: 900;
      line-height: 1.15;
      clip-path: polygon(50% 0%, 61% 20%, 84% 11%, 78% 36%, 100% 50%, 78% 64%, 84% 89%, 61% 80%, 50% 100%, 39% 80%, 16% 89%, 22% 64%, 0% 50%, 22% 36%, 16% 11%, 39% 20%);
      transform: rotate(5deg);
      z-index: 4;
    }

    .countdown-wrap {
      margin-top: -30px;
      position: relative;
      z-index: 5;
    }

    .countdown-panel {
      border: 2px solid var(--pink);
      border-radius: 16px;
      background: #120711;
      padding: 24px;
      box-shadow: var(--shadow-hard);
    }

    .count-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
    }

    .count-card {
      padding: 18px 12px;
      text-align: center;
      border: 2px solid var(--line-lime);
      border-radius: var(--radius-sm);
      background: linear-gradient(180deg, #1a0916, #0d060c);
      transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    }

    .count-card:hover {
      border-color: var(--pink);
      box-shadow: 4px 4px 0 rgba(255,46,136,.42);
      transform: translateY(-2px);
    }

    .count-card strong {
      display: block;
      color: var(--pink);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1;
      font-weight: 900;
    }

    .count-card span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .screen-stage {
      display: grid;
      grid-template-columns: 1fr .85fr;
      gap: 22px;
      align-items: stretch;
    }

    .stage-board {
      position: relative;
      overflow: hidden;
      min-height: 420px;
      border: 2px solid var(--line);
      border-radius: 16px;
      background:
        linear-gradient(180deg, rgba(255,46,136,.16), transparent),
        repeating-linear-gradient(90deg, rgba(215,255,63,.11) 0 2px, transparent 2px 42px),
        #160914;
      box-shadow: 8px 8px 0 rgba(0,0,0,.42);
    }

    .stage-top {
      display: flex;
      gap: 8px;
      padding: 14px;
      border-bottom: 1px solid var(--line);
      background: rgba(18,7,17,.9);
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--pink);
    }

    .dot:nth-child(2) { background: var(--lime); }
    .dot:nth-child(3) { background: var(--cyan); }

    .stage-lines {
      padding: 28px;
      display: grid;
      gap: 16px;
    }

    .stage-line {
      min-height: 62px;
      border: 1px solid rgba(255,255,255,.12);
      border-left: 6px solid var(--pink);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.045);
      padding: 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .stage-line:nth-child(even) {
      border-left-color: var(--lime);
    }

    .feature-list {
      display: grid;
      gap: 14px;
    }

    .feature-item,
    .card,
    .entry-card,
    .review-card,
    .news-card {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(33,16,29,.9);
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .feature-item:hover,
    .card:hover,
    .entry-card:hover,
    .review-card:hover,
    .news-card:hover {
      transform: translateY(-2px);
      border-color: var(--lime);
      box-shadow: 5px 5px 0 rgba(215,255,63,.16);
      background: rgba(43,16,31,.98);
    }

    .feature-item {
      padding: 18px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      align-items: start;
    }

    .num {
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      border-radius: var(--radius-sm);
      background: var(--pink);
      color: #fff;
      font-weight: 900;
      box-shadow: 3px 3px 0 #000;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    }

    .feature-item h3,
    .card h3,
    .entry-card h3,
    .review-card h3 {
      margin: 0;
      font-size: 21px;
      line-height: 1.25;
      font-weight: 900;
    }

    .feature-item p,
    .card p,
    .entry-card p,
    .review-card p,
    .news-card p {
      margin: 8px 0 0;
      color: var(--muted);
      font-size: 15px;
    }

    .steps-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr .9fr;
      gap: 18px;
      align-items: stretch;
    }

    .step-card {
      padding: 22px;
      border: 2px solid var(--line);
      border-radius: var(--radius);
      background: rgba(18,7,17,.7);
    }

    .step-card:nth-child(2) {
      border-color: var(--line-lime);
      background: rgba(215,255,63,.08);
      box-shadow: var(--shadow-lime);
    }

    .step-card h3 {
      margin: 14px 0 0;
      font-size: 22px;
      font-weight: 900;
    }

    .step-card p {
      color: var(--muted);
      margin: 10px 0 0;
    }

    .timeline {
      display: grid;
      gap: 14px;
      margin-top: 28px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 88px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(18,7,17,.72);
      position: relative;
    }

    .timeline-item::before {
      content: "";
      position: absolute;
      left: 60px;
      top: -14px;
      bottom: -14px;
      width: 2px;
      background: rgba(255,46,136,.22);
      z-index: -1;
    }

    .time-code {
      color: var(--lime);
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
      font-weight: 900;
    }

    .subscribe-band {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 26px;
      padding: 28px;
      border: 2px solid var(--pink);
      border-radius: 16px;
      background:
        linear-gradient(120deg, rgba(255,46,136,.18), transparent 48%),
        #120711;
      box-shadow: var(--shadow-hard);
    }

    .form-box {
      display: grid;
      gap: 12px;
    }

    .input-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
    }

    input[type="email"] {
      width: 100%;
      min-height: 50px;
      border: 2px solid var(--line);
      border-radius: var(--radius-sm);
      background: #0f070e;
      color: var(--text);
      padding: 0 14px;
      transition: border-color .18s ease, box-shadow .18s ease;
    }

    input[type="email"]::placeholder {
      color: var(--weak);
    }

    input[type="email"]:focus {
      border-color: var(--lime);
      box-shadow: 0 0 0 4px rgba(215,255,63,.12);
      outline: none;
    }

    .check-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: var(--muted);
      font-size: 14px;
    }

    .check-row input {
      width: 18px;
      height: 18px;
      accent-color: var(--lime);
      margin-top: 3px;
    }

    .form-note {
      min-height: 22px;
      color: var(--cyan);
      font-size: 14px;
      font-weight: 800;
    }

    .form-note.error {
      color: var(--orange);
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 26px;
    }

    .entry-card {
      padding: 18px;
      min-height: 190px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 12px 0;
    }

    .compare-table {
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(18,7,17,.72);
    }

    .compare-row {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .compare-row:last-child {
      border-bottom: 0;
    }

    .compare-cell {
      padding: 18px;
      border-right: 1px solid rgba(255,255,255,.1);
      color: var(--muted);
    }

    .compare-cell:last-child {
      border-right: 0;
    }

    .compare-head .compare-cell {
      color: #120711;
      background: var(--lime);
      font-weight: 900;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      gap: 16px;
      margin-top: 26px;
    }

    .review-card {
      padding: 20px;
    }

    .review-card.featured {
      border-color: var(--line-lime);
      background: rgba(215,255,63,.08);
    }

    .quote {
      color: var(--text);
      font-weight: 800;
      font-size: 18px;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1fr 360px;
      gap: 20px;
      margin-top: 26px;
    }

    .news-list {
      display: grid;
      gap: 12px;
    }

    .news-link {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(18,7,17,.72);
      transition: border-color .18s ease, transform .18s ease, background .18s ease;
    }

    .news-link:hover {
      border-color: var(--lime);
      background: rgba(43,16,31,.92);
      transform: translateY(-2px);
    }

    .news-link strong {
      color: var(--text);
      font-size: 17px;
    }

    .news-link span {
      color: var(--weak);
      font-size: 13px;
      white-space: nowrap;
    }

    .news-card {
      padding: 20px;
      border-color: var(--line-lime);
    }

    .download-band {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 30px;
      border-radius: 18px;
      border: 2px solid var(--lime);
      background:
        repeating-linear-gradient(45deg, rgba(215,255,63,.14) 0 14px, transparent 14px 28px),
        #120711;
      box-shadow: var(--shadow-lime);
    }

    .download-buttons {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .faq-list {
      display: grid;
      gap: 12px;
      margin-top: 26px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(18,7,17,.78);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 18px;
      border: 0;
      background: transparent;
      color: var(--text);
      text-align: left;
      font-weight: 900;
    }

    .faq-icon {
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--pink);
      color: #fff;
      font-weight: 900;
    }

    .faq-answer {
      display: none;
      padding: 0 18px 18px 64px;
      color: var(--muted);
      border-left: 4px solid var(--pink);
      margin-left: 18px;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-question .toggle-mark {
      color: var(--lime);
    }

    .site-footer {
      border-top: 2px solid var(--pink);
      background: #0c050b;
      padding: 46px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr .8fr 1fr;
      gap: 24px;
    }

    .footer-brand {
      font-size: 22px;
      font-weight: 900;
      color: var(--text);
    }

    .footer-title {
      font-weight: 900;
      color: var(--lime);
      margin-bottom: 10px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--lime);
    }

    .copyright {
      margin-top: 30px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.1);
      color: var(--weak);
      font-size: 13px;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 1024px) {
      .nav-shell {
        display: none;
      }

      .mobile-actions {
        display: flex;
      }

      .hero {
        min-height: auto;
        padding-top: 28px;
      }

      .hero-grid,
      .screen-stage,
      .subscribe-band,
      .news-layout,
      .download-band {
        grid-template-columns: 1fr;
      }

      .hero-grid {
        padding: 28px;
        min-height: auto;
      }

      .hero-stage {
        min-height: auto;
      }

      .coupon-wall {
        min-height: 420px;
      }

      .entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .reviews-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .download-buttons {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .section {
        padding: 56px 0;
      }

      .top-alert .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
      }

      .brand {
        min-width: 0;
        max-width: calc(100vw - 128px);
        padding: 9px 12px;
        font-size: 16px;
        box-shadow: 4px 4px 0 rgba(255,46,136,.45);
      }

      .hero-data,
      .steps-grid,
      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .count-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .timeline-item {
        grid-template-columns: 1fr;
      }

      .timeline-item::before {
        display: none;
      }

      .input-row {
        grid-template-columns: 1fr;
      }

      .compare-row,
      .compare-head {
        grid-template-columns: 1fr;
      }

      .compare-cell {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
      }

      .compare-cell:last-child {
        border-bottom: 0;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .wide-container,
      .container {
        width: min(100% - 24px, var(--container));
      }

      .hero-grid {
        padding: 22px;
      }

      .coupon-main {
        min-height: 360px;
        transform: none;
      }

      .coupon-main .coupon-title {
        font-size: 34px;
      }

      .burst {
        right: 10px;
        top: 10px;
        width: 96px;
        height: 96px;
        font-size: 13px;
      }

      .coupon-mini {
        left: 8px;
        bottom: 10px;
      }

      .entry-grid {
        grid-template-columns: 1fr;
      }

      .news-link {
        grid-template-columns: 1fr;
      }

      .faq-answer {
        padding-left: 18px;
        margin-left: 0;
      }
    }

/* roulang page: category2 */
:root{
      --bg:#120711;
      --bg-2:#1E0B18;
      --bg-3:#260D12;
      --card:#1a0a16;
      --card-2:#24101e;
      --text:#fff7fb;
      --muted:#c9a9bb;
      --muted-2:#9b788c;
      --pink:#FF2E88;
      --lime:#D7FF3F;
      --orange:#FF8A00;
      --cyan:#20E0FF;
      --line:rgba(255,46,136,.36);
      --line-2:rgba(215,255,63,.34);
      --radius:12px;
      --radius-lg:20px;
      --shadow-hard:4px 4px 0 rgba(255,46,136,.92);
      --shadow-lime:4px 4px 0 rgba(215,255,63,.85);
      --max:1200px;
    }
    *{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);
      background:
        radial-gradient(circle at 12% 0%, rgba(255,46,136,.18), transparent 28%),
        radial-gradient(circle at 88% 14%, rgba(215,255,63,.1), transparent 24%),
        linear-gradient(135deg,var(--bg),var(--bg-2) 48%,var(--bg-3));
      line-height:1.65;
      min-height:100vh;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      opacity:.3;
      background-image:
        linear-gradient(135deg, rgba(255,255,255,.045) 25%, transparent 25%),
        linear-gradient(315deg, rgba(255,255,255,.035) 25%, transparent 25%);
      background-size:18px 18px;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    ::selection{background:var(--lime);color:#120711}
    .container{width:min(var(--max),calc(100% - 32px));margin:0 auto}
    .top-strip{
      background:linear-gradient(90deg,var(--pink),var(--orange),var(--lime));
      color:#120711;
      font-weight:900;
      font-size:14px;
      letter-spacing:.01em;
      border-bottom:2px solid rgba(0,0,0,.5);
    }
    .strip-inner{
      width:min(1320px,calc(100% - 28px));
      margin:0 auto;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding:8px 0;
    }
    .strip-status{
      display:inline-flex;
      align-items:center;
      gap:8px;
      background:#120711;
      color:var(--lime);
      border:1px solid rgba(255,255,255,.28);
      padding:3px 10px;
      border-radius:999px;
      white-space:nowrap;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(30,11,24,.92);
      backdrop-filter:blur(14px);
      border-bottom:2px solid var(--pink);
      box-shadow:0 8px 0 rgba(215,255,63,.08);
    }
    .header-inner{
      width:min(1320px,calc(100% - 28px));
      margin:0 auto;
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:center;
      position:relative;
    }
    .nav-shell{
      width:100%;
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:22px;
    }
    .nav-left,.nav-right{display:flex;align-items:center;gap:12px}
    .nav-left{justify-content:flex-end}
    .nav-right{justify-content:flex-start}
    .brand{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      font-weight:950;
      font-size:clamp(18px,2.2vw,28px);
      letter-spacing:-.03em;
      padding:9px 16px;
      border:1px solid var(--line-2);
      border-radius:999px;
      background:#120711;
      box-shadow:var(--shadow-hard);
      white-space:nowrap;
      transition:.2s ease;
    }
    .brand:hover{transform:translateY(-1px);box-shadow:var(--shadow-lime)}
    .age-badge,.badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      font-weight:900;
      line-height:1;
      white-space:nowrap;
    }
    .age-badge{
      font-size:12px;
      color:#120711;
      background:var(--lime);
      padding:5px 7px;
      border:1px solid #120711;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:8px 14px;
      color:var(--muted);
      border:1px solid transparent;
      border-radius:999px;
      font-size:15px;
      font-weight:800;
      transition:.18s ease;
    }
    .nav-link:hover,.nav-link:focus-visible{
      color:var(--text);
      border-color:var(--pink);
      background:rgba(255,46,136,.12);
      outline:none;
    }
    .nav-link.active{
      color:#120711;
      background:var(--lime);
      border-color:var(--lime);
      box-shadow:3px 3px 0 var(--pink);
    }
    .mobile-toggle{
      display:none;
      position:absolute;
      left:0;
      width:42px;
      height:42px;
      border:1px solid var(--line);
      border-radius:10px;
      background:#120711;
      color:var(--text);
      font-weight:900;
    }
    .mobile-cta{
      display:none;
      position:absolute;
      right:0;
      width:42px;
      height:42px;
      border:1px solid var(--line-2);
      border-radius:10px;
      background:var(--pink);
      color:#fff;
      font-weight:950;
    }
    .mobile-menu{
      display:none;
      border-top:1px solid var(--line);
      background:#160713;
      padding:12px 16px 18px;
    }
    .mobile-menu.open{display:block}
    .mobile-menu a{display:flex;margin:8px 0}
    .section{padding:78px 0}
    .section-tight{padding:48px 0}
    .page-hero{
      position:relative;
      overflow:hidden;
      border-bottom:1px solid rgba(255,46,136,.28);
      background:
        linear-gradient(120deg, rgba(18,7,17,.96), rgba(38,13,18,.74)),
        repeating-linear-gradient( -12deg, rgba(255,46,136,.12) 0 12px, transparent 12px 24px);
    }
    .page-hero:after{
      content:"";
      position:absolute;
      right:-80px;
      top:-90px;
      width:360px;
      height:360px;
      background:radial-gradient(circle, rgba(215,255,63,.22), transparent 62%);
      pointer-events:none;
    }
    .series-tabs{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding-top:28px;
      margin-bottom:26px;
      position:relative;
      z-index:1;
    }
    .series-tabs a,.series-tabs span{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border:1px solid rgba(255,255,255,.18);
      border-radius:999px;
      background:rgba(18,7,17,.72);
      color:var(--muted);
      font-size:14px;
      font-weight:850;
    }
    .series-tabs .on{
      color:#120711;
      background:var(--lime);
      border-color:var(--lime);
      box-shadow:3px 3px 0 var(--pink);
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr;
      gap:28px;
      align-items:stretch;
      padding:0 0 54px;
      position:relative;
      z-index:1;
    }
    .hero-copy{
      min-height:320px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      padding:34px;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255,46,136,.1), rgba(18,7,17,.76)),
        radial-gradient(circle at 10% 20%, rgba(255,138,0,.16), transparent 32%);
      box-shadow:6px 6px 0 rgba(255,46,136,.65);
      position:relative;
      overflow:hidden;
    }
    .hero-copy:before{
      content:"";
      position:absolute;
      inset:auto 0 0 0;
      height:6px;
      background:linear-gradient(90deg,var(--pink),var(--lime),var(--orange));
    }
    h1{
      font-size:clamp(34px,5.2vw,62px);
      line-height:1.1;
      margin:0 0 20px;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .lead{
      color:#ead7e1;
      font-size:clamp(16px,1.7vw,18px);
      max-width:780px;
      margin:0;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:26px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:11px 18px;
      border-radius:10px;
      border:1px solid transparent;
      font-weight:950;
      transition:transform .16s ease,box-shadow .16s ease,background .16s ease,border-color .16s ease,color .16s ease;
      user-select:none;
    }
    .btn-primary{
      background:var(--pink);
      color:#fff;
      border-color:var(--pink);
      box-shadow:3px 3px 0 var(--lime);
    }
    .btn-primary:hover,.btn-primary:focus-visible{
      background:var(--lime);
      color:#120711;
      border-color:var(--lime);
      box-shadow:4px 4px 0 var(--pink);
      transform:translateY(-2px);
      outline:none;
    }
    .btn-secondary{
      background:rgba(18,7,17,.7);
      color:var(--text);
      border-color:rgba(215,255,63,.5);
    }
    .btn-secondary:hover,.btn-secondary:focus-visible{
      background:rgba(255,46,136,.16);
      border-color:var(--pink);
      transform:translateY(-2px);
      outline:none;
    }
    .btn:active{transform:translateY(0);box-shadow:1px 1px 0 rgba(215,255,63,.8)}
    .btn[disabled]{opacity:.45;box-shadow:none;cursor:not-allowed;transform:none}
    .status-panel{
      border:1px solid var(--line-2);
      border-radius:var(--radius-lg);
      background:#120711;
      padding:22px;
      box-shadow:6px 6px 0 rgba(215,255,63,.35);
      align-self:stretch;
      position:relative;
    }
    .burst{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:12px 16px;
      min-width:98px;
      min-height:58px;
      background:var(--lime);
      color:#120711;
      font-weight:950;
      font-size:15px;
      line-height:1.15;
      clip-path:polygon(8% 18%,26% 9%,38% 0,52% 12%,72% 3%,82% 22%,100% 31%,88% 52%,96% 75%,72% 78%,60% 100%,43% 84%,20% 94%,18% 70%,0 58%,12% 39%);
      transform:rotate(4deg);
    }
    .status-panel .burst{position:absolute;right:18px;top:16px}
    .mini-title{color:var(--muted);font-size:13px;font-weight:900;margin-bottom:12px}
    .count-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      margin-top:70px;
    }
    .count-box{
      border:1px solid var(--line-2);
      border-radius:8px;
      background:linear-gradient(180deg,#170912,#0f050d);
      padding:14px 10px;
      text-align:center;
      transition:.16s ease;
    }
    .count-box:hover{border-color:var(--pink);box-shadow:3px 3px 0 rgba(255,46,136,.7);transform:translateY(-2px)}
    .count-num{
      font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
      font-size:clamp(26px,4vw,42px);
      color:var(--pink);
      font-weight:950;
      line-height:1;
    }
    .count-label{font-size:12px;color:var(--muted);margin-top:7px}
    .safe-note{
      margin-top:18px;
      border-left:4px solid var(--pink);
      background:rgba(255,46,136,.08);
      padding:13px 14px;
      color:#ead7e1;
      border-radius:0 10px 10px 0;
      font-size:14px;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:20px;
      margin-bottom:26px;
    }
    h2{
      margin:0;
      font-size:clamp(26px,3.4vw,40px);
      line-height:1.18;
      font-weight:950;
      letter-spacing:-.035em;
    }
    .section-summary{max-width:620px;color:var(--muted);margin:8px 0 0}
    .matrix{
      display:grid;
      grid-template-columns:repeat(12,minmax(0,1fr));
      gap:16px;
    }
    .group-card{
      grid-column:span 6;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:linear-gradient(180deg,rgba(36,16,30,.92),rgba(18,7,17,.96));
      padding:18px;
      position:relative;
      overflow:hidden;
      transition:.18s ease;
    }
    .group-card:hover{
      border-color:var(--lime);
      box-shadow:4px 4px 0 rgba(215,255,63,.55);
      transform:translateY(-2px);
    }
    .group-card.wide{grid-column:span 12}
    .group-head{
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:center;
      margin-bottom:14px;
    }
    .group-title{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:22px;
      font-weight:950;
      line-height:1.2;
    }
    .lamp{
      width:11px;height:11px;border-radius:999px;background:var(--lime);
      box-shadow:0 0 0 4px rgba(215,255,63,.14),0 0 18px rgba(215,255,63,.7);
      flex:0 0 auto;
    }
    .lamp.warn{background:var(--orange);box-shadow:0 0 0 4px rgba(255,138,0,.15),0 0 18px rgba(255,138,0,.7)}
    .lamp.info{background:var(--cyan);box-shadow:0 0 0 4px rgba(32,224,255,.13),0 0 18px rgba(32,224,255,.65)}
    .chip-row{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0}
    .chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border:1px solid rgba(255,46,136,.5);
      border-radius:999px;
      padding:5px 10px;
      color:#f7ddea;
      background:rgba(255,46,136,.07);
      font-size:13px;
      font-weight:800;
    }
    .chip.hot{background:var(--lime);border-color:var(--lime);color:#120711}
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      margin-top:14px;
    }
    .entry-card{
      border:1px solid rgba(255,255,255,.12);
      border-radius:var(--radius);
      background:rgba(18,7,17,.72);
      padding:14px;
      min-height:150px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:.16s ease;
    }
    .entry-card:hover,.entry-card:focus-within{
      border-color:var(--pink);
      box-shadow:3px 3px 0 rgba(255,46,136,.58);
    }
    .entry-top{display:flex;justify-content:space-between;gap:10px;align-items:flex-start}
    .entry-title{font-size:17px;font-weight:950;line-height:1.3}
    .entry-text{
      color:var(--muted);
      font-size:14px;
      margin:10px 0 12px;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .mini-btn{
      align-self:flex-start;
      display:inline-flex;
      border:1px solid var(--line-2);
      border-radius:8px;
      padding:7px 10px;
      color:var(--lime);
      font-size:13px;
      font-weight:900;
      transition:.16s ease;
    }
    .mini-btn:hover,.mini-btn:focus-visible{
      background:var(--pink);
      border-color:var(--pink);
      color:#fff;
      outline:none;
      transform:translateY(-1px);
    }
    .tag{
      display:inline-flex;
      padding:4px 8px;
      border-radius:6px;
      background:rgba(32,224,255,.12);
      color:var(--cyan);
      font-size:12px;
      font-weight:900;
      border:1px solid rgba(32,224,255,.34);
    }
    .tag.orange{background:rgba(255,138,0,.13);color:#ffc279;border-color:rgba(255,138,0,.38)}
    .tag.pink{background:rgba(255,46,136,.14);color:#ff91c2;border-color:rgba(255,46,136,.42)}
    .check-wrap{
      border:1px solid var(--line-2);
      border-radius:var(--radius-lg);
      background:#120711;
      overflow:hidden;
      box-shadow:6px 6px 0 rgba(255,46,136,.42);
    }
    .compare-table{width:100%;border-collapse:collapse}
    .compare-table th,.compare-table td{
      padding:16px;
      text-align:left;
      border-bottom:1px solid rgba(255,255,255,.1);
      vertical-align:top;
    }
    .compare-table th{
      color:#120711;
      background:linear-gradient(90deg,var(--lime),#f7ffb0);
      font-size:14px;
      font-weight:950;
    }
    .compare-table td{color:#ead7e1}
    .compare-table tr:last-child td{border-bottom:0}
    .ok{color:var(--lime);font-weight:950}
    .warn-text{color:#ffbd79;font-weight:950}
    .danger{color:#ff78ad;font-weight:950}
    .mobile-compare{display:none}
    .notice-band{
      display:grid;
      grid-template-columns:1fr auto;
      align-items:center;
      gap:18px;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      padding:22px;
      background:
        linear-gradient(90deg,rgba(255,46,136,.18),rgba(215,255,63,.08)),
        #160713;
      box-shadow:5px 5px 0 rgba(215,255,63,.36);
    }
    .notice-band strong{display:block;font-size:22px;line-height:1.25;margin-bottom:6px}
    .notice-band p{margin:0;color:var(--muted)}
    .steps{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
      counter-reset:step;
    }
    .step-card{
      counter-increment:step;
      border:1px solid rgba(255,46,136,.38);
      border-radius:var(--radius);
      background:linear-gradient(180deg,rgba(36,16,30,.8),rgba(18,7,17,.96));
      padding:18px;
      position:relative;
      min-height:190px;
      transition:.16s ease;
    }
    .step-card:hover{border-color:var(--lime);transform:translateY(-2px);box-shadow:3px 3px 0 rgba(215,255,63,.55)}
    .step-card:before{
      content:counter(step,decimal-leading-zero);
      font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
      display:inline-flex;
      color:#120711;
      background:var(--pink);
      font-weight:950;
      padding:5px 8px;
      border-radius:6px;
      margin-bottom:18px;
      box-shadow:2px 2px 0 var(--lime);
    }
    .step-card h3,.faq-title,.form-title{margin:0 0 8px;font-size:20px;font-weight:950;line-height:1.25}
    .step-card p{margin:0;color:var(--muted);font-size:14px}
    .form-card{
      border:1px solid var(--line-2);
      border-radius:var(--radius-lg);
      background:
        repeating-linear-gradient(-8deg,rgba(255,46,136,.08) 0 10px,transparent 10px 20px),
        #140711;
      padding:24px;
      box-shadow:6px 6px 0 rgba(255,46,136,.4);
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
      margin-top:16px;
    }
    .input{
      width:100%;
      min-height:48px;
      border-radius:10px;
      border:1px solid rgba(215,255,63,.42);
      background:#0f050d;
      color:var(--text);
      padding:0 14px;
      outline:none;
      transition:.16s ease;
    }
    .input::placeholder{color:#8f6b7f}
    .input:focus{border-color:var(--lime);box-shadow:0 0 0 3px rgba(215,255,63,.18)}
    .privacy{
      display:flex;
      gap:10px;
      align-items:flex-start;
      margin-top:12px;
      color:var(--muted);
      font-size:13px;
    }
    .privacy input{accent-color:var(--lime);margin-top:4px}
    .form-message{
      min-height:20px;
      margin-top:10px;
      font-size:13px;
      color:var(--muted);
    }
    .form-message.success{color:var(--cyan)}
    .form-message.error{color:var(--orange)}
    .faq-list{display:grid;gap:12px}
    .faq-item{
      border:1px solid rgba(255,255,255,.12);
      border-radius:var(--radius);
      background:rgba(18,7,17,.78);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:16px 18px;
      background:transparent;
      color:var(--text);
      border:0;
      text-align:left;
      font-weight:950;
    }
    .faq-q:focus-visible{outline:3px solid rgba(215,255,63,.55);outline-offset:-3px}
    .q-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:28px;
      height:28px;
      border-radius:8px;
      background:var(--pink);
      color:#fff;
      margin-right:10px;
      box-shadow:2px 2px 0 var(--lime);
      flex:0 0 auto;
    }
    .faq-q span:first-child{display:flex;align-items:center}
    .faq-a{
      display:none;
      padding:0 18px 16px 56px;
      color:var(--muted);
      border-left:4px solid var(--pink);
      margin-left:18px;
    }
    .faq-item.open .faq-a{display:block}
    .faq-icon{font-size:22px;color:var(--lime)}
    .site-footer{
      background:#0c030a;
      border-top:2px solid var(--pink);
      padding:48px 0 24px;
      margin-top:40px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .9fr 1fr;
      gap:26px;
    }
    .footer-brand{
      display:inline-flex;
      font-size:23px;
      font-weight:950;
      padding:8px 12px;
      border:1px solid var(--line-2);
      border-radius:999px;
      background:#120711;
      box-shadow:3px 3px 0 var(--pink);
    }
    .footer-title{font-weight:950;color:#fff;margin-bottom:12px}
    .footer-links{display:grid;gap:8px;color:var(--muted);font-size:14px}
    .footer-links a{transition:.15s ease}
    .footer-links a:hover,.footer-links a:focus-visible{color:var(--lime);outline:none}
    .copyright{
      margin-top:30px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.1);
      color:var(--muted-2);
      font-size:13px;
    }
    .text-sm{font-size:14px}
    .mt-3{margin-top:.75rem}
    .text-\[var\(--muted\)\]{color:var(--muted)}
    @media (max-width:1024px){
      .hero-grid{grid-template-columns:1fr}
      .group-card,.group-card.wide{grid-column:span 12}
      .steps{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width:768px){
      .strip-inner{font-size:12px;align-items:flex-start}
      .strip-status{display:none}
      .header-inner{min-height:64px}
      .mobile-toggle,.mobile-cta{display:inline-flex;align-items:center;justify-content:center}
      .nav-shell{display:flex;justify-content:center}
      .nav-left,.nav-right{display:none}
      .brand{font-size:18px;padding:8px 12px;box-shadow:3px 3px 0 rgba(255,46,136,.9)}
      .section{padding:54px 0}
      .hero-copy{padding:24px;min-height:unset}
      .status-panel .burst{position:static;margin-bottom:12px}
      .count-grid{margin-top:8px;grid-template-columns:repeat(4,minmax(0,1fr));gap:8px}
      .count-box{padding:10px 5px}
      .count-num{font-size:24px}
      .section-head{display:block}
      .entry-grid{grid-template-columns:1fr}
      .notice-band{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .compare-table{display:none}
      .mobile-compare{display:grid;gap:12px;padding:14px}
      .compare-card{
        border:1px solid rgba(255,255,255,.12);
        border-radius:12px;
        padding:14px;
        background:rgba(255,255,255,.04);
      }
      .compare-card strong{display:block;margin-bottom:8px}
    }
    @media (max-width:520px){
      .container{width:min(100% - 24px,var(--max))}
      .series-tabs{overflow-x:auto;flex-wrap:nowrap;padding-bottom:6px}
      .series-tabs a,.series-tabs span{white-space:nowrap}
      h1{font-size:34px}
      .lead{font-size:15px}
      .hero-actions .btn{width:100%}
      .count-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .matrix{gap:12px}
      .group-card{padding:14px}
      .group-title{font-size:19px}
      .steps{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .faq-a{padding-left:18px;margin-left:14px}
    }

/* roulang page: category1 */
:root{
      --bg:#120711;
      --bg-2:#1E0B18;
      --bg-3:#260D12;
      --panel:#1a0a16;
      --panel-2:#24101e;
      --text:#fff4fb;
      --muted:#c8a7b9;
      --muted-2:#8d7280;
      --pink:#FF2E88;
      --lime:#D7FF3F;
      --orange:#FF8A00;
      --cyan:#20E0FF;
      --danger:#ff4d3d;
      --line:rgba(255,46,136,.34);
      --line-strong:rgba(215,255,63,.72);
      --radius:12px;
      --radius-lg:22px;
      --shadow-hard:4px 4px 0 rgba(255,46,136,.55);
      --shadow-lime:4px 4px 0 rgba(215,255,63,.55);
      --container:1200px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      line-height:1.65;
      background:
        radial-gradient(circle at 20% 5%, rgba(255,46,136,.22), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(215,255,63,.12), transparent 28%),
        linear-gradient(135deg, rgba(255,46,136,.05) 0 10%, transparent 10% 20%, rgba(215,255,63,.04) 20% 30%, transparent 30%),
        var(--bg);
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      z-index:-1;
      pointer-events:none;
      opacity:.22;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:28px 28px;
      mask-image:linear-gradient(to bottom, #000, transparent 78%);
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    button{cursor:pointer}
    :focus-visible{
      outline:3px solid var(--lime);
      outline-offset:3px;
      border-radius:8px;
    }
    .container{
      width:min(var(--container), calc(100% - 36px));
      margin-inline:auto;
    }
    .section{
      padding:76px 0;
      position:relative;
    }
    .section-tight{padding:48px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 12px;
      border:1px solid var(--line-strong);
      background:rgba(215,255,63,.08);
      color:var(--lime);
      border-radius:999px;
      font-size:13px;
      font-weight:800;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--lime);
      box-shadow:0 0 0 5px rgba(215,255,63,.12);
    }
    .section-title{
      margin:14px 0 10px;
      font-size:clamp(28px, 4vw, 40px);
      line-height:1.15;
      font-weight:900;
      letter-spacing:0;
    }
    .section-desc{
      max-width:760px;
      color:var(--muted);
      font-size:17px;
    }

    .top-strip{
      background:linear-gradient(90deg, var(--pink), var(--orange) 52%, var(--lime));
      color:#160710;
      font-weight:900;
      font-size:14px;
      border-bottom:2px solid #000;
    }
    .strip-inner{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .strip-status{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:4px 10px;
      background:#14060f;
      color:var(--lime);
      border-radius:999px;
      white-space:nowrap;
      box-shadow:2px 2px 0 rgba(0,0,0,.45);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(30,11,24,.92);
      backdrop-filter:blur(14px);
      border-bottom:2px solid var(--pink);
      box-shadow:0 10px 0 rgba(215,255,63,.08);
    }
    .nav-shell{
      width:min(var(--container), calc(100% - 36px));
      margin-inline:auto;
      min-height:76px;
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:22px;
    }
    .nav-left,.nav-right{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .nav-left{justify-content:flex-end}
    .nav-right{justify-content:flex-start}
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:42px;
      padding:8px 15px;
      border:1px solid transparent;
      border-radius:999px;
      color:var(--muted);
      font-weight:800;
      transition:transform .18s ease, color .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
    }
    .nav-link:hover{
      color:var(--text);
      border-color:var(--pink);
      background:rgba(255,46,136,.08);
      transform:translateY(-1px);
    }
    .nav-link:active{transform:translateY(0)}
    .nav-link.active{
      color:#13070f;
      background:var(--lime);
      border-color:var(--lime);
      box-shadow:3px 3px 0 var(--pink);
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 16px;
      min-height:50px;
      border:2px solid var(--pink);
      border-radius:16px;
      background:#140711;
      color:#fff;
      font-weight:950;
      font-size:clamp(17px, 2vw, 22px);
      line-height:1;
      letter-spacing:-.02em;
      box-shadow:var(--shadow-hard);
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
      white-space:nowrap;
    }
    .brand:hover{
      border-color:var(--lime);
      box-shadow:var(--shadow-lime);
      transform:translateY(-2px);
    }
    .age-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:36px;
      height:24px;
      border-radius:999px;
      background:var(--pink);
      color:#fff;
      font-size:12px;
      font-weight:900;
      box-shadow:2px 2px 0 rgba(0,0,0,.55);
    }
    .mobile-head{display:none}
    .mobile-panel{display:none}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:11px 18px;
      border-radius:12px;
      border:2px solid transparent;
      font-weight:900;
      transition:transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease, opacity .16s ease;
      user-select:none;
    }
    .btn-primary{
      background:var(--pink);
      color:#fff;
      box-shadow:4px 4px 0 rgba(215,255,63,.72);
    }
    .btn-primary:hover{
      background:var(--lime);
      color:#120711;
      box-shadow:4px 4px 0 rgba(255,46,136,.75);
      transform:translateY(-2px);
    }
    .btn-primary:active,.btn-secondary:active,.btn-small:active{
      transform:translateY(0);
      box-shadow:1px 1px 0 rgba(0,0,0,.45);
    }
    .btn-secondary{
      background:transparent;
      color:var(--text);
      border-color:var(--line-strong);
    }
    .btn-secondary:hover{
      background:rgba(215,255,63,.12);
      color:var(--lime);
      transform:translateY(-2px);
      box-shadow:3px 3px 0 rgba(255,46,136,.42);
    }
    .btn[disabled],.btn.disabled{
      opacity:.45;
      cursor:not-allowed;
      transform:none;
      box-shadow:none;
    }
    .btn-small{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:36px;
      padding:7px 12px;
      border:1px solid var(--pink);
      border-radius:10px;
      color:#fff;
      background:rgba(255,46,136,.14);
      font-size:14px;
      font-weight:900;
      transition:.16s ease;
    }
    .btn-small:hover{
      background:var(--lime);
      color:#120711;
      border-color:var(--lime);
      transform:translateY(-1px);
    }

    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 9px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      color:var(--muted);
      background:rgba(255,255,255,.04);
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .badge-pink{color:#fff;border-color:var(--pink);background:rgba(255,46,136,.18)}
    .badge-lime{color:#111;background:var(--lime);border-color:var(--lime)}
    .badge-orange{color:#111;background:var(--orange);border-color:var(--orange)}
    .badge-cyan{color:#091018;background:var(--cyan);border-color:var(--cyan)}

    .burst{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:12px 16px;
      background:var(--lime);
      color:#120711;
      font-size:14px;
      font-weight:950;
      line-height:1.15;
      clip-path:polygon(8% 18%, 22% 8%, 34% 15%, 48% 4%, 61% 16%, 78% 9%, 88% 24%, 96% 38%, 87% 54%, 94% 72%, 76% 77%, 66% 94%, 49% 84%, 31% 95%, 23% 78%, 6% 73%, 13% 54%, 2% 39%);
      transform:rotate(-3deg);
      box-shadow:4px 4px 0 rgba(255,46,136,.65);
    }

    .hero-compact{
      position:relative;
      overflow:hidden;
      border-bottom:1px solid rgba(255,46,136,.28);
      background:
        linear-gradient(115deg, rgba(18,7,17,.92) 0%, rgba(38,13,18,.84) 58%, rgba(255,46,136,.22) 100%),
        repeating-linear-gradient(-14deg, rgba(215,255,63,.08) 0 9px, transparent 9px 22px);
    }
    .hero-compact::after{
      content:"";
      position:absolute;
      right:-120px;
      top:-160px;
      width:420px;
      height:420px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,46,136,.26), transparent 64%);
      pointer-events:none;
    }
    .hero-grid{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:minmax(0,1.08fr) 360px;
      gap:34px;
      align-items:center;
      min-height:330px;
      padding:56px 0 52px;
    }
    .crumb{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:14px;
      margin-bottom:18px;
    }
    .crumb a{color:var(--lime);font-weight:800}
    .crumb span:last-child{color:#fff}
    h1{
      margin:0;
      font-size:clamp(34px, 5vw, 56px);
      line-height:1.08;
      font-weight:950;
      max-width:820px;
      letter-spacing:-.025em;
    }
    .hero-lead{
      margin-top:18px;
      max-width:760px;
      color:#f2ccdc;
      font-size:18px;
      line-height:1.72;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .status-widget{
      position:relative;
      padding:18px;
      border:1px solid var(--line-strong);
      border-radius:var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(36,16,30,.96), rgba(18,7,17,.96)),
        radial-gradient(circle at top right, rgba(215,255,63,.18), transparent 48%);
      box-shadow:var(--shadow-hard);
    }
    .status-widget .burst{
      position:absolute;
      right:-18px;
      top:-24px;
      transform:rotate(5deg);
    }
    .mini-count{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:9px;
      margin-top:18px;
    }
    .mini-num{
      min-width:0;
      padding:10px 6px;
      text-align:center;
      border-radius:10px;
      background:#0f060d;
      border:1px solid var(--lime);
      box-shadow:2px 2px 0 rgba(255,46,136,.48);
    }
    .mini-num strong{
      display:block;
      color:#fff;
      font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
      font-size:24px;
      line-height:1;
    }
    .mini-num span{
      display:block;
      margin-top:5px;
      color:var(--muted);
      font-size:12px;
      font-weight:800;
    }
    .status-lines{
      margin-top:18px;
      display:grid;
      gap:10px;
    }
    .status-line{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:10px 0;
      border-top:1px dashed rgba(255,255,255,.16);
      color:var(--muted);
      font-size:14px;
    }
    .status-line b{color:#fff}

    .filter-panel{
      position:relative;
      margin-top:-22px;
      padding:18px;
      border:1px solid rgba(255,46,136,.46);
      border-radius:18px;
      background:rgba(18,7,17,.96);
      box-shadow:5px 5px 0 rgba(215,255,63,.3);
      z-index:2;
    }
    .filter-row{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:10px;
    }
    .filter-label{
      color:#fff;
      font-weight:900;
      margin-right:4px;
    }
    .chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:36px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(255,46,136,.75);
      color:#ffd7e8;
      background:rgba(255,46,136,.08);
      font-size:14px;
      font-weight:850;
      transition:.16s ease;
    }
    .chip:hover{
      border-color:var(--lime);
      color:var(--lime);
      transform:translateY(-1px);
    }
    .chip.active{
      background:var(--lime);
      border-color:var(--lime);
      color:#13070f;
      box-shadow:2px 2px 0 var(--pink);
    }

    .main-layout{
      display:grid;
      grid-template-columns:minmax(0, 1fr) 330px;
      gap:26px;
      align-items:start;
    }
    .entry-flow{
      display:grid;
      gap:16px;
    }
    .entry-card{
      position:relative;
      display:grid;
      grid-template-columns:112px minmax(0,1fr) auto;
      gap:18px;
      align-items:center;
      padding:18px;
      border:1px solid rgba(255,255,255,.14);
      border-left:4px solid var(--pink);
      border-radius:var(--radius);
      background:linear-gradient(135deg, rgba(36,16,30,.92), rgba(18,7,17,.94));
      transition:border-color .18s ease, transform .18s ease, box-shadow .18s ease, background .18s ease;
    }
    .entry-card:hover{
      border-color:var(--lime);
      transform:translateY(-2px);
      box-shadow:4px 4px 0 rgba(255,46,136,.45);
      background:linear-gradient(135deg, rgba(45,18,35,.98), rgba(18,7,17,.98));
    }
    .entry-card.is-limited{
      border-left-color:var(--orange);
    }
    .entry-time{
      display:grid;
      place-items:center;
      min-height:92px;
      border-radius:12px;
      background:
        linear-gradient(180deg, rgba(255,46,136,.18), rgba(215,255,63,.08)),
        #10060d;
      border:1px solid rgba(215,255,63,.55);
      text-align:center;
    }
    .entry-time strong{
      display:block;
      color:var(--lime);
      font-size:28px;
      font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
      line-height:1;
    }
    .entry-time span{
      display:block;
      margin-top:6px;
      color:var(--muted);
      font-size:12px;
      font-weight:900;
    }
    .entry-title-line{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      margin-bottom:8px;
    }
    .entry-title{
      font-size:21px;
      line-height:1.25;
      font-weight:950;
      margin:0;
    }
    .entry-desc{
      margin:0;
      color:var(--muted);
      font-size:15px;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .entry-tags{
      display:flex;
      flex-wrap:wrap;
      gap:7px;
      margin-top:12px;
    }

    .insert-cta{
      position:relative;
      overflow:hidden;
      padding:24px;
      border-radius:18px;
      border:2px solid var(--lime);
      background:
        linear-gradient(100deg, rgba(215,255,63,.16), rgba(255,46,136,.2)),
        repeating-linear-gradient(-45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px),
        #160811;
      box-shadow:5px 5px 0 rgba(255,46,136,.58);
    }
    .insert-cta h2{
      margin:0 0 8px;
      font-size:26px;
      line-height:1.18;
      font-weight:950;
    }
    .insert-cta p{
      margin:0;
      color:#f1cedb;
      max-width:720px;
    }
    .insert-cta .btn{margin-top:16px}

    .side-stack{
      position:sticky;
      top:104px;
      display:grid;
      gap:16px;
    }
    .side-card{
      padding:18px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:var(--radius);
      background:rgba(30,11,24,.88);
    }
    .side-card.hot{
      border-color:var(--pink);
      box-shadow:4px 4px 0 rgba(215,255,63,.28);
    }
    .side-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin:0 0 12px;
      font-size:18px;
      font-weight:950;
    }
    .safe-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .safe-list li{
      display:flex;
      gap:9px;
      color:var(--muted);
      font-size:14px;
    }
    .safe-list li::before{
      content:"!";
      flex:0 0 20px;
      width:20px;
      height:20px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:var(--orange);
      color:#111;
      font-weight:950;
      line-height:1;
    }
    .notice-form{
      display:grid;
      gap:12px;
    }
    .form-field{
      width:100%;
      min-height:46px;
      padding:12px 13px;
      border-radius:10px;
      border:1px solid rgba(215,255,63,.45);
      background:#10060d;
      color:#fff;
      transition:border-color .16s ease, box-shadow .16s ease, background .16s ease;
    }
    .form-field::placeholder{color:#8e7480}
    .form-field:hover{border-color:var(--pink)}
    .form-field:focus{
      outline:none;
      border-color:var(--lime);
      box-shadow:0 0 0 4px rgba(215,255,63,.15);
      background:#160811;
    }
    .checkbox-line{
      display:flex;
      gap:9px;
      align-items:flex-start;
      color:var(--muted);
      font-size:13px;
    }
    .checkbox-line input{
      margin-top:4px;
      accent-color:var(--lime);
    }
    .form-msg{
      display:none;
      padding:9px 10px;
      border-radius:10px;
      font-size:13px;
      font-weight:800;
    }
    .form-msg.success{
      display:block;
      color:#061016;
      background:var(--cyan);
    }
    .form-msg.error{
      display:block;
      color:#fff;
      background:rgba(255,77,61,.82);
    }

    .process-strip{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:14px;
      margin-top:26px;
    }
    .process-item{
      padding:18px;
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.14);
      background:rgba(18,7,17,.78);
      transition:.18s ease;
    }
    .process-item:hover{
      border-color:var(--lime);
      transform:translateY(-2px);
      box-shadow:3px 3px 0 rgba(255,46,136,.42);
    }
    .process-item .num{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:38px;
      height:38px;
      border-radius:10px;
      background:var(--pink);
      color:#fff;
      font-weight:950;
      font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
      box-shadow:3px 3px 0 rgba(215,255,63,.65);
    }
    .process-item h3{
      margin:14px 0 7px;
      font-size:19px;
      line-height:1.25;
      font-weight:950;
    }
    .process-item p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }

    .empty-state{
      padding:26px;
      border-radius:18px;
      border:1px dashed rgba(215,255,63,.6);
      background:rgba(215,255,63,.06);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .empty-state h2{
      margin:0 0 6px;
      font-size:24px;
      font-weight:950;
    }
    .empty-state p{
      margin:0;
      color:var(--muted);
    }

    .faq-wrap{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:28px;
      align-items:start;
    }
    .faq-list{display:grid;gap:12px}
    .faq-item{
      border:1px solid rgba(255,255,255,.14);
      border-radius:var(--radius);
      background:rgba(30,11,24,.86);
      overflow:hidden;
      transition:border-color .18s ease, box-shadow .18s ease;
    }
    .faq-item:hover{
      border-color:var(--pink);
      box-shadow:3px 3px 0 rgba(215,255,63,.28);
    }
    .faq-question{
      width:100%;
      display:flex;
      align-items:center;
      gap:12px;
      justify-content:space-between;
      padding:18px;
      border:0;
      background:transparent;
      color:#fff;
      text-align:left;
      font-weight:950;
    }
    .q-left{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .q-mark{
      flex:0 0 32px;
      width:32px;
      height:32px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      background:var(--lime);
      color:#111;
      font-weight:950;
      box-shadow:2px 2px 0 var(--pink);
    }
    .faq-icon{
      color:var(--lime);
      font-size:22px;
      line-height:1;
      transition:transform .18s ease;
    }
    .faq-answer{
      display:none;
      margin:0 18px 18px 62px;
      padding:14px 16px;
      border-left:4px solid var(--pink);
      background:#120711;
      color:var(--muted);
      border-radius:0 10px 10px 0;
    }
    .faq-item.open .faq-answer{display:block}
    .faq-item.open .faq-icon{transform:rotate(45deg)}
    .faq-item.open{border-color:var(--lime)}

    .bottom-cta{
      position:relative;
      overflow:hidden;
      padding:34px;
      border-radius:24px;
      border:2px solid var(--pink);
      background:
        radial-gradient(circle at 88% 15%, rgba(215,255,63,.2), transparent 32%),
        linear-gradient(135deg, rgba(255,46,136,.24), rgba(38,13,18,.96)),
        #1E0B18;
      box-shadow:6px 6px 0 rgba(215,255,63,.46);
    }
    .bottom-cta h2{
      margin:0;
      font-size:clamp(28px, 4vw, 42px);
      line-height:1.12;
      font-weight:950;
    }
    .bottom-cta p{
      margin:12px 0 0;
      color:#f3cddd;
      max-width:760px;
    }
    .bottom-cta .cta-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
    }

    .site-footer{
      padding:56px 0 28px;
      background:#0d050b;
      border-top:2px solid var(--pink);
      color:var(--text);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .85fr .9fr 1fr;
      gap:30px;
      align-items:start;
    }
    .footer-brand{
      display:inline-flex;
      padding:10px 14px;
      border:2px solid var(--pink);
      border-radius:14px;
      background:#150710;
      font-weight:950;
      box-shadow:3px 3px 0 rgba(215,255,63,.55);
    }
    .footer-title{
      color:#fff;
      font-weight:950;
      margin-bottom:12px;
    }
    .footer-links{
      display:grid;
      gap:8px;
      color:var(--muted);
      font-size:14px;
    }
    .footer-links a,.footer-links span{
      width:max-content;
      max-width:100%;
    }
    .footer-links a{
      transition:color .16s ease, transform .16s ease;
    }
    .footer-links a:hover{
      color:var(--lime);
      transform:translateX(2px);
    }
    .copyright{
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.12);
      color:var(--muted-2);
      font-size:13px;
    }

    @media (max-width:1024px){
      .hero-grid{grid-template-columns:1fr;min-height:auto}
      .status-widget{max-width:620px}
      .main-layout{grid-template-columns:1fr}
      .side-stack{position:static;grid-template-columns:repeat(2,minmax(0,1fr))}
      .process-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
      .faq-wrap{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width:768px){
      .top-strip{font-size:12px}
      .strip-inner{min-height:34px}
      .site-header{border-bottom-color:var(--lime)}
      .nav-shell{display:none}
      .mobile-head{
        width:min(var(--container), calc(100% - 28px));
        margin-inline:auto;
        min-height:66px;
        display:grid;
        grid-template-columns:44px 1fr 44px;
        gap:10px;
        align-items:center;
      }
      .mobile-menu-btn,.mobile-cta{
        width:42px;
        height:42px;
        display:inline-flex;
        align-items:center;
        justify-content:center;
        border-radius:12px;
        border:1px solid var(--line-strong);
        background:#120711;
        color:var(--lime);
        font-weight:950;
      }
      .mobile-brand{
        justify-self:center;
        display:inline-flex;
        align-items:center;
        gap:8px;
        padding:9px 12px;
        border:2px solid var(--pink);
        border-radius:14px;
        background:#140711;
        font-weight:950;
        box-shadow:3px 3px 0 rgba(215,255,63,.55);
        white-space:nowrap;
        max-width:100%;
        font-size:16px;
      }
      .mobile-panel{
        width:min(var(--container), calc(100% - 28px));
        margin:0 auto 14px;
        padding:12px;
        border:1px solid rgba(215,255,63,.45);
        border-radius:16px;
        background:#120711;
        box-shadow:4px 4px 0 rgba(255,46,136,.4);
      }
      .mobile-panel.open{display:grid;gap:8px}
      .mobile-panel .nav-link{
        justify-content:flex-start;
        border-color:rgba(255,255,255,.12);
        border-radius:12px;
      }
      .hero-grid{padding:42px 0 44px}
      .hero-lead{font-size:16px}
      .filter-panel{margin-top:0}
      .entry-card{grid-template-columns:1fr;gap:12px}
      .entry-time{
        min-height:auto;
        grid-template-columns:auto auto;
        justify-content:start;
        gap:10px;
        padding:12px;
      }
      .entry-time span{margin-top:0}
      .side-stack{grid-template-columns:1fr}
      .empty-state{align-items:flex-start;flex-direction:column}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .container{width:min(100% - 28px, var(--container))}
      .section{padding:52px 0}
      h1{font-size:36px}
      .hero-actions,.bottom-cta .cta-row{flex-direction:column}
      .btn{width:100%}
      .mini-count{grid-template-columns:repeat(2,1fr)}
      .process-strip{grid-template-columns:1fr}
      .filter-row{align-items:flex-start}
      .chip{font-size:13px}
      .faq-answer{margin-left:18px}
      .bottom-cta{padding:24px}
      .strip-status{display:none}
      .mobile-brand{font-size:14px}
    }
