/* roulang page: index */
:root {
      --bg: #17110d;
      --bg-soft: #211812;
      --surface: #fff5e6;
      --surface-2: #f7dfba;
      --card: #2a1d15;
      --card-light: #fff8ec;
      --text: #fff2dc;
      --text-dark: #251811;
      --muted: #c9aa82;
      --muted-dark: #765b42;
      --primary: #ff9d35;
      --primary-2: #ffc35b;
      --accent: #48d6a2;
      --danger: #ff6b5f;
      --line: rgba(255, 195, 91, .28);
      --line-dark: rgba(58, 35, 21, .18);
      --radius: 10px;
      --radius-sm: 7px;
      --shadow: 0 8px 0 rgba(0,0,0,.42), 0 18px 40px rgba(0,0,0,.22);
      --shadow-soft: 0 8px 0 rgba(66, 41, 25, .16), 0 16px 34px rgba(35, 20, 10, .14);
      --container: 1180px;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: "Microsoft YaHei", "PingFang SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.7;
      color: var(--text);
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 12% 8%, rgba(255,157,53,.18), transparent 32%),
        radial-gradient(circle at 84% 18%, rgba(72,214,162,.12), transparent 28%),
        var(--bg);
      background-size: 18px 18px, 18px 18px, auto, auto, auto;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background: repeating-linear-gradient(180deg, rgba(255,255,255,.035) 0, rgba(255,255,255,.035) 1px, transparent 1px, transparent 5px);
      opacity: .22;
      z-index: 999;
      mix-blend-mode: overlay;
    }

    a { color: inherit; text-decoration: none; transition: .18s ease; }
    a:hover { color: var(--primary-2); }
    img { max-width: 100%; display: block; }
    button, input, textarea { font: inherit; }
    ::selection { background: var(--primary); color: #1d120b; }

    .site-container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .pixel-border {
      border: 2px solid rgba(255, 195, 91, .55);
      box-shadow: inset 0 0 0 2px rgba(0,0,0,.22), var(--shadow);
    }

    .top-note {
      background: #fff0d6;
      color: var(--text-dark);
      border-bottom: 2px solid #3a2416;
      font-size: 13px;
      letter-spacing: .02em;
    }

    .top-note .site-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 8px 0;
    }

    .status-dot {
      width: 8px;
      height: 8px;
      border-radius: 2px;
      display: inline-block;
      background: var(--accent);
      box-shadow: 0 0 0 3px rgba(72,214,162,.18);
      margin-right: 8px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 90;
      background: rgba(23, 17, 13, .9);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid rgba(255, 195, 91, .28);
    }

    .navbar {
      padding: 14px 0;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--text) !important;
      font-weight: 900;
      letter-spacing: .02em;
      max-width: 420px;
      white-space: normal;
      line-height: 1.25;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      background:
        linear-gradient(90deg, transparent 36%, rgba(0,0,0,.2) 36% 64%, transparent 64%),
        linear-gradient(var(--primary), var(--primary-2));
      border: 2px solid #2b1a10;
      box-shadow: 4px 4px 0 rgba(0,0,0,.36);
      border-radius: 7px;
      flex: 0 0 auto;
    }

    .navbar-toggler {
      border: 2px solid var(--line);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.06);
      color: var(--text);
      padding: 8px 10px;
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 4px rgba(255,157,53,.22);
    }

    .nav-link {
      color: var(--muted) !important;
      font-weight: 700;
      padding: 9px 14px !important;
      border: 2px solid transparent;
      border-radius: var(--radius-sm);
      margin: 0 3px;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--text) !important;
      background: rgba(255,157,53,.12);
      border-color: rgba(255,195,91,.38);
      transform: translateY(-1px);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-radius: var(--radius-sm);
      background: var(--primary);
      color: #24150d !important;
      font-weight: 900;
      border: 2px solid #2c1b12;
      box-shadow: 4px 4px 0 rgba(0,0,0,.35);
    }

    .nav-cta:hover {
      background: var(--primary-2);
      color: #1f130c !important;
      transform: translate(-1px, -1px);
      box-shadow: 6px 6px 0 rgba(0,0,0,.38);
    }

    .badge-pixel {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      border-radius: 6px;
      color: #20120b;
      background: var(--primary-2);
      border: 2px solid rgba(32,18,11,.88);
      font-size: 13px;
      font-weight: 900;
      box-shadow: 3px 3px 0 rgba(0,0,0,.28);
    }

    main section {
      padding: 72px 0;
    }

    .hero {
      padding: 34px 0 58px;
    }

    .hero-ribbon {
      background: linear-gradient(135deg, #fff4dc, #f3c887 58%, #ff9d35);
      color: var(--text-dark);
      border: 3px solid #2b1a10;
      border-radius: 0 0 14px 14px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-ribbon::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, transparent 0 8px, rgba(255,255,255,.18) 8px 10px, transparent 10px 20px),
        radial-gradient(circle at 90% 25%, rgba(72,214,162,.32), transparent 28%);
      opacity: .48;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      padding: 34px;
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 28px;
      align-items: center;
    }

    .brand-kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-weight: 900;
      color: #3d2415;
      margin-bottom: 14px;
    }

    h1 {
      font-size: clamp(30px, 5vw, 58px);
      line-height: 1.08;
      font-weight: 1000;
      letter-spacing: -.04em;
      margin: 0 0 16px;
      color: #21140d;
      text-shadow: 3px 3px 0 rgba(255,255,255,.5);
    }

    .hero-desc {
      max-width: 760px;
      font-size: 17px;
      color: #4d321f;
      margin: 0;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 22px;
      align-items: center;
    }

    .btn-pixel,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 11px 18px;
      border-radius: var(--radius-sm);
      font-weight: 900;
      border: 2px solid #28170e;
      transition: .18s ease;
      cursor: pointer;
    }

    .btn-pixel {
      background: #1f130c;
      color: #fff1d5;
      box-shadow: 5px 5px 0 rgba(0,0,0,.28);
    }

    .btn-pixel:hover {
      color: #fff;
      background: #322016;
      transform: translate(-1px, -2px);
      box-shadow: 7px 7px 0 rgba(0,0,0,.3);
    }

    .btn-ghost {
      background: rgba(255,255,255,.42);
      color: #27170e;
      box-shadow: 4px 4px 0 rgba(58,34,20,.15);
    }

    .btn-ghost:hover {
      background: #fff6e6;
      color: #1c1009;
      transform: translateY(-2px);
    }

    .hero-board {
      background: rgba(32, 18, 11, .92);
      color: var(--text);
      border: 3px solid #2b1a10;
      border-radius: 12px;
      box-shadow: 7px 7px 0 rgba(0,0,0,.25);
      padding: 18px;
    }

    .board-head {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      border-bottom: 2px dashed rgba(255,195,91,.35);
      padding-bottom: 12px;
      margin-bottom: 12px;
    }

    .entry-matrix {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }

    .entry-chip {
      padding: 12px;
      background: rgba(255,245,230,.08);
      border: 2px solid rgba(255,195,91,.24);
      border-radius: 8px;
      font-weight: 800;
      color: #ffe4b2;
    }

    .entry-chip small {
      display: block;
      color: var(--muted);
      font-weight: 700;
      margin-top: 2px;
    }

    .hero-social {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 16px;
      flex-wrap: wrap;
    }

    .avatars {
      display: flex;
      align-items: center;
    }

    .avatar {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      border: 2px solid #23150d;
      margin-left: -8px;
      display: grid;
      place-items: center;
      color: #251811;
      font-weight: 900;
      box-shadow: 3px 3px 0 rgba(0,0,0,.18);
    }

    .avatar:first-child { margin-left: 0; }
    .a1 { background: #ffca70; }
    .a2 { background: #8ee6bf; }
    .a3 { background: #ff9f92; }
    .a4 { background: #d7b1ff; }

    .quote-bubble {
      background: #fff8ec;
      border: 2px solid #2b1a10;
      color: #3a2416;
      border-radius: 9px;
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 800;
      box-shadow: 4px 4px 0 rgba(0,0,0,.16);
    }

    .section-head {
      margin-bottom: 28px;
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 20px;
    }

    .section-kicker {
      display: inline-flex;
      margin-bottom: 10px;
      color: #21140d;
      background: var(--primary-2);
      border: 2px solid #2b1a10;
      border-radius: 6px;
      padding: 5px 9px;
      font-size: 13px;
      font-weight: 900;
      box-shadow: 3px 3px 0 rgba(0,0,0,.24);
    }

    .section-title {
      font-size: clamp(24px, 3.2vw, 38px);
      line-height: 1.2;
      font-weight: 1000;
      margin: 0;
      letter-spacing: -.025em;
    }

    .section-desc {
      color: var(--muted);
      max-width: 650px;
      margin: 10px 0 0;
    }

    .light-section {
      background: var(--surface);
      color: var(--text-dark);
      border-top: 3px solid #2b1a10;
      border-bottom: 3px solid #2b1a10;
    }

    .light-section .section-desc,
    .light-section .card-text,
    .light-section .muted {
      color: var(--muted-dark);
    }

    .coupon-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr .85fr;
      gap: 18px;
    }

    .coupon-card {
      background: var(--card-light);
      border: 2px solid #2b1a10;
      border-radius: var(--radius);
      padding: 22px;
      min-height: 190px;
      box-shadow: var(--shadow-soft);
      transition: .18s ease;
      position: relative;
      overflow: hidden;
    }

    .coupon-card::before,
    .topic-card::before {
      content: "";
      position: absolute;
      top: 14px;
      right: 14px;
      width: 30px;
      height: 30px;
      background: linear-gradient(90deg, var(--primary) 0 50%, var(--accent) 50%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 70% 100%, 70% 30%, 0 30%);
      opacity: .75;
    }

    .coupon-card:hover,
    .topic-card:hover,
    .info-card:hover,
    .plan-card:hover {
      transform: translateY(-4px);
      border-color: var(--primary);
      box-shadow: 0 10px 0 rgba(66,41,25,.2), 0 20px 38px rgba(35,20,10,.18);
    }

    .coupon-card.featured {
      background: #2a1d15;
      color: var(--text);
      grid-row: span 2;
    }

    .coupon-card h3,
    .topic-card h3,
    .info-card h3,
    .plan-card h3 {
      font-size: 21px;
      font-weight: 1000;
      margin: 12px 0 9px;
    }

    .card-text {
      margin: 0;
      font-size: 15px;
    }

    .mini-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 16px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 5px 9px;
      border-radius: 6px;
      border: 1px solid rgba(255,195,91,.42);
      background: rgba(255,157,53,.12);
      color: #ffe4b2;
      font-size: 12px;
      font-weight: 800;
    }

    .light-section .tag {
      color: #422717;
      border-color: rgba(66,39,23,.25);
      background: rgba(255,157,53,.18);
    }

    .rules-wrap {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 22px;
      align-items: stretch;
    }

    .rule-panel,
    .stat-panel,
    .review-summary,
    .contact-panel {
      background: var(--card);
      border: 2px solid var(--line);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .rule-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .rule-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      border-radius: 8px;
      background: rgba(255,245,230,.07);
      border: 1px solid rgba(255,195,91,.18);
    }

    .rule-num {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      background: var(--primary);
      color: #1f130c;
      border-radius: 5px;
      font-weight: 1000;
      flex: 0 0 auto;
      box-shadow: 3px 3px 0 rgba(0,0,0,.25);
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .stat-card {
      background: rgba(255,245,230,.08);
      border: 2px solid rgba(255,195,91,.22);
      border-radius: var(--radius-sm);
      padding: 18px;
    }

    .stat-num {
      font-size: clamp(28px, 4vw, 44px);
      font-weight: 1000;
      color: var(--primary-2);
      line-height: 1;
      margin-bottom: 8px;
    }

    .bar {
      height: 10px;
      background: rgba(255,255,255,.12);
      border-radius: 0;
      overflow: hidden;
      border: 1px solid rgba(255,195,91,.2);
      margin-top: 12px;
    }

    .bar span {
      display: block;
      height: 100%;
      background: repeating-linear-gradient(90deg, var(--accent) 0 8px, #8ff0ca 8px 12px);
    }

    .review-wall {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 20px;
      align-items: start;
    }

    .score {
      font-size: 58px;
      font-weight: 1000;
      color: var(--primary-2);
      line-height: 1;
    }

    .review-list {
      display: grid;
      gap: 14px;
    }

    .review-item {
      background: rgba(255,245,230,.08);
      border: 2px solid rgba(255,195,91,.2);
      border-radius: var(--radius);
      padding: 16px;
      display: grid;
      gap: 8px;
    }

    .review-meta {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .topic-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .topic-card {
      position: relative;
      min-height: 184px;
      background: var(--card-light);
      border: 2px solid #2b1a10;
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow-soft);
      transition: .18s ease;
    }

    .news-layout {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 22px;
    }

    .news-list,
    .recommend-box {
      background: rgba(255,245,230,.08);
      border: 2px solid rgba(255,195,91,.24);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: var(--shadow);
    }

    .news-link {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 15px 0;
      border-bottom: 1px dashed rgba(255,195,91,.28);
    }

    .news-link:last-child { border-bottom: 0; }
    .news-link:hover { transform: translateX(4px); color: #fff; }

    .date-pill {
      color: #1f130c;
      background: var(--primary-2);
      border-radius: 5px;
      padding: 4px 7px;
      font-size: 12px;
      font-weight: 900;
    }

    .plan-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .plan-card {
      background: var(--card-light);
      color: var(--text-dark);
      border: 2px solid #2b1a10;
      border-radius: var(--radius);
      padding: 22px;
      box-shadow: var(--shadow-soft);
      transition: .18s ease;
    }

    .plan-card.hot {
      background: #24170f;
      color: var(--text);
      transform: translateY(-8px);
    }

    .plan-list {
      list-style: none;
      padding: 0;
      margin: 18px 0 0;
      display: grid;
      gap: 10px;
    }

    .plan-list li {
      display: flex;
      gap: 8px;
      align-items: flex-start;
      color: inherit;
    }

    .plan-list li::before {
      content: "■";
      color: var(--accent);
      font-size: 10px;
      margin-top: 6px;
    }

    .accordion {
      display: grid;
      gap: 12px;
    }

    .accordion-item {
      background: rgba(255,245,230,.08);
      color: var(--text);
      border: 2px solid rgba(255,195,91,.26);
      border-radius: var(--radius) !important;
      overflow: hidden;
      box-shadow: 5px 5px 0 rgba(0,0,0,.18);
    }

    .accordion-button {
      background: transparent;
      color: var(--text);
      font-weight: 900;
      padding: 18px;
      box-shadow: none;
    }

    .accordion-button:not(.collapsed) {
      background: rgba(255,157,53,.14);
      color: #fff3d8;
      box-shadow: none;
    }

    .accordion-button:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(255,157,53,.18);
    }

    .accordion-button::after {
      filter: invert(1) sepia(1) saturate(2);
    }

    .accordion-body {
      color: var(--muted);
      padding: 0 18px 18px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: stretch;
    }

    .form-control,
    .form-select {
      background: rgba(255,245,230,.1);
      color: var(--text);
      border: 2px solid rgba(255,195,91,.25);
      border-radius: var(--radius-sm);
      min-height: 46px;
    }

    .form-control::placeholder { color: rgba(255,242,220,.58); }
    .form-control:focus,
    .form-select:focus {
      background: rgba(255,245,230,.14);
      color: var(--text);
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(255,157,53,.18);
    }

    .quick-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .site-footer {
      background: #110c09;
      border-top: 3px solid rgba(255,195,91,.32);
      padding: 42px 0 28px;
      color: var(--muted);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr .9fr;
      gap: 24px;
    }

    .footer-brand {
      color: var(--text);
      font-weight: 1000;
      font-size: 20px;
      margin-bottom: 10px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--muted);
      font-weight: 700;
    }

    .footer-links a:hover {
      color: var(--primary-2);
      transform: translateX(3px);
    }

    .copyright {
      margin-top: 28px;
      padding-top: 18px;
      border-top: 1px dashed rgba(255,195,91,.2);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .hero-inner,
      .rules-wrap,
      .review-wall,
      .news-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .coupon-grid {
        grid-template-columns: 1fr 1fr;
      }
      .coupon-card.featured {
        grid-row: auto;
        grid-column: 1 / -1;
      }
      .topic-grid,
      .stat-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .plan-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .plan-card.hot {
        transform: none;
      }
    }

    @media (max-width: 768px) {
      .top-note .site-container {
        align-items: flex-start;
        flex-direction: column;
      }
      .navbar-collapse {
        padding-top: 12px;
      }
      .nav-link {
        margin: 4px 0;
      }
      main section {
        padding: 54px 0;
      }
      .hero {
        padding-top: 22px;
      }
      .hero-inner {
        padding: 24px 18px;
      }
      .section-head {
        display: block;
      }
      .entry-matrix,
      .coupon-grid,
      .topic-grid,
      .stat-grid {
        grid-template-columns: 1fr;
      }
      .news-link {
        grid-template-columns: 1fr;
        gap: 6px;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(100% - 22px, var(--container));
      }
      .navbar-brand {
        font-size: 15px;
        max-width: 260px;
      }
      .hero-actions,
      .quick-buttons {
        flex-direction: column;
        align-items: stretch;
      }
      .btn-pixel,
      .btn-ghost,
      .nav-cta {
        width: 100%;
      }
      .hero-social {
        align-items: flex-start;
        flex-direction: column;
      }
      .coupon-card,
      .plan-card,
      .rule-panel,
      .stat-panel,
      .review-summary,
      .contact-panel {
        padding: 18px;
      }
      .score {
        font-size: 46px;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #17130f;
      --bg-soft: #211a14;
      --panel: #2a2017;
      --panel-2: #332518;
      --cream: #fff3d8;
      --text: #f8ead0;
      --muted: #c6ad8e;
      --muted-2: #957b5d;
      --orange: #ff9f43;
      --amber: #ffd166;
      --green: #57d6a3;
      --red: #ff6b6b;
      --line: rgba(255, 209, 102, .22);
      --line-strong: rgba(255, 159, 67, .55);
      --shadow: 0 12px 0 rgba(0, 0, 0, .24), 0 22px 48px rgba(0, 0, 0, .32);
      --shadow-sm: 0 7px 0 rgba(0, 0, 0, .28), 0 16px 24px rgba(0, 0, 0, .22);
      --radius: 10px;
      --radius-sm: 7px;
      --container: 1160px;
      --pixel: 2px;
      --font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: var(--font);
      line-height: 1.75;
      color: var(--text);
      background:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
        radial-gradient(circle at 15% 5%, rgba(255, 159, 67, .18), transparent 26%),
        radial-gradient(circle at 88% 18%, rgba(87, 214, 163, .11), transparent 28%),
        linear-gradient(180deg, #15100d 0%, #21160f 52%, #120f0d 100%);
      background-size: 18px 18px, 18px 18px, auto, auto, auto;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .18;
      z-index: 0;
      background: repeating-linear-gradient(0deg, transparent 0, transparent 6px, rgba(255,255,255,.05) 7px);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .18s ease, border-color .18s ease, transform .18s ease, background .18s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    input,
    select,
    textarea {
      color: var(--text);
      background: rgba(16, 12, 9, .82);
      border: 2px solid var(--line);
      border-radius: var(--radius-sm);
      outline: none;
      transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }

    input:focus,
    select:focus,
    textarea:focus,
    .btn-pixel:focus,
    .nav-link:focus,
    .nav-cta:focus {
      border-color: var(--amber);
      box-shadow: 0 0 0 4px rgba(255, 209, 102, .16);
      outline: none;
    }

    .site-container {
      width: min(var(--container), calc(100% - 32px));
      margin-inline: auto;
      position: relative;
      z-index: 1;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(23, 19, 15, .9);
      border-bottom: 2px solid var(--line);
      backdrop-filter: blur(14px);
      box-shadow: 0 8px 0 rgba(0,0,0,.18);
    }

    .navbar {
      padding: 14px 0;
    }

    .navbar .site-container {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .navbar-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--cream);
      font-weight: 900;
      letter-spacing: .02em;
      min-width: max-content;
    }

    .navbar-brand:hover {
      color: var(--amber);
      transform: translateY(-1px);
    }

    .logo-mark {
      width: 28px;
      height: 28px;
      display: inline-block;
      background:
        linear-gradient(90deg, transparent 0 7px, var(--orange) 7px 21px, transparent 21px),
        linear-gradient(transparent 0 7px, var(--amber) 7px 21px, transparent 21px);
      border: 2px solid var(--amber);
      box-shadow: 4px 4px 0 rgba(0,0,0,.35);
    }

    .navbar-toggler {
      color: var(--cream);
      border: 2px solid var(--line-strong);
      border-radius: var(--radius-sm);
      padding: 6px 10px;
      background: var(--panel);
      margin-left: auto;
      box-shadow: 4px 4px 0 rgba(0,0,0,.3);
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 4px rgba(255,159,67,.18);
    }

    .navbar-nav {
      gap: 8px;
    }

    .nav-link {
      color: var(--muted);
      padding: 8px 12px !important;
      border: 2px solid transparent;
      border-radius: var(--radius-sm);
      font-weight: 700;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--cream);
      border-color: var(--line-strong);
      background: rgba(255, 159, 67, .11);
      transform: translateY(-1px);
    }

    .nav-cta,
    .btn-pixel {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 42px;
      padding: 10px 16px;
      color: #1d130a;
      font-weight: 900;
      background: linear-gradient(180deg, var(--amber), var(--orange));
      border: 2px solid #ffe2a4;
      border-radius: var(--radius-sm);
      box-shadow: 5px 5px 0 rgba(0,0,0,.35);
    }

    .nav-cta:hover,
    .btn-pixel:hover {
      color: #150e08;
      transform: translate(-1px, -2px);
      filter: brightness(1.06);
      box-shadow: 7px 7px 0 rgba(0,0,0,.36);
    }

    .btn-ghost {
      color: var(--cream);
      background: rgba(255,255,255,.04);
      border-color: var(--line);
    }

    .btn-ghost:hover {
      color: var(--amber);
      background: rgba(255, 209, 102, .08);
    }

    .badge-pixel,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 2px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 243, 216, .06);
      color: var(--amber);
      padding: 6px 10px;
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
    }

    .tag::before,
    .badge-pixel::before {
      content: "";
      width: 7px;
      height: 7px;
      background: var(--green);
      box-shadow: 0 0 0 2px rgba(87,214,163,.14);
    }

    .section {
      padding: 76px 0;
    }

    .category-hero {
      padding: 72px 0 46px;
      border-bottom: 2px solid var(--line);
      background:
        radial-gradient(circle at top left, rgba(255,159,67,.2), transparent 32%),
        linear-gradient(180deg, rgba(255,243,216,.04), transparent);
    }

    .hero-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
      gap: 30px;
      align-items: stretch;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--amber);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .eyebrow span {
      width: 10px;
      height: 10px;
      background: var(--orange);
      box-shadow: 12px 0 0 var(--green), 24px 0 0 var(--amber);
    }

    h1,
    h2,
    h3 {
      color: var(--cream);
      letter-spacing: -.03em;
      line-height: 1.16;
    }

    h1 {
      font-size: clamp(34px, 5vw, 64px);
      margin: 0 0 18px;
      font-weight: 950;
      text-shadow: 4px 4px 0 rgba(0,0,0,.26);
    }

    h2 {
      font-size: clamp(26px, 3vw, 42px);
      font-weight: 950;
      margin-bottom: 14px;
    }

    .lead-text {
      color: var(--muted);
      font-size: 17px;
      max-width: 720px;
      margin: 0 0 22px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 24px 0 18px;
    }

    .mini-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 20px;
    }

    .proof-bubble {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      max-width: 260px;
      color: var(--cream);
      background: rgba(255,255,255,.055);
      border: 2px solid var(--line);
      border-radius: 999px;
      padding: 8px 12px;
      box-shadow: 4px 4px 0 rgba(0,0,0,.18);
      font-size: 14px;
    }

    .avatar-stack {
      display: flex;
      align-items: center;
      margin-top: 18px;
    }

    .avatar {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      margin-right: -8px;
      color: #24160d;
      font-weight: 900;
      border: 2px solid var(--bg);
      border-radius: 8px;
      background: var(--amber);
      box-shadow: 3px 3px 0 rgba(0,0,0,.24);
    }

    .avatar:nth-child(2) { background: #ffb067; }
    .avatar:nth-child(3) { background: #57d6a3; }
    .avatar:nth-child(4) { background: #f5d28a; }
    .avatar:nth-child(5) { background: #ff7d68; }

    .avatar-note {
      margin-left: 18px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .filter-console,
    .hud-card,
    .content-card,
    .info-band,
    .feedback-panel {
      background: linear-gradient(180deg, rgba(255,243,216,.075), rgba(255,243,216,.035));
      border: 2px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
    }

    .filter-console {
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .filter-console::after {
      content: "";
      position: absolute;
      right: 18px;
      top: 18px;
      width: 48px;
      height: 14px;
      background: repeating-linear-gradient(90deg, var(--orange) 0 8px, transparent 8px 12px);
      opacity: .65;
    }

    .console-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .console-title strong {
      color: var(--cream);
      font-size: 18px;
    }

    .filter-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .filter-form .wide {
      grid-column: 1 / -1;
    }

    .form-label {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .form-control,
    .form-select {
      min-height: 46px;
      color: var(--text);
      background-color: rgba(16,12,9,.78);
      border: 2px solid var(--line);
      border-radius: var(--radius-sm);
    }

    .form-control::placeholder {
      color: var(--muted-2);
    }

    .form-control:focus,
    .form-select:focus {
      color: var(--text);
      background-color: rgba(16,12,9,.9);
      border-color: var(--amber);
      box-shadow: 0 0 0 4px rgba(255,209,102,.14);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .78fr) auto;
      gap: 22px;
      align-items: end;
      margin-bottom: 26px;
    }

    .section-head p {
      color: var(--muted);
      margin: 0;
      max-width: 760px;
    }

    .topic-strip {
      padding: 18px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 16px;
      align-items: center;
      margin-top: -2px;
      background: rgba(255,159,67,.08);
      border-top: 2px solid var(--line);
      border-bottom: 2px solid var(--line);
    }

    .topic-strip strong {
      color: var(--amber);
    }

    .tag-scroll {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .main-grid {
      display: grid;
      grid-template-columns: 270px minmax(0, 1fr);
      gap: 22px;
      align-items: start;
    }

    .side-filter {
      position: sticky;
      top: 92px;
      padding: 18px;
    }

    .side-filter h2 {
      font-size: 20px;
      margin-bottom: 14px;
    }

    .filter-group {
      display: grid;
      gap: 10px;
      padding: 14px 0;
      border-top: 1px solid var(--line);
    }

    .filter-choice {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      color: var(--muted);
      border: 2px solid transparent;
      border-radius: var(--radius-sm);
      padding: 8px 10px;
      background: rgba(255,255,255,.035);
      cursor: pointer;
      transition: transform .18s ease, border-color .18s ease, background .18s ease;
    }

    .filter-choice:hover,
    .filter-choice.active {
      color: var(--cream);
      border-color: var(--line-strong);
      background: rgba(255,159,67,.09);
      transform: translateX(3px);
    }

    .filter-choice em {
      color: var(--amber);
      font-style: normal;
      font-weight: 900;
      font-size: 12px;
    }

    .card-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .entry-card {
      position: relative;
      overflow: hidden;
      min-height: 260px;
      padding: 18px;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
    }

    .entry-card:hover {
      transform: translate(-2px, -3px);
      border-color: var(--line-strong);
      box-shadow: 9px 9px 0 rgba(0,0,0,.35), 0 22px 34px rgba(0,0,0,.3);
    }

    .entry-cover {
      height: 112px;
      border: 2px solid rgba(255,255,255,.08);
      border-radius: var(--radius-sm);
      margin-bottom: 14px;
      background:
        linear-gradient(135deg, rgba(255,159,67,.92), rgba(255,209,102,.48) 45%, rgba(87,214,163,.28)),
        repeating-linear-gradient(90deg, rgba(0,0,0,.2) 0 10px, transparent 10px 18px);
      position: relative;
      overflow: hidden;
    }

    .entry-cover::before {
      content: "";
      position: absolute;
      inset: 14px;
      border: 2px dashed rgba(35, 23, 14, .35);
      border-radius: 4px;
    }

    .entry-cover::after {
      content: attr(data-label);
      position: absolute;
      left: 14px;
      bottom: 12px;
      color: #211309;
      font-weight: 950;
      background: rgba(255,243,216,.78);
      border: 2px solid rgba(35,23,14,.35);
      border-radius: 6px;
      padding: 4px 8px;
      font-size: 13px;
    }

    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 10px;
    }

    .mini-tag {
      color: var(--amber);
      font-size: 12px;
      font-weight: 900;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 3px 8px;
      background: rgba(255,209,102,.07);
    }

    .status-live {
      color: var(--green);
    }

    .entry-card h2,
    .entry-card h3 {
      font-size: 22px;
      margin-bottom: 8px;
    }

    .entry-card p {
      color: var(--muted);
      margin-bottom: 14px;
      font-size: 15px;
    }

    .entry-foot {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .heat {
      color: var(--amber);
    }

    .load-row {
      display: flex;
      justify-content: center;
      margin-top: 24px;
    }

    .stats-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 22px;
    }

    .stat-box {
      padding: 16px;
      border: 2px solid var(--line);
      border-radius: var(--radius-sm);
      background: rgba(0,0,0,.16);
    }

    .stat-box strong {
      display: block;
      color: var(--amber);
      font-size: 28px;
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-box span {
      color: var(--muted);
      font-weight: 800;
      font-size: 13px;
    }

    .scenario-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 20px;
      align-items: stretch;
    }

    .scenario-list {
      display: grid;
      gap: 12px;
    }

    .scenario-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 12px;
      padding: 14px;
      border: 2px solid var(--line);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,.045);
    }

    .scenario-num {
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      color: #211309;
      background: var(--amber);
      border-radius: 6px;
      font-weight: 950;
      box-shadow: 4px 4px 0 rgba(0,0,0,.26);
    }

    .scenario-item strong {
      color: var(--cream);
      display: block;
      margin-bottom: 4px;
    }

    .scenario-item p {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
    }

    .review-wall {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .review-bubble {
      padding: 16px;
      border: 2px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.045);
      position: relative;
    }

    .review-bubble::after {
      content: "";
      position: absolute;
      left: 24px;
      bottom: -10px;
      width: 18px;
      height: 18px;
      background: var(--panel);
      border-right: 2px solid var(--line);
      border-bottom: 2px solid var(--line);
      transform: rotate(45deg);
    }

    .review-bubble p {
      color: var(--text);
      margin-bottom: 12px;
      font-size: 15px;
    }

    .review-user {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .faq-wrap {
      display: grid;
      gap: 12px;
    }

    .accordion-item {
      color: var(--text);
      background: rgba(255,255,255,.045);
      border: 2px solid var(--line) !important;
      border-radius: var(--radius-sm) !important;
      overflow: hidden;
      box-shadow: 5px 5px 0 rgba(0,0,0,.18);
    }

    .accordion-button {
      color: var(--cream);
      background: transparent;
      font-weight: 900;
      box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
      color: var(--amber);
      background: rgba(255,159,67,.09);
    }

    .accordion-button::after {
      filter: invert(1) sepia(1) saturate(3);
    }

    .accordion-body {
      color: var(--muted);
      padding-top: 0;
    }

    .bottom-band {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 330px;
      gap: 22px;
      align-items: center;
      padding: 22px;
      overflow: hidden;
    }

    .bottom-band h2 {
      margin-bottom: 10px;
    }

    .bottom-band p {
      color: var(--muted);
      margin: 0;
    }

    .feedback-panel {
      padding: 18px;
      background: rgba(0,0,0,.16);
    }

    .feedback-panel .btn-pixel {
      width: 100%;
      margin-top: 10px;
    }

    .site-footer {
      padding: 58px 0 28px;
      background: #100d0b;
      border-top: 2px solid var(--line);
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr 1fr;
      gap: 28px;
      margin-bottom: 26px;
    }

    .footer-brand {
      color: var(--cream);
      font-size: 24px;
      font-weight: 950;
      margin-bottom: 10px;
    }

    .site-footer p {
      color: var(--muted);
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--muted);
      font-weight: 800;
    }

    .footer-links a:hover {
      color: var(--amber);
      transform: translateX(3px);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      color: var(--muted-2);
      border-top: 1px solid var(--line);
      padding-top: 18px;
      font-size: 13px;
    }

    @media (max-width: 1024px) {
      .hero-layout,
      .main-grid,
      .scenario-grid,
      .bottom-band {
        grid-template-columns: 1fr;
      }

      .side-filter {
        position: static;
      }

      .stats-row {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .navbar .site-container {
        flex-wrap: wrap;
      }

      .navbar-collapse {
        width: 100%;
        padding-top: 12px;
      }

      .navbar-nav {
        align-items: stretch !important;
      }

      .nav-cta {
        width: 100%;
        margin-top: 8px;
      }

      .category-hero {
        padding-top: 46px;
      }

      .section {
        padding: 54px 0;
      }

      .section-head,
      .topic-strip {
        grid-template-columns: 1fr;
      }

      .card-grid,
      .review-wall,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .filter-form {
        grid-template-columns: 1fr;
      }

      .tag-scroll {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
      }
    }

    @media (max-width: 520px) {
      .site-container {
        width: min(100% - 22px, var(--container));
      }

      h1 {
        font-size: 32px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn-pixel,
      .btn-ghost {
        width: 100%;
      }

      .stats-row {
        grid-template-columns: 1fr;
      }

      .entry-foot,
      .copyright {
        align-items: flex-start;
        flex-direction: column;
      }

      .filter-console,
      .bottom-band,
      .content-card,
      .hud-card {
        box-shadow: 5px 5px 0 rgba(0,0,0,.26);
      }
    }
