/* roulang page: index */
:root{
      --color-primary:#e85d4f;
      --color-primary-dark:#c94538;
      --color-primary-soft:#fff0ed;
      --color-accent:#f3a33b;
      --color-bg:#fffaf4;
      --color-panel:#ffffff;
      --color-panel-warm:#fff5ea;
      --color-text:#25201d;
      --color-muted:#756b64;
      --color-light:#9a918a;
      --color-border:#eadbd2;
      --color-footer:#2b2420;
      --shadow-sm:0 8px 24px rgba(73,42,31,.08);
      --shadow-md:0 16px 40px rgba(73,42,31,.13);
      --radius-sm:12px;
      --radius-md:18px;
      --radius-lg:26px;
      --radius-pill:999px;
      --max:1240px;
      --transition:all .24s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      line-height:1.75;
      color:var(--color-text);
      background:
        radial-gradient(circle at 12% 4%, rgba(232,93,79,.11), transparent 28%),
        radial-gradient(circle at 86% 10%, rgba(243,163,59,.12), transparent 26%),
        var(--color-bg);
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    img{max-width:100%;display:block}
    button,input{font-family:inherit}
    button{cursor:pointer}
    :focus-visible{outline:3px solid rgba(232,93,79,.28);outline-offset:3px}

    .site-container{
      width:min(100% - 32px,var(--max));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.94);
      backdrop-filter:saturate(150%) blur(14px);
      border-bottom:1px solid rgba(234,219,210,.88);
      box-shadow:0 8px 22px rgba(62,37,27,.04);
    }
    .nav-wrap{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:210px;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      background:linear-gradient(135deg,var(--color-primary),#ff9a70);
      display:grid;
      place-items:center;
      color:#fff;
      box-shadow:0 10px 24px rgba(232,93,79,.28);
      font-weight:900;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.2;
    }
    .brand-main{font-size:16px}
    .brand-sub{font-size:12px;color:var(--color-muted);font-weight:600;margin-top:3px}

    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      flex:1;
    }
    .desktop-nav a{
      position:relative;
      padding:10px 15px;
      border-radius:var(--radius-pill);
      color:#534943;
      font-weight:700;
      font-size:15px;
    }
    .desktop-nav a:hover{
      color:var(--color-primary-dark);
      background:var(--color-primary-soft);
    }
    .desktop-nav a.active{
      color:var(--color-primary-dark);
      background:#ffe8e3;
    }

    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:320px;
      justify-content:flex-end;
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:8px;
      width:190px;
      padding:9px 13px;
      border:1px solid var(--color-border);
      border-radius:var(--radius-pill);
      background:#fff;
      transition:var(--transition);
    }
    .search-box:focus-within{
      border-color:rgba(232,93,79,.55);
      box-shadow:0 0 0 4px rgba(232,93,79,.08);
    }
    .search-box span{color:var(--color-light)}
    .search-box input{
      border:0;
      outline:0;
      width:100%;
      min-width:0;
      font-size:14px;
      color:var(--color-text);
      background:transparent;
      box-shadow:none;
      margin:0;
      height:auto;
      padding:0;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 20px;
      border-radius:var(--radius-pill);
      font-weight:800;
      border:1px solid transparent;
      transition:var(--transition);
      line-height:1.1;
      white-space:nowrap;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--color-primary),#ff7b62);
      color:#fff;
      box-shadow:0 12px 26px rgba(232,93,79,.24);
    }
    .btn-primary:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(232,93,79,.34);
    }
    .btn-secondary{
      background:#fff;
      color:var(--color-primary-dark);
      border-color:#f3c2b8;
    }
    .btn-secondary:hover{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      transform:translateY(-2px);
      border-color:#e89486;
    }
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid var(--color-border);
      background:#fff;
      border-radius:14px;
      font-size:22px;
      color:var(--color-text);
    }
    .mobile-panel{
      display:none;
      border-top:1px solid var(--color-border);
      padding:14px 0 18px;
    }
    .mobile-panel.open{display:block}
    .mobile-panel a{
      display:block;
      padding:12px 14px;
      border-radius:14px;
      font-weight:800;
      color:#534943;
    }
    .mobile-panel a.active,
    .mobile-panel a:hover{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
    }

    .hero{
      padding:58px 0 34px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      min-height:570px;
      background:
        linear-gradient(110deg,rgba(35,26,22,.88) 0%,rgba(35,26,22,.72) 44%,rgba(35,26,22,.28) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1300' height='720' viewBox='0 0 1300 720'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23f7b18f'/%3E%3Cstop offset='.48' stop-color='%23e85d4f'/%3E%3Cstop offset='1' stop-color='%232b2420'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1300' height='720' fill='url(/%23g)'/%3E%3Ccircle cx='1005' cy='165' r='220' fill='%23fff' opacity='.13'/%3E%3Ccircle cx='850' cy='520' r='300' fill='%23ffdfca' opacity='.14'/%3E%3Cpath d='M0 520 C240 410 410 610 680 478 C930 356 1060 450 1300 320 L1300 720 L0 720 Z' fill='%23fff' opacity='.12'/%3E%3C/svg%3E") center/cover no-repeat;
      box-shadow:var(--shadow-md);
    }
    .hero-content{
      position:relative;
      z-index:2;
      max-width:720px;
      padding:76px 72px;
      color:#fff;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.15);
      border:1px solid rgba(255,255,255,.22);
      color:#fff;
      font-weight:800;
      font-size:14px;
      backdrop-filter:blur(8px);
      margin-bottom:20px;
    }
    .hero h1{
      margin:0 0 20px;
      font-size:clamp(34px,5vw,64px);
      line-height:1.1;
      letter-spacing:-.055em;
      color:#fff;
      font-weight:950;
    }
    .hero p{
      margin:0;
      color:rgba(255,255,255,.88);
      font-size:18px;
      max-width:650px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:34px;
    }
    .hero-note{
      margin-top:20px;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      color:rgba(255,255,255,.78);
      font-size:14px;
    }
    .hero-card{
      position:absolute;
      right:34px;
      bottom:34px;
      width:min(390px,calc(100% - 68px));
      padding:24px;
      border-radius:26px;
      background:rgba(255,255,255,.92);
      color:var(--color-text);
      box-shadow:0 20px 45px rgba(0,0,0,.16);
      backdrop-filter:blur(12px);
    }
    .hero-card h3{
      margin:0 0 12px;
      font-size:20px;
      font-weight:900;
    }
    .status-list{
      display:grid;
      gap:10px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .status-list li{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:10px 0;
      border-bottom:1px solid var(--color-border);
      color:var(--color-muted);
      font-size:14px;
    }
    .status-list li:last-child{border-bottom:0}
    .status-list strong{color:var(--color-text)}

    .section{
      padding:68px 0;
    }
    .section-tight{padding:46px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:30px;
    }
    .section-title{
      margin:0;
      font-size:clamp(26px,3vw,40px);
      line-height:1.18;
      letter-spacing:-.035em;
      font-weight:950;
      color:var(--color-text);
    }
    .section-desc{
      margin:10px 0 0;
      max-width:680px;
      color:var(--color-muted);
      font-size:16px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:var(--radius-pill);
      padding:6px 11px;
      font-size:13px;
      font-weight:800;
      background:#fff1e6;
      color:#af5630;
      border:1px solid #f1d5c3;
    }
    .badge.hot{
      background:#ffe9e5;
      color:var(--color-primary-dark);
      border-color:#f2c1ba;
    }
    .badge.safe{
      background:#eff8ef;
      color:#3d7c45;
      border-color:#d5ead6;
    }

    .countdown{
      transform:translateY(-12px);
    }
    .countdown-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      padding:20px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
    }
    .time-box{
      padding:18px 12px;
      text-align:center;
      border-radius:20px;
      background:linear-gradient(180deg,#fff8f2,#fff);
      border:1px solid #f2dfd4;
    }
    .time-box strong{
      display:block;
      font-size:34px;
      line-height:1;
      color:var(--color-primary-dark);
      font-weight:950;
      letter-spacing:-.03em;
    }
    .time-box span{
      display:block;
      margin-top:8px;
      color:var(--color-muted);
      font-weight:800;
      font-size:13px;
    }

    .feature-strip{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
      align-items:stretch;
    }
    .notice-panel{
      border-radius:26px;
      background:var(--color-panel);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
      padding:28px;
    }
    .notice-panel h2{
      margin:0 0 12px;
      font-size:28px;
      line-height:1.25;
      font-weight:950;
    }
    .notice-panel p{color:var(--color-muted);margin:0 0 20px}
    .check-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .check-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:#4e4540;
    }
    .check-list i{
      flex:0 0 24px;
      width:24px;
      height:24px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      font-style:normal;
      font-weight:900;
      font-size:13px;
    }
    .mini-stats{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
    }
    .stat-card{
      min-height:142px;
      border-radius:24px;
      background:linear-gradient(180deg,#fff,#fff7ee);
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .stat-card strong{
      font-size:34px;
      line-height:1;
      color:var(--color-primary-dark);
      font-weight:950;
    }
    .stat-card span{
      color:var(--color-muted);
      font-weight:700;
    }

    .preview-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }
    .content-card{
      overflow:hidden;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
      transition:var(--transition);
    }
    .content-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-md);
      border-color:#efb9ad;
    }
    .cover{
      position:relative;
      min-height:180px;
      overflow:hidden;
      background:linear-gradient(135deg,#ffcfb8,#e85d4f);
    }
    .cover::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 75% 30%,rgba(255,255,255,.28),transparent 26%),
        linear-gradient(180deg,transparent,rgba(37,32,29,.44));
    }
    .cover.alt{background:linear-gradient(135deg,#ffd89b,#e36d5b)}
    .cover.deep{background:linear-gradient(135deg,#f8a883,#58352c)}
    .cover .badge{
      position:absolute;
      left:16px;
      top:16px;
      z-index:2;
      background:rgba(255,255,255,.9);
    }
    .card-body{
      padding:22px;
    }
    .meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:12px;
    }
    .content-card h3{
      margin:0 0 10px;
      font-size:21px;
      line-height:1.32;
      font-weight:950;
      transition:var(--transition);
    }
    .content-card:hover h3{color:var(--color-primary-dark)}
    .content-card p{
      margin:0 0 18px;
      color:var(--color-muted);
      font-size:15px;
    }
    .card-link{
      display:inline-flex;
      align-items:center;
      font-weight:900;
      color:var(--color-primary-dark);
    }
    .card-link:hover{gap:6px}

    .subscribe-band{
      position:relative;
      overflow:hidden;
      border-radius:30px;
      padding:34px;
      background:linear-gradient(135deg,#332821,#6d3a2d 58%,#e85d4f);
      color:#fff;
      box-shadow:var(--shadow-md);
    }
    .subscribe-band::after{
      content:"";
      position:absolute;
      right:-90px;
      top:-90px;
      width:260px;
      height:260px;
      border-radius:50%;
      background:rgba(255,255,255,.13);
    }
    .subscribe-inner{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:1fr 430px;
      gap:28px;
      align-items:center;
    }
    .subscribe-band h2{
      margin:0 0 10px;
      color:#fff;
      font-size:32px;
      font-weight:950;
      letter-spacing:-.03em;
    }
    .subscribe-band p{
      margin:0;
      color:rgba(255,255,255,.82);
    }
    .subscribe-form{
      display:flex;
      gap:10px;
      padding:8px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.2);
    }
    .subscribe-form input{
      flex:1;
      min-width:0;
      border:0;
      border-radius:var(--radius-pill);
      padding:0 16px;
      margin:0;
      background:#fff;
      color:var(--color-text);
      box-shadow:none;
    }

    .entry-section{
      background:linear-gradient(180deg,rgba(255,245,234,.88),rgba(255,250,244,.1));
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:22px;
    }
    .entry-card{
      display:grid;
      grid-template-columns:120px 1fr;
      gap:20px;
      align-items:center;
      padding:24px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
      transition:var(--transition);
    }
    .entry-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:#efb9ad;
    }
    .entry-icon{
      width:120px;
      height:120px;
      border-radius:28px;
      display:grid;
      place-items:center;
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      font-size:46px;
      font-weight:950;
    }
    .entry-card h3{
      margin:0 0 8px;
      font-size:24px;
      font-weight:950;
    }
    .entry-card p{
      margin:0 0 16px;
      color:var(--color-muted);
    }

    .proof-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .proof-item{
      padding:22px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-sm);
    }
    .proof-item strong{
      display:block;
      font-size:30px;
      line-height:1;
      color:var(--color-primary-dark);
      font-weight:950;
      margin-bottom:10px;
    }
    .proof-item span{color:var(--color-muted);font-weight:700}

    .faq-wrap{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:30px;
      align-items:start;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      border:1px solid var(--color-border);
      border-radius:18px;
      overflow:hidden;
      margin-bottom:12px;
      background:#fff;
      box-shadow:var(--shadow-sm);
    }
    .accordion-title{
      border:0;
      color:var(--color-text);
      font-size:17px;
      font-weight:900;
      padding:20px 52px 20px 20px;
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
    }
    .accordion-title::before{right:20px}
    .accordion-content{
      border:0;
      color:var(--color-muted);
      padding:0 20px 20px;
      background:#fffdfa;
    }

    .final-cta{
      text-align:center;
      border-radius:32px;
      background:#fff;
      border:1px solid var(--color-border);
      box-shadow:var(--shadow-md);
      padding:48px 28px;
    }
    .final-cta h2{
      margin:0 0 12px;
      font-size:34px;
      font-weight:950;
      letter-spacing:-.035em;
    }
    .final-cta p{
      margin:0 auto 24px;
      max-width:720px;
      color:var(--color-muted);
    }
    .cta-actions{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:14px;
    }

    .site-footer{
      margin-top:44px;
      background:var(--color-footer);
      color:#f8eee8;
      padding:56px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .8fr .8fr;
      gap:34px;
      margin-bottom:34px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
      font-weight:950;
      font-size:18px;
    }
    .footer-brand .brand-mark{
      width:38px;
      height:38px;
      border-radius:13px;
    }
    .footer-desc{
      color:rgba(248,238,232,.72);
      max-width:520px;
      margin:0;
    }
    .footer-col h3{
      margin:0 0 14px;
      color:#fff;
      font-size:16px;
      font-weight:950;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(248,238,232,.72);
    }
    .footer-links a:hover{
      color:#fff;
      padding-left:4px;
    }
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.12);
      padding-top:20px;
      display:flex;
      justify-content:space-between;
      gap:18px;
      color:rgba(248,238,232,.62);
      font-size:14px;
    }
    .back-top{
      color:#fff;
      font-weight:800;
    }

    @media (max-width:1024px){
      .desktop-nav,.nav-actions{display:none}
      .menu-toggle{display:inline-grid;place-items:center}
      .nav-wrap{min-height:70px}
      .brand{min-width:auto}
      .hero-content{padding:58px 42px 250px}
      .hero-card{left:34px;right:auto}
      .feature-strip,.subscribe-inner,.faq-wrap{grid-template-columns:1fr}
      .preview-grid{grid-template-columns:repeat(2,1fr)}
      .proof-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 24px,var(--max))}
      .hero{padding-top:28px}
      .hero-shell{border-radius:24px;min-height:auto}
      .hero-content{padding:40px 24px 280px}
      .hero p{font-size:16px}
      .hero-card{
        width:calc(100% - 32px);
        left:16px;
        bottom:16px;
        padding:20px;
      }
      .countdown-grid{grid-template-columns:repeat(2,1fr);padding:14px}
      .section{padding:48px 0}
      .section-head{display:block}
      .preview-grid,.entry-grid{grid-template-columns:1fr}
      .entry-card{grid-template-columns:1fr}
      .entry-icon{width:100%;height:110px}
      .mini-stats{grid-template-columns:1fr 1fr}
      .subscribe-form{flex-direction:column;border-radius:22px}
      .subscribe-form input{height:48px}
      .subscribe-form .btn{width:100%}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{flex-direction:column}
    }
    @media (max-width:520px){
      .brand-main{font-size:14px;max-width:220px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
      .brand-sub{display:none}
      .hero h1{font-size:32px}
      .hero-actions .btn,.cta-actions .btn{width:100%}
      .countdown-grid,.proof-grid,.mini-stats{grid-template-columns:1fr}
      .section-title{font-size:26px}
      .subscribe-band{padding:24px}
      .final-cta{padding:34px 20px}
    }

/* roulang page: category2 */
:root {
      --peach: #e86f55;
      --peach-dark: #c9533d;
      --peach-soft: #fff0eb;
      --apricot: #f5b57d;
      --ink: #272321;
      --muted: #746b66;
      --light-muted: #9d938d;
      --cream: #fbf8f5;
      --paper: #ffffff;
      --sand: #f3ece6;
      --line: #eadfd7;
      --footer: #302a28;
      --shadow: 0 16px 42px rgba(67, 42, 30, .08);
      --shadow-hover: 0 22px 50px rgba(67, 42, 30, .14);
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 11px;
      --max-width: 1240px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--cream);
      color: var(--ink);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .25s ease, background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    button, input {
      font: inherit;
    }

    button:focus-visible, a:focus-visible, input:focus-visible {
      outline: 3px solid rgba(232, 111, 85, .3);
      outline-offset: 3px;
    }

    .site-container {
      width: min(100% - 40px, var(--max-width));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 4px 18px rgba(71, 42, 26, .05);
      backdrop-filter: blur(12px);
    }

    .nav-wrap {
      min-height: 82px;
      display: flex;
      align-items: center;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      min-width: 265px;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      display: inline-grid;
      place-items: center;
      border-radius: 14px;
      color: #fff;
      background: var(--peach);
      font-size: 21px;
      font-weight: 800;
      box-shadow: 0 8px 18px rgba(232, 111, 85, .23);
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.25;
    }

    .brand-main {
      font-size: 16px;
      font-weight: 800;
      letter-spacing: .02em;
    }

    .brand-sub {
      margin-top: 5px;
      color: var(--light-muted);
      font-size: 11px;
      letter-spacing: .02em;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 7px;
      flex: 1;
    }

    .desktop-nav a,
    .mobile-panel a {
      position: relative;
      padding: 9px 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
    }

    .desktop-nav a:hover,
    .desktop-nav a.active,
    .mobile-panel a:hover,
    .mobile-panel a.active {
      color: var(--peach-dark);
      background: var(--peach-soft);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .search-box {
      width: 215px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: #fff;
      color: var(--light-muted);
    }

    .search-box span {
      font-size: 21px;
      line-height: 1;
      transform: rotate(-15deg);
    }

    .search-box input {
      width: 100%;
      border: 0;
      outline: 0;
      box-shadow: none;
      background: transparent;
      color: var(--ink);
      font-size: 13px;
    }

    .search-box:focus-within {
      border-color: var(--peach);
      box-shadow: 0 0 0 4px rgba(232, 111, 85, .1);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 21px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: #fff;
      background: var(--peach);
      box-shadow: 0 9px 18px rgba(232, 111, 85, .2);
    }

    .btn-primary:hover {
      color: #fff;
      background: var(--peach-dark);
      box-shadow: 0 13px 24px rgba(201, 83, 61, .25);
    }

    .btn-light {
      color: var(--peach-dark);
      background: #fff;
      border-color: var(--line);
    }

    .btn-light:hover {
      color: var(--peach-dark);
      border-color: var(--peach);
      background: var(--peach-soft);
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      margin-left: auto;
      border: 1px solid var(--line);
      border-radius: 12px;
      background: #fff;
      color: var(--ink);
      cursor: pointer;
    }

    .mobile-panel {
      display: none;
      padding: 4px 0 18px;
    }

    .mobile-panel a {
      display: block;
      margin: 5px 0;
    }

    .page-hero {
      position: relative;
      overflow: hidden;
      padding: 82px 0 76px;
      background:
        radial-gradient(circle at 78% 18%, rgba(245, 181, 125, .28), transparent 27%),
        linear-gradient(135deg, #fff8f3 0%, #f9eee8 100%);
      border-bottom: 1px solid var(--line);
    }

    .page-hero::after {
      content: "";
      position: absolute;
      right: -100px;
      bottom: -160px;
      width: 420px;
      height: 420px;
      border: 1px solid rgba(232, 111, 85, .16);
      border-radius: 50%;
      box-shadow: 0 0 0 34px rgba(232, 111, 85, .045), 0 0 0 68px rgba(232, 111, 85, .035);
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(300px, .8fr);
      gap: 65px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 20px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--peach-dark);
      background: #fff;
      border: 1px solid #f2d4c9;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .06em;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--peach);
    }

    h1, h2, h3, p {
      margin-top: 0;
    }

    h1 {
      max-width: 740px;
      margin-bottom: 20px;
      color: var(--ink);
      font-size: clamp(34px, 5vw, 62px);
      line-height: 1.14;
      letter-spacing: -.045em;
      font-weight: 900;
    }

    .hero-copy {
      max-width: 680px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.85;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 30px;
    }

    .hero-note {
      margin-top: 19px;
      color: var(--light-muted);
      font-size: 13px;
    }

    .hero-panel {
      padding: 26px;
      border: 1px solid rgba(232, 111, 85, .18);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, .78);
      box-shadow: var(--shadow);
    }

    .panel-title {
      margin-bottom: 20px;
      font-size: 18px;
      font-weight: 900;
    }

    .safety-score {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line);
    }

    .score-number {
      color: var(--peach-dark);
      font-size: 43px;
      font-weight: 900;
      line-height: 1;
    }

    .score-label {
      color: var(--muted);
      font-size: 13px;
      text-align: right;
    }

    .check-list {
      margin: 19px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin: 13px 0;
      color: var(--muted);
      font-size: 14px;
    }

    .check-list li::before {
      content: "✓";
      flex: 0 0 22px;
      width: 22px;
      height: 22px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      color: var(--peach-dark);
      background: var(--peach-soft);
      font-size: 13px;
      font-weight: 900;
    }

    .section {
      padding: 82px 0;
    }

    .section-tint {
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-heading {
      max-width: 700px;
      margin-bottom: 38px;
    }

    .section-kicker {
      margin-bottom: 9px;
      color: var(--peach-dark);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    h2 {
      margin-bottom: 12px;
      font-size: clamp(27px, 3vw, 39px);
      line-height: 1.25;
      letter-spacing: -.035em;
      font-weight: 900;
    }

    .section-heading p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .risk-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .risk-card {
      min-height: 218px;
      padding: 25px 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: var(--cream);
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .risk-card:hover {
      transform: translateY(-5px);
      border-color: #efb7a8;
      box-shadow: var(--shadow-hover);
    }

    .risk-icon {
      width: 45px;
      height: 45px;
      display: grid;
      place-items: center;
      margin-bottom: 20px;
      border-radius: 14px;
      color: var(--peach-dark);
      background: var(--peach-soft);
      font-size: 20px;
      font-weight: 900;
    }

    .risk-card h3 {
      margin-bottom: 8px;
      font-size: 17px;
      font-weight: 900;
    }

    .risk-card p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .guide-layout {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 54px;
      align-items: start;
    }

    .guide-intro {
      position: sticky;
      top: 110px;
      padding: 28px;
      border-radius: var(--radius-lg);
      background: var(--ink);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .guide-intro h2 {
      color: #fff;
      font-size: 30px;
    }

    .guide-intro p {
      color: rgba(255,255,255,.7);
      font-size: 14px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 24px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      padding: 6px 11px;
      border-radius: 999px;
      color: var(--peach-dark);
      background: var(--peach-soft);
      font-size: 12px;
      font-weight: 800;
    }

    .guide-intro .tag {
      color: #ffd5c8;
      background: rgba(232,111,85,.18);
    }

    .step-list {
      position: relative;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .step-list::before {
      content: "";
      position: absolute;
      top: 23px;
      bottom: 23px;
      left: 20px;
      width: 1px;
      background: #efcfc4;
    }

    .step-item {
      position: relative;
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 19px;
      margin-bottom: 27px;
    }

    .step-number {
      position: relative;
      z-index: 1;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 5px solid var(--cream);
      border-radius: 50%;
      color: #fff;
      background: var(--peach);
      font-weight: 900;
    }

    .step-content {
      padding-bottom: 22px;
      border-bottom: 1px solid var(--line);
    }

    .step-content h3 {
      margin-bottom: 6px;
      font-size: 19px;
      font-weight: 900;
    }

    .step-content p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .privacy-strip {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 30px;
      align-items: center;
      padding: 34px 38px;
      border-radius: var(--radius-lg);
      background: linear-gradient(110deg, #382f2b, #4a3933);
      color: #fff;
      box-shadow: var(--shadow);
    }

    .privacy-strip h2 {
      margin-bottom: 8px;
      font-size: 28px;
    }

    .privacy-strip p {
      max-width: 670px;
      margin-bottom: 0;
      color: rgba(255,255,255,.7);
      font-size: 14px;
    }

    .faq-list {
      max-width: 880px;
      margin: 0 auto;
    }

    .faq-item {
      margin-bottom: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: #fff;
      overflow: hidden;
    }

    .faq-item summary {
      position: relative;
      padding: 19px 52px 19px 21px;
      color: var(--ink);
      font-size: 16px;
      font-weight: 800;
      cursor: pointer;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      position: absolute;
      top: 16px;
      right: 20px;
      color: var(--peach);
      font-size: 24px;
      font-weight: 400;
    }

    .faq-item[open] summary {
      color: var(--peach-dark);
      background: var(--peach-soft);
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-answer {
      padding: 0 21px 20px;
      color: var(--muted);
      font-size: 14px;
      background: var(--peach-soft);
    }

    .subscribe-section {
      padding: 68px 0;
      background: #f7e7df;
    }

    .subscribe-box {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 38px;
      align-items: center;
    }

    .subscribe-box h2 {
      margin-bottom: 10px;
      font-size: 31px;
    }

    .subscribe-box p {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 14px;
    }

    .subscribe-form {
      display: flex;
      gap: 10px;
      padding: 8px;
      border: 1px solid #e6c8bb;
      border-radius: 999px;
      background: #fff;
    }

    .subscribe-form input {
      min-width: 0;
      flex: 1;
      border: 0;
      outline: 0;
      box-shadow: none;
      padding: 0 13px;
      background: transparent;
      color: var(--ink);
      font-size: 14px;
    }

    .form-note {
      margin: 10px 0 0 14px;
      color: var(--light-muted);
      font-size: 12px;
    }

    .site-footer {
      padding: 55px 0 22px;
      background: var(--footer);
      color: #fff;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr .8fr .8fr;
      gap: 55px;
      padding-bottom: 42px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 17px;
      font-size: 17px;
      font-weight: 900;
    }

    .footer-brand .brand-mark {
      width: 36px;
      height: 36px;
      font-size: 17px;
    }

    .footer-desc {
      max-width: 440px;
      margin-bottom: 0;
      color: rgba(255,255,255,.6);
      font-size: 13px;
      line-height: 1.8;
    }

    .footer-col h3 {
      margin-bottom: 15px;
      color: #fff;
      font-size: 14px;
      font-weight: 900;
    }

    .footer-links {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links li {
      margin: 8px 0;
    }

    .footer-links a {
      color: rgba(255,255,255,.6);
      font-size: 13px;
    }

    .footer-links a:hover {
      color: #ffd2c6;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 19px;
      border-top: 1px solid rgba(255,255,255,.12);
      color: rgba(255,255,255,.43);
      font-size: 12px;
    }

    @media (max-width: 1100px) {
      .brand { min-width: 225px; }
      .search-box { width: 170px; }
      .risk-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 900px) {
      .desktop-nav, .nav-actions { display: none; }
      .menu-toggle { display: block; }
      .mobile-panel.open { display: block; }
      .hero-grid, .guide-layout, .subscribe-box {
        grid-template-columns: 1fr;
      }
      .guide-intro { position: static; }
      .hero-panel { max-width: 620px; }
      .privacy-strip {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 600px) {
      .site-container { width: min(100% - 28px, var(--max-width)); }
      .nav-wrap { min-height: 70px; }
      .brand { min-width: 0; }
      .brand-main { font-size: 14px; }
      .brand-sub { font-size: 10px; }
      .brand-mark { width: 38px; height: 38px; }
      .page-hero { padding: 54px 0 52px; }
      h1 { font-size: 36px; }
      .hero-copy { font-size: 16px; }
      .hero-actions, .hero-actions .btn {
        width: 100%;
      }
      .section { padding: 56px 0; }
      .risk-grid { grid-template-columns: 1fr; }
      .privacy-strip { padding: 27px 23px; }
      .privacy-strip .btn { width: 100%; }
      .subscribe-form {
        display: flex;
        flex-direction: column;
        padding: 10px;
        border-radius: 17px;
      }
      .subscribe-form input {
        min-height: 43px;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
      }
      .footer-grid > div:first-child {
        grid-column: 1 / -1;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 5px;
      }
    }

/* roulang page: category1 */
:root{
      --color-primary:#e95f4d;
      --color-primary-dark:#c94334;
      --color-primary-soft:#fff0ec;
      --color-accent:#f2a64a;
      --color-ink:#25211f;
      --color-heading:#171412;
      --color-muted:#746b66;
      --color-light:#9a918b;
      --color-border:#eaded7;
      --color-bg:#fff8f3;
      --color-panel:#fffdfb;
      --color-panel-2:#fff3ea;
      --color-footer:#2b2421;
      --shadow-sm:0 8px 24px rgba(91,55,40,.08);
      --shadow-md:0 18px 46px rgba(91,55,40,.14);
      --radius-sm:12px;
      --radius-md:18px;
      --radius-lg:26px;
      --radius-pill:999px;
      --container:1200px;
      --ease:all .24s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--color-ink);
      background:
        radial-gradient(circle at 8% 8%,rgba(233,95,77,.10),transparent 28%),
        radial-gradient(circle at 92% 14%,rgba(242,166,74,.12),transparent 24%),
        var(--color-bg);
      line-height:1.75;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--color-primary)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    input,button,a{outline:none}
    input:focus-visible,button:focus-visible,a:focus-visible{
      box-shadow:0 0 0 4px rgba(233,95,77,.18);
      border-color:var(--color-primary)!important;
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1,h2,h3,h4{color:var(--color-heading);font-weight:800;line-height:1.22;letter-spacing:-.02em}
    p{color:var(--color-muted)}
    .site-container{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
    }
    .section{
      padding:72px 0;
      position:relative;
    }
    .section-tight{padding:52px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .section-eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--color-primary-dark);
      font-size:14px;
      font-weight:800;
      background:var(--color-primary-soft);
      border:1px solid rgba(233,95,77,.18);
      border-radius:var(--radius-pill);
      padding:6px 12px;
      margin-bottom:12px;
    }
    .section-title{
      font-size:clamp(28px,3vw,42px);
      margin-bottom:10px;
    }
    .section-desc{
      max-width:720px;
      margin-bottom:0;
      font-size:17px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(255,253,251,.94);
      backdrop-filter:saturate(150%) blur(14px);
      border-bottom:1px solid rgba(234,222,215,.85);
      box-shadow:0 8px 24px rgba(66,40,30,.05);
    }
    .nav-wrap{
      min-height:78px;
      display:flex;
      align-items:center;
      gap:24px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:280px;
      color:var(--color-heading);
    }
    .brand:hover{color:var(--color-heading);transform:translateY(-1px)}
    .brand-mark{
      width:42px;
      height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:15px;
      color:#fff;
      font-weight:900;
      font-size:21px;
      background:linear-gradient(135deg,var(--color-primary),#f19b56);
      box-shadow:0 12px 24px rgba(233,95,77,.26);
      flex:0 0 auto;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.2}
    .brand-main{font-weight:900;font-size:17px;letter-spacing:-.02em}
    .brand-sub{font-size:12px;color:var(--color-light);margin-top:3px}
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      flex:1;
    }
    .desktop-nav a{
      position:relative;
      color:var(--color-muted);
      font-weight:700;
      padding:10px 14px;
      border-radius:var(--radius-pill);
      white-space:nowrap;
    }
    .desktop-nav a:hover{
      color:var(--color-primary-dark);
      background:var(--color-primary-soft);
    }
    .desktop-nav a.active{
      color:var(--color-primary-dark);
      background:var(--color-primary-soft);
    }
    .desktop-nav a.active:after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:5px;
      height:3px;
      border-radius:3px;
      background:var(--color-primary);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .search-box{
      width:220px;
      height:42px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 14px;
      border:1px solid var(--color-border);
      border-radius:var(--radius-pill);
      background:#fff;
      color:var(--color-light);
      transition:var(--ease);
    }
    .search-box:focus-within{
      border-color:var(--color-primary);
      box-shadow:0 0 0 4px rgba(233,95,77,.12);
    }
    .search-box input{
      border:0;
      box-shadow:none;
      margin:0;
      padding:0;
      height:auto;
      background:transparent;
      color:var(--color-ink);
      font-size:14px;
    }
    .search-box input:focus{box-shadow:none;background:transparent}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:11px 20px;
      border-radius:var(--radius-pill);
      border:1px solid transparent;
      font-weight:800;
      cursor:pointer;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn:hover{
      transform:translateY(-2px);
      box-shadow:var(--shadow-sm);
    }
    .btn-primary{
      background:var(--color-primary);
      color:#fff;
      border-color:var(--color-primary);
      box-shadow:0 12px 26px rgba(233,95,77,.24);
    }
    .btn-primary:hover,.btn-primary:focus{color:#fff;background:var(--color-primary-dark)}
    .btn-secondary{
      background:#fff;
      color:var(--color-primary-dark);
      border-color:rgba(233,95,77,.35);
    }
    .btn-secondary:hover{background:var(--color-primary-soft);color:var(--color-primary-dark)}
    .btn-soft{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      border-color:rgba(233,95,77,.16);
    }
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid var(--color-border);
      border-radius:14px;
      background:#fff;
      color:var(--color-heading);
      font-size:24px;
      line-height:1;
      cursor:pointer;
      transition:var(--ease);
    }
    .menu-toggle:hover{border-color:var(--color-primary);color:var(--color-primary)}
    .mobile-panel{
      display:none;
      padding:0 0 16px;
      border-top:1px solid rgba(234,222,215,.72);
    }
    .mobile-panel a{
      display:block;
      padding:12px 14px;
      border-radius:14px;
      color:var(--color-muted);
      font-weight:800;
    }
    .mobile-panel a.active,.mobile-panel a:hover{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
    }

    .category-hero{
      position:relative;
      min-height:430px;
      display:flex;
      align-items:center;
      overflow:hidden;
      background:
        linear-gradient(115deg,rgba(36,27,23,.86),rgba(70,39,31,.62)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='620' viewBox='0 0 1200 620'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop stop-color='%23e95f4d'/%3E%3Cstop offset='1' stop-color='%23f2a64a'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='1200' height='620' fill='%232b2421'/%3E%3Ccircle cx='970' cy='110' r='220' fill='url(/%23g)' opacity='.38'/%3E%3Ccircle cx='185' cy='440' r='260' fill='%23e95f4d' opacity='.22'/%3E%3Cpath d='M80 150 C260 60 390 210 560 130 S930 100 1120 220' fill='none' stroke='%23fff3ea' stroke-width='2' opacity='.2'/%3E%3Cpath d='M120 480 C310 380 420 520 610 410 S940 360 1080 500' fill='none' stroke='%23fff3ea' stroke-width='2' opacity='.16'/%3E%3Cg opacity='.18'%3E%3Crect x='665' y='230' width='325' height='190' rx='30' fill='%23fffdfb'/%3E%3Crect x='704' y='278' width='245' height='18' rx='9' fill='%23ffffff'/%3E%3Crect x='704' y='320' width='160' height='18' rx='9' fill='%23ffffff'/%3E%3Crect x='704' y='364' width='210' height='18' rx='9' fill='%23ffffff'/%3E%3C/g%3E%3C/svg%3E") center/cover no-repeat;
    }
    .category-hero:after{
      content:"";
      position:absolute;
      inset:auto 0 0;
      height:100px;
      background:linear-gradient(180deg,transparent,var(--color-bg));
      pointer-events:none;
    }
    .hero-content{
      position:relative;
      z-index:1;
      width:100%;
      padding:72px 0 84px;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr);
      gap:42px;
      align-items:end;
    }
    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.14);
      color:#fff7f2;
      border:1px solid rgba(255,255,255,.20);
      font-size:13px;
      font-weight:800;
    }
    .badge.light{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      border-color:rgba(233,95,77,.18);
    }
    .badge.gold{
      background:rgba(242,166,74,.16);
      color:#855116;
      border-color:rgba(242,166,74,.25);
    }
    .category-hero h1{
      color:#fff;
      max-width:790px;
      font-size:clamp(34px,5vw,60px);
      margin-bottom:18px;
      text-shadow:0 8px 32px rgba(0,0,0,.22);
    }
    .hero-lead{
      max-width:760px;
      color:#fff1eb;
      font-size:18px;
      margin-bottom:28px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .hero-panel{
      background:rgba(255,253,251,.94);
      border:1px solid rgba(255,255,255,.52);
      border-radius:var(--radius-lg);
      padding:24px;
      box-shadow:var(--shadow-md);
    }
    .hero-panel h2{
      font-size:22px;
      margin-bottom:12px;
    }
    .check-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .check-list li{
      display:flex;
      gap:10px;
      color:var(--color-muted);
      align-items:flex-start;
    }
    .check-list li:before{
      content:"✓";
      width:22px;
      height:22px;
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:50%;
      color:#fff;
      background:var(--color-primary);
      font-size:13px;
      font-weight:900;
      margin-top:2px;
    }

    .filter-bar{
      margin-top:-38px;
      position:relative;
      z-index:2;
    }
    .filter-card{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      background:var(--color-panel);
      border:1px solid var(--color-border);
      border-radius:var(--radius-lg);
      padding:18px;
      box-shadow:var(--shadow-md);
    }
    .filter-tabs{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .filter-tabs a{
      display:inline-flex;
      align-items:center;
      padding:9px 14px;
      border-radius:var(--radius-pill);
      background:#fff8f3;
      color:var(--color-muted);
      border:1px solid var(--color-border);
      font-weight:800;
      font-size:14px;
    }
    .filter-tabs a.active,.filter-tabs a:hover{
      background:var(--color-primary);
      border-color:var(--color-primary);
      color:#fff;
    }
    .filter-meta{
      color:var(--color-light);
      font-size:14px;
      white-space:nowrap;
    }

    .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 340px;
      gap:28px;
      align-items:start;
    }
    .timeline{
      display:grid;
      gap:18px;
    }
    .notice-card{
      display:grid;
      grid-template-columns:210px minmax(0,1fr);
      gap:20px;
      background:var(--color-panel);
      border:1px solid var(--color-border);
      border-radius:var(--radius-lg);
      padding:16px;
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
      overflow:hidden;
    }
    .notice-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:rgba(233,95,77,.35);
    }
    .notice-cover{
      min-height:160px;
      border-radius:20px;
      overflow:hidden;
      position:relative;
      background:linear-gradient(135deg,#fb846f,#f3b05f);
    }
    .notice-cover:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 28% 28%,rgba(255,255,255,.35),transparent 28%),
        linear-gradient(145deg,rgba(43,36,33,.04),rgba(43,36,33,.32));
    }
    .notice-cover span{
      position:absolute;
      left:14px;
      bottom:14px;
      color:#fff;
      font-weight:900;
      background:rgba(43,36,33,.38);
      border:1px solid rgba(255,255,255,.24);
      border-radius:var(--radius-pill);
      padding:7px 10px;
      font-size:13px;
    }
    .notice-body{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:14px;
      min-width:0;
    }
    .notice-top{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:10px;
    }
    .notice-card h3{
      font-size:23px;
      margin-bottom:8px;
    }
    .notice-card h3 a:hover{color:var(--color-primary-dark)}
    .notice-card p{
      margin-bottom:0;
    }
    .notice-actions{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      border-top:1px dashed var(--color-border);
      padding-top:14px;
    }
    .time-note{
      color:var(--color-light);
      font-weight:700;
      font-size:14px;
    }
    .mini-btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:9px 14px;
      border-radius:var(--radius-pill);
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      font-weight:900;
      border:1px solid rgba(233,95,77,.18);
    }
    .mini-btn:hover{
      background:var(--color-primary);
      color:#fff;
      transform:translateY(-2px);
    }

    .sidebar{
      position:sticky;
      top:100px;
      display:grid;
      gap:18px;
    }
    .side-card{
      background:var(--color-panel);
      border:1px solid var(--color-border);
      border-radius:var(--radius-lg);
      padding:22px;
      box-shadow:var(--shadow-sm);
    }
    .side-card h3{
      font-size:20px;
      margin-bottom:16px;
    }
    .rank-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .rank-list li{
      display:grid;
      grid-template-columns:32px 1fr;
      gap:10px;
      align-items:start;
      padding-bottom:12px;
      border-bottom:1px solid rgba(234,222,215,.72);
    }
    .rank-list li:last-child{border-bottom:0;padding-bottom:0}
    .rank-num{
      width:32px;
      height:32px;
      border-radius:11px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      font-weight:900;
    }
    .rank-list strong{
      display:block;
      color:var(--color-heading);
      margin-bottom:2px;
    }
    .rank-list span{
      color:var(--color-light);
      font-size:13px;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .tag-cloud a{
      padding:7px 11px;
      border-radius:var(--radius-pill);
      background:#fff8f3;
      border:1px solid var(--color-border);
      color:var(--color-muted);
      font-weight:800;
      font-size:13px;
    }
    .tag-cloud a:hover{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      border-color:rgba(233,95,77,.24);
      transform:translateY(-2px);
    }

    .steps-wrap{
      background:linear-gradient(180deg,var(--color-panel-2),rgba(255,243,234,.35));
      border-top:1px solid rgba(234,222,215,.7);
      border-bottom:1px solid rgba(234,222,215,.7);
    }
    .steps-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      counter-reset:step;
    }
    .step-card{
      position:relative;
      background:rgba(255,253,251,.82);
      border:1px solid var(--color-border);
      border-radius:var(--radius-lg);
      padding:24px;
      min-height:210px;
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .step-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
    }
    .step-card:before{
      counter-increment:step;
      content:"0" counter(step);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;
      height:44px;
      border-radius:15px;
      background:var(--color-primary);
      color:#fff;
      font-weight:900;
      margin-bottom:16px;
      box-shadow:0 10px 22px rgba(233,95,77,.22);
    }
    .step-card h3{font-size:20px;margin-bottom:10px}
    .step-card p{margin-bottom:0}

    .scenario-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:24px;
      align-items:stretch;
    }
    .scenario-main{
      background:var(--color-footer);
      color:#fff;
      border-radius:var(--radius-lg);
      padding:34px;
      box-shadow:var(--shadow-md);
      position:relative;
      overflow:hidden;
    }
    .scenario-main:after{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-90px;
      top:-90px;
      border-radius:50%;
      background:rgba(233,95,77,.32);
    }
    .scenario-main h2{color:#fff;font-size:34px;margin-bottom:12px;position:relative;z-index:1}
    .scenario-main p{color:#e9ddd7;position:relative;z-index:1}
    .scenario-points{
      position:relative;
      z-index:1;
      display:grid;
      gap:12px;
      margin-top:22px;
    }
    .scenario-point{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .scenario-point b{
      color:#fff;
      display:block;
      margin-bottom:2px;
    }
    .scenario-point span{
      color:#d8c9c1;
      font-size:14px;
    }
    .scenario-cards{
      display:grid;
      gap:16px;
    }
    .compact-card{
      background:var(--color-panel);
      border:1px solid var(--color-border);
      border-radius:var(--radius-lg);
      padding:22px;
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .compact-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-md);
      border-color:rgba(233,95,77,.28);
    }
    .compact-card h3{font-size:20px;margin-bottom:8px}
    .compact-card p{margin-bottom:0}

    .pager{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      margin-top:28px;
    }
    .pager a,.pager span{
      min-width:42px;
      height:42px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:14px;
      border:1px solid var(--color-border);
      background:#fff;
      color:var(--color-muted);
      font-weight:900;
    }
    .pager a:hover,.pager span.current{
      background:var(--color-primary);
      border-color:var(--color-primary);
      color:#fff;
      transform:translateY(-2px);
    }
    .pager .next{
      min-width:120px;
      padding:0 18px;
      border-radius:var(--radius-pill);
    }

    .subscribe-band{
      background:linear-gradient(135deg,#fffdfb,#fff0ec);
      border:1px solid var(--color-border);
      border-radius:var(--radius-lg);
      padding:30px;
      box-shadow:var(--shadow-md);
      display:grid;
      grid-template-columns:1fr 420px;
      gap:24px;
      align-items:center;
    }
    .subscribe-band h2{
      font-size:30px;
      margin-bottom:8px;
    }
    .subscribe-form{
      display:flex;
      gap:10px;
      background:#fff;
      border:1px solid var(--color-border);
      border-radius:var(--radius-pill);
      padding:8px;
    }
    .subscribe-form input{
      flex:1;
      border:0;
      box-shadow:none;
      margin:0;
      background:transparent;
      padding:0 12px;
      min-width:0;
    }
    .subscribe-form input:focus{box-shadow:none;background:transparent}
    .form-note{
      margin:8px 0 0;
      font-size:13px;
      color:var(--color-light);
    }

    .faq-list{
      display:grid;
      gap:12px;
      max-width:900px;
      margin:0 auto;
    }
    .faq-item{
      background:var(--color-panel);
      border:1px solid var(--color-border);
      border-radius:var(--radius-md);
      overflow:hidden;
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .faq-item[open]{
      border-color:rgba(233,95,77,.32);
      background:#fffaf7;
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:20px 22px;
      color:var(--color-heading);
      font-weight:900;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary:after{
      content:"+";
      width:28px;
      height:28px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      flex:0 0 auto;
      font-size:20px;
    }
    .faq-item[open] summary:after{content:"−";background:var(--color-primary);color:#fff}
    .faq-item p{
      padding:0 22px 20px;
      margin:0;
    }

    .site-footer{
      background:var(--color-footer);
      color:#f7eee9;
      padding:56px 0 26px;
      margin-top:20px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr;
      gap:38px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:900;
      font-size:19px;
      margin-bottom:14px;
    }
    .footer-desc{
      color:#d4c6bf;
      max-width:520px;
      margin-bottom:0;
    }
    .footer-col h3{
      color:#fff;
      font-size:17px;
      margin-bottom:14px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:#d4c6bf;
    }
    .footer-links a:hover{
      color:#fff;
      padding-left:4px;
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.1);
      color:#ad9d95;
      font-size:14px;
    }

    @media (max-width:1100px){
      .brand{min-width:auto}
      .brand-sub{display:none}
      .search-box{width:190px}
      .content-layout{grid-template-columns:1fr}
      .sidebar{position:static;grid-template-columns:repeat(2,1fr)}
      .steps-grid{grid-template-columns:repeat(2,1fr)}
      .subscribe-band{grid-template-columns:1fr}
    }
    @media (max-width:900px){
      .desktop-nav,.nav-actions{display:none}
      .menu-toggle{display:inline-flex;align-items:center;justify-content:center;margin-left:auto}
      .mobile-panel.is-open{display:block}
      .nav-wrap{min-height:68px}
      .hero-grid{grid-template-columns:1fr}
      .hero-panel{max-width:640px}
      .filter-card{align-items:flex-start;flex-direction:column}
      .filter-meta{white-space:normal}
      .scenario-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .footer-grid>div:first-child{grid-column:1/-1}
    }
    @media (max-width:680px){
      .site-container{width:min(100% - 24px,var(--container))}
      .section{padding:48px 0}
      .section-tight{padding:36px 0}
      .section-head{display:block}
      .category-hero{min-height:auto}
      .hero-content{padding:54px 0 74px}
      .hero-actions .btn{width:100%}
      .filter-bar{margin-top:-28px}
      .notice-card{grid-template-columns:1fr}
      .notice-cover{min-height:190px}
      .notice-actions{align-items:flex-start;flex-direction:column}
      .mini-btn{width:100%}
      .sidebar{grid-template-columns:1fr}
      .steps-grid{grid-template-columns:1fr}
      .subscribe-band{padding:22px}
      .subscribe-form{
        border-radius:22px;
        flex-direction:column;
      }
      .subscribe-form .btn{width:100%}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{display:block}
      .footer-bottom span{display:block;margin-top:8px}
      .brand-main{font-size:15px}
      .brand-mark{width:38px;height:38px;border-radius:13px}
    }
    @media (max-width:420px){
      .category-hero h1{font-size:31px}
      .hero-lead{font-size:16px}
      .filter-tabs a{width:100%;justify-content:center}
      .pager{flex-wrap:wrap}
      .pager .next{width:100%}
    }
