/* roulang page: index */
:root{
      --red:#ff2b1f;
      --red-dark:#c6120a;
      --orange:#ff8a00;
      --cyan:#09f7d7;
      --lime:#caff35;
      --ink:#111114;
      --ink-2:#1b1b20;
      --muted:#666873;
      --soft:#f6f6f8;
      --white:#ffffff;
      --line:#e5e5ea;
      --shadow:0 18px 42px rgba(17,17,20,.12);
      --shadow-sm:0 8px 22px rgba(17,17,20,.08);
      --radius:8px;
      --sidebar:248px;
      --max:1180px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:linear-gradient(180deg,#fff 0%,#f4f4f6 42%,#fff 100%);
      line-height:1.7;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    input,select,textarea{
      width:100%;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:13px 14px;
      background:#fff;
      color:var(--ink);
      outline:none;
      transition:.2s ease;
    }
    input:focus,select:focus,textarea:focus{
      border-color:var(--red);
      box-shadow:0 0 0 4px rgba(255,43,31,.12);
    }
    .site-shell{min-height:100vh}
    .sidebar{
      position:fixed;
      inset:0 auto 0 0;
      width:var(--sidebar);
      background:#111114;
      color:#fff;
      z-index:30;
      display:flex;
      flex-direction:column;
      border-right:1px solid rgba(255,255,255,.08);
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      padding:26px 22px 18px;
      font-weight:900;
      line-height:1.25;
      letter-spacing:0;
    }
    .brand-mark{
      width:40px;height:40px;border-radius:8px;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--red),var(--orange));
      box-shadow:0 8px 24px rgba(255,43,31,.38);
      color:#fff;
      font-weight:900;
    }
    .brand small{display:block;color:#aeb0b9;font-size:12px;font-weight:700;margin-top:3px}
    .side-nav{padding:12px}
    .side-nav a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:13px 14px;
      border-radius:8px;
      color:#d9dae0;
      font-weight:800;
      margin-bottom:8px;
      border:1px solid transparent;
    }
    .side-nav a:hover,.side-nav a:focus{
      background:#1e1e25;
      color:#fff;
      border-color:rgba(255,255,255,.12);
      transform:translateX(2px);
    }
    .side-nav a.active{
      background:linear-gradient(135deg,var(--red),#ff5d2d);
      color:#fff;
      box-shadow:0 10px 22px rgba(255,43,31,.28);
    }
    .nav-pill{
      font-size:11px;
      padding:2px 7px;
      border-radius:999px;
      background:rgba(202,255,53,.15);
      color:var(--lime);
      border:1px solid rgba(202,255,53,.25);
    }
    .side-tools{
      margin-top:auto;
      padding:16px;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .mini-search{
      display:flex;
      gap:8px;
      background:#1b1b20;
      padding:8px;
      border-radius:8px;
      border:1px solid rgba(255,255,255,.08);
    }
    .mini-search input{
      background:transparent;
      border:0;
      color:#fff;
      padding:7px;
      box-shadow:none;
    }
    .mini-search button{
      border:0;
      border-radius:7px;
      background:var(--cyan);
      color:#06110f;
      font-weight:900;
      padding:7px 10px;
      cursor:pointer;
    }
    .mobile-bar{
      display:none;
      position:sticky;
      top:0;
      z-index:28;
      background:#111114;
      color:#fff;
      border-bottom:1px solid rgba(255,255,255,.08);
      padding:10px 14px;
      align-items:center;
      justify-content:space-between;
    }
    .menu-button{
      border:1px solid rgba(255,255,255,.2);
      background:#1b1b20;
      color:#fff;
      border-radius:8px;
      padding:9px 12px;
      font-weight:900;
      cursor:pointer;
    }
    .main-panel{margin-left:var(--sidebar)}
    .wrap{width:min(var(--max),calc(100% - 44px));margin-inline:auto}
    section{position:relative}
    .band{padding:76px 0}
    .band-tight{padding:54px 0}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:24px;
      margin-bottom:26px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:5px 9px;
      border-radius:999px;
      background:#111114;
      color:#fff;
      font-size:12px;
      font-weight:900;
      margin-bottom:12px;
    }
    .eyebrow::before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:var(--lime);
      box-shadow:0 0 0 4px rgba(202,255,53,.18);
    }
    h1,h2,h3,p{margin-top:0}
    h1{font-size:clamp(34px,5vw,66px);line-height:1.05;font-weight:950;letter-spacing:0;margin-bottom:18px}
    h2{font-size:clamp(26px,3vw,42px);line-height:1.16;font-weight:950;margin-bottom:10px}
    h3{font-size:20px;line-height:1.3;font-weight:900;margin-bottom:8px}
    .lead{font-size:17px;color:#34343a;max-width:780px}
    .muted{color:var(--muted)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 18px;
      border-radius:8px;
      border:2px solid transparent;
      font-weight:950;
      cursor:pointer;
      transition:.22s ease;
    }
    .btn-primary{background:var(--red);color:#fff;box-shadow:0 12px 24px rgba(255,43,31,.25)}
    .btn-primary:hover,.btn-primary:focus{background:var(--red-dark);color:#fff;transform:translateY(-2px);box-shadow:0 16px 30px rgba(255,43,31,.32)}
    .btn-dark{background:#111114;color:#fff}
    .btn-dark:hover,.btn-dark:focus{background:#26262d;color:#fff;transform:translateY(-2px)}
    .btn-line{background:#fff;color:#111114;border-color:#111114}
    .btn-line:hover,.btn-line:focus{background:#111114;color:#fff;transform:translateY(-2px)}
    .hero{
      min-height:680px;
      display:flex;
      align-items:center;
      padding:64px 0;
      color:#fff;
      background:
        radial-gradient(circle at 86% 20%,rgba(9,247,215,.42),transparent 25%),
        radial-gradient(circle at 12% 70%,rgba(255,138,0,.44),transparent 28%),
        linear-gradient(135deg,#161616 0%,#230704 44%,#ff2b1f 100%);
      overflow:hidden;
    }
    .hero::after{
      content:"";
      position:absolute;
      inset:auto -80px -140px auto;
      width:420px;height:420px;
      background:rgba(202,255,53,.18);
      border-radius:50%;
      filter:blur(18px);
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.02fr .98fr;
      gap:34px;
      align-items:center;
      position:relative;
      z-index:2;
    }
    .hero p{color:#ffe7e4}
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin:26px 0 24px}
    .hero .btn-line{background:transparent;color:#fff;border-color:rgba(255,255,255,.75)}
    .hero .btn-line:hover{background:#fff;color:#111114}
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      max-width:640px;
    }
    .stat{
      border:1px solid rgba(255,255,255,.2);
      background:rgba(255,255,255,.1);
      border-radius:8px;
      padding:12px;
      backdrop-filter:blur(8px);
    }
    .stat strong{display:block;font-size:24px;font-weight:950;color:#fff;line-height:1.1}
    .stat span{font-size:12px;color:#ffd8d4;font-weight:800}
    .crowd-stage{
      background:#fff;
      color:#111114;
      border-radius:8px;
      padding:20px;
      box-shadow:var(--shadow);
      transform:rotate(-1deg);
      border:4px solid #111114;
    }
    .stage-top{
      display:flex;
      justify-content:space-between;
      align-items:start;
      gap:16px;
      border-bottom:2px solid #111114;
      padding-bottom:14px;
      margin-bottom:16px;
    }
    .burst{
      display:inline-grid;
      place-items:center;
      min-width:86px;
      min-height:86px;
      padding:8px;
      color:#111114;
      background:var(--lime);
      clip-path:polygon(50% 0%,61% 26%,90% 16%,77% 43%,100% 58%,69% 62%,72% 94%,50% 75%,28% 94%,31% 62%,0 58%,23% 43%,10% 16%,39% 26%);
      font-weight:950;
      text-align:center;
      line-height:1.15;
      font-size:14px;
    }
    .progress-wrap{
      display:grid;
      grid-template-columns:140px 1fr;
      gap:18px;
      align-items:center;
    }
    .ring{
      width:138px;height:138px;border-radius:50%;
      background:conic-gradient(var(--red) 0 74%,#ececf0 74% 100%);
      display:grid;
      place-items:center;
      position:relative;
    }
    .ring::after{
      content:"";
      width:100px;height:100px;
      border-radius:50%;
      background:#fff;
      position:absolute;
    }
    .ring b{position:relative;z-index:2;font-size:28px;font-weight:950}
    .tier-list{display:grid;gap:10px}
    .tier{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      padding:12px;
      border:2px solid #111114;
      border-radius:8px;
      background:#fafafa;
      font-weight:900;
    }
    .tier span{color:var(--red);font-size:13px}
    .cover-strip{
      margin-top:16px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
    }
    .cover-tile{
      min-height:92px;
      border-radius:8px;
      background:linear-gradient(135deg,#111114,#3b1210);
      color:#fff;
      padding:10px;
      display:flex;
      align-items:end;
      font-weight:900;
      border:1px solid rgba(0,0,0,.18);
    }
    .highlight-band{background:#fff}
    .triple-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:16px;
    }
    .hot-card,.feature-card,.slot-card,.entry-card,.quote-card{
      border-radius:8px;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:var(--shadow-sm);
      transition:.22s ease;
    }
    .hot-card:hover,.feature-card:hover,.slot-card:hover,.entry-card:hover,.quote-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow);
      border-color:#d6d6dd;
    }
    .feature-card{
      padding:24px;
      min-height:190px;
      position:relative;
      overflow:hidden;
    }
    .feature-card::after{
      content:attr(data-num);
      position:absolute;
      right:16px;bottom:-18px;
      font-size:74px;
      line-height:1;
      color:rgba(255,43,31,.09);
      font-weight:950;
    }
    .icon-chip{
      width:42px;height:42px;
      border-radius:8px;
      display:grid;
      place-items:center;
      background:#111114;
      color:var(--lime);
      font-weight:950;
      margin-bottom:14px;
    }
    .countdown-band{
      background:#111114;
      color:#fff;
      padding:28px 0;
      border-block:1px solid rgba(255,255,255,.08);
    }
    .count-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      align-items:center;
    }
    .timer{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .timebox{
      min-width:76px;
      text-align:center;
      padding:10px 12px;
      background:#22222a;
      border:1px solid rgba(255,255,255,.12);
      border-radius:8px;
    }
    .timebox b{display:block;font-size:26px;line-height:1;color:var(--cyan)}
    .timebox span{font-size:12px;color:#b8bac3;font-weight:800}
    .slot-area{background:#f4f4f6}
    .slot-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:16px;
    }
    .slot-card{padding:22px;position:relative;overflow:hidden}
    .slot-card.primary{
      background:linear-gradient(135deg,#fff,#fff4ef);
      border:2px solid var(--red);
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 9px;
      border-radius:999px;
      font-size:12px;
      font-weight:950;
      background:#fff0ed;
      color:var(--red-dark);
      border:1px solid rgba(255,43,31,.22);
      margin-bottom:12px;
    }
    .badge.dark{background:#111114;color:#fff;border-color:#111114}
    .badge.cyan{background:#e8fffb;color:#006a5e;border-color:#aef7ec}
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:14px 0;
    }
    .meta-row span{
      font-size:12px;
      font-weight:900;
      padding:4px 8px;
      background:#f2f2f4;
      border-radius:999px;
      color:#383840;
    }
    .watch-list{background:#fff}
    .watch-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .watch-item{
      display:grid;
      grid-template-columns:96px 1fr auto;
      gap:14px;
      align-items:center;
      padding:14px;
      border:1px solid var(--line);
      border-radius:8px;
      background:#fff;
      transition:.22s ease;
    }
    .watch-item:hover{border-color:var(--red);box-shadow:var(--shadow-sm);transform:translateY(-2px)}
    .poster{
      height:88px;
      border-radius:8px;
      background:
        linear-gradient(135deg,rgba(255,43,31,.85),rgba(17,17,20,.92)),
        repeating-linear-gradient(45deg,transparent 0 10px,rgba(255,255,255,.08) 10px 20px);
      display:flex;
      align-items:flex-end;
      padding:9px;
      color:#fff;
      font-weight:950;
    }
    .news-band{background:#f4f4f6}
    .news-layout{
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:18px;
    }
    .news-list{
      background:#fff;
      border:1px solid var(--line);
      border-radius:8px;
      overflow:hidden;
      box-shadow:var(--shadow-sm);
    }
    .news-link{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:12px;
      align-items:center;
      padding:17px 18px;
      border-bottom:1px solid var(--line);
    }
    .news-link:last-child{border-bottom:0}
    .news-link:hover{background:#fff5f3;color:var(--red-dark)}
    .news-link em{
      font-style:normal;
      font-weight:950;
      color:#a3a4ad;
      width:34px;
    }
    .recommend{
      background:#111114;
      color:#fff;
      border-radius:8px;
      padding:22px;
      box-shadow:var(--shadow);
    }
    .recommend p{color:#d6d7df}
    .matrix-band{background:#fff}
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
    }
    .entry-card{padding:18px}
    .entry-card strong{display:block;font-size:28px;line-height:1.1;color:var(--red);margin-bottom:8px}
    .subscribe-band{
      color:#fff;
      background:
        linear-gradient(135deg,rgba(17,17,20,.95),rgba(17,17,20,.84)),
        radial-gradient(circle at 82% 14%,rgba(255,43,31,.48),transparent 28%);
    }
    .form-panel{
      background:#fff;
      color:#111114;
      border-radius:8px;
      padding:22px;
      box-shadow:var(--shadow);
      border:1px solid rgba(255,255,255,.12);
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr auto;
      gap:12px;
      align-items:end;
    }
    .form-note{font-size:13px;color:#d5d6dc;margin-top:12px}
    .faq-band{background:#f4f4f6}
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:10px;
      border:1px solid var(--line);
      border-radius:8px;
      overflow:hidden;
      background:#fff;
      box-shadow:var(--shadow-sm);
    }
    .accordion-title{
      border:0;
      color:#111114;
      font-weight:950;
      font-size:17px;
      padding:18px 48px 18px 18px;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#fff2ef;
      color:var(--red-dark);
    }
    .accordion-content{
      border:0;
      color:#555761;
      padding:0 18px 18px;
    }
    .cta-band{
      background:linear-gradient(135deg,var(--red),var(--orange));
      color:#fff;
      padding:46px 0;
    }
    .cta-inner{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
    }
    .cta-inner p{color:#fff3ef;margin-bottom:0}
    .footer{
      background:#111114;
      color:#dfe0e6;
      padding:38px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:24px;
      margin-bottom:22px;
    }
    .footer a{display:block;color:#bfc1ca;margin:7px 0;font-weight:700}
    .footer a:hover{color:#fff}
    .footer-title{font-weight:950;color:#fff;margin-bottom:10px}
    .copyright{
      border-top:1px solid rgba(255,255,255,.1);
      padding-top:18px;
      color:#a9abb5;
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    @media (max-width:1024px){
      :root{--sidebar:220px}
      .hero-grid,.news-layout{grid-template-columns:1fr}
      .slot-grid{grid-template-columns:1fr 1fr}
      .entry-grid{grid-template-columns:repeat(2,1fr)}
      .watch-grid{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr 1fr}
      .form-grid .btn{grid-column:1/-1}
    }
    @media (max-width:768px){
      .sidebar{
        transform:translateX(-104%);
        transition:.25s ease;
        width:280px;
      }
      .sidebar.is-open{transform:translateX(0)}
      .mobile-bar{display:flex}
      .main-panel{margin-left:0}
      .wrap{width:min(100% - 28px,var(--max))}
      .band{padding:54px 0}
      .hero{min-height:auto;padding:46px 0}
      .hero-grid,.triple-grid,.slot-grid,.progress-wrap,.footer-grid,.count-grid{grid-template-columns:1fr}
      .count-grid{align-items:start}
      .section-head{display:block}
      .crowd-stage{transform:none}
      .watch-item{grid-template-columns:76px 1fr}
      .watch-item .btn{grid-column:1/-1}
      .cta-inner{display:block}
      .cta-inner .btn{margin-top:18px}
    }
    @media (max-width:520px){
      h1{font-size:34px}
      h2{font-size:27px}
      .hero-stats,.cover-strip,.entry-grid,.form-grid{grid-template-columns:1fr}
      .timer{display:grid;grid-template-columns:repeat(2,1fr)}
      .timebox{min-width:0}
      .stage-top{display:block}
      .burst{margin-top:12px}
      .news-link{grid-template-columns:auto 1fr}
      .news-link .badge{grid-column:1/-1;width:max-content}
    }

/* roulang page: category2 */
:root{
      --brand:#ff2b14;
      --brand-dark:#c8150a;
      --brand-soft:#fff0ed;
      --accent:#1ce7c7;
      --acid:#c9ff35;
      --ink:#171717;
      --ink-2:#2c2c2c;
      --muted:#747474;
      --line:#e7e0dc;
      --paper:#fffaf6;
      --panel:#ffffff;
      --dark:#111111;
      --dark-2:#1f1f1f;
      --radius:8px;
      --radius-sm:6px;
      --shadow:0 16px 38px rgba(22,18,15,.10);
      --shadow-soft:0 10px 24px rgba(22,18,15,.07);
      --sidebar:236px;
      --wrap:1160px;
      --ease:all .22s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 82% 2%, rgba(255,43,20,.14), transparent 26%),
        linear-gradient(180deg,#fff7ef 0%,#fffaf6 36%,#f7f2ee 100%);
      line-height:1.65;
      min-height:100vh;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    button{cursor:pointer}
    :focus-visible{outline:3px solid rgba(28,231,199,.55);outline-offset:3px}
    ::selection{background:var(--brand);color:#fff}

    .wrap{width:min(calc(100% - 40px),var(--wrap));margin:0 auto}
    .app-shell{display:flex;min-height:100vh}
    .sidebar{
      position:fixed;
      inset:0 auto 0 0;
      width:var(--sidebar);
      background:#141414;
      color:#fff;
      border-right:1px solid rgba(255,255,255,.08);
      z-index:40;
      padding:22px 18px;
      display:flex;
      flex-direction:column;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-height:46px;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:var(--radius-sm);
      background:linear-gradient(135deg,var(--brand),#ff7b22);
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:900;
      box-shadow:0 10px 22px rgba(255,43,20,.28);
    }
    .brand-text{
      font-weight:900;
      letter-spacing:.2px;
      line-height:1.25;
      font-size:15px;
    }
    .side-note{
      padding:10px 12px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.05);
      border-radius:var(--radius);
      color:#d7d7d7;
      font-size:12px;
    }
    .side-nav{
      display:flex;
      flex-direction:column;
      gap:8px;
    }
    .side-nav a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:12px 12px;
      border-radius:var(--radius);
      color:#e9e9e9;
      border:1px solid transparent;
      font-weight:800;
    }
    .side-nav a:hover{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.14);
      transform:translateX(2px);
    }
    .side-nav a.active{
      background:var(--brand);
      color:#fff;
      box-shadow:0 12px 24px rgba(255,43,20,.24);
    }
    .nav-pill{
      font-size:11px;
      padding:2px 7px;
      border-radius:999px;
      background:rgba(255,255,255,.13);
      color:#fff;
      line-height:1.5;
    }
    .side-nav a.active .nav-pill{background:#fff;color:var(--brand)}
    .side-tool{
      margin-top:auto;
      display:grid;
      gap:10px;
    }
    .mini-status{
      display:flex;
      align-items:center;
      gap:8px;
      color:#dcdcdc;
      font-size:12px;
    }
    .dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--acid);
      box-shadow:0 0 0 4px rgba(201,255,53,.12);
    }

    .mobile-top{
      display:none;
      position:sticky;
      top:0;
      z-index:60;
      background:#141414;
      color:#fff;
      border-bottom:1px solid rgba(255,255,255,.08);
      padding:12px 16px;
    }
    .mobile-top-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
    }
    .menu-button{
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.08);
      color:#fff;
      border-radius:var(--radius-sm);
      padding:9px 12px;
      font-weight:900;
    }
    .off-canvas{
      background:#141414;
      color:#fff;
      padding:18px;
    }

    .main{
      margin-left:var(--sidebar);
      width:calc(100% - var(--sidebar));
      overflow:hidden;
    }
    .section{padding:64px 0}
    .section-tight{padding:42px 0}
    .section-dark{
      background:var(--dark);
      color:#fff;
      border-top:1px solid rgba(255,255,255,.08);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background:var(--brand-soft);
      color:var(--brand-dark);
      font-weight:900;
      font-size:13px;
      border:1px solid rgba(255,43,20,.16);
    }
    .section-dark .eyebrow{
      background:rgba(255,43,20,.14);
      color:#fff;
      border-color:rgba(255,255,255,.13);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(34px,5vw,64px);
      line-height:1.05;
      margin-bottom:18px;
      font-weight:950;
    }
    h2{
      font-size:clamp(25px,3.2vw,42px);
      line-height:1.16;
      margin-bottom:12px;
      font-weight:950;
    }
    h3{
      font-size:20px;
      line-height:1.25;
      margin-bottom:8px;
      font-weight:900;
    }
    .lead{
      font-size:18px;
      color:#4d4d4d;
      max-width:760px;
      margin-bottom:0;
    }
    .section-dark .lead{color:#d8d8d8}
    .muted{color:var(--muted)}
    .section-dark .muted{color:#b9b9b9}

    .hero-access{
      padding:34px 0 56px;
      background:
        linear-gradient(90deg,rgba(255,43,20,.08),transparent 48%),
        linear-gradient(180deg,#fff7ef,#fffaf6);
    }
    .flash-bar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:12px 14px;
      margin-bottom:26px;
      border:2px solid #111;
      border-radius:var(--radius);
      background:linear-gradient(90deg,var(--brand),#ff7b22);
      color:#fff;
      box-shadow:8px 8px 0 #111;
    }
    .flash-label{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:950;
    }
    .burst{
      display:inline-grid;
      place-items:center;
      width:54px;
      height:32px;
      background:var(--acid);
      color:#111;
      font-weight:950;
      clip-path:polygon(8% 22%,28% 17%,36% 0,50% 16%,70% 6%,76% 26%,96% 30%,82% 48%,94% 72%,70% 70%,61% 100%,48% 77%,25% 90%,26% 65%,4% 60%,18% 43%);
      font-size:12px;
    }
    .countdown{
      display:flex;
      gap:6px;
      align-items:center;
      white-space:nowrap;
      font-weight:900;
    }
    .countdown span{
      display:inline-flex;
      min-width:34px;
      justify-content:center;
      padding:4px 7px;
      border-radius:var(--radius-sm);
      background:#111;
      color:#fff;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(320px,.72fr);
      gap:28px;
      align-items:stretch;
    }
    .hero-copy{
      padding:24px 0;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:26px;
    }
    .button{
      margin:0;
      border-radius:var(--radius-sm);
      font-weight:950;
      transition:var(--ease);
      border:2px solid transparent;
      line-height:1.1;
    }
    .button.primary{
      background:var(--brand);
      color:#fff;
      box-shadow:0 10px 22px rgba(255,43,20,.22);
    }
    .button.primary:hover,.button.primary:focus{
      background:var(--brand-dark);
      transform:translateY(-2px);
      box-shadow:0 16px 28px rgba(255,43,20,.28);
    }
    .button.hollow{
      border-color:#111;
      color:#111;
      background:#fff;
    }
    .button.hollow:hover,.button.hollow:focus{
      background:#111;
      color:#fff;
      transform:translateY(-2px);
    }
    .button.light{
      background:#fff;
      color:#111;
      border-color:#fff;
    }
    .button.light:hover{background:var(--acid);border-color:var(--acid);transform:translateY(-2px)}
    .button.small{padding:.75rem .95rem}

    .access-card{
      position:relative;
      background:#fff;
      border:2px solid #111;
      border-radius:var(--radius);
      box-shadow:10px 10px 0 #111;
      padding:20px;
      overflow:hidden;
    }
    .access-card:before{
      content:"";
      position:absolute;
      inset:0 0 auto 0;
      height:8px;
      background:linear-gradient(90deg,var(--brand),var(--accent),var(--acid));
    }
    .corner-badge{
      position:absolute;
      top:18px;
      right:16px;
      padding:6px 9px;
      border-radius:999px;
      background:#111;
      color:#fff;
      font-size:12px;
      font-weight:950;
    }
    .cover-block{
      min-height:180px;
      border-radius:var(--radius-sm);
      background:
        linear-gradient(135deg,rgba(255,43,20,.90),rgba(255,123,34,.72)),
        repeating-linear-gradient(90deg,rgba(255,255,255,.18) 0 1px,transparent 1px 16px);
      display:flex;
      align-items:flex-end;
      padding:18px;
      color:#fff;
      margin-bottom:18px;
    }
    .cover-block strong{
      font-size:28px;
      line-height:1.1;
      max-width:260px;
    }
    .status-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin:16px 0;
    }
    .status-mini{
      border:1px solid var(--line);
      border-radius:var(--radius-sm);
      padding:12px;
      background:#fffaf6;
    }
    .status-mini b{
      display:block;
      font-size:18px;
      line-height:1;
      margin-bottom:4px;
    }
    .status-mini span{
      font-size:12px;
      color:var(--muted);
      font-weight:800;
    }
    .ticket-line{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      border-top:1px dashed #d9d0ca;
      padding-top:14px;
      color:#333;
      font-weight:800;
    }

    .filter-panel{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      padding:18px;
      margin-top:24px;
    }
    .filter-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      justify-content:space-between;
    }
    .filter-tabs{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .filter-tab{
      border:1px solid var(--line);
      background:#fffaf6;
      color:#222;
      border-radius:999px;
      padding:9px 13px;
      font-weight:900;
      transition:var(--ease);
    }
    .filter-tab:hover,.filter-tab.active{
      background:#111;
      color:#fff;
      border-color:#111;
      transform:translateY(-1px);
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:8px;
      padding:7px 10px;
      background:#f8f1ec;
      border:1px solid var(--line);
      border-radius:var(--radius-sm);
      min-width:260px;
    }
    .search-box input{
      border:0;
      box-shadow:none;
      background:transparent;
      margin:0;
      height:auto;
      padding:6px;
    }
    .search-box input:focus{
      border:0;
      box-shadow:none;
      background:transparent;
    }

    .matrix{
      display:grid;
      gap:14px;
      margin-top:22px;
    }
    .matrix-head,.matrix-row{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr 1fr auto;
      gap:12px;
      align-items:center;
    }
    .matrix-head{
      padding:0 16px;
      color:#777;
      font-size:13px;
      font-weight:900;
    }
    .matrix-row{
      padding:16px;
      background:#fff;
      border:1px solid var(--line);
      border-left:6px solid var(--brand);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      transition:var(--ease);
    }
    .matrix-row:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow);
      border-color:#d8cbc3;
    }
    .matrix-title{
      display:flex;
      gap:12px;
      align-items:center;
      min-width:0;
    }
    .rank{
      flex:0 0 auto;
      width:36px;
      height:36px;
      border-radius:var(--radius-sm);
      background:#111;
      color:#fff;
      display:grid;
      place-items:center;
      font-weight:950;
    }
    .matrix-title b{display:block;font-size:17px;line-height:1.25}
    .matrix-title span{display:block;color:var(--muted);font-size:13px}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      width:max-content;
      padding:5px 9px;
      border-radius:999px;
      font-size:12px;
      font-weight:950;
      border:1px solid var(--line);
      background:#fffaf6;
      color:#333;
    }
    .tag.hot{background:var(--brand);border-color:var(--brand);color:#fff}
    .tag.live{background:var(--acid);border-color:var(--acid);color:#111}
    .tag.cyan{background:rgba(28,231,199,.16);border-color:rgba(28,231,199,.42);color:#087e70}
    .progress-wrap{
      display:grid;
      gap:6px;
      font-size:12px;
      color:var(--muted);
      font-weight:800;
    }
    .progress{
      height:8px;
      border-radius:999px;
      background:#eee3dc;
      overflow:hidden;
      margin:0;
    }
    .progress-meter{
      background:linear-gradient(90deg,var(--brand),#ff7b22);
      border-radius:999px;
    }

    .compare-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
      margin-top:24px;
    }
    .compare-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:22px;
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
    }
    .compare-card.dark{
      background:#111;
      color:#fff;
      border-color:#111;
    }
    .compare-card:after{
      content:"";
      position:absolute;
      top:0;
      right:0;
      width:94px;
      height:94px;
      background:radial-gradient(circle,var(--brand) 0 35%,transparent 36%);
      opacity:.14;
      transform:translate(30%,-30%);
    }
    .check-list{
      list-style:none;
      margin:16px 0 0;
      padding:0;
      display:grid;
      gap:10px;
    }
    .check-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:#4b4b4b;
      font-weight:700;
    }
    .compare-card.dark .check-list li{color:#d8d8d8}
    .check-list li:before{
      content:"✓";
      flex:0 0 auto;
      width:22px;
      height:22px;
      border-radius:50%;
      background:var(--accent);
      color:#111;
      display:grid;
      place-items:center;
      font-weight:950;
      line-height:1;
      margin-top:2px;
    }

    .flow-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:24px;
    }
    .flow-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:20px;
      box-shadow:var(--shadow-soft);
    }
    .flow-num{
      width:38px;
      height:38px;
      display:grid;
      place-items:center;
      background:var(--brand);
      color:#fff;
      border-radius:var(--radius-sm);
      font-weight:950;
      margin-bottom:14px;
    }

    .reminder-band{
      background:linear-gradient(135deg,var(--brand),#ff7b22);
      color:#fff;
      border-radius:var(--radius);
      padding:24px;
      border:2px solid #111;
      box-shadow:8px 8px 0 #111;
    }
    .subscribe-form{
      display:grid;
      grid-template-columns:1fr auto;
      gap:10px;
      margin-top:16px;
      max-width:620px;
    }
    .subscribe-form input{
      margin:0;
      height:48px;
      border:2px solid #111;
      border-radius:var(--radius-sm);
      box-shadow:none;
      background:#fff;
      color:#111;
      font-weight:700;
    }
    .subscribe-form input:focus{
      border-color:#111;
      box-shadow:0 0 0 4px rgba(28,231,199,.32);
    }

    .faq-wrap{
      margin-top:24px;
    }
    .accordion{
      background:transparent;
    }
    .accordion-item{
      margin-bottom:10px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      overflow:hidden;
      background:#fff;
      box-shadow:var(--shadow-soft);
    }
    .accordion-title{
      border:0;
      color:#111;
      font-weight:950;
      font-size:16px;
      padding:18px 48px 18px 18px;
      background:#fff;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#fff4ec;
      color:var(--brand-dark);
    }
    .accordion-content{
      border:0;
      border-top:1px solid var(--line);
      color:#555;
      background:#fffdfa;
      padding:18px;
    }

    .cta-split{
      display:grid;
      grid-template-columns:1fr auto;
      gap:20px;
      align-items:center;
      background:#111;
      color:#fff;
      border-radius:var(--radius);
      padding:28px;
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .cta-split:before{
      content:"入口提醒";
      position:absolute;
      right:20px;
      top:18px;
      color:rgba(255,255,255,.06);
      font-size:58px;
      font-weight:950;
      line-height:1;
      pointer-events:none;
    }
    .cta-split p{color:#d4d4d4;margin-bottom:0}

    .footer{
      background:#0f0f0f;
      color:#fff;
      padding:34px 0 24px;
      border-top:4px solid var(--brand);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.6fr .8fr .8fr;
      gap:28px;
      padding-bottom:24px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-title{
      font-weight:950;
      margin-bottom:10px;
      font-size:16px;
    }
    .footer a{
      display:block;
      width:max-content;
      color:#d8d8d8;
      margin:6px 0;
      font-weight:700;
    }
    .footer a:hover{
      color:var(--acid);
      transform:translateX(2px);
    }
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:14px;
      padding-top:18px;
      color:#aaa;
      font-size:13px;
      flex-wrap:wrap;
    }

    @media (max-width:1024px){
      :root{--sidebar:210px}
      .wrap{width:min(calc(100% - 32px),var(--wrap))}
      .hero-grid{grid-template-columns:1fr}
      .matrix-head{display:none}
      .matrix-row{
        grid-template-columns:1fr 1fr;
        gap:14px;
      }
      .matrix-title{grid-column:1/-1}
      .matrix-row .button{justify-self:start}
      .flow-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:768px){
      .mobile-top{display:block}
      .sidebar{display:none}
      .main{margin-left:0;width:100%}
      .hero-access{padding-top:22px}
      .flash-bar{align-items:flex-start;flex-direction:column;box-shadow:5px 5px 0 #111}
      .filter-row{align-items:stretch}
      .search-box{width:100%;min-width:0}
      .compare-grid,.footer-grid,.cta-split{grid-template-columns:1fr}
      .cta-split:before{display:none}
      .subscribe-form{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .wrap{width:min(calc(100% - 24px),var(--wrap))}
      .section{padding:46px 0}
      h1{font-size:34px}
      .hero-actions .button{width:100%}
      .status-row{grid-template-columns:1fr}
      .matrix-row{grid-template-columns:1fr}
      .flow-grid{grid-template-columns:1fr}
      .filter-tabs{overflow-x:auto;flex-wrap:nowrap;padding-bottom:4px}
      .filter-tab{white-space:nowrap}
      .countdown{flex-wrap:wrap}
      .access-card{box-shadow:5px 5px 0 #111}
      .reminder-band{box-shadow:5px 5px 0 #111}
    }

/* roulang page: category1 */
:root{
      --red:#f1261d;
      --red-dark:#b91410;
      --orange:#ff7a18;
      --cyan:#19e6d2;
      --lime:#c8ff3d;
      --ink:#111114;
      --paper:#fffaf4;
      --soft:#f5f1ea;
      --muted:#68645f;
      --line:#ded7cd;
      --white:#ffffff;
      --black:#070707;
      --radius:8px;
      --shadow:0 18px 40px rgba(17,17,20,.12);
      --shadow-soft:0 10px 22px rgba(17,17,20,.08);
      --side:248px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:linear-gradient(180deg,#fff8ed 0%,#f5f1ea 46%,#fffaf4 100%);
      line-height:1.65;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:.22s ease}
    img{max-width:100%;display:block}
    button,input,select{font:inherit}
    input,select{
      width:100%;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:.9rem 1rem;
      background:#fff;
      color:var(--ink);
      outline:none;
      transition:.22s ease;
    }
    input:focus,select:focus{
      border-color:var(--red);
      box-shadow:0 0 0 4px rgba(241,38,29,.12);
    }
    .wrap{width:min(1140px,calc(100% - 40px));margin:0 auto}
    .app-shell{min-height:100vh;padding-left:var(--side)}
    .sidebar{
      position:fixed;
      inset:0 auto 0 0;
      width:var(--side);
      background:#111114;
      color:#fff;
      border-right:1px solid rgba(255,255,255,.08);
      z-index:40;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:22px 18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      letter-spacing:.02em;
      line-height:1.15;
      font-size:1.02rem;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:8px;
      background:linear-gradient(135deg,var(--red),var(--orange));
      display:grid;
      place-items:center;
      box-shadow:0 10px 24px rgba(241,38,29,.35);
      color:#fff;
      font-weight:900;
    }
    .side-note{
      margin:18px 0 14px;
      color:rgba(255,255,255,.62);
      font-size:.82rem;
      line-height:1.55;
    }
    .side-nav{display:grid;gap:9px;margin-top:18px}
    .side-nav a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 12px;
      border-radius:8px;
      color:rgba(255,255,255,.78);
      border:1px solid transparent;
      background:rgba(255,255,255,.04);
      font-weight:800;
    }
    .side-nav a:hover,.side-nav a:focus{
      color:#fff;
      border-color:rgba(255,255,255,.22);
      transform:translateX(2px);
      outline:none;
    }
    .side-nav a.active{
      background:linear-gradient(135deg,var(--red),var(--orange));
      color:#fff;
      box-shadow:0 14px 26px rgba(241,38,29,.25);
    }
    .nav-pill{
      font-size:.72rem;
      padding:2px 7px;
      border-radius:999px;
      color:#111;
      background:var(--lime);
      white-space:nowrap;
    }
    .side-tool{
      border-top:1px solid rgba(255,255,255,.12);
      padding-top:16px;
      display:grid;
      gap:10px;
      color:rgba(255,255,255,.7);
      font-size:.82rem;
    }
    .mobile-bar{display:none}
    .mobile-menu{
      display:none;
      position:fixed;
      inset:58px 12px auto 12px;
      background:#111114;
      color:#fff;
      border:1px solid rgba(255,255,255,.12);
      border-radius:10px;
      padding:12px;
      z-index:50;
      box-shadow:var(--shadow);
    }
    .mobile-menu.is-open{display:block}
    .menu-toggle{
      border:0;
      background:var(--red);
      color:#fff;
      border-radius:8px;
      padding:.62rem .8rem;
      font-weight:900;
      cursor:pointer;
    }
    .main{overflow:hidden}
    .top-band{
      background:
        radial-gradient(circle at 88% 8%,rgba(25,230,210,.18),transparent 26%),
        linear-gradient(135deg,#181717 0%,#2b0b08 58%,#f1261d 100%);
      color:#fff;
      padding:42px 0 34px;
      position:relative;
    }
    .top-band:after{
      content:"精选预告";
      position:absolute;
      right:24px;
      top:18px;
      transform:rotate(8deg);
      background:var(--lime);
      color:#111;
      font-weight:1000;
      padding:7px 12px;
      border-radius:6px;
      box-shadow:0 8px 0 rgba(0,0,0,.18);
    }
    .breadcrumb{
      display:flex;
      gap:8px;
      align-items:center;
      color:rgba(255,255,255,.74);
      font-size:.9rem;
      margin-bottom:18px;
      flex-wrap:wrap;
    }
    .breadcrumb a:hover{color:#fff}
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
      gap:24px;
      align-items:end;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.18);
      color:#fff;
      font-weight:900;
      margin-bottom:14px;
    }
    h1{
      font-size:clamp(2.1rem,5vw,4.8rem);
      line-height:1.02;
      margin:0 0 16px;
      font-weight:1000;
      max-width:820px;
    }
    .lead{
      margin:0;
      color:rgba(255,255,255,.82);
      font-size:1.08rem;
      max-width:760px;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:24px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:8px;
      border:2px solid transparent;
      padding:.88rem 1.08rem;
      font-weight:1000;
      cursor:pointer;
      min-height:46px;
      transition:.22s ease;
    }
    .btn-primary{
      background:var(--lime);
      color:#111;
      box-shadow:0 12px 24px rgba(200,255,61,.18);
    }
    .btn-primary:hover,.btn-primary:focus{
      transform:translateY(-2px);
      background:#dbff70;
      outline:none;
    }
    .btn-outline{
      color:#fff;
      border-color:rgba(255,255,255,.36);
      background:rgba(255,255,255,.06);
    }
    .btn-outline:hover,.btn-outline:focus{
      border-color:#fff;
      background:rgba(255,255,255,.14);
      transform:translateY(-2px);
      outline:none;
    }
    .status-panel{
      background:#fff;
      color:var(--ink);
      border-radius:10px;
      overflow:hidden;
      box-shadow:var(--shadow);
      border:1px solid rgba(255,255,255,.2);
    }
    .status-head{
      background:#111;
      color:#fff;
      padding:14px 16px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      font-weight:1000;
    }
    .live-dot{
      display:inline-flex;
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 0 6px rgba(25,230,210,.18);
    }
    .count-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      border-bottom:1px solid var(--line);
    }
    .count-cell{
      padding:18px 12px;
      text-align:center;
      border-right:1px solid var(--line);
    }
    .count-cell:last-child{border-right:0}
    .count-cell strong{
      display:block;
      font-size:1.7rem;
      line-height:1;
      color:var(--red);
      font-weight:1000;
    }
    .count-cell span{font-size:.82rem;color:var(--muted)}
    .panel-body{padding:18px}
    .mini-list{display:grid;gap:10px;margin:0;padding:0;list-style:none}
    .mini-list li{
      display:flex;
      justify-content:space-between;
      gap:10px;
      padding:10px 0;
      border-bottom:1px dashed var(--line);
      font-weight:800;
    }
    .mini-list li:last-child{border-bottom:0}
    .tag{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:5px 9px;
      background:#fff2e7;
      color:var(--red-dark);
      border:1px solid #ffd4bd;
      font-size:.82rem;
      font-weight:900;
      white-space:nowrap;
    }
    .section{padding:54px 0}
    .section.alt{background:#fff}
    .section.dark{
      background:#111114;
      color:#fff;
    }
    .section-title{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:20px;
      align-items:end;
      margin-bottom:24px;
    }
    .section-title h2{
      margin:0;
      font-size:clamp(1.55rem,3vw,2.55rem);
      line-height:1.14;
      font-weight:1000;
    }
    .section-title p{
      margin:8px 0 0;
      color:var(--muted);
      max-width:720px;
    }
    .dark .section-title p{color:rgba(255,255,255,.68)}
    .filter-strip{
      background:#fff;
      border:1px solid var(--line);
      border-radius:10px;
      box-shadow:var(--shadow-soft);
      padding:16px;
      margin-top:-26px;
      position:relative;
      z-index:5;
    }
    .filter-grid{
      display:grid;
      grid-template-columns:1.1fr .8fr .8fr auto;
      gap:12px;
      align-items:end;
    }
    .field-label{
      display:block;
      margin-bottom:6px;
      color:var(--muted);
      font-size:.82rem;
      font-weight:900;
    }
    .filter-button{
      background:var(--red);
      color:#fff;
      border:0;
      border-radius:8px;
      padding:.92rem 1.05rem;
      font-weight:1000;
      cursor:pointer;
      transition:.22s ease;
    }
    .filter-button:hover,.filter-button:focus{
      background:var(--red-dark);
      transform:translateY(-2px);
      outline:none;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .cloud-tag{
      border:1px solid var(--line);
      background:#fff;
      border-radius:999px;
      padding:8px 12px;
      color:var(--ink);
      font-weight:900;
      box-shadow:0 5px 12px rgba(17,17,20,.04);
    }
    .cloud-tag.active,.cloud-tag:hover{
      background:#111;
      color:#fff;
      border-color:#111;
      transform:translateY(-1px);
    }
    .dense-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:14px;
    }
    .info-card{
      position:relative;
      border:1px solid var(--line);
      background:#fff;
      border-radius:8px;
      padding:16px;
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      transition:.22s ease;
    }
    .info-card:hover{
      transform:translateY(-3px);
      border-color:#ffc0a6;
      box-shadow:var(--shadow);
    }
    .corner{
      position:absolute;
      top:0;
      right:0;
      background:var(--red);
      color:#fff;
      font-size:.75rem;
      font-weight:1000;
      padding:5px 9px;
      border-radius:0 8px 0 8px;
    }
    .info-card h3{
      margin:0 78px 8px 0;
      font-size:1.08rem;
      font-weight:1000;
      line-height:1.32;
    }
    .info-card p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:.94rem;
    }
    .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:12px;
    }
    .meta{
      color:#5c554e;
      background:#f4efe7;
      border:1px solid var(--line);
      border-radius:6px;
      padding:4px 8px;
      font-size:.78rem;
      font-weight:800;
    }
    .card-action{
      display:inline-flex;
      align-items:center;
      color:var(--red-dark);
      font-weight:1000;
      border-bottom:2px solid rgba(241,38,29,.25);
    }
    .card-action:hover{border-color:var(--red);color:var(--red)}
    .split-row{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:24px;
      align-items:start;
    }
    .notice-box{
      background:#111;
      color:#fff;
      border-radius:10px;
      padding:22px;
      border:1px solid rgba(255,255,255,.1);
      position:sticky;
      top:24px;
    }
    .notice-box h2{margin:0 0 10px;font-weight:1000}
    .notice-box p{color:rgba(255,255,255,.68);margin:0 0 18px}
    .subscribe-card{
      background:#fff;
      color:var(--ink);
      border-radius:8px;
      padding:16px;
      display:grid;
      gap:10px;
    }
    .subscribe-card button{
      border:0;
      border-radius:8px;
      background:var(--lime);
      color:#111;
      font-weight:1000;
      padding:.85rem 1rem;
      cursor:pointer;
      transition:.22s ease;
    }
    .subscribe-card button:hover,.subscribe-card button:focus{
      transform:translateY(-2px);
      background:#ddff75;
      outline:none;
    }
    .steps{
      display:grid;
      gap:12px;
    }
    .step{
      display:grid;
      grid-template-columns:52px minmax(0,1fr);
      gap:14px;
      align-items:start;
      padding:16px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      border-radius:8px;
    }
    .step-num{
      width:52px;
      height:52px;
      border-radius:8px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--red),var(--orange));
      font-weight:1000;
      color:#fff;
    }
    .step h3{margin:0 0 4px;font-size:1.05rem;font-weight:1000}
    .step p{margin:0;color:rgba(255,255,255,.68)}
    .entry-matrix{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
    }
    .entry-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:8px;
      padding:16px;
      min-height:158px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      box-shadow:var(--shadow-soft);
      transition:.22s ease;
    }
    .entry-card:hover{
      transform:translateY(-3px);
      border-color:var(--red);
      box-shadow:var(--shadow);
    }
    .entry-card strong{
      display:block;
      font-size:1.08rem;
      font-weight:1000;
      margin-bottom:6px;
    }
    .entry-card span{color:var(--muted);font-size:.92rem}
    .pagination{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      justify-content:center;
      margin-top:24px;
    }
    .pagination a{
      min-width:40px;
      height:40px;
      display:grid;
      place-items:center;
      border-radius:8px;
      border:1px solid var(--line);
      background:#fff;
      font-weight:900;
    }
    .pagination a.active,.pagination a:hover{
      background:var(--red);
      color:#fff;
      border-color:var(--red);
    }
    .faq-wrap{
      max-width:920px;
      margin:0 auto;
      display:grid;
      gap:10px;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      border:1px solid var(--line);
      border-radius:8px;
      overflow:hidden;
      margin-bottom:10px;
      background:#fff;
      box-shadow:var(--shadow-soft);
    }
    .accordion-title{
      color:var(--ink);
      font-weight:1000;
      font-size:1rem;
      border:0;
      padding:1rem 1.2rem;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:#fff2e7;
      color:var(--red-dark);
      outline:none;
    }
    .accordion-content{
      border:0;
      color:var(--muted);
      padding:0 1.2rem 1.1rem;
    }
    .cta-band{
      background:linear-gradient(135deg,var(--red),var(--orange));
      color:#fff;
      border-radius:10px;
      padding:28px;
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:18px;
      align-items:center;
      box-shadow:var(--shadow);
    }
    .cta-band h2{margin:0 0 6px;font-weight:1000}
    .cta-band p{margin:0;color:rgba(255,255,255,.82)}
    .footer{
      background:#0f0f11;
      color:#fff;
      padding:36px 0 22px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .7fr .7fr;
      gap:24px;
      padding-bottom:24px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-title{
      font-weight:1000;
      margin-bottom:10px;
      color:#fff;
    }
    .footer a{
      display:block;
      color:rgba(255,255,255,.68);
      margin:7px 0;
      font-weight:700;
    }
    .footer a:hover{color:#fff;transform:translateX(2px)}
    .muted{color:var(--muted)}
    .footer .muted{color:rgba(255,255,255,.62);margin:0;max-width:520px}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.52);
      font-size:.86rem;
      padding-top:18px;
    }
    @media (max-width:1024px){
      :root{--side:220px}
      .hero-grid,.split-row{grid-template-columns:1fr}
      .entry-matrix{grid-template-columns:repeat(2,minmax(0,1fr))}
      .filter-grid{grid-template-columns:1fr 1fr}
      .notice-box{position:relative;top:auto}
    }
    @media (max-width:768px){
      .app-shell{padding-left:0;padding-top:64px}
      .sidebar{display:none}
      .mobile-bar{
        display:flex;
        position:fixed;
        inset:0 0 auto 0;
        height:64px;
        z-index:60;
        background:#111114;
        color:#fff;
        align-items:center;
        justify-content:space-between;
        padding:0 14px;
        border-bottom:1px solid rgba(255,255,255,.12);
      }
      .mobile-menu .side-nav{margin-top:4px}
      .top-band{padding:34px 0 28px}
      .section{padding:42px 0}
      .section-title{grid-template-columns:1fr}
      .dense-grid,.footer-grid{grid-template-columns:1fr}
      .cta-band{grid-template-columns:1fr}
      .filter-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .wrap{width:min(100% - 24px,1140px)}
      h1{font-size:2.15rem}
      .top-band:after{right:12px;top:10px;font-size:.76rem}
      .count-row{grid-template-columns:1fr}
      .count-cell{border-right:0;border-bottom:1px solid var(--line)}
      .count-cell:last-child{border-bottom:0}
      .entry-matrix{grid-template-columns:1fr}
      .hero-actions .btn{width:100%}
      .cta-band .btn{width:100%}
      .copyright{display:grid}
    }
