/* roulang page: index */
:root{
      --bg:#09090B;
      --bg-2:#111115;
      --panel:#1B1B20;
      --panel-2:#2A2A30;
      --paper:#F7F7F2;
      --paper-2:#EDEDE4;
      --text:#F7F7F2;
      --muted:#B9B9B0;
      --ink:#101014;
      --pink:#FF2D6F;
      --yellow:#F8E71C;
      --wine:#5A1028;
      --line:rgba(247,247,242,.16);
      --line-dark:rgba(16,16,20,.14);
      --shadow:6px 6px 0 rgba(0,0,0,.72);
      --shadow-pink:5px 5px 0 rgba(255,45,111,.35);
      --radius:8px;
      --radius-sm:6px;
      --side:220px;
      --max:1180px;
      --speed:.18s ease;
      --font:PingFang SC,Microsoft YaHei,Noto Sans SC,Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      line-height:1.65;
      color:var(--text);
      background:
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px) 0 0/32px 32px,
        radial-gradient(circle at 30% 0,rgba(90,16,40,.6),transparent 38%),
        var(--bg);
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:var(--yellow);color:#000}
    :focus-visible{outline:3px solid var(--yellow);outline-offset:3px}
    .skip-link{position:absolute;left:-999px;top:auto;width:1px;height:1px;overflow:hidden}
    .skip-link:focus{left:16px;top:16px;width:auto;height:auto;background:var(--yellow);color:#000;padding:10px 14px;z-index:1000;border-radius:6px}

    .side-nav{
      position:fixed;
      inset:0 auto 0 0;
      width:var(--side);
      background:#070708;
      border-right:1px solid var(--line);
      z-index:80;
      padding:22px 16px;
      display:flex;
      flex-direction:column;
      gap:22px;
    }
    .brand{
      display:flex;
      align-items:flex-start;
      gap:10px;
      padding:10px 8px 18px;
      border-bottom:1px solid var(--line);
    }
    .brand-mark{
      min-width:34px;height:34px;
      display:grid;place-items:center;
      background:var(--pink);
      color:#fff;
      border:2px solid var(--yellow);
      box-shadow:3px 3px 0 #000;
      font-weight:900;
      border-radius:6px;
    }
    .brand-name{font-size:18px;font-weight:900;line-height:1.2}
    .brand-note{display:block;font-size:12px;color:var(--muted);margin-top:4px;font-weight:600}
    .nav-list{display:grid;gap:10px;margin:0;padding:0;list-style:none}
    .nav-link{
      min-height:48px;
      display:flex;
      align-items:center;
      gap:10px;
      padding:11px 12px;
      border:1px solid transparent;
      border-radius:var(--radius-sm);
      color:var(--muted);
      font-weight:800;
      transition:transform var(--speed),background var(--speed),color var(--speed),border-color var(--speed);
    }
    .nav-link:hover{transform:translateX(2px);background:#141418;color:#fff;border-color:rgba(255,45,111,.35)}
    .nav-link.active{background:var(--yellow);color:#000;border-color:var(--yellow);box-shadow:4px 4px 0 var(--pink)}
    .nav-ico{width:22px;text-align:center}
    .side-mini{
      margin-top:auto;
      border:1px solid var(--line);
      border-radius:var(--radius);
      padding:14px;
      background:linear-gradient(135deg,#151519,#09090B);
    }
    .side-mini strong{display:block;color:var(--yellow);font-size:14px;margin-bottom:6px}
    .side-mini p{margin:0;color:var(--muted);font-size:12px;line-height:1.55}
    .mobile-top{display:none}
    .drawer-mask{display:none}

    .page{
      min-height:100vh;
      margin-left:var(--side);
    }
    .container{width:min(var(--max),calc(100% - 48px));margin-inline:auto}
    .section{padding:64px 0}
    .section.tight{padding:42px 0}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:26px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:5px 9px;
      border:1px solid var(--line);
      background:#111115;
      color:var(--yellow);
      font-size:12px;
      font-weight:900;
      letter-spacing:.02em;
      border-radius:999px;
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:46px;
      line-height:1.12;
      margin:16px 0 16px;
      font-weight:1000;
      max-width:920px;
    }
    h2{
      font-size:29px;
      line-height:1.22;
      margin:0 0 10px;
      font-weight:1000;
    }
    h3{font-size:19px;line-height:1.32;margin:0 0 8px;font-weight:1000}
    .lead{font-size:17px;color:#E6E6DE;max-width:780px;margin-bottom:0}
    .muted{color:var(--muted)}
    .btn-row{display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}
    .btn{
      min-height:46px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:11px 16px;
      border-radius:var(--radius-sm);
      border:2px solid transparent;
      font-weight:1000;
      transition:transform var(--speed),box-shadow var(--speed),background var(--speed),border-color var(--speed),color var(--speed);
      user-select:none;
    }
    .btn:hover{transform:translate(-1px,-1px);box-shadow:5px 5px 0 #000}
    .btn:active{transform:translate(1px,1px);box-shadow:2px 2px 0 #000}
    .btn-primary{background:var(--pink);color:#fff;border-color:var(--pink);box-shadow:4px 4px 0 var(--yellow)}
    .btn-secondary{background:#0D0D10;color:#fff;border-color:var(--yellow)}
    .btn-paper{background:var(--paper);color:#000;border-color:#000;box-shadow:4px 4px 0 var(--pink)}
    .tag,.badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 8px;
      border-radius:999px;
      border:1px solid var(--line);
      color:#fff;
      background:#151519;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .tag.yellow,.badge.yellow{background:var(--yellow);color:#000;border-color:#000}
    .tag.pink,.badge.pink{background:var(--pink);color:#fff;border-color:var(--pink)}
    .tag.paper{background:var(--paper);color:#000;border-color:#000}
    .sticker{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:8px 12px;
      background:var(--yellow);
      color:#000;
      font-weight:1000;
      clip-path:polygon(6% 0,100% 0,94% 100%,0 100%);
      box-shadow:4px 4px 0 #000;
    }

    .hero{
      min-height:680px;
      padding:34px 0 54px;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
      border-bottom:1px solid var(--line);
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg,rgba(255,45,111,.22),transparent 35%),
        linear-gradient(180deg,transparent 78%,var(--bg) 100%);
      pointer-events:none;
    }
    .hero-wrap{
      position:relative;
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:28px;
      align-items:stretch;
    }
    .invite-board{
      border:2px solid rgba(247,247,242,.18);
      background:
        linear-gradient(135deg,rgba(255,45,111,.14),transparent 34%),
        #111115;
      padding:34px;
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .invite-board:after{
      content:"18+";
      position:absolute;
      right:22px;
      top:20px;
      width:70px;
      height:70px;
      display:grid;
      place-items:center;
      background:var(--yellow);
      color:#000;
      border:3px solid #000;
      border-radius:50%;
      font-weight:1000;
      transform:rotate(10deg);
    }
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:26px;
    }
    .stat{
      padding:13px 12px;
      background:#0B0B0D;
      border:1px solid var(--line);
      border-radius:var(--radius-sm);
    }
    .stat strong{display:block;font-size:22px;line-height:1;color:var(--yellow)}
    .stat span{font-size:12px;color:var(--muted);font-weight:800}
    .progress-panel{
      display:grid;
      gap:16px;
    }
    .progress-card,.quick-card{
      border:2px solid rgba(247,247,242,.2);
      background:var(--paper);
      color:#000;
      border-radius:var(--radius);
      padding:22px;
      box-shadow:var(--shadow-pink);
    }
    .progress-title{display:flex;justify-content:space-between;gap:12px;align-items:center;font-weight:1000;margin-bottom:14px}
    .progress-bar{height:16px;border:2px solid #000;background:#fff;border-radius:999px;overflow:hidden}
    .progress-fill{height:100%;width:72%;background:linear-gradient(90deg,var(--pink),var(--yellow));border-right:2px solid #000}
    .progress-meta{display:flex;justify-content:space-between;margin-top:10px;font-size:13px;font-weight:900}
    .quick-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:10px;margin-top:14px}
    .quick-link{
      min-height:54px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:12px;
      background:#101014;
      color:#fff;
      border:1px solid #000;
      border-radius:6px;
      font-weight:900;
      transition:transform var(--speed),background var(--speed);
    }
    .quick-link:hover{transform:translateY(-2px);background:var(--pink)}
    .age-line{
      margin-top:16px;
      padding:12px 14px;
      background:#000;
      color:#fff;
      border-left:6px solid var(--yellow);
      font-size:13px;
      font-weight:800;
    }

    .coupon-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .coupon{
      min-height:210px;
      background:var(--panel);
      border:2px solid var(--line);
      border-radius:var(--radius);
      padding:18px;
      position:relative;
      overflow:hidden;
      box-shadow:4px 4px 0 rgba(0,0,0,.55);
    }
    .coupon:before{
      content:attr(data-no);
      position:absolute;
      right:10px;
      bottom:-14px;
      color:rgba(255,255,255,.08);
      font-size:72px;
      font-weight:1000;
      line-height:1;
    }
    .coupon.featured{background:var(--pink);border-color:#fff;color:#fff}
    .coupon.featured .tag{background:#000;border-color:#000}
    .coupon h3{max-width:190px}
    .coupon p{font-size:14px;color:#D9D9D2;margin:0 0 14px}
    .coupon.featured p{color:#fff}
    .coupon .btn{width:100%;margin-top:10px;position:relative;z-index:1}

    .rule-strip{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:start;
    }
    .rule-note{
      background:var(--yellow);
      color:#000;
      border:2px solid #000;
      border-radius:var(--radius);
      padding:24px;
      box-shadow:var(--shadow);
      position:sticky;
      top:24px;
    }
    .rule-list{display:grid;gap:12px}
    .rule-item{
      display:grid;
      grid-template-columns:64px 1fr auto;
      gap:16px;
      align-items:center;
      padding:16px;
      border:1px solid var(--line);
      background:#111115;
      border-radius:var(--radius);
    }
    .rule-no{font-size:28px;font-weight:1000;color:var(--pink)}
    .rule-item p{margin:0;color:var(--muted);font-size:14px}

    .plant-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
    .plant-card{
      background:var(--paper);
      color:#000;
      border:2px solid #000;
      border-radius:var(--radius);
      padding:20px;
      box-shadow:5px 5px 0 var(--pink);
      display:grid;
      gap:12px;
    }
    .plant-top{display:flex;align-items:center;justify-content:space-between;gap:12px}
    .plant-tags{display:flex;flex-wrap:wrap;gap:8px}
    .plant-card p{margin:0;color:#25252A;font-size:14px}

    .check-section{
      background:var(--paper);
      color:#000;
      border-top:2px solid #000;
      border-bottom:2px solid #000;
    }
    .check-wrap{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:start;
    }
    .check-list{display:grid;gap:12px}
    .check{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:14px;
      padding:16px;
      border:2px solid #000;
      background:#fff;
      border-radius:var(--radius-sm);
      box-shadow:4px 4px 0 #000;
    }
    .check-num{font-size:22px;font-weight:1000;color:var(--pink)}
    .check p{margin:0;color:#333;font-size:14px}
    .compare{
      border:2px solid #000;
      background:#111115;
      color:#fff;
      border-radius:var(--radius);
      overflow:hidden;
      box-shadow:var(--shadow-pink);
    }
    .compare-row{display:grid;grid-template-columns:1fr 1fr;border-bottom:1px solid rgba(255,255,255,.16)}
    .compare-row:last-child{border-bottom:0}
    .compare-cell{padding:14px;border-right:1px solid rgba(255,255,255,.16);font-size:14px}
    .compare-cell:last-child{border-right:0}
    .compare-head{background:var(--pink);font-weight:1000}
    .compare strong{color:var(--yellow)}

    .quote-rail{
      display:flex;
      gap:14px;
      overflow-x:auto;
      padding:4px 4px 14px;
      scrollbar-color:var(--pink) #222;
    }
    .quote{
      flex:0 0 330px;
      border:1px solid var(--line);
      background:#111115;
      border-radius:var(--radius);
      padding:18px;
      box-shadow:4px 4px 0 rgba(0,0,0,.45);
    }
    .quote-mark{font-size:34px;color:var(--yellow);line-height:1}
    .quote p{color:#E8E8E0;font-size:14px;margin:8px 0 14px}
    .quote-foot{display:flex;justify-content:space-between;align-items:center;color:var(--muted);font-size:12px;font-weight:900}

    .news-wrap{
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:20px;
    }
    .news-list{
      border-top:2px solid var(--line);
    }
    .news-item{
      display:grid;
      grid-template-columns:96px 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px 0;
      border-bottom:1px solid var(--line);
    }
    .news-date{font-weight:1000;color:var(--yellow)}
    .news-item h3{font-size:18px;margin-bottom:4px}
    .news-item p{margin:0;color:var(--muted);font-size:14px}
    .recommend-box{
      background:var(--wine);
      border:2px solid rgba(247,247,242,.22);
      border-radius:var(--radius);
      padding:20px;
      box-shadow:var(--shadow);
    }
    .recommend-box ul{margin:14px 0 0;padding:0;list-style:none;display:grid;gap:10px}
    .recommend-box li{padding:10px 0;border-bottom:1px solid rgba(255,255,255,.16);font-size:14px}
    .recommend-box li:last-child{border-bottom:0}

    .faq-wrap{border-top:2px solid var(--line)}
    .faq-item{border-bottom:1px solid var(--line)}
    .faq-q{
      width:100%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      padding:18px 0;
      background:transparent;
      border:0;
      color:#fff;
      text-align:left;
      font-weight:1000;
      font-size:17px;
    }
    .faq-q span:last-child{color:var(--yellow);font-size:24px;line-height:1}
    .faq-a{display:none;color:var(--muted);padding:0 0 18px;max-width:820px;font-size:15px}
    .faq-item.open .faq-a{display:block}
    .faq-item.open .faq-q span:last-child{transform:rotate(45deg)}

    .final-cta{
      padding:54px 0 72px;
      background:
        linear-gradient(135deg,var(--pink),var(--wine));
      color:#fff;
      border-top:2px solid #fff;
      position:relative;
    }
    .cta-box{
      display:grid;
      grid-template-columns:1fr auto;
      gap:22px;
      align-items:center;
      background:#09090B;
      border:2px solid #fff;
      border-radius:var(--radius);
      padding:26px;
      box-shadow:8px 8px 0 var(--yellow);
    }
    .cta-box p{margin:0;color:#E6E6DE}
    .remind-form{
      display:flex;
      gap:10px;
      margin-top:16px;
      flex-wrap:wrap;
    }
    .remind-form input{
      min-height:46px;
      width:min(310px,100%);
      border:2px solid #fff;
      background:#16161A;
      color:#fff;
      border-radius:6px;
      padding:0 13px;
    }
    .form-note{font-size:12px;color:#CFCFC8;margin-top:8px}

    .footer{
      margin-left:var(--side);
      background:#050506;
      border-top:1px solid var(--line);
      padding:34px 0;
      color:var(--muted);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:28px;
      align-items:start;
    }
    .footer-logo{font-size:20px;font-weight:1000;color:#fff;margin-bottom:8px}
    .footer p{margin:0;font-size:13px;max-width:680px}
    .footer-links{display:flex;gap:12px;justify-content:flex-end;flex-wrap:wrap}
    .footer-links a{font-size:13px;color:var(--muted);padding:6px 0;border-bottom:1px solid transparent}
    .footer-links a:hover{color:#fff;border-color:var(--pink)}
    .copyright{margin-top:18px;padding-top:18px;border-top:1px solid var(--line);font-size:12px;color:#888}

    .sticky-cta{
      position:fixed;
      right:18px;
      bottom:18px;
      z-index:60;
      width:280px;
      background:var(--paper);
      color:#000;
      border:2px solid #000;
      border-radius:var(--radius);
      padding:14px;
      box-shadow:6px 6px 0 var(--pink);
    }
    .sticky-cta strong{display:block;font-size:15px;margin-bottom:6px}
    .sticky-cta p{margin:0 0 10px;font-size:12px;color:#333;line-height:1.45}
    .sticky-cta .btn{width:100%;min-height:42px}

    @media (max-width:1100px){
      :root{--side:198px}
      h1{font-size:40px}
      .hero-wrap,.rule-strip,.check-wrap,.news-wrap{grid-template-columns:1fr}
      .rule-note{position:relative;top:auto}
      .coupon-grid{grid-template-columns:repeat(2,1fr)}
      .sticky-cta{display:none}
    }
    @media (max-width:768px){
      body.drawer-open{overflow:hidden}
      .side-nav{
        transform:translateX(-105%);
        width:280px;
        transition:transform var(--speed);
      }
      .side-nav.open{transform:translateX(0)}
      .mobile-top{
        display:flex;
        position:sticky;
        top:0;
        z-index:90;
        height:60px;
        align-items:center;
        justify-content:space-between;
        gap:12px;
        padding:0 16px;
        background:#070708;
        border-bottom:1px solid var(--line);
      }
      .mobile-logo{display:flex;align-items:center;gap:9px;font-weight:1000}
      .menu-btn{
        width:44px;height:44px;
        border:1px solid var(--line);
        background:#151519;
        color:#fff;
        border-radius:6px;
      }
      .drawer-mask{
        display:none;
        position:fixed;
        inset:0;
        z-index:70;
        background:rgba(0,0,0,.58);
      }
      body.drawer-open .drawer-mask{display:block}
      .page,.footer{margin-left:0}
      .container{width:min(100% - 30px,var(--max))}
      .section{padding:46px 0}
      .hero{min-height:auto;padding:28px 0 44px}
      .hero-wrap{gap:16px}
      .invite-board{padding:22px}
      .invite-board:after{width:54px;height:54px;right:14px;top:14px;font-size:14px}
      h1{font-size:32px;max-width:calc(100% - 48px)}
      h2{font-size:25px}
      .lead{font-size:15px}
      .hero-stats{grid-template-columns:1fr}
      .quick-grid,.plant-grid,.footer-grid,.cta-box{grid-template-columns:1fr}
      .coupon-grid{display:flex;overflow-x:auto;padding-bottom:14px}
      .coupon{flex:0 0 78%;min-height:225px}
      .section-head{display:block}
      .rule-item{grid-template-columns:44px 1fr}
      .rule-item .badge{grid-column:2}
      .check{grid-template-columns:42px 1fr}
      .news-item{grid-template-columns:1fr;gap:6px}
      .footer-links{justify-content:flex-start}
      .btn-row .btn,.cta-box .btn{width:100%}
    }
    @media (max-width:520px){
      .coupon{flex-basis:88%}
      .progress-card,.quick-card,.rule-note,.plant-card,.cta-box{padding:18px}
      .quote{flex-basis:285px}
      .compare-row{grid-template-columns:1fr}
      .compare-cell{border-right:0;border-bottom:1px solid rgba(255,255,255,.14)}
      .compare-cell:last-child{border-bottom:0}
      .remind-form input,.remind-form .btn{width:100%}
    }

/* roulang page: category1 */
:root {
      --bg: #09090B;
      --bg-soft: #121216;
      --panel: #1B1B20;
      --panel-2: #2A2A30;
      --paper: #F7F7F2;
      --paper-dim: #E7E4DA;
      --text: #F7F7F2;
      --muted: #B9B7AE;
      --muted-dark: #5D5A54;
      --pink: #FF2D6F;
      --pink-dark: #C91E52;
      --yellow: #F8E71C;
      --wine: #5A1028;
      --border: rgba(247,247,242,.18);
      --border-dark: rgba(9,9,11,.22);
      --shadow-hard: 5px 5px 0 #000;
      --shadow-pink: 5px 5px 0 var(--pink);
      --radius: 8px;
      --radius-sm: 6px;
      --nav-w: 220px;
      --container: 1180px;
      --ease: .18s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      font-family: PingFang SC, Microsoft YaHei, Noto Sans SC, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      line-height: 1.65;
      color: var(--text);
      background:
        linear-gradient(90deg, rgba(255,45,111,.07) 0 1px, transparent 1px 100%),
        radial-gradient(circle at 10% 8%, rgba(90,16,40,.45), transparent 30%),
        var(--bg);
      background-size: 34px 34px, auto, auto;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button,
    a,
    input,
    textarea,
    select {
      -webkit-tap-highlight-color: transparent;
    }

    :focus-visible {
      outline: 3px solid var(--yellow);
      outline-offset: 3px;
    }

    ::selection {
      background: var(--yellow);
      color: #000;
    }

    .container {
      width: min(var(--container), calc(100% - 48px));
      margin: 0 auto;
    }

    .app-shell {
      min-height: 100vh;
    }

    .side-nav {
      position: fixed;
      inset: 0 auto 0 0;
      width: var(--nav-w);
      z-index: 50;
      background: #050506;
      border-right: 1px solid var(--border);
      padding: 22px 18px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      box-shadow: 8px 0 0 rgba(255,45,111,.12);
    }

    .brand {
      display: flex;
      flex-direction: column;
      gap: 8px;
      min-height: 92px;
      justify-content: center;
      border: 2px solid var(--paper);
      padding: 14px 12px;
      background: var(--bg);
      box-shadow: var(--shadow-hard);
      position: relative;
    }

    .brand:after {
      content: "18+";
      position: absolute;
      top: -12px;
      right: 10px;
      background: var(--yellow);
      color: #000;
      font-weight: 900;
      font-size: 12px;
      padding: 2px 8px;
      border: 2px solid #000;
      transform: rotate(3deg);
    }

    .brand-title {
      font-size: 18px;
      font-weight: 900;
      line-height: 1.18;
    }

    .brand-sub {
      color: var(--muted);
      font-size: 12px;
    }

    .nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .nav-link {
      min-height: 46px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 11px 12px;
      border: 1px solid transparent;
      color: var(--muted);
      background: transparent;
      border-radius: var(--radius-sm);
      font-size: 14px;
      font-weight: 800;
      transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .nav-link:hover {
      color: var(--text);
      background: rgba(247,247,242,.07);
      border-color: var(--border);
      transform: translateX(2px);
    }

    .nav-link.active {
      color: #000;
      background: var(--yellow);
      border-color: #000;
      box-shadow: 4px 4px 0 var(--pink);
    }

    .nav-ico {
      width: 24px;
      height: 24px;
      display: inline-grid;
      place-items: center;
      font-size: 13px;
    }

    .nav-note {
      margin-top: auto;
      border-top: 1px solid var(--border);
      padding-top: 16px;
      color: var(--muted);
      font-size: 12px;
    }

    .nav-note strong {
      display: inline-block;
      color: var(--yellow);
      margin-bottom: 4px;
    }

    .mobile-top {
      display: none;
    }

    .drawer-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.62);
      z-index: 80;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--ease), visibility var(--ease);
    }

    .drawer {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 90;
      width: min(310px, 88vw);
      height: 100vh;
      transform: translateX(-105%);
      transition: transform var(--ease);
      background: #050506;
      padding: 18px;
      border-right: 1px solid var(--border);
      box-shadow: 8px 0 0 var(--pink);
    }

    body.drawer-open {
      overflow: hidden;
    }

    body.drawer-open .drawer {
      transform: translateX(0);
    }

    body.drawer-open .drawer-backdrop {
      opacity: 1;
      visibility: visible;
    }

    .main {
      margin-left: var(--nav-w);
      min-height: 100vh;
    }

    .section {
      padding: 72px 0;
    }

    .section-tight {
      padding: 48px 0;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 30px;
      padding: 4px 10px;
      background: var(--pink);
      color: #fff;
      border: 2px solid #000;
      box-shadow: 3px 3px 0 #000;
      font-size: 13px;
      font-weight: 900;
      transform: rotate(-1deg);
    }

    .badge,
    .tag {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 28px;
      padding: 4px 9px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(247,247,242,.06);
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .tag.hot {
      background: var(--yellow);
      color: #000;
      border-color: #000;
    }

    .tag.pink {
      background: var(--pink);
      color: #fff;
      border-color: #000;
    }

    .tag.dark {
      background: #000;
      color: var(--paper);
      border-color: var(--paper);
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 18px;
      border-radius: var(--radius-sm);
      border: 2px solid #000;
      font-weight: 900;
      line-height: 1.2;
      cursor: pointer;
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
    }

    .btn-primary {
      background: var(--pink);
      color: #fff;
      box-shadow: var(--shadow-hard);
    }

    .btn-primary:hover {
      transform: translate(-1px, -1px);
      background: #ff4b83;
      box-shadow: 7px 7px 0 #000;
    }

    .btn-secondary {
      background: #000;
      color: var(--paper);
      border-color: var(--yellow);
      box-shadow: 4px 4px 0 rgba(248,231,28,.35);
    }

    .btn-secondary:hover {
      transform: translateY(-1px);
      color: var(--yellow);
      box-shadow: 6px 6px 0 rgba(248,231,28,.55);
    }

    .btn-paper {
      background: var(--paper);
      color: #000;
      box-shadow: 4px 4px 0 var(--pink);
    }

    .btn-paper:hover {
      transform: translate(-1px, -1px);
      box-shadow: 6px 6px 0 var(--pink);
    }

    .btn:active {
      transform: translate(1px, 1px);
      box-shadow: 2px 2px 0 #000;
    }

    .page-hero {
      position: relative;
      padding: 54px 0 34px;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(255,45,111,.22), transparent 36%),
        linear-gradient(90deg, #09090B 0%, #17171b 100%);
    }

    .page-hero:before {
      content: "";
      position: absolute;
      right: -80px;
      top: 40px;
      width: 320px;
      height: 320px;
      background:
        repeating-linear-gradient(0deg, rgba(247,247,242,.13) 0 2px, transparent 2px 12px);
      transform: rotate(12deg);
      opacity: .35;
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 28px;
      align-items: stretch;
    }

    .headline-card {
      border: 2px solid var(--paper);
      background: #0d0d10;
      box-shadow: var(--shadow-pink);
      padding: 30px;
      min-height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    h1 {
      margin: 18px 0 12px;
      font-size: 44px;
      line-height: 1.12;
      font-weight: 950;
      max-width: 760px;
    }

    .lead {
      margin: 0;
      color: var(--paper-dim);
      font-size: 17px;
      max-width: 720px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    .group-panel {
      background: var(--paper);
      color: #000;
      border: 2px solid #000;
      box-shadow: var(--shadow-hard);
      padding: 22px;
      display: grid;
      gap: 16px;
      position: relative;
      overflow: hidden;
    }

    .group-panel:after {
      content: "今日更新";
      position: absolute;
      right: -28px;
      top: 18px;
      background: var(--yellow);
      color: #000;
      border: 2px solid #000;
      font-weight: 950;
      padding: 6px 34px;
      transform: rotate(28deg);
      box-shadow: 3px 3px 0 var(--pink);
    }

    .group-title {
      font-size: 24px;
      font-weight: 950;
      line-height: 1.2;
      max-width: 78%;
    }

    .group-count {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .count-box {
      border: 2px solid #000;
      background: #fff;
      padding: 12px 10px;
      box-shadow: 3px 3px 0 #000;
    }

    .count-box b {
      display: block;
      font-size: 24px;
      line-height: 1;
    }

    .count-box span {
      color: var(--muted-dark);
      font-size: 12px;
      font-weight: 800;
    }

    .step-strip {
      display: grid;
      gap: 10px;
      margin-top: 4px;
    }

    .step-line {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 10px;
      border: 1px solid #000;
      background: rgba(248,231,28,.22);
    }

    .step-line strong {
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      background: #000;
      color: var(--yellow);
      font-size: 13px;
    }

    .filter-band {
      background: var(--panel);
      border-bottom: 1px solid var(--border);
      padding: 20px 0;
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .filter-wrap {
      display: flex;
      gap: 10px;
      align-items: center;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: thin;
    }

    .filter-label {
      flex: 0 0 auto;
      color: var(--yellow);
      font-size: 13px;
      font-weight: 900;
      margin-right: 4px;
    }

    .filter-chip {
      flex: 0 0 auto;
      min-height: 38px;
      padding: 7px 13px;
      border: 1px solid var(--border);
      background: rgba(247,247,242,.05);
      color: var(--paper);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
      transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
      cursor: pointer;
    }

    .filter-chip:hover,
    .filter-chip.active {
      background: var(--yellow);
      color: #000;
      border-color: #000;
      transform: translateY(-1px);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 18px;
      align-items: end;
      margin-bottom: 28px;
    }

    .section-head h2 {
      margin: 8px 0 0;
      font-size: 30px;
      line-height: 1.2;
      font-weight: 950;
    }

    .section-head p {
      margin: 8px 0 0;
      color: var(--muted);
      max-width: 720px;
    }

    .index-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .index-item {
      position: relative;
      min-height: 238px;
      display: grid;
      grid-template-columns: 106px 1fr;
      gap: 16px;
      padding: 18px;
      background: var(--panel);
      border: 1px solid var(--border);
      box-shadow: 4px 4px 0 rgba(0,0,0,.6);
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .index-item:hover {
      transform: translate(-2px, -2px);
      border-color: var(--pink);
      box-shadow: 6px 6px 0 var(--pink);
    }

    .index-no {
      border-right: 1px solid var(--border);
      padding-right: 14px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .index-no .num {
      font-size: 46px;
      line-height: 1;
      font-weight: 950;
      color: var(--yellow);
    }

    .index-no .date {
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      writing-mode: vertical-rl;
      letter-spacing: 1px;
    }

    .index-content {
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .index-content h3 {
      margin: 0;
      font-size: 20px;
      line-height: 1.3;
      font-weight: 950;
    }

    .index-content p {
      margin: 0;
      color: var(--paper-dim);
      font-size: 14px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
    }

    .item-foot {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .status {
      color: var(--yellow);
      font-size: 12px;
      font-weight: 900;
    }

    .notice-box {
      position: relative;
      background: var(--yellow);
      color: #000;
      border: 2px solid #000;
      box-shadow: var(--shadow-hard);
      padding: 26px;
      overflow: hidden;
    }

    .notice-box:before {
      content: "SAFE";
      position: absolute;
      right: 18px;
      bottom: -18px;
      font-size: 82px;
      line-height: 1;
      font-weight: 950;
      color: rgba(0,0,0,.08);
    }

    .notice-box h2 {
      margin: 0 0 14px;
      font-size: 28px;
      line-height: 1.2;
      font-weight: 950;
    }

    .notice-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 18px;
    }

    .notice-point {
      background: #fff;
      border: 2px solid #000;
      padding: 14px;
      box-shadow: 3px 3px 0 #000;
    }

    .notice-point b {
      display: block;
      margin-bottom: 6px;
      font-size: 15px;
      font-weight: 950;
    }

    .notice-point span {
      color: #3b3935;
      font-size: 13px;
    }

    .compare-section {
      background: var(--paper);
      color: #000;
      border-block: 1px solid #000;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 24px;
      align-items: start;
    }

    .mag-note {
      position: sticky;
      top: 92px;
      background: #000;
      color: var(--paper);
      border: 2px solid #000;
      padding: 22px;
      box-shadow: 6px 6px 0 var(--pink);
    }

    .mag-note h2 {
      margin: 10px 0;
      font-size: 28px;
      line-height: 1.18;
      font-weight: 950;
    }

    .mag-note p {
      color: var(--paper-dim);
      margin: 0;
    }

    .checklist {
      display: grid;
      gap: 12px;
    }

    .check-item {
      display: grid;
      grid-template-columns: 42px 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      background: #fff;
      border: 2px solid #000;
      box-shadow: 4px 4px 0 rgba(0,0,0,.25);
    }

    .check-mark {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      background: var(--pink);
      color: #fff;
      border: 2px solid #000;
      font-weight: 950;
    }

    .check-item h3 {
      margin: 0 0 4px;
      font-size: 17px;
      font-weight: 950;
    }

    .check-item p {
      margin: 0;
      color: #4c4943;
      font-size: 14px;
    }

    .quote-strip {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      padding: 4px 0 12px;
      scroll-snap-type: x mandatory;
    }

    .quote-card {
      flex: 0 0 340px;
      scroll-snap-align: start;
      background: var(--panel);
      border: 1px solid var(--border);
      padding: 18px;
      box-shadow: 4px 4px 0 #000;
    }

    .quote-card .quote {
      font-size: 18px;
      font-weight: 900;
      line-height: 1.38;
      margin: 0 0 14px;
    }

    .quote-card .quote:before {
      content: "“";
      color: var(--pink);
      font-size: 34px;
      line-height: 0;
      margin-right: 3px;
    }

    .quote-meta {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
      color: var(--muted);
      font-size: 12px;
      border-top: 1px solid var(--border);
      padding-top: 12px;
    }

    .matrix {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .matrix-card {
      min-height: 142px;
      padding: 16px;
      border: 1px solid var(--border);
      background: linear-gradient(135deg, var(--panel), #111115);
      box-shadow: 4px 4px 0 #000;
      transition: transform var(--ease), border-color var(--ease);
    }

    .matrix-card:hover {
      transform: translateY(-2px);
      border-color: var(--yellow);
    }

    .matrix-card b {
      display: block;
      color: var(--yellow);
      font-size: 24px;
      line-height: 1;
      margin-bottom: 12px;
    }

    .matrix-card h3 {
      margin: 0 0 6px;
      font-size: 17px;
      font-weight: 950;
    }

    .matrix-card p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
    }

    .faq-list {
      border-top: 1px solid var(--border);
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
    }

    .faq-question {
      width: 100%;
      min-height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border: 0;
      background: transparent;
      color: var(--paper);
      padding: 18px 0;
      text-align: left;
      cursor: pointer;
      font-size: 17px;
      font-weight: 950;
    }

    .faq-question span:last-child {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      background: var(--yellow);
      color: #000;
      border: 1px solid #000;
      flex: 0 0 auto;
      transition: transform var(--ease);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .24s ease;
    }

    .faq-answer p {
      margin: 0;
      padding: 0 0 18px;
      color: var(--muted);
      max-width: 820px;
    }

    .faq-item.open .faq-answer {
      max-height: 180px;
    }

    .faq-item.open .faq-question span:last-child {
      transform: rotate(45deg);
      background: var(--pink);
      color: #fff;
    }

    .cta-banner {
      position: relative;
      overflow: hidden;
      background: var(--pink);
      color: #fff;
      border: 2px solid #000;
      box-shadow: var(--shadow-hard);
      padding: 28px;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: center;
    }

    .cta-banner:before {
      content: "18+";
      position: absolute;
      right: 26px;
      top: -10px;
      font-size: 88px;
      line-height: 1;
      font-weight: 950;
      color: rgba(0,0,0,.16);
      transform: rotate(-8deg);
    }

    .cta-banner h2 {
      position: relative;
      margin: 0 0 8px;
      font-size: 30px;
      line-height: 1.18;
      font-weight: 950;
    }

    .cta-banner p {
      position: relative;
      margin: 0;
      color: rgba(255,255,255,.9);
    }

    .cta-actions {
      position: relative;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .footer {
      margin-left: var(--nav-w);
      background: #050506;
      border-top: 1px solid var(--border);
      padding: 44px 0 28px;
      color: var(--muted);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 28px;
      align-items: start;
    }

    .footer-logo {
      color: var(--paper);
      font-size: 22px;
      line-height: 1.2;
      font-weight: 950;
      margin-bottom: 10px;
    }

    .footer p {
      max-width: 680px;
      margin: 0;
      font-size: 14px;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 10px;
    }

    .footer-links a {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      padding: 7px 12px;
      border: 1px solid var(--border);
      background: rgba(247,247,242,.04);
      border-radius: var(--radius-sm);
      font-weight: 800;
      font-size: 13px;
      transition: background var(--ease), color var(--ease), border-color var(--ease);
    }

    .footer-links a:hover {
      color: #000;
      background: var(--yellow);
      border-color: #000;
    }

    .copyright {
      margin-top: 26px;
      padding-top: 18px;
      border-top: 1px solid var(--border);
      font-size: 12px;
      color: #89877f;
    }

    .floating-cta {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 35;
      width: 292px;
      background: var(--paper);
      color: #000;
      border: 2px solid #000;
      box-shadow: var(--shadow-pink);
      padding: 14px;
    }

    .floating-cta strong {
      display: block;
      font-size: 16px;
      font-weight: 950;
      margin-bottom: 5px;
    }

    .floating-cta p {
      margin: 0 0 10px;
      font-size: 12px;
      color: #45423d;
      line-height: 1.5;
    }

    .floating-cta .btn {
      width: 100%;
      min-height: 42px;
      padding: 9px 12px;
    }

    @media (max-width: 1180px) {
      :root {
        --nav-w: 196px;
      }

      h1 {
        font-size: 38px;
      }

      .hero-grid,
      .compare-grid {
        grid-template-columns: 1fr;
      }

      .headline-card {
        min-height: auto;
      }

      .mag-note {
        position: relative;
        top: auto;
      }

      .notice-grid,
      .matrix {
        grid-template-columns: repeat(2, 1fr);
      }

      .floating-cta {
        display: none;
      }
    }

    @media (max-width: 900px) {
      .index-list {
        grid-template-columns: 1fr;
      }

      .section-head {
        grid-template-columns: 1fr;
      }

      .group-count {
        grid-template-columns: 1fr 1fr 1fr;
      }

      .cta-banner {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      body {
        padding-top: 62px;
      }

      .side-nav {
        display: none;
      }

      .mobile-top {
        position: fixed;
        inset: 0 0 auto 0;
        height: 62px;
        z-index: 70;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 0 16px;
        background: #050506;
        border-bottom: 1px solid var(--border);
      }

      .mobile-brand {
        font-weight: 950;
        line-height: 1.1;
        max-width: 210px;
        font-size: 15px;
      }

      .menu-btn,
      .drawer-close {
        width: 44px;
        height: 44px;
        display: grid;
        place-items: center;
        border: 2px solid var(--paper);
        background: #000;
        color: var(--paper);
        border-radius: var(--radius-sm);
        box-shadow: 3px 3px 0 var(--pink);
        cursor: pointer;
      }

      .drawer-head {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 18px;
      }

      .main,
      .footer {
        margin-left: 0;
      }

      .filter-band {
        top: 62px;
      }

      .container {
        width: min(100% - 28px, var(--container));
      }

      .page-hero {
        padding: 34px 0 24px;
      }

      .headline-card,
      .group-panel {
        padding: 20px;
      }

      h1 {
        font-size: 32px;
      }

      .lead {
        font-size: 15px;
      }

      .section {
        padding: 50px 0;
      }

      .section-tight {
        padding: 36px 0;
      }

      .group-title {
        max-width: 100%;
        font-size: 21px;
      }

      .group-panel:after {
        top: 8px;
        right: -34px;
      }

      .notice-grid,
      .matrix {
        grid-template-columns: 1fr;
      }

      .check-item {
        grid-template-columns: 42px 1fr;
      }

      .check-item .tag {
        grid-column: 2;
        justify-self: start;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-links {
        justify-content: flex-start;
      }
    }

    @media (max-width: 520px) {
      .hero-actions,
      .cta-actions {
        width: 100%;
      }

      .btn {
        width: 100%;
      }

      .group-count {
        grid-template-columns: 1fr;
      }

      .index-item {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .index-no {
        border-right: 0;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 10px;
        flex-direction: row;
        align-items: end;
      }

      .index-no .date {
        writing-mode: initial;
      }

      .quote-card {
        flex-basis: 86vw;
      }

      .section-head h2,
      .notice-box h2,
      .cta-banner h2 {
        font-size: 24px;
      }

      .mobile-brand {
        max-width: 180px;
      }
    }
