/* roulang page: index */
:root{
      --brand-red:#df1f2d;
      --brand-red-dark:#b80f1d;
      --brand-orange:#ff6a21;
      --brand-amber:#ffb32c;
      --ink:#211b1b;
      --ink-soft:#5e5555;
      --muted:#887b7b;
      --line:rgba(148,64,48,.16);
      --bg:#fff8f1;
      --bg-soft:#fff3e6;
      --card:#ffffff;
      --dark:#221313;
      --dark-2:#331717;
      --success:#1f9c63;
      --radius-sm:10px;
      --radius:18px;
      --radius-lg:28px;
      --shadow-sm:0 8px 22px rgba(82,31,18,.08);
      --shadow:0 18px 48px rgba(99,32,20,.14);
      --shadow-strong:0 24px 70px rgba(123,20,20,.22);
      --container:1180px;
      --ease:all .25s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 3%, rgba(255,106,33,.14), transparent 26%),
        radial-gradient(circle at 92% 8%, rgba(223,31,45,.12), transparent 28%),
        linear-gradient(180deg,#fffaf4 0%,#fff7ef 44%,#fff 100%);
      line-height:1.72;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--brand-red)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(223,31,45,.18);color:var(--brand-red-dark)}
    ::-webkit-scrollbar{width:10px;height:10px}
    ::-webkit-scrollbar-track{background:#fff1e4}
    ::-webkit-scrollbar-thumb{background:linear-gradient(180deg,var(--brand-red),var(--brand-orange));border-radius:999px}
    .container{max-width:var(--container)}
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,248,241,.94);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
      box-shadow:0 10px 30px rgba(108,39,20,.06);
    }
    .brand-row{
      padding:16px 0 12px;
      border-bottom:1px solid rgba(148,64,48,.1);
    }
    .brand-logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:900;
      letter-spacing:-.5px;
      color:var(--ink);
      white-space:nowrap;
    }
    .brand-logo .mark{
      width:42px;height:42px;border-radius:14px;
      display:grid;place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand-red),var(--brand-orange));
      box-shadow:0 12px 28px rgba(223,31,45,.28);
    }
    .brand-logo .name{font-size:21px;line-height:1.12}
    .brand-logo .sub{
      display:block;
      margin-top:3px;
      font-size:12px;
      font-weight:700;
      color:var(--muted);
      letter-spacing:0;
    }
    .top-search{
      position:relative;
      max-width:390px;
      flex:1;
    }
    .top-search i{
      position:absolute;
      left:16px;
      top:50%;
      transform:translateY(-50%);
      color:var(--brand-red);
      z-index:2;
    }
    .top-search input{
      width:100%;
      height:44px;
      border:1px solid rgba(223,31,45,.16);
      border-radius:999px;
      background:#fff;
      padding:0 18px 0 44px;
      color:var(--ink);
      outline:none;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.6), 0 8px 18px rgba(104,40,20,.05);
      transition:var(--ease);
    }
    .top-search input:focus{
      border-color:rgba(223,31,45,.55);
      box-shadow:0 0 0 4px rgba(223,31,45,.1),0 10px 26px rgba(104,40,20,.08);
    }
    .quick-pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:38px;
      padding:0 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(223,31,45,.14);
      color:var(--ink-soft);
      font-size:13px;
      font-weight:800;
      box-shadow:var(--shadow-sm);
    }
    .quick-pill:hover{
      transform:translateY(-2px);
      background:#fff5ed;
      border-color:rgba(223,31,45,.34);
    }
    .channel-row{
      padding:10px 0 12px;
    }
    .channel-scroll{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      scrollbar-width:none;
      padding-bottom:1px;
    }
    .channel-scroll::-webkit-scrollbar{display:none}
    .channel-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      white-space:nowrap;
      padding:9px 16px;
      border-radius:999px;
      border:1px solid rgba(223,31,45,.14);
      background:rgba(255,255,255,.74);
      color:var(--ink-soft);
      font-size:14px;
      font-weight:900;
    }
    .channel-link:hover{
      background:#fff;
      color:var(--brand-red);
      border-color:rgba(223,31,45,.32);
      transform:translateY(-1px);
    }
    .channel-link.active{
      color:#fff;
      background:linear-gradient(135deg,var(--brand-red),var(--brand-orange));
      border-color:transparent;
      box-shadow:0 12px 26px rgba(223,31,45,.24);
    }
    .menu-toggle{
      border:0;
      color:#fff;
      background:linear-gradient(135deg,var(--brand-red),var(--brand-orange));
      width:42px;height:42px;border-radius:14px;
      box-shadow:0 12px 26px rgba(223,31,45,.24);
    }
    .offcanvas{
      border-radius:24px 0 0 24px;
      background:#fffaf5;
    }
    .section{
      padding:68px 0;
      position:relative;
    }
    .section-tight{padding:46px 0}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:22px;
      margin-bottom:26px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:#fff0e1;
      color:var(--brand-red-dark);
      font-size:13px;
      font-weight:900;
      border:1px solid rgba(223,31,45,.12);
    }
    .section-title{
      margin:10px 0 0;
      font-size:34px;
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.6px;
    }
    .section-desc{
      max-width:670px;
      margin:10px 0 0;
      color:var(--ink-soft);
      font-size:16px;
    }
    .btn-main,.btn-soft,.btn-outline-red{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      min-height:46px;
      padding:0 20px;
      font-weight:900;
      border:1px solid transparent;
      transition:var(--ease);
      outline:none;
      white-space:nowrap;
    }
    .btn-main{
      color:#fff;
      background:linear-gradient(135deg,var(--brand-red),var(--brand-orange));
      box-shadow:0 15px 34px rgba(223,31,45,.28);
    }
    .btn-main:hover{
      color:#fff;
      transform:translateY(-3px);
      box-shadow:0 20px 42px rgba(223,31,45,.34);
      filter:saturate(1.08);
    }
    .btn-soft{
      background:#fff;
      color:var(--brand-red-dark);
      border-color:rgba(223,31,45,.16);
      box-shadow:var(--shadow-sm);
    }
    .btn-soft:hover{
      background:#fff1e8;
      color:var(--brand-red);
      transform:translateY(-2px);
    }
    .btn-outline-red{
      background:transparent;
      color:#fff;
      border-color:rgba(255,255,255,.36);
    }
    .btn-outline-red:hover{
      background:#fff;
      color:var(--brand-red);
      transform:translateY(-2px);
    }
    .btn-main:focus-visible,.btn-soft:focus-visible,.btn-outline-red:focus-visible,.channel-link:focus-visible,.quick-pill:focus-visible{
      outline:4px solid rgba(255,106,33,.24);
      outline-offset:2px;
    }
    .badge-hot,.badge-new,.badge-rec,.badge-dark{
      border-radius:999px;
      padding:6px 10px;
      font-size:12px;
      font-weight:900;
      letter-spacing:.2px;
    }
    .badge-hot{background:var(--brand-red);color:#fff}
    .badge-new{background:var(--brand-orange);color:#fff}
    .badge-rec{background:#fff0d0;color:#9a4a00;border:1px solid rgba(255,179,44,.35)}
    .badge-dark{background:#2d2020;color:#fff}
    .hero{
      padding:34px 0 62px;
    }
    .hero-panel{
      overflow:hidden;
      border-radius:var(--radius-lg);
      background:
        linear-gradient(120deg, rgba(34,19,19,.96) 0%, rgba(56,22,18,.96) 46%, rgba(224,37,39,.92) 100%),
        radial-gradient(circle at 70% 20%, rgba(255,179,44,.45), transparent 28%);
      color:#fff;
      box-shadow:var(--shadow-strong);
      border:1px solid rgba(255,255,255,.12);
      position:relative;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),
        linear-gradient(0deg,rgba(255,255,255,.05) 1px,transparent 1px);
      background-size:36px 36px;
      opacity:.34;
      pointer-events:none;
    }
    .hero-content{
      position:relative;
      padding:52px;
      z-index:1;
    }
    .hero-kicker{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:20px;
    }
    .status-chip{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.16);
      color:#fff;
      font-size:13px;
      font-weight:900;
      backdrop-filter:blur(10px);
    }
    .status-dot{
      width:8px;height:8px;border-radius:50%;
      background:#4eff9b;
      box-shadow:0 0 0 5px rgba(78,255,155,.12);
    }
    h1{
      margin:0;
      font-size:56px;
      line-height:1.08;
      font-weight:950;
      letter-spacing:-1.2px;
    }
    .hero-lead{
      max-width:680px;
      margin:18px 0 0;
      font-size:18px;
      color:rgba(255,255,255,.84);
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:30px;
      max-width:680px;
    }
    .stat-box{
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.11);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(12px);
    }
    .stat-num{
      display:block;
      font-size:26px;
      line-height:1;
      font-weight:950;
      color:#ffe19d;
    }
    .stat-label{
      display:block;
      margin-top:7px;
      font-size:13px;
      color:rgba(255,255,255,.76);
      font-weight:800;
    }
    .hero-side{
      position:relative;
      z-index:1;
      padding:28px 32px 28px 0;
      height:100%;
      display:flex;
      align-items:center;
    }
    .rank-board{
      width:100%;
      border-radius:24px;
      background:rgba(255,250,244,.96);
      color:var(--ink);
      box-shadow:0 28px 60px rgba(0,0,0,.25);
      padding:20px;
      border:1px solid rgba(255,255,255,.5);
    }
    .rank-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
    }
    .rank-title{
      font-size:17px;
      font-weight:950;
      margin:0;
    }
    .rank-refresh{
      font-size:12px;
      font-weight:900;
      color:var(--brand-red);
      background:#fff0e6;
      border-radius:999px;
      padding:6px 9px;
    }
    .rank-item{
      display:grid;
      grid-template-columns:34px 1fr auto;
      align-items:center;
      gap:12px;
      padding:12px;
      border-radius:16px;
      background:#fff;
      border:1px solid rgba(223,31,45,.09);
      box-shadow:0 8px 18px rgba(90,38,22,.06);
      margin-bottom:10px;
      transition:var(--ease);
    }
    .rank-item:hover{
      transform:translateX(4px);
      border-color:rgba(223,31,45,.28);
    }
    .rank-no{
      width:34px;height:34px;border-radius:12px;
      display:grid;place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand-red),var(--brand-orange));
      font-weight:950;
    }
    .rank-name{
      font-size:14px;
      font-weight:950;
      margin:0;
      line-height:1.3;
    }
    .rank-meta{
      font-size:12px;
      color:var(--muted);
      margin-top:2px;
      font-weight:700;
    }
    .heat{
      color:var(--brand-red);
      font-weight:950;
      font-size:13px;
      white-space:nowrap;
    }
    .entry-matrix{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:22px;
    }
    .entry-tile{
      padding:16px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(223,31,45,.12);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
      min-height:118px;
    }
    .entry-tile:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow);
      border-color:rgba(223,31,45,.32);
    }
    .entry-icon{
      width:40px;height:40px;border-radius:14px;
      display:grid;place-items:center;
      color:var(--brand-red);
      background:#fff0e8;
      margin-bottom:10px;
    }
    .entry-tile h3{
      font-size:16px;
      font-weight:950;
      margin:0 0 5px;
    }
    .entry-tile p{
      margin:0;
      color:var(--ink-soft);
      font-size:13px;
      line-height:1.55;
    }
    .benefit-strip{
      border-radius:26px;
      background:#fff;
      border:1px solid rgba(223,31,45,.12);
      box-shadow:var(--shadow);
      padding:18px;
    }
    .benefit-grid{
      display:grid;
      grid-template-columns:1.2fr repeat(4,1fr);
      gap:14px;
      align-items:stretch;
    }
    .benefit-lead{
      padding:20px;
      border-radius:20px;
      background:linear-gradient(135deg,#fff0e5,#fff8ec);
      border:1px solid rgba(255,106,33,.16);
    }
    .benefit-lead h2{
      font-size:24px;
      font-weight:950;
      margin:0 0 8px;
    }
    .benefit-lead p{
      margin:0;
      color:var(--ink-soft);
      font-size:14px;
    }
    .benefit-card{
      padding:18px;
      border-radius:20px;
      background:#fffaf5;
      border:1px solid rgba(223,31,45,.1);
      transition:var(--ease);
    }
    .benefit-card:hover{
      background:#fff;
      transform:translateY(-4px);
      box-shadow:var(--shadow-sm);
    }
    .benefit-card i{
      color:var(--brand-red);
      font-size:20px;
      margin-bottom:10px;
    }
    .benefit-card strong{
      display:block;
      font-weight:950;
      margin-bottom:4px;
    }
    .benefit-card span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.55;
    }
    .qualify-wrap{
      background:linear-gradient(180deg,#fff 0%,#fff8f1 100%);
      border-top:1px solid rgba(223,31,45,.08);
      border-bottom:1px solid rgba(223,31,45,.08);
    }
    .qualify-card{
      height:100%;
      padding:22px;
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(223,31,45,.12);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
      position:relative;
      overflow:hidden;
    }
    .qualify-card:after{
      content:"";
      position:absolute;
      right:-28px;top:-28px;
      width:92px;height:92px;
      background:rgba(255,106,33,.1);
      border-radius:50%;
    }
    .qualify-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow);
    }
    .qualify-card h3{
      font-size:19px;
      font-weight:950;
      margin:12px 0 8px;
    }
    .qualify-card p{
      margin:0;
      color:var(--ink-soft);
      font-size:14px;
    }
    .qualify-icon{
      width:48px;height:48px;border-radius:16px;
      display:grid;place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand-red),var(--brand-orange));
      box-shadow:0 12px 24px rgba(223,31,45,.22);
    }
    .hot-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .hot-card{
      position:relative;
      overflow:hidden;
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(223,31,45,.12);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
      min-height:276px;
      display:flex;
      flex-direction:column;
    }
    .hot-card:hover{
      transform:translateY(-6px);
      box-shadow:var(--shadow);
    }
    .hot-cover{
      height:118px;
      overflow:hidden;
      position:relative;
      background:
        radial-gradient(circle at 28% 26%, rgba(255,255,255,.42), transparent 20%),
        linear-gradient(135deg,#2b1515,var(--brand-red) 58%,var(--brand-orange));
    }
    .hot-cover:before{
      content:"";
      position:absolute;
      inset:14px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.28);
      background:linear-gradient(135deg,rgba(255,255,255,.16),rgba(255,255,255,.04));
      transform:scale(1);
      transition:var(--ease);
    }
    .hot-card:hover .hot-cover:before{transform:scale(1.06)}
    .corner-badge{
      position:absolute;
      right:12px;
      top:12px;
      z-index:2;
      min-width:38px;
      height:30px;
      padding:0 10px;
      border-radius:999px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand-red),var(--brand-orange));
      font-size:13px;
      font-weight:950;
      box-shadow:0 10px 22px rgba(0,0,0,.18);
    }
    .hot-body{
      padding:18px;
      flex:1;
      display:flex;
      flex-direction:column;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:7px;
      margin-bottom:10px;
    }
    .hot-body h3{
      font-size:18px;
      line-height:1.35;
      font-weight:950;
      margin:0 0 8px;
    }
    .hot-body p{
      margin:0;
      color:var(--ink-soft);
      font-size:14px;
      line-height:1.62;
    }
    .hot-foot{
      margin-top:auto;
      padding-top:14px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
    }
    .mini-link{
      color:var(--brand-red);
      font-weight:950;
      font-size:13px;
    }
    .mini-link:hover{color:var(--brand-orange)}
    .vertical-track{
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding:4px 4px 18px;
      scroll-snap-type:x mandatory;
    }
    .vertical-card{
      flex:0 0 220px;
      scroll-snap-align:start;
      border-radius:24px;
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(223,31,45,.12);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .vertical-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow);
    }
    .vertical-poster{
      height:260px;
      background:
        linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.44)),
        radial-gradient(circle at 60% 22%,rgba(255,179,44,.64),transparent 24%),
        linear-gradient(135deg,#3c1a16,var(--brand-red),var(--brand-orange));
      position:relative;
      padding:14px;
      display:flex;
      align-items:flex-end;
    }
    .vertical-poster .poster-title{
      color:#fff;
      font-size:20px;
      font-weight:950;
      line-height:1.25;
      text-shadow:0 6px 18px rgba(0,0,0,.24);
    }
    .vertical-body{
      padding:15px;
    }
    .vertical-body p{
      color:var(--ink-soft);
      margin:0 0 12px;
      font-size:13px;
      line-height:1.6;
    }
    .info-area{
      background:#fff;
      border-radius:28px;
      border:1px solid rgba(223,31,45,.12);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .news-list{
      padding:24px;
    }
    .news-item{
      display:grid;
      grid-template-columns:96px 1fr auto;
      gap:14px;
      align-items:center;
      padding:15px 0;
      border-bottom:1px dashed rgba(148,64,48,.18);
    }
    .news-item:last-child{border-bottom:0}
    .news-date{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:34px;
      border-radius:999px;
      background:#fff0e8;
      color:var(--brand-red-dark);
      font-weight:950;
      font-size:12px;
    }
    .news-title{
      font-weight:950;
      margin:0 0 3px;
      line-height:1.36;
    }
    .news-title a:hover{color:var(--brand-red)}
    .news-desc{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
    }
    .side-reco{
      height:100%;
      padding:24px;
      background:linear-gradient(180deg,#fff3e8,#fffaf4);
      border-left:1px solid rgba(223,31,45,.1);
    }
    .side-reco h3{
      font-size:20px;
      font-weight:950;
      margin:0 0 14px;
    }
    .reco-item{
      padding:14px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(223,31,45,.1);
      margin-bottom:12px;
      transition:var(--ease);
    }
    .reco-item:hover{
      transform:translateX(4px);
      border-color:rgba(223,31,45,.3);
    }
    .reco-item strong{
      display:block;
      line-height:1.35;
      font-weight:950;
      margin-bottom:4px;
    }
    .reco-item span{
      display:block;
      font-size:13px;
      color:var(--muted);
    }
    .review-panel{
      border-radius:28px;
      background:var(--dark);
      color:#fff;
      overflow:hidden;
      box-shadow:var(--shadow-strong);
    }
    .review-left{
      padding:34px;
      background:
        radial-gradient(circle at 20% 20%,rgba(255,106,33,.28),transparent 28%),
        linear-gradient(135deg,#2b1515,#1e1111);
      height:100%;
    }
    .review-left h2{
      font-size:30px;
      font-weight:950;
      margin:10px 0 10px;
    }
    .review-left p{
      color:rgba(255,255,255,.72);
      margin:0;
    }
    .carousel{
      background:#fffaf4;
      color:var(--ink);
      height:100%;
    }
    .review-card{
      min-height:254px;
      padding:34px;
    }
    .avatar{
      width:50px;height:50px;border-radius:50%;
      display:grid;place-items:center;
      background:linear-gradient(135deg,var(--brand-red),var(--brand-orange));
      color:#fff;
      font-weight:950;
      box-shadow:0 12px 24px rgba(223,31,45,.2);
    }
    .stars{
      color:#ffb32c;
      letter-spacing:2px;
      font-size:14px;
    }
    .review-card p{
      font-size:18px;
      line-height:1.65;
      font-weight:800;
      margin:18px 0 0;
    }
    .review-card small{
      display:block;
      color:var(--muted);
      margin-top:12px;
      font-weight:800;
    }
    .guard-bar{
      border-radius:28px;
      padding:22px;
      background:#fff;
      border:1px solid rgba(223,31,45,.12);
      box-shadow:var(--shadow);
    }
    .guard-grid{
      display:grid;
      grid-template-columns:repeat(6,1fr);
      gap:12px;
    }
    .guard-item{
      text-align:center;
      padding:18px 10px;
      border-radius:18px;
      background:#fff8f0;
      border:1px solid rgba(255,106,33,.12);
      transition:var(--ease);
    }
    .guard-item:hover{
      background:#fff;
      transform:translateY(-4px);
      box-shadow:var(--shadow-sm);
    }
    .guard-item i{
      color:var(--brand-red);
      font-size:22px;
      margin-bottom:10px;
    }
    .guard-item strong{
      display:block;
      font-size:14px;
      font-weight:950;
      margin-bottom:3px;
    }
    .guard-item span{
      display:block;
      font-size:12px;
      color:var(--muted);
      line-height:1.45;
    }
    .apply-wrap{
      border-radius:30px;
      overflow:hidden;
      background:
        linear-gradient(135deg,rgba(223,31,45,.98),rgba(255,106,33,.94)),
        radial-gradient(circle at 80% 20%,rgba(255,255,255,.22),transparent 24%);
      color:#fff;
      box-shadow:var(--shadow-strong);
    }
    .apply-copy{
      padding:42px;
      height:100%;
    }
    .apply-copy h2{
      font-size:34px;
      font-weight:950;
      line-height:1.2;
      margin:10px 0 12px;
    }
    .apply-copy p{
      color:rgba(255,255,255,.82);
      margin:0;
      max-width:560px;
    }
    .countdown{
      display:flex;
      gap:10px;
      margin-top:24px;
      flex-wrap:wrap;
    }
    .time-box{
      min-width:74px;
      padding:12px 10px;
      border-radius:16px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.18);
      text-align:center;
    }
    .time-box strong{
      display:block;
      font-size:22px;
      line-height:1;
      font-weight:950;
      color:#ffe19d;
    }
    .time-box span{
      display:block;
      margin-top:5px;
      font-size:12px;
      color:rgba(255,255,255,.76);
      font-weight:900;
    }
    .apply-form{
      margin:22px;
      padding:24px;
      border-radius:24px;
      background:#fffaf4;
      color:var(--ink);
      box-shadow:0 22px 52px rgba(0,0,0,.18);
    }
    .apply-form h3{
      font-size:21px;
      font-weight:950;
      margin:0 0 14px;
    }
    .form-label{
      font-size:13px;
      font-weight:950;
      color:var(--ink-soft);
      margin-bottom:7px;
    }
    .form-control,.form-select{
      border-radius:15px;
      min-height:46px;
      border:1px solid rgba(223,31,45,.14);
      background:#fff;
      color:var(--ink);
      box-shadow:none;
    }
    .form-control:focus,.form-select:focus{
      border-color:rgba(223,31,45,.55);
      box-shadow:0 0 0 4px rgba(223,31,45,.1);
    }
    .form-hint{
      margin:10px 0 0;
      color:var(--muted);
      font-size:12px;
      line-height:1.55;
    }
    .accordion{
      --bs-accordion-border-width:0;
      --bs-accordion-bg:transparent;
      --bs-accordion-active-bg:#fff3e8;
      --bs-accordion-active-color:var(--brand-red-dark);
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid rgba(223,31,45,.12)!important;
      border-radius:18px!important;
      overflow:hidden;
      background:#fff;
      box-shadow:var(--shadow-sm);
    }
    .accordion-button{
      padding:18px 20px;
      font-weight:950;
      color:var(--ink);
      background:#fff;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--brand-red-dark);
      background:#fff3e8;
    }
    .accordion-button:focus{
      box-shadow:0 0 0 4px rgba(223,31,45,.1)!important;
      border-color:transparent;
    }
    .accordion-body{
      color:var(--ink-soft);
      padding:0 20px 20px;
      font-size:15px;
    }
    .bottom-cta{
      border-radius:30px;
      padding:36px;
      background:
        radial-gradient(circle at 12% 18%,rgba(255,179,44,.34),transparent 22%),
        linear-gradient(135deg,#221313,#3b1818 52%,#7a1519);
      color:#fff;
      box-shadow:var(--shadow-strong);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      overflow:hidden;
      position:relative;
    }
    .bottom-cta:after{
      content:"";
      position:absolute;
      right:-70px;bottom:-90px;
      width:260px;height:260px;
      border-radius:50%;
      background:rgba(255,106,33,.22);
    }
    .bottom-cta h2{
      position:relative;
      z-index:1;
      font-size:32px;
      font-weight:950;
      margin:0 0 8px;
    }
    .bottom-cta p{
      position:relative;
      z-index:1;
      margin:0;
      color:rgba(255,255,255,.75);
      max-width:690px;
    }
    .bottom-cta .cta-actions{
      position:relative;
      z-index:1;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .site-footer{
      padding:54px 0 26px;
      background:#1f1212;
      color:#fff;
      margin-top:60px;
    }
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:20px;
      font-weight:950;
      margin-bottom:12px;
    }
    .footer-logo .mark{
      width:38px;height:38px;border-radius:13px;
      display:grid;place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand-red),var(--brand-orange));
    }
    .footer-text{
      color:rgba(255,255,255,.66);
      margin:0;
      font-size:14px;
    }
    .footer-title{
      font-size:15px;
      font-weight:950;
      margin:0 0 14px;
      color:#fff;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.66);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#ffe19d;
      transform:translateX(3px);
    }
    .copyright{
      margin-top:34px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.1);
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      color:rgba(255,255,255,.52);
      font-size:13px;
    }
    .float-cta{
      position:fixed;
      right:22px;
      bottom:22px;
      z-index:999;
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .float-cta a{
      width:48px;height:48px;border-radius:16px;
      display:grid;place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand-red),var(--brand-orange));
      box-shadow:0 16px 36px rgba(223,31,45,.28);
    }
    .float-cta a:hover{transform:translateY(-3px);color:#fff}
    @media (max-width:1199px){
      .hero-content{padding:42px}
      h1{font-size:48px}
      .entry-matrix{grid-template-columns:repeat(4,1fr)}
      .hot-grid{grid-template-columns:repeat(3,1fr)}
      .guard-grid{grid-template-columns:repeat(3,1fr)}
      .benefit-grid{grid-template-columns:repeat(3,1fr)}
      .benefit-lead{grid-column:1/-1}
    }
    @media (max-width:991px){
      .brand-row .container{gap:12px}
      .top-search{max-width:none;order:3;flex-basis:100%}
      .hero-side{padding:0 32px 34px}
      .hero-content{padding:38px 34px 24px}
      .hero-stats{grid-template-columns:repeat(3,1fr)}
      .entry-matrix{grid-template-columns:repeat(2,1fr)}
      .hot-grid{grid-template-columns:repeat(2,1fr)}
      .news-item{grid-template-columns:82px 1fr}
      .news-item .mini-link{grid-column:2}
      .side-reco{border-left:0;border-top:1px solid rgba(223,31,45,.1)}
      .bottom-cta{align-items:flex-start;flex-direction:column}
    }
    @media (max-width:767px){
      .section{padding:48px 0}
      .section-head{display:block}
      .section-title{font-size:28px}
      .hero{padding:20px 0 44px}
      .hero-content{padding:30px 22px 18px}
      h1{font-size:38px}
      .hero-lead{font-size:16px}
      .hero-actions .btn-main,.hero-actions .btn-outline-red,.hero-actions .btn-soft{width:100%}
      .hero-stats{grid-template-columns:1fr;gap:10px}
      .hero-side{padding:0 18px 22px}
      .rank-board{padding:16px}
      .rank-item{grid-template-columns:30px 1fr;align-items:start}
      .rank-item .heat{grid-column:2}
      .entry-matrix{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:12px}
      .entry-tile{flex:0 0 240px;scroll-snap-align:start}
      .benefit-grid,.hot-grid,.guard-grid{grid-template-columns:1fr}
      .hot-card{min-height:auto}
      .review-left,.review-card{padding:24px}
      .apply-copy{padding:28px 24px}
      .apply-form{margin:0 16px 18px;padding:20px}
      .bottom-cta{padding:28px 22px}
      .bottom-cta h2{font-size:26px}
      .float-cta{right:14px;bottom:14px}
      .copyright{display:block}
      .copyright span{display:block;margin-top:6px}
    }
    @media (max-width:520px){
      .brand-logo .name{font-size:18px}
      .brand-logo .sub{display:none}
      .quick-pill.d-none-sm{display:none}
      h1{font-size:34px}
      .status-chip{font-size:12px}
      .section-title{font-size:25px}
      .news-item{grid-template-columns:1fr}
      .news-item .mini-link{grid-column:auto}
      .countdown{display:grid;grid-template-columns:repeat(2,1fr)}
      .time-box{min-width:0}
    }

/* roulang page: category1 */
:root{
      --primary:#e60023;
      --primary-deep:#b8001b;
      --primary-soft:#fff0f1;
      --accent:#ff7a18;
      --accent-2:#ffb020;
      --ink:#231f20;
      --muted:#6f6a66;
      --soft:#fff8f2;
      --paper:#ffffff;
      --line:rgba(35,31,32,.10);
      --dark:#201516;
      --dark-2:#2b1d1d;
      --success:#20a05a;
      --radius-sm:10px;
      --radius:16px;
      --radius-lg:24px;
      --shadow-sm:0 8px 24px rgba(30,20,20,.08);
      --shadow:0 16px 44px rgba(117,28,20,.13);
      --shadow-hover:0 22px 60px rgba(230,0,35,.18);
      --container:1180px;
      --trans:all .22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 12% 2%, rgba(255,122,24,.12), transparent 34%),
        radial-gradient(circle at 92% 12%, rgba(230,0,35,.10), transparent 30%),
        linear-gradient(180deg,#fffaf6 0%,#fff6ed 40%,#fff 100%);
      line-height:1.65;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--trans)}
    img{max-width:100%;display:block}
    button,input{font:inherit}
    ::selection{background:var(--primary);color:#fff}
    ::-webkit-scrollbar{width:10px;height:8px}
    ::-webkit-scrollbar-thumb{background:linear-gradient(180deg,var(--primary),var(--accent));border-radius:999px}
    ::-webkit-scrollbar-track{background:#fff2ea}
    .container{max-width:var(--container)}
    .skip-link{
      position:absolute;left:-999px;top:12px;background:var(--primary);color:#fff;padding:10px 14px;border-radius:10px;z-index:9999
    }
    .skip-link:focus{left:12px;outline:3px solid rgba(255,122,24,.4)}
    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(255,250,246,.94);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(230,0,35,.10);
      box-shadow:0 10px 30px rgba(80,35,20,.06);
    }
    .brand-row{padding:14px 0 12px}
    .brand-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand-logo{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
      font-weight:800;
      font-size:22px;
      letter-spacing:-.5px;
    }
    .brand-logo .mark,.footer-logo .mark{
      width:38px;height:38px;border-radius:13px;
      display:inline-flex;align-items:center;justify-content:center;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      color:#fff;
      box-shadow:0 10px 24px rgba(230,0,35,.28);
    }
    .brand-sub{
      color:var(--muted);
      font-size:14px;
      display:flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
    }
    .brand-sub .dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--success);
      box-shadow:0 0 0 5px rgba(32,160,90,.12);
    }
    .header-tools{
      display:flex;
      align-items:center;
      justify-content:flex-end;
      gap:10px;
      flex:1;
    }
    .search-box{
      width:min(360px,100%);
      display:flex;
      align-items:center;
      gap:9px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      padding:9px 12px;
      box-shadow:var(--shadow-sm);
    }
    .search-box i{color:var(--primary)}
    .search-box input{
      width:100%;
      border:0;
      outline:0;
      color:var(--ink);
      background:transparent;
      font-size:14px;
    }
    .tool-btn,.navbar-toggler{
      border:1px solid rgba(230,0,35,.16);
      background:#fff;
      color:var(--primary);
      border-radius:999px;
      padding:9px 14px;
      font-weight:700;
      box-shadow:var(--shadow-sm);
    }
    .tool-btn:hover,.navbar-toggler:hover{
      background:var(--primary);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:var(--shadow-hover);
    }
    .navbar-toggler:focus,.tool-btn:focus,.btn:focus,.channel-link:focus,.form-control:focus{
      outline:3px solid rgba(255,122,24,.28);
      box-shadow:none;
    }
    .channel-row{
      border-top:1px solid rgba(230,0,35,.08);
      background:linear-gradient(90deg,rgba(255,255,255,.78),rgba(255,241,232,.86));
    }
    .channel-scroll{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      padding:10px 0;
      scrollbar-width:thin;
    }
    .channel-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:9px 14px;
      border-radius:999px;
      color:#4c4040;
      background:rgba(255,255,255,.76);
      border:1px solid rgba(35,31,32,.08);
      white-space:nowrap;
      font-size:14px;
      font-weight:700;
    }
    .channel-link:hover{
      color:var(--primary);
      border-color:rgba(230,0,35,.25);
      transform:translateY(-1px);
      background:#fff;
    }
    .channel-link.active{
      background:linear-gradient(135deg,var(--primary),var(--accent));
      color:#fff;
      border-color:transparent;
      box-shadow:0 10px 24px rgba(230,0,35,.22);
    }
    .offcanvas{
      border-radius:22px 0 0 22px;
      background:#fffaf6;
    }
    .offcanvas-title{font-weight:800}
    .mobile-nav a{
      display:flex;align-items:center;gap:8px;
      padding:12px 14px;
      margin-bottom:8px;
      border-radius:14px;
      background:#fff;
      border:1px solid var(--line);
      font-weight:800;
    }
    .mobile-nav a.active{background:var(--primary);color:#fff}
    main{padding-bottom:0}
    .mini-hero{
      padding:42px 0 24px;
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      padding:30px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.96),rgba(255,241,229,.96)),
        repeating-linear-gradient(45deg,rgba(230,0,35,.05) 0 1px,transparent 1px 12px);
      border:1px solid rgba(230,0,35,.12);
      box-shadow:var(--shadow);
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      right:-70px;top:-90px;
      width:260px;height:260px;border-radius:50%;
      background:radial-gradient(circle,rgba(230,0,35,.16),transparent 70%);
    }
    .status-strip{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:10px;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:7px 11px;
      font-size:13px;
      font-weight:800;
      line-height:1;
      border:1px solid transparent;
    }
    .pill-red{background:var(--primary);color:#fff}
    .pill-orange{background:linear-gradient(135deg,var(--accent),var(--accent-2));color:#fff}
    .pill-dark{background:#2b2323;color:#fff}
    .pill-light{background:#fff;color:var(--primary);border-color:rgba(230,0,35,.16)}
    .hero-title{
      position:relative;
      z-index:1;
      font-size:clamp(30px,4vw,52px);
      line-height:1.12;
      font-weight:900;
      letter-spacing:-1px;
      margin:0 0 14px;
    }
    .hero-title .hot-text{
      color:var(--primary);
      text-shadow:0 10px 28px rgba(230,0,35,.16);
    }
    .hero-desc{
      position:relative;
      z-index:1;
      max-width:760px;
      color:#554847;
      font-size:17px;
      margin:0;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:22px;
      position:relative;
      z-index:1;
    }
    .btn-main,.btn-soft,.btn-outline-hot{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:12px 18px;
      font-weight:900;
      border:1px solid transparent;
      transition:var(--trans);
    }
    .btn-main{
      background:linear-gradient(135deg,var(--primary),var(--accent));
      color:#fff;
      box-shadow:0 14px 30px rgba(230,0,35,.24);
    }
    .btn-main:hover{color:#fff;transform:translateY(-3px);box-shadow:var(--shadow-hover)}
    .btn-soft{
      background:#fff;
      color:var(--primary);
      border-color:rgba(230,0,35,.16);
      box-shadow:var(--shadow-sm);
    }
    .btn-soft:hover{background:var(--primary-soft);color:var(--primary);transform:translateY(-2px)}
    .btn-outline-hot{
      background:transparent;
      color:var(--primary);
      border-color:rgba(230,0,35,.28);
    }
    .btn-outline-hot:hover{background:var(--primary);color:#fff}
    .metric-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:12px;
      margin-top:22px;
      position:relative;
      z-index:1;
    }
    .metric-card{
      background:#fff;
      border:1px solid var(--line);
      border-radius:16px;
      padding:16px;
      box-shadow:var(--shadow-sm);
    }
    .metric-num{
      display:block;
      color:var(--primary);
      font-size:26px;
      font-weight:900;
      line-height:1.1;
    }
    .metric-label{color:var(--muted);font-size:13px;font-weight:700}
    .section{padding:38px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:20px;
      margin-bottom:18px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:7px;
      margin-bottom:8px;
      color:var(--primary);
      font-weight:900;
      font-size:14px;
    }
    .section-title{
      font-size:clamp(24px,3vw,34px);
      font-weight:900;
      margin:0;
      letter-spacing:-.6px;
    }
    .section-summary{
      max-width:560px;
      color:var(--muted);
      margin:0;
      font-weight:500;
    }
    .filter-bar-wrap{
      position:sticky;
      top:118px;
      z-index:900;
      padding:0 0 14px;
      margin-bottom:10px;
    }
    .filter-bar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      padding:12px;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(230,0,35,.13);
      border-radius:18px;
      box-shadow:var(--shadow-sm);
      backdrop-filter:blur(12px);
    }
    .filter-tags{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .filter-chip{
      border:1px solid rgba(35,31,32,.09);
      background:#fff7f1;
      color:#534342;
      border-radius:999px;
      padding:8px 12px;
      font-weight:800;
      font-size:13px;
    }
    .filter-chip.active,.filter-chip:hover{
      background:var(--primary);
      color:#fff;
      border-color:var(--primary);
      transform:translateY(-1px);
    }
    .filter-search{
      display:flex;
      align-items:center;
      gap:8px;
      min-width:250px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      padding:8px 12px;
    }
    .filter-search i{color:var(--accent)}
    .filter-search input{border:0;outline:0;width:100%;background:transparent;font-size:14px}
    .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 310px;
      gap:22px;
      align-items:start;
    }
    .hot-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:16px;
    }
    .entry-card{
      position:relative;
      overflow:hidden;
      min-height:236px;
      background:#fff;
      border:1px solid rgba(35,31,32,.09);
      border-radius:18px;
      padding:16px;
      box-shadow:var(--shadow-sm);
      transition:var(--trans);
    }
    .entry-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(230,0,35,.22);
    }
    .entry-cover{
      height:78px;
      border-radius:15px;
      margin-bottom:14px;
      overflow:hidden;
      background:
        linear-gradient(135deg,rgba(230,0,35,.9),rgba(255,122,24,.88)),
        repeating-linear-gradient(45deg,rgba(255,255,255,.16) 0 2px,transparent 2px 10px);
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px;
      color:#fff;
    }
    .entry-cover i{font-size:24px}
    .entry-cover .cover-text{font-size:13px;font-weight:900;opacity:.95}
    .hot-badge{
      position:absolute;
      top:14px;
      right:14px;
      padding:5px 9px;
      border-radius:999px;
      background:#1f1717;
      color:#fff;
      font-size:12px;
      font-weight:900;
      z-index:2;
    }
    .hot-badge.red{background:var(--primary)}
    .hot-badge.orange{background:var(--accent)}
    .entry-card h2,.entry-card h3{
      font-size:18px;
      font-weight:900;
      line-height:1.35;
      margin:0 0 8px;
    }
    .entry-card p{
      color:var(--muted);
      font-size:14px;
      margin:0 0 12px;
    }
    .entry-meta{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:8px;
      margin-bottom:14px;
      color:#6b5552;
      font-size:13px;
      font-weight:800;
    }
    .heat{
      color:var(--primary);
      font-weight:900;
    }
    .entry-card .btn-soft{
      width:100%;
      padding:9px 12px;
      font-size:14px;
    }
    .side-stack{
      position:sticky;
      top:190px;
      display:grid;
      gap:16px;
    }
    .side-card{
      background:#fff;
      border:1px solid rgba(35,31,32,.09);
      border-radius:18px;
      padding:18px;
      box-shadow:var(--shadow-sm);
    }
    .side-card.dark{
      background:linear-gradient(160deg,#241617,#3a2020);
      color:#fff;
      border-color:rgba(255,255,255,.10);
    }
    .side-title{
      display:flex;
      align-items:center;
      gap:8px;
      font-size:18px;
      font-weight:900;
      margin:0 0 14px;
    }
    .rank-list,.quick-list{display:grid;gap:10px}
    .rank-item{
      display:grid;
      grid-template-columns:28px 1fr auto;
      gap:10px;
      align-items:center;
      padding:10px;
      border-radius:14px;
      background:#fff7f1;
      border:1px solid rgba(230,0,35,.08);
    }
    .side-card.dark .rank-item{
      background:rgba(255,255,255,.08);
      border-color:rgba(255,255,255,.10);
    }
    .rank-no{
      width:28px;height:28px;border-radius:10px;
      display:flex;align-items:center;justify-content:center;
      background:var(--primary);
      color:#fff;
      font-weight:900;
      font-size:13px;
    }
    .rank-name{font-weight:800;font-size:14px}
    .rank-hot{font-size:12px;color:var(--accent-2);font-weight:900}
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .tag-cloud a{
      display:inline-flex;
      padding:7px 10px;
      border-radius:999px;
      background:#fff4ed;
      color:#5b4745;
      border:1px solid rgba(230,0,35,.10);
      font-size:13px;
      font-weight:800;
    }
    .tag-cloud a:hover{background:var(--primary);color:#fff;transform:translateY(-1px)}
    .quick-list a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:11px 12px;
      border-radius:14px;
      background:#fff8f3;
      border:1px solid rgba(35,31,32,.07);
      font-weight:800;
    }
    .quick-list a:hover{background:var(--primary-soft);color:var(--primary)}
    .notice-panel{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:18px;
      align-items:stretch;
    }
    .notice-card{
      border-radius:20px;
      padding:22px;
      background:#fff;
      border:1px solid rgba(35,31,32,.09);
      box-shadow:var(--shadow-sm);
    }
    .timeline{
      display:grid;
      gap:12px;
      margin-top:16px;
    }
    .time-item{
      display:grid;
      grid-template-columns:96px 1fr;
      gap:12px;
      align-items:start;
      padding:12px;
      border-radius:16px;
      background:#fff8f3;
      border:1px solid rgba(230,0,35,.08);
    }
    .time-label{
      display:inline-flex;
      justify-content:center;
      padding:6px 8px;
      border-radius:999px;
      background:var(--dark);
      color:#fff;
      font-weight:900;
      font-size:12px;
    }
    .time-item strong{display:block;font-weight:900;margin-bottom:3px}
    .time-item span{color:var(--muted);font-size:14px}
    .compare-card{
      background:linear-gradient(145deg,#251617,#3a2220);
      color:#fff;
      border-radius:20px;
      padding:22px;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .compare-card:after{
      content:"";
      position:absolute;
      width:190px;height:190px;border-radius:50%;
      right:-85px;bottom:-90px;
      background:rgba(255,122,24,.20);
    }
    .compare-list{
      position:relative;
      z-index:1;
      display:grid;
      gap:10px;
      margin-top:14px;
    }
    .compare-item{
      display:flex;
      justify-content:space-between;
      gap:12px;
      padding:12px;
      border-radius:14px;
      background:rgba(255,255,255,.09);
      border:1px solid rgba(255,255,255,.10);
    }
    .compare-item strong{font-weight:900}
    .compare-item span{color:#ffd7bb;font-weight:800}
    .guard-strip{
      background:linear-gradient(90deg,#231516,#351f1f);
      color:#fff;
      border-radius:22px;
      padding:20px;
      box-shadow:var(--shadow);
    }
    .guard-grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:12px;
    }
    .guard-item{
      display:flex;
      align-items:center;
      gap:10px;
      padding:14px;
      border-radius:16px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
    }
    .guard-icon{
      width:38px;height:38px;border-radius:14px;
      display:flex;align-items:center;justify-content:center;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      flex:0 0 auto;
    }
    .guard-item strong{display:block;font-weight:900;line-height:1.2}
    .guard-item span{display:block;color:#ffd8c2;font-size:12px;margin-top:2px}
    .flow-grid{
      display:grid;
      grid-template-columns:1fr 1.2fr 1fr;
      gap:16px;
    }
    .flow-card{
      background:#fff;
      border:1px solid rgba(35,31,32,.09);
      border-radius:20px;
      padding:20px;
      box-shadow:var(--shadow-sm);
      transition:var(--trans);
    }
    .flow-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .flow-step{
      display:inline-flex;
      width:42px;height:42px;border-radius:15px;
      align-items:center;justify-content:center;
      background:var(--primary-soft);
      color:var(--primary);
      font-weight:900;
      margin-bottom:12px;
    }
    .flow-card h3{font-size:19px;font-weight:900;margin:0 0 8px}
    .flow-card p{color:var(--muted);margin:0}
    .faq-wrap{
      background:#fff;
      border:1px solid rgba(35,31,32,.09);
      border-radius:22px;
      padding:10px;
      box-shadow:var(--shadow-sm);
    }
    .accordion-item{
      border:0;
      border-radius:16px!important;
      overflow:hidden;
      margin:8px;
      background:#fff8f3;
    }
    .accordion-button{
      background:#fff8f3;
      color:var(--ink);
      font-weight:900;
      padding:16px 18px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      background:linear-gradient(135deg,var(--primary),var(--accent));
      color:#fff;
    }
    .accordion-button:focus{box-shadow:none;border-color:transparent}
    .accordion-body{color:var(--muted);font-weight:500;background:#fff}
    .cta-panel{
      position:relative;
      overflow:hidden;
      border-radius:26px;
      padding:30px;
      background:
        radial-gradient(circle at 85% 10%,rgba(255,176,32,.34),transparent 24%),
        linear-gradient(135deg,var(--primary-deep),var(--primary) 55%,var(--accent));
      color:#fff;
      box-shadow:0 24px 70px rgba(230,0,35,.25);
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:repeating-linear-gradient(135deg,rgba(255,255,255,.13) 0 1px,transparent 1px 13px);
      opacity:.45;
    }
    .cta-content{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .cta-panel h2{font-size:clamp(24px,3vw,36px);font-weight:900;margin:0 0 8px}
    .cta-panel p{margin:0;color:#ffe4d4;max-width:690px}
    .cta-panel .btn-soft{background:#fff;color:var(--primary);border-color:#fff;min-width:130px}
    .site-footer{
      margin-top:42px;
      padding:42px 0 22px;
      background:#211616;
      color:#fff;
    }
    .footer-logo{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:20px;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-text{
      color:#d8c4bd;
      margin:0;
      max-width:420px;
    }
    .footer-title{
      font-size:16px;
      font-weight:900;
      margin:0 0 14px;
      color:#fff;
    }
    .footer-links{display:grid;gap:9px}
    .footer-links a{
      color:#d8c4bd;
      font-weight:700;
      font-size:14px;
    }
    .footer-links a:hover{color:#fff;transform:translateX(3px)}
    .copyright{
      display:flex;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      margin-top:30px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.10);
      color:#bda9a3;
      font-size:13px;
    }
    @media (max-width:1199px){
      .content-layout{grid-template-columns:minmax(0,1fr) 285px}
      .hot-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .guard-grid{grid-template-columns:repeat(3,1fr)}
      .filter-bar-wrap{top:116px}
    }
    @media (max-width:991px){
      .brand-wrap{align-items:flex-start}
      .brand-sub{display:none}
      .search-box{max-width:330px}
      .content-layout{grid-template-columns:1fr}
      .side-stack{position:static;grid-template-columns:repeat(2,1fr)}
      .notice-panel,.flow-grid{grid-template-columns:1fr}
      .guard-grid{grid-template-columns:repeat(2,1fr)}
      .filter-bar-wrap{position:relative;top:auto}
      .metric-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:767px){
      .brand-row{padding:12px 0}
      .brand-wrap{gap:10px}
      .brand-logo{font-size:18px}
      .brand-logo .mark{width:34px;height:34px;border-radius:12px}
      .header-tools .search-box{display:none}
      .tool-btn span{display:none}
      .channel-scroll{padding:9px 0}
      .mini-hero{padding:26px 0 16px}
      .hero-panel{padding:22px;border-radius:20px}
      .hero-desc{font-size:15px}
      .metric-grid,.hot-grid,.side-stack,.guard-grid{grid-template-columns:1fr}
      .filter-bar{align-items:stretch}
      .filter-search{width:100%;min-width:0}
      .filter-tags{flex-wrap:nowrap;overflow-x:auto;padding-bottom:2px}
      .filter-chip{white-space:nowrap}
      .section{padding:30px 0}
      .section-head{display:block}
      .section-summary{margin-top:8px}
      .time-item{grid-template-columns:1fr}
      .cta-content{display:block}
      .cta-content .btn-soft{margin-top:18px;width:100%}
      .copyright{display:block}
      .copyright span{display:block;margin-top:8px}
    }
    @media (max-width:520px){
      .container{padding-left:16px;padding-right:16px}
      .hero-actions .btn-main,.hero-actions .btn-soft{width:100%}
      .entry-card{min-height:auto}
      .guard-item{align-items:flex-start}
    }

/* roulang page: category2 */
:root{
      --bg:#fff7f2;
      --bg-soft:#fffdfb;
      --surface:#ffffff;
      --surface-2:#fff3ea;
      --surface-3:#ffe8dc;
      --line:rgba(117, 47, 34, 0.12);
      --line-strong:rgba(177, 15, 29, 0.18);
      --text:#221713;
      --muted:#7a6157;
      --brand:#b10f1d;
      --brand-2:#d61e25;
      --accent:#ff7b18;
      --accent-2:#ffaf2e;
      --dark:#28110f;
      --success:#1f9d6d;
      --shadow:0 14px 36px rgba(68, 25, 18, .08);
      --shadow-strong:0 18px 42px rgba(177, 15, 29, .14);
      --radius:22px;
      --radius-sm:16px;
      --container:1200px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(255,176,46,.10), transparent 32%),
        radial-gradient(circle at top right, rgba(177,15,29,.08), transparent 28%),
        linear-gradient(180deg, #fffdfb 0%, #fff6f0 100%);
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",sans-serif;
      line-height:1.7;
      letter-spacing:.01em;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    a:hover{color:var(--brand)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(177,15,29,.18);color:var(--dark)}
    ::-webkit-scrollbar{width:10px;height:10px}
    ::-webkit-scrollbar-track{background:#f5e9e0}
    ::-webkit-scrollbar-thumb{background:linear-gradient(180deg,var(--brand),var(--accent));border-radius:999px}
    .container{max-width:var(--container)}
    section[id]{scroll-margin-top:124px}
    .text-muted-custom{color:var(--muted)!important}
    .badge-soft{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.42rem .75rem;
      border-radius:999px;
      border:1px solid rgba(177,15,29,.12);
      background:rgba(255,255,255,.7);
      color:var(--brand);
      font-weight:800;
      letter-spacing:.02em;
      box-shadow:0 8px 20px rgba(68,25,18,.04);
    }
    .badge-hot{
      background:linear-gradient(135deg,var(--brand),#e52f22);
      color:#fff;
      border-color:transparent;
      box-shadow:0 12px 22px rgba(177,15,29,.22);
    }
    .badge-warm{
      background:linear-gradient(135deg,var(--accent),#ffb84b);
      color:#fff;
      border-color:transparent;
      box-shadow:0 12px 22px rgba(255,123,24,.18);
    }
    .badge-muted{
      background:#f5efeb;
      color:var(--muted);
      border-color:rgba(117,47,34,.08);
    }
    .btn{
      border-radius:14px;
      font-weight:800;
      transition:.22s ease;
      box-shadow:none!important;
    }
    .btn:focus,
    .btn:active,
    .form-control:focus{
      box-shadow:0 0 0 .22rem rgba(177,15,29,.18)!important;
      border-color:rgba(177,15,29,.28)!important;
    }
    .btn-main{
      color:#fff;
      border:0;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:0 14px 22px rgba(177,15,29,.22)!important;
    }
    .btn-main:hover{
      color:#fff;
      transform:translateY(-2px);
      background:linear-gradient(135deg,#cf1727,#ff7a18);
      box-shadow:0 18px 26px rgba(177,15,29,.26)!important;
    }
    .btn-soft{
      background:#fff;
      color:var(--brand);
      border:1px solid rgba(177,15,29,.18);
    }
    .btn-soft:hover{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      border-color:transparent;
      transform:translateY(-2px);
    }
    .btn-ghost{
      background:rgba(255,255,255,.76);
      color:var(--text);
      border:1px solid rgba(117,47,34,.12);
    }
    .btn-ghost:hover{
      color:var(--brand);
      border-color:rgba(177,15,29,.22);
      transform:translateY(-2px);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:1035;
      backdrop-filter:blur(18px);
      background:rgba(255,248,243,.86);
      border-bottom:1px solid rgba(117,47,34,.10);
      box-shadow:0 8px 26px rgba(68,25,18,.05);
    }
    .top-ribbon{
      background:linear-gradient(90deg,#7d0f16 0%, var(--brand) 38%, #e4501d 100%);
      color:#fff;
      font-size:.92rem;
    }
    .ribbon-inner{
      min-height:42px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      flex-wrap:wrap;
      padding:.45rem 0;
    }
    .ribbon-left,
    .ribbon-right{
      display:flex;
      align-items:center;
      gap:.65rem;
      flex-wrap:wrap;
    }
    .ribbon-dot{
      width:9px;
      height:9px;
      border-radius:999px;
      background:#fff;
      box-shadow:0 0 0 6px rgba(255,255,255,.14);
    }
    .ribbon-badge{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.28rem .68rem;
      border-radius:999px;
      background:rgba(255,255,255,.15);
      border:1px solid rgba(255,255,255,.18);
      font-weight:700;
    }
    .brand-bar{
      padding:14px 0;
    }
    .brand-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }
    .brand-link{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-size:1.16rem;
      font-weight:900;
      color:var(--text);
      letter-spacing:.02em;
      white-space:nowrap;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      box-shadow:0 14px 24px rgba(177,15,29,.22);
      flex:0 0 auto;
    }
    .brand-copy{
      color:var(--muted);
      font-size:.96rem;
      flex:1 1 240px;
      min-width:240px;
    }
    .brand-search{
      flex:1 1 360px;
      max-width:460px;
      min-width:min(100%,360px);
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(117,47,34,.12);
      box-shadow:0 12px 24px rgba(68,25,18,.05);
    }
    .brand-search i{
      color:var(--brand);
      font-size:.95rem;
    }
    .brand-search input{
      border:0;
      outline:none;
      background:transparent;
      width:100%;
      color:var(--text);
    }
    .search-clear{
      width:34px;
      height:34px;
      border-radius:999px;
      border:0;
      background:#f7efe9;
      color:var(--muted);
      display:grid;
      place-items:center;
      flex:0 0 auto;
      transition:.2s ease;
    }
    .search-clear:hover{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      transform:translateY(-1px);
    }
    .brand-tools{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
    }
    .tool-chip{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      padding:10px 14px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(117,47,34,.12);
      color:var(--text);
      font-weight:800;
      box-shadow:0 10px 22px rgba(68,25,18,.04);
      transition:.22s ease;
    }
    .tool-chip:hover{
      color:var(--brand);
      border-color:rgba(177,15,29,.22);
      transform:translateY(-2px);
      box-shadow:0 14px 26px rgba(177,15,29,.10);
    }
    .menu-btn{
      width:44px;
      height:44px;
      border:0;
      border-radius:14px;
      background:linear-gradient(135deg,var(--brand),var(--brand-2));
      color:#fff;
      display:grid;
      place-items:center;
      box-shadow:0 14px 24px rgba(177,15,29,.22);
      transition:.22s ease;
    }
    .menu-btn:hover{transform:translateY(-2px)}
    .channel-row{
      border-top:1px solid rgba(117,47,34,.10);
      background:rgba(255,251,248,.88);
    }
    .channel-scroll{
      display:flex;
      gap:12px;
      overflow-x:auto;
      padding:10px 0 12px;
      scrollbar-width:none;
    }
    .channel-scroll::-webkit-scrollbar{display:none}
    .channel-link{
      display:inline-flex;
      align-items:center;
      gap:.45rem;
      white-space:nowrap;
      padding:10px 16px;
      border-radius:999px;
      border:1px solid transparent;
      background:transparent;
      color:var(--muted);
      font-weight:800;
      transition:.22s ease;
      flex:0 0 auto;
    }
    .channel-link:hover{
      background:#fff;
      color:var(--brand);
      border-color:rgba(117,47,34,.10);
      box-shadow:0 10px 22px rgba(68,25,18,.05);
      transform:translateY(-1px);
    }
    .channel-link.active{
      background:linear-gradient(135deg,var(--brand),#d91b27);
      color:#fff;
      border-color:transparent;
      box-shadow:0 14px 24px rgba(177,15,29,.24);
    }
    .hero-section{
      padding:26px 0 16px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border-radius:30px;
      border:1px solid rgba(177,15,29,.12);
      background:
        radial-gradient(circle at top left, rgba(255,178,77,.20), transparent 28%),
        radial-gradient(circle at right center, rgba(177,15,29,.10), transparent 24%),
        linear-gradient(135deg, rgba(255,255,255,.98) 0%, rgba(255,245,238,.96) 100%);
      box-shadow:0 18px 42px rgba(68,25,18,.08);
      padding:28px;
    }
    .hero-shell::before{
      content:"";
      position:absolute;
      right:-70px;
      top:-70px;
      width:220px;
      height:220px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(177,15,29,.14) 0%, rgba(177,15,29,0) 68%);
      pointer-events:none;
    }
    .hero-shell::after{
      content:"";
      position:absolute;
      left:-60px;
      bottom:-60px;
      width:180px;
      height:180px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(255,123,24,.14) 0%, rgba(255,123,24,0) 70%);
      pointer-events:none;
    }
    .breadcrumb-wrap{
      position:relative;
      z-index:1;
    }
    .custom-breadcrumb{
      --bs-breadcrumb-divider: '›';
      margin-bottom:0;
      font-size:.93rem;
    }
    .custom-breadcrumb .breadcrumb-item a{
      color:var(--muted);
      font-weight:700;
    }
    .custom-breadcrumb .breadcrumb-item.active{
      color:var(--brand);
      font-weight:800;
    }
    .hero-kicker{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.42rem .8rem;
      border-radius:999px;
      background:rgba(177,15,29,.08);
      color:var(--brand);
      font-weight:900;
      margin-bottom:14px;
      border:1px solid rgba(177,15,29,.12);
    }
    .hero-copy{
      position:relative;
      z-index:1;
    }
    .hero-copy h1{
      font-size:clamp(2rem, 4vw, 3.35rem);
      line-height:1.08;
      font-weight:900;
      letter-spacing:.02em;
      margin:0 0 16px;
    }
    .hero-copy p{
      margin:0 0 18px;
      font-size:1.06rem;
      color:var(--muted);
      max-width:42rem;
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:12px;
      margin:20px 0 18px;
    }
    .metric-box{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(117,47,34,.10);
      border-radius:18px;
      padding:14px 12px;
      box-shadow:0 10px 22px rgba(68,25,18,.05);
      min-height:96px;
    }
    .metric-box small{
      display:block;
      color:var(--muted);
      font-weight:700;
      margin-bottom:6px;
    }
    .metric-box strong{
      display:block;
      color:var(--brand);
      font-size:1.34rem;
      line-height:1.1;
      margin-bottom:4px;
    }
    .metric-box span{
      display:block;
      color:var(--muted);
      font-size:.9rem;
    }
    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      align-items:center;
      margin-bottom:14px;
    }
    .hero-note{
      color:var(--muted);
      font-size:.94rem;
      display:flex;
      align-items:center;
      gap:.5rem;
      flex-wrap:wrap;
    }
    .hero-note .note-dot{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(255,123,24,.12);
    }
    .hero-matrix{
      position:relative;
      z-index:1;
    }
    .matrix-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .matrix-item{
      min-height:128px;
      border-radius:20px;
      padding:16px;
      background:
        linear-gradient(160deg, rgba(177,15,29,.95) 0%, rgba(255,123,24,.95) 100%);
      color:#fff;
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.16);
      box-shadow:0 18px 30px rgba(177,15,29,.16);
      transition:.25s ease;
    }
    .matrix-item:nth-child(2n){
      background:
        linear-gradient(160deg, rgba(255,123,24,.95) 0%, rgba(255,176,46,.92) 100%);
    }
    .matrix-item:nth-child(3n){
      background:
        linear-gradient(160deg, rgba(68,25,18,.96) 0%, rgba(177,15,29,.92) 100%);
    }
    .matrix-item:hover{
      transform:translateY(-4px);
      box-shadow:0 22px 36px rgba(177,15,29,.20);
      color:#fff;
    }
    .matrix-item::before{
      content:"";
      position:absolute;
      right:-24px;
      top:-24px;
      width:90px;
      height:90px;
      border-radius:50%;
      background:rgba(255,255,255,.12);
    }
    .matrix-top{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .matrix-icon{
      width:38px;
      height:38px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,.18);
      flex:0 0 auto;
    }
    .matrix-tag{
      padding:.32rem .62rem;
      border-radius:999px;
      background:rgba(255,255,255,.16);
      font-weight:800;
      font-size:.78rem;
      white-space:nowrap;
    }
    .matrix-item h3{
      position:relative;
      z-index:1;
      margin:0 0 6px;
      font-size:1.02rem;
      font-weight:900;
    }
    .matrix-item p{
      position:relative;
      z-index:1;
      margin:0;
      font-size:.92rem;
      color:rgba(255,255,255,.92);
      line-height:1.55;
    }
    .news-strip{
      padding:6px 0 14px;
    }
    .news-shell{
      background:linear-gradient(135deg, rgba(177,15,29,.06), rgba(255,123,24,.08));
      border:1px solid rgba(177,15,29,.12);
      border-radius:26px;
      padding:18px;
      box-shadow:0 12px 28px rgba(68,25,18,.05);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      margin-bottom:14px;
      position:relative;
      z-index:1;
    }
    .section-head h2{
      margin:0;
      font-size:1.42rem;
      font-weight:900;
      letter-spacing:.01em;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      font-size:.96rem;
    }
    .news-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:12px;
    }
    .news-card{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(117,47,34,.10);
      border-radius:20px;
      padding:16px;
      box-shadow:0 10px 24px rgba(68,25,18,.04);
      transition:.22s ease;
      height:100%;
    }
    .news-card:hover{
      transform:translateY(-3px);
      box-shadow:0 16px 28px rgba(177,15,29,.10);
    }
    .news-card .news-label{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-bottom:8px;
    }
    .news-card strong{
      font-size:1.18rem;
      color:var(--brand);
      display:block;
      margin-bottom:4px;
      line-height:1.2;
    }
    .news-card span{
      color:var(--muted);
      font-size:.94rem;
    }
    .filter-section{
      padding:8px 0 20px;
    }
    .filter-shell{
      background:rgba(255,255,255,.92);
      border:1px solid rgba(117,47,34,.12);
      border-radius:26px;
      box-shadow:var(--shadow);
      padding:18px;
    }
    .filter-bar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      margin-bottom:14px;
    }
    .filter-bar h2{
      margin:0;
      font-size:1.28rem;
      font-weight:900;
    }
    .filter-bar p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
    }
    .filter-search{
      min-width:min(100%,340px);
      flex:1 1 340px;
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid rgba(117,47,34,.12);
    }
    .filter-search i{color:var(--brand)}
    .filter-search input{
      border:0;
      outline:none;
      background:transparent;
      width:100%;
    }
    .filter-chips{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
    }
    .filter-chip{
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:10px 14px;
      border-radius:999px;
      border:1px solid rgba(117,47,34,.12);
      background:#fff;
      color:var(--text);
      font-weight:800;
      transition:.22s ease;
      white-space:nowrap;
    }
    .filter-chip:hover{
      color:var(--brand);
      border-color:rgba(177,15,29,.22);
      transform:translateY(-1px);
    }
    .filter-chip.active{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      border-color:transparent;
      box-shadow:0 12px 22px rgba(177,15,29,.18);
    }
    .content-section{
      padding:12px 0 22px;
    }
    .section-title{
      margin-bottom:18px;
    }
    .section-title h2{
      margin:0 0 6px;
      font-size:1.5rem;
      font-weight:900;
    }
    .section-title p{
      margin:0;
      color:var(--muted);
      font-size:.96rem;
    }
    .entry-card{
      display:flex;
      gap:16px;
      align-items:stretch;
      border-radius:24px;
      background:rgba(255,255,255,.94);
      border:1px solid rgba(117,47,34,.12);
      box-shadow:var(--shadow);
      padding:16px;
      transition:.25s ease;
      overflow:hidden;
      min-height:100%;
    }
    .entry-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-strong);
      border-color:rgba(177,15,29,.16);
    }
    .entry-cover{
      flex:0 0 138px;
      width:138px;
      min-height:138px;
      border-radius:20px;
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 22% 18%, rgba(255,255,255,.34), transparent 22%),
        linear-gradient(160deg, #b10f1d 0%, #ff7b18 100%);
      box-shadow:0 14px 28px rgba(177,15,29,.18);
    }
    .entry-cover::after{
      content:"";
      position:absolute;
      inset:auto -18px -22px auto;
      width:88px;
      height:88px;
      border-radius:50%;
      background:rgba(255,255,255,.12);
    }
    .entry-cover .cover-badge{
      position:absolute;
      top:12px;
      left:12px;
      padding:.35rem .62rem;
      border-radius:999px;
      background:rgba(255,255,255,.18);
      color:#fff;
      font-size:.8rem;
      font-weight:900;
      backdrop-filter:blur(10px);
    }
    .entry-cover .cover-title{
      position:absolute;
      left:14px;
      right:14px;
      bottom:14px;
      color:#fff;
      font-size:.95rem;
      font-weight:900;
      line-height:1.35;
      z-index:1;
    }
    .entry-body{
      flex:1;
      min-width:0;
      display:flex;
      flex-direction:column;
    }
    .entry-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:10px;
    }
    .entry-kicker{
      color:var(--brand);
      font-weight:900;
      font-size:.86rem;
      letter-spacing:.03em;
      text-transform:none;
    }
    .entry-hint{
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      padding:.3rem .55rem;
      border-radius:999px;
      background:#fff3e9;
      color:#c95b14;
      font-size:.82rem;
      font-weight:800;
      border:1px solid rgba(255,123,24,.16);
    }
    .entry-body h3{
      margin:0 0 8px;
      font-size:1.08rem;
      font-weight:900;
      line-height:1.34;
    }
    .entry-body p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:.96rem;
      line-height:1.66;
    }
    .tag-group{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:12px;
    }
    .tag-pill{
      padding:.34rem .65rem;
      border-radius:999px;
      border:1px solid rgba(117,47,34,.10);
      background:#f7f1ec;
      color:var(--text);
      font-size:.8rem;
      font-weight:800;
    }
    .entry-action{
      margin-top:auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
    }
    .mini-note{
      color:var(--muted);
      font-size:.86rem;
    }
    .btn-mini{
      padding:.55rem .9rem;
      border-radius:12px;
      font-size:.92rem;
      font-weight:900;
    }
    .sidebar-sticky{
      position:sticky;
      top:126px;
    }
    .sidebar-box{
      background:rgba(255,255,255,.94);
      border:1px solid rgba(117,47,34,.12);
      border-radius:24px;
      box-shadow:var(--shadow);
      padding:18px;
      margin-bottom:16px;
    }
    .sidebar-title{
      margin:0 0 12px;
      font-size:1.02rem;
      font-weight:900;
    }
    .side-chip-list{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .side-chip{
      border:1px solid rgba(117,47,34,.12);
      background:#fff;
      padding:9px 12px;
      border-radius:999px;
      font-weight:800;
      color:var(--muted);
      transition:.22s ease;
      cursor:pointer;
    }
    .side-chip:hover,
    .side-chip.active{
      color:#fff;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      border-color:transparent;
      transform:translateY(-1px);
    }
    .heat-list{
      display:grid;
      gap:12px;
    }
    .heat-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      font-size:.95rem;
    }
    .heat-item strong{
      font-weight:900;
    }
    .heat-bar{
      width:100%;
      height:8px;
      border-radius:999px;
      background:#f2e8e1;
      overflow:hidden;
      margin-top:8px;
    }
    .heat-bar span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--brand),var(--accent));
    }
    .feedback-carousel .carousel-inner{
      border-radius:18px;
    }
    .feedback-card{
      background:linear-gradient(180deg,#fff, #fff8f3);
      border-radius:18px;
      border:1px solid rgba(117,47,34,.10);
      padding:16px;
      min-height:230px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      box-shadow:0 10px 24px rgba(68,25,18,.05);
    }
    .feedback-head{
      display:flex;
      align-items:center;
      gap:12px;
      margin-bottom:12px;
    }
    .avatar{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#fff;
      font-weight:900;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      flex:0 0 auto;
      box-shadow:0 10px 18px rgba(177,15,29,.16);
    }
    .feedback-name{
      margin:0;
      font-weight:900;
    }
    .feedback-stars{
      color:var(--accent);
      font-size:.85rem;
      letter-spacing:.08em;
      margin-top:2px;
    }
    .feedback-card p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      font-size:.95rem;
    }
    .feedback-footer{
      margin-top:14px;
      display:flex;
      justify-content:space-between;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:.86rem;
    }
    .sidebar-box .accordion-button{
      border-radius:14px!important;
      background:#fff7f2;
      border:1px solid rgba(117,47,34,.12);
      box-shadow:none;
      font-weight:900;
      color:var(--text);
    }
    .sidebar-box .accordion-item{
      border:0;
      margin-bottom:10px;
      background:transparent;
    }
    .sidebar-box .accordion-body{
      background:#fff;
      border:1px solid rgba(117,47,34,.10);
      border-top:0;
      border-radius:0 0 14px 14px;
      color:var(--muted);
      padding:14px 14px 16px;
    }
    .related-section{
      padding:10px 0 22px;
    }
    .related-shell{
      background:linear-gradient(135deg, rgba(177,15,29,.06), rgba(255,123,24,.08));
      border:1px solid rgba(177,15,29,.10);
      border-radius:30px;
      padding:24px;
      box-shadow:0 16px 34px rgba(68,25,18,.06);
    }
    .topic-card{
      height:100%;
      background:rgba(255,255,255,.94);
      border:1px solid rgba(117,47,34,.12);
      border-radius:22px;
      padding:18px;
      box-shadow:0 10px 24px rgba(68,25,18,.05);
      transition:.24s ease;
    }
    .topic-card:hover{
      transform:translateY(-4px);
      box-shadow:0 18px 30px rgba(177,15,29,.12);
    }
    .topic-thumb{
      height:90px;
      border-radius:18px;
      margin-bottom:14px;
      background:
        radial-gradient(circle at 22% 18%, rgba(255,255,255,.38), transparent 22%),
        linear-gradient(135deg, var(--brand), var(--accent));
      position:relative;
      overflow:hidden;
    }
    .topic-thumb::after{
      content:"";
      position:absolute;
      inset:auto -22px -26px auto;
      width:90px;
      height:90px;
      border-radius:50%;
      background:rgba(255,255,255,.12);
    }
    .topic-card h3{
      margin:0 0 8px;
      font-size:1.04rem;
      font-weight:900;
    }
    .topic-card p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:.95rem;
      line-height:1.65;
    }
    .topic-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:12px;
    }
    .assurance-band{
      padding:8px 0 24px;
    }
    .assurance-shell{
      border-radius:30px;
      padding:24px;
      color:#fff;
      background:
        radial-gradient(circle at top right, rgba(255,255,255,.12), transparent 24%),
        linear-gradient(135deg,#4b1014 0%, #971422 55%, #e16b22 100%);
      box-shadow:0 20px 38px rgba(72,12,18,.18);
    }
    .assurance-head{
      margin-bottom:18px;
    }
    .assurance-head h2{
      margin:0 0 6px;
      font-size:1.42rem;
      font-weight:900;
    }
    .assurance-head p{
      margin:0;
      color:rgba(255,255,255,.9);
    }
    .assurance-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      background:rgba(255,255,255,.09);
      border:1px solid rgba(255,255,255,.14);
      border-radius:20px;
      padding:14px;
      height:100%;
    }
    .assurance-item i{
      width:40px;
      height:40px;
      border-radius:14px;
      background:rgba(255,255,255,.14);
      display:grid;
      place-items:center;
      flex:0 0 auto;
    }
    .assurance-item strong{
      display:block;
      margin-bottom:4px;
      font-size:1.02rem;
      font-weight:900;
    }
    .assurance-item span{
      color:rgba(255,255,255,.86);
      font-size:.92rem;
    }
    .faq-section{
      padding:0 0 24px;
    }
    .faq-shell{
      background:rgba(255,255,255,.94);
      border:1px solid rgba(117,47,34,.12);
      border-radius:30px;
      padding:24px;
      box-shadow:var(--shadow);
    }
    .faq-shell .accordion-item{
      border:0;
      background:transparent;
      margin-bottom:12px;
    }
    .faq-shell .accordion-button{
      border-radius:16px!important;
      background:#fff7f2;
      border:1px solid rgba(117,47,34,.12);
      font-weight:900;
      color:var(--text);
      box-shadow:none;
    }
    .faq-shell .accordion-button:not(.collapsed){
      color:var(--brand);
      background:linear-gradient(135deg, rgba(177,15,29,.08), rgba(255,123,24,.08));
      box-shadow:none;
    }
    .faq-shell .accordion-body{
      background:#fff;
      border:1px solid rgba(117,47,34,.10);
      border-top:0;
      border-radius:0 0 16px 16px;
      color:var(--muted);
      padding:16px 16px 18px;
    }
    .cta-section{
      padding:0 0 28px;
    }
    .cta-shell{
      border-radius:32px;
      color:#fff;
      padding:28px;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,.14), transparent 22%),
        linear-gradient(135deg,var(--brand) 0%, #d01f25 50%, #ff8a00 100%);
      box-shadow:0 20px 42px rgba(177,15,29,.20);
    }
    .cta-shell h2{
      margin:0 0 8px;
      font-size:1.6rem;
      font-weight:900;
    }
    .cta-shell p{
      margin:0;
      color:rgba(255,255,255,.92);
      max-width:46rem;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
      align-items:center;
    }
    .btn-cta-light{
      background:#fff;
      color:var(--brand);
      border:0;
      font-weight:900;
      box-shadow:0 12px 22px rgba(0,0,0,.12)!important;
    }
    .btn-cta-light:hover{
      color:#fff;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.25);
      transform:translateY(-2px);
    }
    .btn-cta-outline{
      color:#fff;
      border:1px solid rgba(255,255,255,.32);
      background:rgba(255,255,255,.10);
      font-weight:900;
    }
    .btn-cta-outline:hover{
      color:#fff;
      background:rgba(255,255,255,.18);
      border-color:rgba(255,255,255,.42);
      transform:translateY(-2px);
    }
    .site-footer{
      background:#1f0d11;
      color:#f8eee8;
      padding:34px 0 24px;
      margin-top:6px;
    }
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      font-size:1.15rem;
      font-weight:900;
      margin-bottom:12px;
    }
    .footer-logo .mark{
      width:40px;
      height:40px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      color:#fff;
      box-shadow:0 12px 22px rgba(0,0,0,.18);
    }
    .footer-text{
      color:rgba(248,238,232,.82);
      margin-bottom:0;
      line-height:1.8;
    }
    .footer-title{
      font-size:1.02rem;
      font-weight:900;
      margin-bottom:12px;
      color:#fff;
    }
    .footer-links{
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(248,238,232,.84);
      transition:.2s ease;
    }
    .footer-links a:hover{
      color:#fff;
      transform:translateX(2px);
    }
    .copyright{
      margin-top:26px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.12);
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      font-size:.92rem;
      color:rgba(248,238,232,.72);
    }
    .offcanvas{
      background:#fff7f2;
    }
    .offcanvas-header{
      border-bottom:1px solid rgba(117,47,34,.10);
    }
    .offcanvas-title{
      font-weight:900;
    }
    .offcanvas .tool-chip{
      width:100%;
      justify-content:space-between;
    }
    .offcanvas-body .filter-chip{
      width:100%;
      justify-content:space-between;
    }
    .custom-pagination .page-link{
      border-radius:14px!important;
      margin:0 4px;
      border:1px solid rgba(117,47,34,.12);
      color:var(--text);
      font-weight:800;
      background:#fff;
      padding:.72rem .95rem;
      box-shadow:0 10px 20px rgba(68,25,18,.04);
    }
    .custom-pagination .page-link:hover{
      color:var(--brand);
      border-color:rgba(177,15,29,.22);
    }
    .custom-pagination .page-item.active .page-link{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(135deg,var(--brand),var(--accent));
      box-shadow:0 12px 22px rgba(177,15,29,.18);
    }
    .custom-pagination .page-item.disabled .page-link{
      background:#f2e8e1;
      color:#b39c91;
    }
    .breadcrumb-item + .breadcrumb-item::before{
      color:var(--muted);
    }
    .carousel-control-prev-icon,
    .carousel-control-next-icon{
      filter:invert(19%) sepia(86%) saturate(2773%) hue-rotate(338deg) brightness(84%) contrast(95%);
    }

    @media (max-width: 1199.98px){
      .hero-shell{padding:24px}
      .sidebar-sticky{top:118px}
    }
    @media (max-width: 991.98px){
      .brand-copy{flex-basis:100%}
      .brand-search{order:3; max-width:none; flex-basis:100%}
      .hero-metrics{grid-template-columns:repeat(2, minmax(0,1fr))}
      .matrix-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .news-grid{grid-template-columns:1fr}
      .entry-card{flex-direction:column}
      .entry-cover{width:100%; flex-basis:auto; min-height:168px}
      .sidebar-sticky{position:static}
      .cta-actions{justify-content:flex-start}
    }
    @media (max-width: 767.98px){
      .top-ribbon{font-size:.86rem}
      .ribbon-inner{min-height:auto;padding:.55rem 0}
      .brand-bar{padding:12px 0}
      .brand-link{font-size:1.05rem}
      .brand-mark{width:40px;height:40px}
      .hero-section{padding-top:18px}
      .hero-shell{padding:18px;border-radius:24px}
      .hero-copy h1{font-size:clamp(1.8rem, 8vw, 2.6rem)}
      .hero-copy p{font-size:1rem}
      .hero-actions .btn{width:100%;justify-content:center}
      .hero-metrics{grid-template-columns:1fr 1fr}
      .matrix-grid{grid-template-columns:1fr 1fr}
      .news-shell,
      .filter-shell,
      .related-shell,
      .faq-shell,
      .cta-shell,
      .assurance-shell{border-radius:22px}
      .filter-chips{
        flex-wrap:nowrap;
        overflow-x:auto;
        padding-bottom:4px;
      }
      .filter-chip{flex:0 0 auto}
      .cta-shell{padding:22px}
      .cta-actions .btn{width:100%}
      .copyright{
        flex-direction:column;
        align-items:flex-start;
      }
    }
    @media (max-width: 575.98px){
      .brand-wrap{gap:12px}
      .brand-search{padding:9px 11px}
      .tool-chip{padding:9px 12px}
      .hero-shell{padding:16px}
      .hero-metrics{grid-template-columns:1fr}
      .matrix-grid{grid-template-columns:1fr}
      .entry-card{padding:14px}
      .entry-cover{min-height:154px}
      .section-head h2,
      .section-title h2,
      .assurance-head h2,
      .cta-shell h2{font-size:1.24rem}
    }
