/* roulang page: index */
:root{
      --bg:#0b0807;
      --bg-2:#15100e;
      --panel:#1b1411;
      --panel-2:#231713;
      --gold:#d8ae5b;
      --gold-2:#f3d58d;
      --wine:#681c2e;
      --rose:#a33653;
      --text:#fff7e8;
      --muted:#c8b99d;
      --soft:#8e8069;
      --line:rgba(216,174,91,.24);
      --line-2:rgba(255,247,232,.1);
      --shadow:0 20px 55px rgba(0,0,0,.42);
      --shadow-gold:0 12px 36px rgba(216,174,91,.16);
      --radius:18px;
      --radius-sm:12px;
      --container:1180px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      color:var(--text);
      line-height:1.72;
      background:
        radial-gradient(circle at 12% 0%, rgba(216,174,91,.16), transparent 32%),
        radial-gradient(circle at 86% 18%, rgba(163,54,83,.2), transparent 34%),
        linear-gradient(180deg,#0b0807 0%,#120c0b 42%,#090706 100%);
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(216,174,91,.35);color:#fff}
    .site-container{width:min(var(--container),calc(100% - 32px));margin:0 auto}
    .section{padding:76px 0}
    .section.tight{padding:52px 0}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      color:var(--gold-2);font-size:13px;font-weight:700;
      letter-spacing:.04em;padding:7px 12px;border:1px solid var(--line);
      border-radius:999px;background:rgba(216,174,91,.08);
    }
    .eyebrow::before{content:"";width:7px;height:7px;border-radius:50%;background:var(--gold);box-shadow:0 0 12px var(--gold)}
    .section-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:28px}
    .section-title{font-size:clamp(25px,3vw,38px);line-height:1.18;margin:12px 0 0;font-weight:900;letter-spacing:-.04em}
    .section-desc{max-width:690px;color:var(--muted);margin:10px 0 0;font-size:16px}
    .soft-text{color:var(--muted)}
    .gold{color:var(--gold-2)}
    .divider{height:1px;background:linear-gradient(90deg,transparent,var(--line),transparent);margin:20px 0}
    .btn{
      border-radius:999px;
      padding:12px 20px;
      font-weight:800;
      border:1px solid transparent;
      transition:var(--ease);
      letter-spacing:.01em;
    }
    .btn:focus,.form-control:focus,.form-select:focus{
      box-shadow:0 0 0 .22rem rgba(216,174,91,.22)!important;
      border-color:var(--gold)!important;
      outline:none;
    }
    .btn-gold{
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      color:#21140a;
      box-shadow:0 12px 28px rgba(216,174,91,.22);
    }
    .btn-gold:hover,.btn-gold:active{
      color:#140c06;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(216,174,91,.32);
      border-color:rgba(255,255,255,.35);
    }
    .btn-outline-gold{
      color:var(--gold-2);
      background:rgba(11,8,7,.35);
      border-color:var(--line);
    }
    .btn-outline-gold:hover,.btn-outline-gold:active{
      color:#fff;
      border-color:var(--gold);
      background:rgba(216,174,91,.12);
      transform:translateY(-2px);
    }
    .badge-vip{
      display:inline-flex;align-items:center;gap:6px;
      padding:6px 10px;border-radius:999px;
      color:var(--gold-2);font-size:12px;font-weight:800;
      background:rgba(216,174,91,.1);
      border:1px solid var(--line);
      white-space:nowrap;
    }
    .badge-hot{color:#ffd7df;background:rgba(163,54,83,.18);border-color:rgba(163,54,83,.48)}
    .card-vip{
      position:relative;
      border:1px solid var(--line);
      background:
        linear-gradient(180deg,rgba(255,255,255,.045),rgba(255,255,255,.015)),
        linear-gradient(135deg,rgba(35,23,19,.96),rgba(18,12,11,.96));
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
      transition:var(--ease);
    }
    .card-vip::after{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(135deg,rgba(216,174,91,.08),transparent 34%,rgba(104,28,46,.08));
      pointer-events:none;
      opacity:.75;
    }
    .card-vip > *{position:relative;z-index:1}
    .card-vip:hover{
      transform:translateY(-4px);
      border-color:rgba(243,213,141,.72);
      box-shadow:var(--shadow),var(--shadow-gold);
    }
    .topbar{
      position:sticky;top:0;z-index:1000;
      background:rgba(11,8,7,.9);
      backdrop-filter:blur(16px);
      border-bottom:1px solid var(--line);
    }
    .nav-main{
      min-height:74px;
      display:grid;
      grid-template-columns:auto minmax(280px,1fr) auto;
      align-items:center;
      gap:22px;
    }
    .brand{
      display:flex;align-items:center;gap:12px;font-weight:950;letter-spacing:-.04em;font-size:22px;
    }
    .brand-mark{
      width:42px;height:42px;border-radius:14px;
      display:grid;place-items:center;
      color:#241508;font-weight:950;
      background:linear-gradient(135deg,var(--gold-2),var(--gold) 58%,#8a5a21);
      box-shadow:0 10px 26px rgba(216,174,91,.25);
    }
    .search-wrap{
      display:flex;align-items:center;gap:10px;
      max-width:620px;margin-left:auto;width:100%;
      border:1px solid var(--line);
      border-radius:999px;
      padding:7px 8px 7px 16px;
      background:rgba(27,20,17,.72);
    }
    .search-wrap span{color:var(--gold);font-weight:900}
    .search-wrap input{
      flex:1;min-width:0;border:0;background:transparent;color:var(--text);
      outline:0;font-size:14px;
    }
    .search-wrap input::placeholder{color:var(--soft)}
    .channel-row{
      border-top:1px solid rgba(216,174,91,.12);
      background:linear-gradient(90deg,rgba(216,174,91,.06),rgba(104,28,46,.08),rgba(216,174,91,.04));
    }
    .channel-tabs{
      display:flex;gap:10px;align-items:center;
      overflow-x:auto;scrollbar-width:none;
      padding:12px 0;
    }
    .channel-tabs::-webkit-scrollbar{display:none}
    .channel-tabs a{
      flex:0 0 auto;
      border:1px solid transparent;
      color:var(--muted);
      padding:9px 15px;
      border-radius:999px;
      font-weight:800;
      font-size:14px;
    }
    .channel-tabs a:hover{
      color:var(--gold-2);
      border-color:var(--line);
      background:rgba(216,174,91,.08);
    }
    .channel-tabs a.active{
      color:#201307;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      box-shadow:0 10px 24px rgba(216,174,91,.18);
    }
    .hero{
      padding:28px 0 0;
    }
    .hero-strip{
      border:1px solid var(--line);
      border-radius:0 0 28px 28px;
      background:
        linear-gradient(90deg,rgba(255,247,232,.95),rgba(243,213,141,.88) 48%,rgba(104,28,46,.92)),
        radial-gradient(circle at 80% 20%,rgba(255,255,255,.32),transparent 28%);
      color:#1f130a;
      overflow:hidden;
      box-shadow:0 26px 80px rgba(0,0,0,.38);
    }
    .hero-inner{
      display:grid;
      grid-template-columns:1.02fr 1.38fr;
      gap:22px;
      align-items:stretch;
      padding:30px;
    }
    .hero-copy{
      padding:10px 0;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .hero-kicker{
      display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px
    }
    .hero-kicker .mini{
      border-radius:999px;padding:6px 10px;font-size:12px;font-weight:900;
      background:rgba(35,20,10,.08);border:1px solid rgba(35,20,10,.16);
    }
    h1{
      font-size:clamp(32px,5vw,58px);
      line-height:1.02;
      margin:0 0 14px;
      font-weight:950;
      letter-spacing:-.065em;
      max-width:720px;
    }
    .hero-copy p{
      margin:0;
      font-size:17px;
      line-height:1.78;
      color:#3a2514;
      max-width:680px;
      font-weight:650;
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:20px}
    .hero-actions .btn-outline-gold{background:#160f0c;color:var(--gold-2)}
    .matrix{
      display:grid;
      grid-template-columns:repeat(6,1fr);
      gap:12px;
      align-content:stretch;
    }
    .matrix-item{
      min-height:110px;
      border-radius:18px;
      padding:15px;
      background:rgba(12,8,7,.88);
      border:1px solid rgba(216,174,91,.34);
      color:var(--text);
      box-shadow:0 18px 36px rgba(0,0,0,.24);
      transition:var(--ease);
    }
    .matrix-item:hover{transform:translateY(-3px);border-color:var(--gold);box-shadow:0 16px 38px rgba(216,174,91,.18)}
    .matrix-item strong{display:block;font-size:17px;margin-bottom:6px;color:var(--gold-2)}
    .matrix-item small{display:block;color:var(--muted);line-height:1.55}
    .matrix-item.big{grid-column:span 3}
    .matrix-item.mid{grid-column:span 2}
    .question-grid{
      display:grid;grid-template-columns:repeat(3,1fr);gap:16px;
    }
    .question-card{padding:20px}
    .question-card .icon{
      width:38px;height:38px;border-radius:13px;
      display:grid;place-items:center;
      background:rgba(216,174,91,.12);
      color:var(--gold-2);
      border:1px solid var(--line);
      margin-bottom:12px;
      font-weight:950;
    }
    .question-card h3{font-size:18px;margin:0 0 8px;font-weight:900}
    .question-card p{margin:0;color:var(--muted);font-size:14px}
    .vertical-stage{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:22px;
      align-items:stretch;
    }
    .poster-stack{
      min-height:520px;
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      background:
        linear-gradient(180deg,rgba(104,28,46,.68),rgba(16,10,9,.92)),
        repeating-linear-gradient(135deg,rgba(255,255,255,.04) 0 1px,transparent 1px 12px);
    }
    .poster-title{font-size:34px;line-height:1.12;font-weight:950;letter-spacing:-.05em;margin:12px 0}
    .poster-list{display:grid;gap:10px}
    .poster-list a{
      display:flex;justify-content:space-between;align-items:center;gap:14px;
      padding:13px 14px;border-radius:14px;
      background:rgba(0,0,0,.22);
      border:1px solid rgba(255,247,232,.1);
      color:var(--muted);
      font-weight:750;
    }
    .poster-list a:hover{color:var(--gold-2);border-color:var(--line);background:rgba(216,174,91,.08)}
    .solution-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}
    .solution-card{padding:22px;min-height:238px}
    .solution-card h3{font-size:21px;margin:12px 0 8px;font-weight:950}
    .solution-card p{color:var(--muted);font-size:15px;margin:0 0 18px}
    .rank-panel{padding:24px}
    .rank-list{display:grid;gap:10px;margin-top:16px}
    .rank-row{
      display:grid;grid-template-columns:36px 1fr auto;gap:12px;align-items:center;
      padding:13px;border-radius:14px;
      background:rgba(255,255,255,.035);
      border:1px solid rgba(255,255,255,.08);
    }
    .rank-no{
      width:30px;height:30px;border-radius:10px;
      display:grid;place-items:center;
      color:#21140a;background:linear-gradient(135deg,var(--gold-2),var(--gold));
      font-weight:950;
    }
    .rank-row b{font-size:15px}
    .rank-row small{color:var(--muted);display:block;margin-top:2px}
    .rank-score{color:var(--gold-2);font-weight:900}
    .data-bar{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      border:1px solid var(--line);
      border-radius:var(--radius);
      overflow:hidden;
      background:linear-gradient(135deg,rgba(216,174,91,.1),rgba(104,28,46,.14));
      box-shadow:var(--shadow);
    }
    .data-item{padding:24px;border-right:1px solid var(--line-2)}
    .data-item:last-child{border-right:0}
    .data-item strong{font-size:34px;line-height:1;display:block;color:var(--gold-2);font-weight:950}
    .data-item span{display:block;margin-top:8px;color:var(--muted);font-size:14px}
    .review-wrap{
      display:grid;
      grid-template-columns:.72fr 1.28fr;
      gap:22px;
    }
    .score-card{padding:28px}
    .score{font-size:64px;font-weight:950;line-height:1;color:var(--gold-2);letter-spacing:-.06em}
    .stars{color:var(--gold);font-size:18px;letter-spacing:2px;margin:12px 0}
    .reviews{display:grid;gap:14px}
    .review{padding:20px}
    .review p{margin:10px 0 0;color:var(--muted);font-size:15px}
    .review-head{display:flex;align-items:center;justify-content:space-between;gap:12px}
    .review-head b{font-size:16px}
    .news-layout{
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:22px;
    }
    .news-list{padding:10px}
    .news-link{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:16px;
      border-radius:15px;
      border:1px solid transparent;
    }
    .news-link:hover{border-color:var(--line);background:rgba(216,174,91,.06);transform:translateX(3px)}
    .news-date{color:var(--gold-2);font-size:13px;font-weight:900;white-space:nowrap}
    .news-link b{font-size:16px}
    .news-link small{color:var(--muted)}
    .recommend-box{padding:22px}
    .tag-cloud{display:flex;flex-wrap:wrap;gap:9px;margin-top:14px}
    .tag-cloud a,.tag-cloud span{
      border:1px solid var(--line);
      border-radius:999px;
      padding:8px 11px;
      color:var(--muted);
      background:rgba(255,255,255,.025);
      font-size:13px;
      font-weight:750;
    }
    .tag-cloud a:hover{color:var(--gold-2);border-color:var(--gold);background:rgba(216,174,91,.09)}
    .compare-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .plan{padding:24px}
    .plan.featured{
      transform:translateY(-8px);
      border-color:rgba(243,213,141,.8);
      box-shadow:var(--shadow),0 0 0 1px rgba(243,213,141,.16),0 24px 50px rgba(216,174,91,.18);
    }
    .plan h3{font-size:22px;margin:12px 0 6px;font-weight:950}
    .plan .price{font-size:34px;font-weight:950;color:var(--gold-2);margin:10px 0}
    .plan ul{list-style:none;margin:18px 0 22px;padding:0;display:grid;gap:10px;color:var(--muted);font-size:14px}
    .plan li::before{content:"✓";color:var(--gold);font-weight:950;margin-right:8px}
    .faq-wrap .accordion{--bs-accordion-bg:transparent;--bs-accordion-border-color:transparent}
    .accordion-item{
      background:linear-gradient(135deg,rgba(35,23,19,.95),rgba(16,10,9,.95));
      border:1px solid var(--line)!important;
      border-radius:16px!important;
      overflow:hidden;
      margin-bottom:12px;
      color:var(--text);
    }
    .accordion-button{
      background:transparent!important;
      color:var(--text)!important;
      box-shadow:none!important;
      font-weight:900;
      padding:18px 20px;
    }
    .accordion-button:not(.collapsed){color:var(--gold-2)!important}
    .accordion-button::after{filter:sepia(1) saturate(2) brightness(1.35)}
    .accordion-body{color:var(--muted);padding:0 20px 20px;font-size:15px}
    .cta-band{
      border-radius:28px;
      padding:34px;
      border:1px solid rgba(243,213,141,.42);
      background:
        linear-gradient(135deg,rgba(216,174,91,.18),rgba(104,28,46,.28)),
        linear-gradient(180deg,rgba(35,23,19,.98),rgba(12,8,7,.98));
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
      box-shadow:var(--shadow);
    }
    .cta-band h2{font-size:clamp(24px,3vw,36px);margin:0 0 8px;font-weight:950;letter-spacing:-.04em}
    .cta-band p{margin:0;color:var(--muted);max-width:720px}
    .privacy-note{
      margin-top:18px;
      padding:16px 18px;
      color:var(--muted);
      border:1px solid rgba(255,255,255,.08);
      border-radius:16px;
      background:rgba(255,255,255,.025);
      font-size:13px;
    }
    .floating-cta{
      position:fixed;right:22px;bottom:22px;z-index:999;
      display:flex;align-items:center;gap:10px;
      padding:13px 18px;border-radius:999px;
      border:1px solid rgba(243,213,141,.55);
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      color:#201307;font-weight:950;
      box-shadow:0 18px 36px rgba(0,0,0,.36),0 0 28px rgba(216,174,91,.24);
    }
    .floating-cta:hover{transform:translateY(-3px);color:#100905}
    .modal-content{
      background:linear-gradient(180deg,#211612,#0f0a09);
      border:1px solid var(--line);
      border-radius:22px;
      color:var(--text);
      box-shadow:var(--shadow);
    }
    .modal-header,.modal-footer{border-color:rgba(216,174,91,.18)}
    .btn-close{filter:invert(1) sepia(1) saturate(2)}
    .form-label{font-weight:850;color:var(--gold-2)}
    .form-control,.form-select{
      background:rgba(0,0,0,.24)!important;
      color:var(--text)!important;
      border:1px solid rgba(216,174,91,.24)!important;
      border-radius:14px;
      padding:12px 14px;
    }
    .form-control::placeholder{color:var(--soft)}
    .site-footer{
      padding:34px 0;
      border-top:1px solid var(--line);
      background:rgba(6,4,4,.72);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .footer-brand{font-size:20px;font-weight:950;letter-spacing:-.04em}
    .footer-links{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
    .footer-links a{color:var(--muted);font-weight:750;font-size:14px}
    .footer-links a:hover{color:var(--gold-2)}
    .copyright{color:var(--soft);font-size:13px;margin-top:8px}
    @media (max-width:1199px){
      .hero-inner{grid-template-columns:1fr}
      .matrix{grid-template-columns:repeat(3,1fr)}
      .matrix-item.big,.matrix-item.mid{grid-column:span 1}
      .vertical-stage,.review-wrap,.news-layout{grid-template-columns:1fr}
    }
    @media (max-width:991px){
      .section{padding:58px 0}
      .nav-main{grid-template-columns:1fr;gap:12px;padding:14px 0}
      .search-wrap{max-width:100%;margin-left:0}
      .nav-main > .btn{justify-self:start}
      .question-grid,.compare-grid{grid-template-columns:1fr}
      .data-bar{grid-template-columns:repeat(2,1fr)}
      .data-item:nth-child(2){border-right:0}
      .data-item:nth-child(-n+2){border-bottom:1px solid var(--line-2)}
      .cta-band{grid-template-columns:1fr}
      .plan.featured{transform:none}
    }
    @media (max-width:575px){
      .site-container{width:min(100% - 22px,var(--container))}
      .hero{padding-top:14px}
      .hero-inner{padding:20px}
      .hero-actions .btn,.cta-band .btn,.nav-main > .btn{width:100%}
      .matrix{grid-template-columns:1fr}
      .solution-grid{grid-template-columns:1fr}
      .poster-stack{min-height:auto}
      .data-bar{grid-template-columns:1fr}
      .data-item{border-right:0!important;border-bottom:1px solid var(--line-2)}
      .data-item:last-child{border-bottom:0}
      .news-link{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
      .floating-cta{left:14px;right:14px;justify-content:center}
    }

/* roulang page: category2 */
:root{
      --bg:#090807;
      --bg-2:#11100e;
      --panel:#17130f;
      --panel-2:#201610;
      --panel-3:#261019;
      --gold:#d8ad5a;
      --gold-2:#f2d28a;
      --gold-deep:#8b6329;
      --wine:#7a1f35;
      --rose:#b2455d;
      --text:#fff8eb;
      --muted:#c7b99f;
      --soft:#8f816b;
      --line:rgba(216,173,90,.26);
      --line-strong:rgba(242,210,138,.58);
      --shadow:0 22px 70px rgba(0,0,0,.42);
      --shadow-gold:0 16px 42px rgba(216,173,90,.14);
      --radius:18px;
      --radius-sm:12px;
      --container:1180px;
      --ease:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",Arial,sans-serif;
      line-height:1.72;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 0%,rgba(216,173,90,.18),transparent 34%),
        radial-gradient(circle at 88% 12%,rgba(122,31,53,.30),transparent 36%),
        linear-gradient(180deg,#080706 0%,#100d0b 42%,#080706 100%);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.18;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.9),rgba(0,0,0,.12));
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--gold-2)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    ::selection{background:rgba(216,173,90,.35);color:#fff}
    .site-container{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(9,8,7,.84);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
      box-shadow:0 12px 34px rgba(0,0,0,.28);
    }
    .nav-main{
      min-height:78px;
      display:grid;
      grid-template-columns:auto minmax(280px,1fr) auto;
      gap:22px;
      align-items:center;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:900;
      letter-spacing:-.02em;
      font-size:20px;
      white-space:nowrap;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:#211409;
      font-weight:950;
      background:linear-gradient(135deg,var(--gold-2),var(--gold) 48%,#93662b);
      box-shadow:0 0 0 1px rgba(255,255,255,.16) inset,0 12px 28px rgba(216,173,90,.22);
    }
    .search-wrap{
      display:flex;
      align-items:center;
      gap:10px;
      padding:8px 8px 8px 14px;
      border:1px solid var(--line);
      background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.02));
      border-radius:999px;
      min-width:0;
    }
    .search-wrap span{
      width:26px;
      height:26px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#1d1408;
      font-weight:900;
      background:var(--gold);
      flex:0 0 auto;
    }
    .search-wrap input{
      width:100%;
      min-width:0;
      border:0;
      outline:0;
      color:var(--text);
      background:transparent;
    }
    .search-wrap input::placeholder{color:rgba(199,185,159,.72)}
    .search-wrap:focus-within{
      border-color:var(--line-strong);
      box-shadow:0 0 0 4px rgba(216,173,90,.10);
    }
    .btn{
      border-radius:999px;
      font-weight:850;
      letter-spacing:.01em;
      transition:var(--ease);
      border:1px solid transparent;
      box-shadow:none!important;
    }
    .btn-gold{
      color:#1b1207;
      background:linear-gradient(135deg,var(--gold-2),var(--gold) 55%,#a67932);
      border-color:rgba(255,232,176,.46);
      box-shadow:0 12px 32px rgba(216,173,90,.22)!important;
    }
    .btn-gold:hover,.btn-gold:focus{
      color:#120c05;
      transform:translateY(-2px);
      filter:saturate(1.08);
      box-shadow:0 18px 44px rgba(216,173,90,.30)!important;
    }
    .btn-outline-gold{
      color:var(--gold-2);
      background:rgba(216,173,90,.05);
      border-color:var(--line-strong);
    }
    .btn-outline-gold:hover,.btn-outline-gold:focus{
      color:#161009;
      background:var(--gold-2);
      border-color:var(--gold-2);
      transform:translateY(-2px);
    }
    .btn-darkline{
      color:var(--text);
      background:rgba(255,255,255,.035);
      border-color:var(--line);
    }
    .btn-darkline:hover,.btn-darkline:focus{
      color:var(--gold-2);
      border-color:var(--line-strong);
      background:rgba(216,173,90,.08);
      transform:translateY(-2px);
    }
    .channel-row{
      border-top:1px solid rgba(216,173,90,.12);
      background:linear-gradient(90deg,rgba(216,173,90,.05),rgba(122,31,53,.08),rgba(216,173,90,.04));
    }
    .channel-tabs{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      padding:12px 0;
      scrollbar-width:none;
    }
    .channel-tabs::-webkit-scrollbar{display:none}
    .channel-tabs a{
      flex:0 0 auto;
      padding:10px 18px;
      border-radius:999px;
      color:var(--muted);
      border:1px solid transparent;
      font-weight:800;
      font-size:14px;
      position:relative;
    }
    .channel-tabs a:hover{
      color:var(--gold-2);
      border-color:var(--line);
      background:rgba(255,255,255,.035);
    }
    .channel-tabs a.active{
      color:#1b1208;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      border-color:rgba(255,241,194,.55);
      box-shadow:0 10px 26px rgba(216,173,90,.18);
    }
    main{position:relative}
    .section{padding:78px 0}
    .section-tight{padding:46px 0}
    .breadcrumb-wrap{
      padding-top:28px;
      color:var(--muted);
      font-size:14px;
    }
    .breadcrumb-wrap a{color:var(--gold-2)}
    .breadcrumb-wrap .sep{margin:0 9px;color:var(--soft)}
    .hero{
      padding:38px 0 74px;
      position:relative;
    }
    .hero-shell{
      display:grid;
      grid-template-columns:minmax(0,5fr) minmax(360px,4fr);
      gap:34px;
      align-items:stretch;
    }
    .hero-copy{
      padding:40px;
      border:1px solid var(--line);
      border-radius:28px;
      background:
        linear-gradient(135deg,rgba(255,255,255,.07),rgba(255,255,255,.02) 42%),
        radial-gradient(circle at 100% 0%,rgba(216,173,90,.20),transparent 42%),
        linear-gradient(180deg,rgba(38,16,25,.72),rgba(19,13,10,.86));
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-copy:after{
      content:"";
      position:absolute;
      right:-110px;
      bottom:-120px;
      width:300px;
      height:300px;
      border-radius:50%;
      background:rgba(216,173,90,.10);
      filter:blur(10px);
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      color:var(--gold-2);
      background:rgba(216,173,90,.09);
      border:1px solid var(--line);
      font-size:13px;
      font-weight:850;
      margin-bottom:18px;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--gold-2);
      box-shadow:0 0 16px rgba(242,210,138,.8);
    }
    h1{
      font-size:clamp(34px,5vw,60px);
      line-height:1.08;
      letter-spacing:-.055em;
      margin:0 0 20px;
      font-weight:950;
    }
    .hero-sub{
      max-width:720px;
      color:var(--muted);
      font-size:18px;
      margin:0 0 26px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-bottom:28px;
      position:relative;
      z-index:2;
    }
    .hero-note{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:var(--muted);
      font-size:14px;
      padding:14px 16px;
      border:1px solid rgba(216,173,90,.18);
      border-radius:16px;
      background:rgba(0,0,0,.18);
      position:relative;
      z-index:2;
    }
    .hero-note strong{color:var(--gold-2)}
    .demo-panel{
      border:1px solid var(--line);
      border-radius:28px;
      background:
        radial-gradient(circle at 20% 0%,rgba(242,210,138,.16),transparent 35%),
        linear-gradient(180deg,rgba(32,22,16,.95),rgba(14,12,10,.95));
      box-shadow:var(--shadow);
      padding:24px;
      min-height:100%;
    }
    .panel-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:20px;
    }
    .panel-title h2,.panel-title h3{
      font-size:20px;
      margin:0;
      font-weight:950;
      letter-spacing:-.02em;
    }
    .badge-vip,.badge-soft,.badge-hot{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:6px 10px;
      font-size:12px;
      font-weight:850;
      white-space:nowrap;
    }
    .badge-vip{
      color:#1d1207;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      border:1px solid rgba(255,241,194,.5);
    }
    .badge-soft{
      color:var(--gold-2);
      background:rgba(216,173,90,.08);
      border:1px solid var(--line);
    }
    .badge-hot{
      color:#ffeaf0;
      background:rgba(178,69,93,.20);
      border:1px solid rgba(178,69,93,.36);
    }
    .demo-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      margin-bottom:18px;
    }
    .demo-tile{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(216,173,90,.20);
      background:rgba(255,255,255,.035);
      transition:var(--ease);
    }
    .demo-tile:hover{
      transform:translateY(-4px);
      border-color:var(--line-strong);
      box-shadow:var(--shadow-gold);
    }
    .demo-tile b{
      display:block;
      font-size:15px;
      margin-bottom:6px;
      color:var(--gold-2);
    }
    .demo-tile span{display:block;color:var(--muted);font-size:13px}
    .signal-bar{
      padding:16px;
      border:1px solid rgba(216,173,90,.2);
      background:linear-gradient(90deg,rgba(216,173,90,.10),rgba(122,31,53,.12));
      border-radius:18px;
    }
    .signal-line{
      height:8px;
      overflow:hidden;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      margin:10px 0;
    }
    .signal-line i{
      display:block;
      height:100%;
      width:78%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--gold),var(--rose));
      box-shadow:0 0 22px rgba(216,173,90,.30);
    }
    .signal-meta{
      display:flex;
      justify-content:space-between;
      gap:10px;
      color:var(--muted);
      font-size:13px;
    }
    .section-head{
      max-width:780px;
      margin-bottom:28px;
    }
    .section-head.center{
      margin-left:auto;
      margin-right:auto;
      text-align:center;
    }
    .section-kicker{
      color:var(--gold-2);
      font-size:13px;
      font-weight:900;
      letter-spacing:.08em;
      margin-bottom:8px;
    }
    h2{
      font-size:clamp(26px,3vw,40px);
      line-height:1.16;
      letter-spacing:-.04em;
      margin:0 0 12px;
      font-weight:950;
    }
    .lead-text{
      color:var(--muted);
      margin:0;
      font-size:16px;
    }
    .pain-grid{
      display:grid;
      grid-template-columns:1.15fr .9fr .95fr;
      gap:16px;
    }
    .pain-card{
      padding:22px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:linear-gradient(180deg,rgba(255,255,255,.055),rgba(255,255,255,.02));
      box-shadow:0 14px 38px rgba(0,0,0,.16);
      transition:var(--ease);
    }
    .pain-card:hover{
      transform:translateY(-4px);
      border-color:var(--line-strong);
      box-shadow:var(--shadow-gold);
    }
    .pain-icon{
      width:40px;height:40px;border-radius:14px;
      display:grid;place-items:center;
      color:#1a1107;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
      font-weight:950;
      margin-bottom:14px;
    }
    .pain-card h3{
      font-size:18px;
      margin:0 0 8px;
      font-weight:950;
    }
    .pain-card p{color:var(--muted);margin:0;font-size:14px}
    .feature-banner{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:24px;
      align-items:stretch;
      padding:26px;
      border-radius:26px;
      border:1px solid var(--line);
      background:
        radial-gradient(circle at 88% 18%,rgba(216,173,90,.17),transparent 36%),
        linear-gradient(135deg,rgba(122,31,53,.25),rgba(23,19,15,.95));
      box-shadow:var(--shadow);
      margin-bottom:24px;
    }
    .feature-banner h2{font-size:clamp(24px,3vw,38px)}
    .feature-list{
      display:grid;
      gap:12px;
      margin-top:18px;
    }
    .feature-list div{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:13px 14px;
      border-radius:15px;
      background:rgba(0,0,0,.20);
      border:1px solid rgba(216,173,90,.15);
      color:var(--muted);
      font-size:14px;
    }
    .feature-list strong{color:var(--text)}
    .compare-box{
      display:grid;
      gap:12px;
      align-content:center;
    }
    .compare-item{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(216,173,90,.2);
      background:rgba(255,255,255,.045);
    }
    .compare-item .top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      margin-bottom:6px;
      font-weight:900;
    }
    .compare-item p{margin:0;color:var(--muted);font-size:14px}
    .content-layout{
      display:grid;
      grid-template-columns:minmax(0,1fr) 320px;
      gap:24px;
      align-items:start;
    }
    .entry-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:18px;
    }
    .entry-card{
      position:relative;
      min-height:220px;
      padding:22px;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:
        linear-gradient(180deg,rgba(255,255,255,.06),rgba(255,255,255,.025)),
        radial-gradient(circle at 100% 0%,rgba(216,173,90,.12),transparent 30%);
      box-shadow:0 16px 44px rgba(0,0,0,.20);
      transition:var(--ease);
      overflow:hidden;
    }
    .entry-card:before{
      content:"";
      position:absolute;
      top:0;left:0;right:0;
      height:3px;
      background:linear-gradient(90deg,var(--gold),transparent 58%,var(--rose));
      opacity:.75;
    }
    .entry-card:hover{
      transform:translateY(-4px);
      border-color:var(--line-strong);
      box-shadow:var(--shadow-gold);
    }
    .entry-card h3{
      font-size:20px;
      line-height:1.25;
      margin:14px 0 8px;
      font-weight:950;
      letter-spacing:-.02em;
    }
    .entry-card:hover h3{color:var(--gold-2)}
    .entry-card p{
      color:var(--muted);
      margin:0 0 18px;
      font-size:14px;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-bottom:18px;
    }
    .entry-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:var(--soft);
      font-size:13px;
    }
    .side-stack{
      display:grid;
      gap:18px;
      position:sticky;
      top:148px;
    }
    .side-card{
      padding:20px;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:rgba(23,19,15,.88);
      box-shadow:0 16px 42px rgba(0,0,0,.22);
    }
    .side-card h3{
      font-size:18px;
      margin:0 0 14px;
      font-weight:950;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag-cloud a,.tag-cloud span{
      display:inline-flex;
      padding:8px 11px;
      border-radius:999px;
      color:var(--muted);
      background:rgba(255,255,255,.035);
      border:1px solid rgba(216,173,90,.16);
      font-size:13px;
      font-weight:760;
    }
    .tag-cloud a:hover{
      color:#1b1207;
      background:var(--gold-2);
      border-color:var(--gold-2);
    }
    .notice-list{
      display:grid;
      gap:10px;
      padding:0;
      margin:0;
      list-style:none;
    }
    .notice-list li{
      padding-left:18px;
      position:relative;
      color:var(--muted);
      font-size:14px;
    }
    .notice-list li:before{
      content:"";
      position:absolute;
      left:0;
      top:.72em;
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--gold);
      box-shadow:0 0 12px rgba(216,173,90,.55);
    }
    .stats-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      padding:18px;
      border:1px solid var(--line);
      border-radius:24px;
      background:linear-gradient(90deg,rgba(216,173,90,.08),rgba(122,31,53,.11),rgba(216,173,90,.06));
    }
    .stat-item{
      padding:18px;
      border-radius:18px;
      background:rgba(0,0,0,.22);
      border:1px solid rgba(216,173,90,.14);
    }
    .stat-num{
      display:block;
      color:var(--gold-2);
      font-size:30px;
      line-height:1;
      font-weight:950;
      letter-spacing:-.04em;
      margin-bottom:8px;
    }
    .stat-item span:last-child{color:var(--muted);font-size:13px}
    .steps{
      display:grid;
      grid-template-columns:.75fr 1.25fr;
      gap:24px;
      align-items:start;
    }
    .step-timeline{
      display:grid;
      gap:14px;
    }
    .step-card{
      display:grid;
      grid-template-columns:48px 1fr;
      gap:14px;
      padding:18px;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:rgba(255,255,255,.035);
      transition:var(--ease);
    }
    .step-card:hover{
      transform:translateX(4px);
      border-color:var(--line-strong);
    }
    .step-no{
      width:48px;height:48px;border-radius:16px;
      display:grid;place-items:center;
      color:#1d1308;
      font-weight:950;
      background:linear-gradient(135deg,var(--gold-2),var(--gold));
    }
    .step-card h3{font-size:17px;margin:0 0 4px;font-weight:950}
    .step-card p{margin:0;color:var(--muted);font-size:14px}
    .cta-panel{
      display:grid;
      grid-template-columns:1fr auto;
      gap:22px;
      align-items:center;
      padding:30px;
      border-radius:26px;
      border:1px solid var(--line-strong);
      background:
        radial-gradient(circle at 8% 0%,rgba(242,210,138,.20),transparent 32%),
        linear-gradient(135deg,rgba(39,20,12,.94),rgba(38,16,25,.78));
      box-shadow:var(--shadow);
    }
    .cta-panel h2{margin-bottom:8px}
    .cta-panel p{margin:0;color:var(--muted)}
    .privacy-box{
      padding:18px 20px;
      border:1px solid rgba(216,173,90,.18);
      border-radius:18px;
      background:rgba(255,255,255,.028);
      color:var(--muted);
      font-size:14px;
    }
    .privacy-box strong{color:var(--gold-2)}
    .accordion{
      display:grid;
      gap:12px;
    }
    .accordion-item{
      color:var(--text);
      background:rgba(255,255,255,.035);
      border:1px solid var(--line)!important;
      border-radius:var(--radius)!important;
      overflow:hidden;
    }
    .accordion-button{
      color:var(--text);
      background:rgba(255,255,255,.02);
      font-weight:900;
      padding:18px 20px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--gold-2);
      background:rgba(216,173,90,.08);
    }
    .accordion-button:focus{
      border-color:var(--line-strong);
      box-shadow:0 0 0 4px rgba(216,173,90,.10)!important;
    }
    .accordion-button::after{
      filter:invert(83%) sepia(26%) saturate(583%) hue-rotate(356deg) brightness(98%) contrast(92%);
    }
    .accordion-body{
      color:var(--muted);
      padding:0 20px 20px;
      font-size:15px;
    }
    .modal-content{
      color:var(--text);
      background:
        radial-gradient(circle at 90% 0%,rgba(216,173,90,.16),transparent 36%),
        linear-gradient(180deg,#201610,#0f0d0b);
      border:1px solid var(--line-strong);
      border-radius:24px;
      box-shadow:var(--shadow);
    }
    .modal-header,.modal-footer{
      border-color:rgba(216,173,90,.16);
    }
    .modal-title{font-weight:950}
    .btn-close{
      filter:invert(1) sepia(.4) saturate(1.6);
      opacity:.9;
    }
    .form-label{
      color:var(--gold-2);
      font-weight:850;
      margin-bottom:8px;
    }
    .form-control,.form-select{
      color:var(--text);
      background:rgba(0,0,0,.22);
      border:1px solid rgba(216,173,90,.26);
      border-radius:14px;
      padding:12px 14px;
    }
    .form-control:focus,.form-select:focus{
      color:var(--text);
      background:rgba(0,0,0,.30);
      border-color:var(--gold-2);
      box-shadow:0 0 0 4px rgba(216,173,90,.12);
    }
    .form-control::placeholder{color:rgba(199,185,159,.62)}
    .site-footer{
      border-top:1px solid var(--line);
      background:rgba(5,5,4,.78);
      padding:30px 0;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:22px;
      align-items:center;
    }
    .footer-brand{
      color:var(--gold-2);
      font-size:18px;
      font-weight:950;
      margin-bottom:6px;
    }
    .copyright{
      color:var(--soft);
      font-size:13px;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:10px;
    }
    .footer-links a{
      color:var(--muted);
      font-size:14px;
      padding:8px 10px;
      border-radius:999px;
      border:1px solid transparent;
    }
    .footer-links a:hover{
      color:var(--gold-2);
      border-color:var(--line);
      background:rgba(216,173,90,.06);
    }
    .floating-lead{
      position:fixed;
      right:22px;
      bottom:22px;
      z-index:900;
      padding:12px 18px;
    }
    @media (max-width:1199px){
      .nav-main{grid-template-columns:auto 1fr;gap:16px}
      .nav-main>.btn-gold{grid-column:2;justify-self:end}
      .hero-shell,.feature-banner,.steps{grid-template-columns:1fr}
      .content-layout{grid-template-columns:1fr}
      .side-stack{position:static;grid-template-columns:repeat(3,1fr)}
      .stats-strip{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991px){
      .nav-main{
        grid-template-columns:1fr;
        padding:16px 0;
      }
      .brand{justify-content:center}
      .search-wrap{width:100%}
      .nav-main>.btn-gold{grid-column:auto;justify-self:stretch}
      .hero{padding-top:26px}
      .hero-copy{padding:28px}
      .pain-grid,.entry-grid,.side-stack{grid-template-columns:1fr}
      .demo-grid{grid-template-columns:1fr 1fr}
      .cta-panel{grid-template-columns:1fr}
      .cta-panel .btn{justify-self:start}
      .section{padding:58px 0}
    }
    @media (max-width:576px){
      .site-container{width:min(100% - 24px,var(--container))}
      .hero-copy,.demo-panel,.feature-banner,.cta-panel{border-radius:22px;padding:22px}
      .hero-actions,.search-wrap{flex-direction:column;align-items:stretch;border-radius:22px}
      .search-wrap span{display:none}
      .btn{width:100%;padding-top:12px!important;padding-bottom:12px!important}
      .demo-grid,.stats-strip{grid-template-columns:1fr}
      .entry-foot{align-items:flex-start;flex-direction:column}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
      .floating-lead{left:12px;right:12px;width:auto}
      .channel-tabs a{padding:9px 14px}
    }

/* roulang page: category1 */
:root{
      --bg:#07080c;
      --bg-2:#0d1017;
      --panel:#10141d;
      --panel-2:#161b26;
      --panel-3:#1a202d;
      --line:rgba(229,195,112,.18);
      --line-strong:rgba(229,195,112,.34);
      --text:#f7f1e8;
      --muted:#b7ad9e;
      --muted-2:#8f8a82;
      --gold:#d4af5a;
      --gold-2:#f0d58c;
      --rose:#7f2d3d;
      --shadow:0 24px 60px rgba(0,0,0,.46);
      --shadow-soft:0 14px 36px rgba(0,0,0,.28);
      --radius:18px;
      --radius-sm:14px;
      --radius-xs:12px;
      --space:24px;
      --container:1240px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        radial-gradient(1200px 600px at 12% -8%, rgba(212,175,90,.15), transparent 55%),
        radial-gradient(900px 500px at 100% 0%, rgba(127,45,61,.13), transparent 45%),
        radial-gradient(800px 500px at 50% 100%, rgba(255,255,255,.04), transparent 50%),
        linear-gradient(180deg, #05060a 0%, #080a0f 22%, #0b0d13 100%);
      font-family: "PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,-apple-system,sans-serif;
      line-height:1.7;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(115deg, rgba(255,255,255,.02) 0 1px, transparent 1px 100%) 0 0/30px 30px,
        linear-gradient(25deg, rgba(255,255,255,.015) 0 1px, transparent 1px 100%) 0 0/44px 44px;
      opacity:.22;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.55) 60%, rgba(0,0,0,.2));
    }
    a{color:inherit;text-decoration:none}
    a:hover{color:inherit}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    :focus-visible{
      outline:2px solid rgba(240,213,140,.95);
      outline-offset:3px;
      box-shadow:0 0 0 4px rgba(212,175,90,.12);
    }
    .site-container{
      width:min(var(--container), calc(100% - 32px));
      margin-inline:auto;
    }
    .topbar{
      position:sticky;
      top:0;
      z-index:1030;
      backdrop-filter: blur(16px);
      background:rgba(7,8,12,.82);
      border-bottom:1px solid rgba(255,255,255,.06);
      box-shadow:0 8px 28px rgba(0,0,0,.22);
    }
    .nav-main{
      display:flex;
      align-items:center;
      gap:16px;
      padding:14px 0;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:.2px;
      color:var(--text);
      white-space:nowrap;
      flex:0 0 auto;
    }
    .brand-mark{
      width:40px;height:40px;border-radius:14px;
      display:grid;place-items:center;
      background:
        linear-gradient(145deg, rgba(240,213,140,.22), rgba(212,175,90,.1)),
        linear-gradient(180deg, #241d12, #14161d);
      border:1px solid var(--line-strong);
      color:var(--gold-2);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08), 0 10px 22px rgba(0,0,0,.28);
      font-size:1.05rem;
    }
    .brand span:last-child{
      font-size:1.08rem;
      line-height:1.1;
    }
    .search-wrap{
      flex:1 1 auto;
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(229,195,112,.2);
      background:linear-gradient(180deg, rgba(18,21,30,.92), rgba(12,14,19,.92));
      box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
      min-width:0;
    }
    .search-wrap span{
      color:var(--gold);
      font-weight:700;
      font-size:.9rem;
      width:24px;
      text-align:center;
      flex:0 0 auto;
    }
    .search-wrap input{
      border:none;
      outline:none;
      background:transparent;
      color:var(--text);
      min-width:0;
      flex:1 1 auto;
    }
    .search-wrap input::placeholder{color:#8f8678}
    .search-wrap:focus-within{
      border-color:rgba(240,213,140,.42);
      box-shadow:0 0 0 4px rgba(212,175,90,.08);
    }
    .btn-gold,
    .btn-outline-gold{
      border-radius:999px;
      padding:.82rem 1.15rem;
      font-weight:700;
      border:1px solid transparent;
      transition:transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease, opacity .2s ease;
      letter-spacing:.2px;
    }
    .btn-gold{
      color:#1b1408;
      background:linear-gradient(180deg, var(--gold-2), var(--gold));
      box-shadow:0 16px 26px rgba(212,175,90,.18), inset 0 1px 0 rgba(255,255,255,.16);
      border-color:rgba(255,231,168,.55);
    }
    .btn-gold:hover,
    .btn-gold:focus-visible{
      color:#110d05;
      transform:translateY(-1px);
      box-shadow:0 18px 32px rgba(212,175,90,.22), 0 0 0 4px rgba(212,175,90,.12);
    }
    .btn-outline-gold{
      color:var(--gold-2);
      border-color:rgba(212,175,90,.45);
      background:rgba(255,255,255,.01);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
    }
    .btn-outline-gold:hover,
    .btn-outline-gold:focus-visible{
      color:var(--text);
      border-color:rgba(240,213,140,.7);
      background:rgba(212,175,90,.12);
      transform:translateY(-1px);
      box-shadow:0 10px 22px rgba(0,0,0,.24);
    }
    .channel-row{
      border-top:1px solid rgba(255,255,255,.05);
      background:linear-gradient(180deg, rgba(255,255,255,.01), rgba(255,255,255,.00));
    }
    .channel-tabs{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:10px 0 12px;
      scrollbar-width:none;
    }
    .channel-tabs::-webkit-scrollbar{display:none}
    .channel-tabs a{
      flex:0 0 auto;
      padding:9px 14px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.06);
      background:rgba(255,255,255,.02);
      color:#d7d0c7;
      font-weight:600;
      letter-spacing:.1px;
      transition:all .2s ease;
      white-space:nowrap;
    }
    .channel-tabs a:hover{
      color:#fff;
      border-color:rgba(240,213,140,.36);
      background:rgba(212,175,90,.09);
      transform:translateY(-1px);
    }
    .channel-tabs a.active{
      color:#191209;
      background:linear-gradient(180deg, var(--gold-2), var(--gold));
      border-color:rgba(255,232,177,.7);
      box-shadow:0 10px 26px rgba(212,175,90,.22);
    }
    .page-shell{
      position:relative;
      padding:26px 0 72px;
    }
    .page-shell > section,
    .page-shell > article{
      margin-bottom:22px;
    }
    .surface{
      background:linear-gradient(180deg, rgba(18,22,31,.92), rgba(12,14,20,.95));
      border:1px solid rgba(255,255,255,.06);
      border-radius:var(--radius);
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
    }
    .surface::before{
      content:"";
      position:absolute;
      inset:0;
      border-radius:inherit;
      pointer-events:none;
      background:linear-gradient(135deg, rgba(240,213,140,.14), transparent 28%, transparent 70%, rgba(127,45,61,.09));
      opacity:.65;
    }
    .surface-inner{position:relative;z-index:1}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:.88rem;
      color:var(--gold-2);
      background:rgba(212,175,90,.1);
      border:1px solid rgba(212,175,90,.22);
      border-radius:999px;
      padding:7px 12px;
      margin-bottom:14px;
      letter-spacing:.2px;
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--gold);
      box-shadow:0 0 0 4px rgba(212,175,90,.12);
    }
    .breadcrumb-wrap{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      padding:0 0 14px;
      color:var(--muted);
      font-size:.94rem;
      flex-wrap:wrap;
    }
    .breadcrumb-wrap a{
      color:#e5ddd0;
    }
    .breadcrumb-wrap .crumbs{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
    }
    .breadcrumb-wrap .crumbs span{
      color:#6f665a;
    }
    .mini-tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
      color:#dbd4ca;
      font-size:.85rem;
      margin:4px 6px 0 0;
      white-space:nowrap;
    }
    .mini-tag strong{color:var(--gold-2)}
    .intro-grid{
      display:grid;
      grid-template-columns: 1.08fr .92fr;
      gap:18px;
      align-items:stretch;
    }
    .intro-left,
    .intro-right{
      padding:28px;
      min-height:100%;
    }
    .intro-left h1{
      margin:0 0 14px;
      font-size:clamp(2rem, 4vw, 3.5rem);
      font-weight:900;
      line-height:1.08;
      letter-spacing:-.02em;
    }
    .intro-left .summary{
      max-width:60ch;
      color:#ddd4c6;
      font-size:1.02rem;
      margin-bottom:18px;
    }
    .question-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:12px;
      margin-top:18px;
    }
    .question-card{
      padding:14px 14px 15px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
      border:1px solid rgba(255,255,255,.08);
      min-height:100px;
    }
    .question-card .q-mark{
      color:var(--gold-2);
      font-size:1rem;
      margin-bottom:8px;
      font-weight:800;
    }
    .question-card p{
      margin:0;
      color:#e5ddd0;
      font-weight:600;
      line-height:1.45;
    }
    .intro-right{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .matrix-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
    }
    .matrix-top h2{
      margin:0;
      font-size:1.2rem;
      font-weight:800;
    }
    .matrix-top small{
      display:block;
      color:var(--muted);
      margin-top:4px;
    }
    .matrix-grid{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:12px;
    }
    .matrix-card{
      padding:15px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(20,23,33,.96), rgba(14,16,22,.96));
      border:1px solid rgba(212,175,90,.16);
      min-height:118px;
      position:relative;
      overflow:hidden;
      transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }
    .matrix-card:hover{
      transform:translateY(-4px);
      border-color:rgba(240,213,140,.38);
      box-shadow:0 16px 34px rgba(0,0,0,.32), 0 0 0 1px rgba(240,213,140,.08) inset;
    }
    .matrix-card .badge{
      display:inline-flex;
      align-items:center;
      padding:5px 9px;
      border-radius:999px;
      background:rgba(212,175,90,.12);
      color:var(--gold-2);
      font-size:.78rem;
      font-weight:700;
      margin-bottom:10px;
      border:1px solid rgba(212,175,90,.16);
    }
    .matrix-card strong{
      display:block;
      font-size:1rem;
      margin-bottom:6px;
      line-height:1.35;
    }
    .matrix-card p{
      color:var(--muted);
      margin:0;
      font-size:.94rem;
      line-height:1.55;
    }
    .matrix-actions{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:auto;
    }
    .matrix-actions .btn{
      padding:.62rem .95rem;
      font-size:.92rem;
    }
    .stats-strip{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:14px;
    }
    .stat-card{
      padding:18px 18px 16px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(17,20,29,.95), rgba(11,13,18,.96));
      border:1px solid rgba(255,255,255,.06);
      position:relative;
      overflow:hidden;
    }
    .stat-card::after{
      content:"";
      position:absolute;
      inset:auto -20% -45% auto;
      width:120px;height:120px;border-radius:50%;
      background:radial-gradient(circle, rgba(212,175,90,.16), transparent 70%);
      pointer-events:none;
    }
    .stat-num{
      font-size:1.65rem;
      font-weight:900;
      line-height:1.05;
      color:var(--gold-2);
      margin-bottom:6px;
      letter-spacing:-.02em;
    }
    .stat-label{
      color:#eee5d6;
      font-weight:700;
      margin-bottom:4px;
    }
    .stat-note{
      color:var(--muted);
      font-size:.92rem;
      margin:0;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:16px;
      margin-bottom:14px;
      flex-wrap:wrap;
    }
    .section-head h2{
      margin:0;
      font-weight:850;
      font-size:1.45rem;
      letter-spacing:-.01em;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
    }
    .filter-panel{
      padding:18px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(17,21,30,.95), rgba(13,15,21,.96));
      border:1px solid rgba(255,255,255,.06);
      box-shadow:var(--shadow-soft);
    }
    .filter-row{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.02);
      color:#dcd5ca;
      transition:all .2s ease;
      font-size:.92rem;
      font-weight:600;
      cursor:pointer;
      user-select:none;
    }
    .pill:hover{
      border-color:rgba(240,213,140,.32);
      color:#fff;
      background:rgba(212,175,90,.09);
      transform:translateY(-1px);
    }
    .pill.active{
      color:#181207;
      background:linear-gradient(180deg, var(--gold-2), var(--gold));
      border-color:rgba(255,231,168,.62);
      box-shadow:0 10px 24px rgba(212,175,90,.2);
    }
    .content-grid{
      display:grid;
      grid-template-columns:minmax(0, 1fr) 320px;
      gap:18px;
      align-items:start;
    }
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(3, minmax(0,1fr));
      gap:14px;
    }
    .entry-card{
      padding:16px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(18,22,31,.96), rgba(14,16,22,.96));
      border:1px solid rgba(255,255,255,.07);
      box-shadow:0 10px 28px rgba(0,0,0,.22);
      height:100%;
      display:flex;
      flex-direction:column;
      transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .entry-card:hover{
      transform:translateY(-4px);
      border-color:rgba(240,213,140,.34);
      box-shadow:0 18px 38px rgba(0,0,0,.32);
    }
    .entry-card .card-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:8px;
      margin-bottom:12px;
    }
    .entry-card h3{
      margin:0;
      font-size:1.02rem;
      font-weight:800;
      line-height:1.35;
    }
    .entry-card .badge{
      border-radius:999px;
      padding:6px 9px;
      background:rgba(127,45,61,.15);
      border:1px solid rgba(127,45,61,.28);
      color:#efc2cd;
      font-size:.76rem;
      flex:0 0 auto;
    }
    .entry-card p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:.94rem;
      line-height:1.6;
      min-height:4.8em;
    }
    .entry-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-bottom:14px;
    }
    .entry-meta span{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 9px;
      border-radius:999px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.07);
      color:#ded5c8;
      font-size:.8rem;
      white-space:nowrap;
    }
    .entry-card .btn{
      margin-top:auto;
      width:100%;
    }
    .sidebar-card{
      padding:18px;
      border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(18,22,31,.96), rgba(12,14,20,.96));
      border:1px solid rgba(255,255,255,.07);
      box-shadow:var(--shadow-soft);
      margin-bottom:14px;
      position:sticky;
      top:116px;
    }
    .sidebar-card h3{
      margin:0 0 10px;
      font-size:1.05rem;
      font-weight:850;
    }
    .sidebar-card p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag-cloud a{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
      color:#e0d8cb;
      font-size:.88rem;
      transition:all .2s ease;
    }
    .tag-cloud a:hover{
      border-color:rgba(240,213,140,.34);
      background:rgba(212,175,90,.08);
      transform:translateY(-2px);
    }
    .side-list{
      display:grid;
      gap:10px;
      margin-top:14px;
    }
    .side-list a{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:10px;
      padding:12px 13px;
      border-radius:14px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.06);
      color:#e8e1d6;
      transition:all .2s ease;
    }
    .side-list a:hover{
      border-color:rgba(240,213,140,.34);
      background:rgba(212,175,90,.08);
      transform:translateY(-2px);
    }
    .safe-note{
      margin-top:14px;
      padding:14px;
      border-radius:14px;
      background:linear-gradient(180deg, rgba(127,45,61,.12), rgba(255,255,255,.02));
      border:1px solid rgba(127,45,61,.22);
      color:#eaded6;
      font-size:.92rem;
    }
    .safe-note strong{color:var(--gold-2)}
    .load-more-wrap{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:18px;
    }
    .pagination{
      margin:0;
      gap:8px;
      flex-wrap:wrap;
    }
    .pagination .page-link{
      border-radius:12px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.02);
      color:#e2dbd0;
      box-shadow:none;
      padding:.62rem .9rem;
      min-width:42px;
      text-align:center;
    }
    .pagination .page-link:hover{
      background:rgba(212,175,90,.08);
      border-color:rgba(240,213,140,.28);
      color:#fff;
    }
    .pagination .page-item.active .page-link{
      color:#181207;
      background:linear-gradient(180deg, var(--gold-2), var(--gold));
      border-color:rgba(255,231,168,.65);
    }
    .privacy-bar{
      padding:16px 18px;
      border-radius:16px;
      background:rgba(255,255,255,.02);
      border:1px solid rgba(255,255,255,.06);
      color:#cfc6b7;
      font-size:.92rem;
    }
    .privacy-bar strong{color:var(--gold-2)}
    .faq-wrap{
      padding:22px 20px;
    }
    .accordion{
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: rgba(255,255,255,.08);
      --bs-accordion-btn-color: var(--text);
      --bs-accordion-active-color: var(--text);
      --bs-accordion-active-bg: rgba(212,175,90,.06);
      --bs-accordion-btn-focus-border-color: rgba(240,213,140,.5);
      --bs-accordion-btn-focus-box-shadow: 0 0 0 4px rgba(212,175,90,.08);
      --bs-accordion-inner-border-radius: 16px;
      --bs-accordion-btn-padding-x: 1.1rem;
      --bs-accordion-btn-padding-y: 1rem;
      --bs-accordion-body-padding-x: 1.1rem;
      --bs-accordion-body-padding-y: 1rem;
    }
    .accordion-item{
      background:rgba(255,255,255,.02);
      border-radius:16px!important;
      overflow:hidden;
      margin-bottom:12px;
      border:1px solid rgba(255,255,255,.08);
    }
    .accordion-button{
      background:transparent;
      box-shadow:none;
      font-weight:700;
    }
    .accordion-button:not(.collapsed){
      color:#fff;
      background:rgba(212,175,90,.06);
    }
    .accordion-button::after{
      filter:brightness(1.4) sepia(1) saturate(2) hue-rotate(350deg);
    }
    .accordion-body{
      color:#d8d0c2;
      border-top:1px solid rgba(255,255,255,.05);
    }
    .cta-band{
      padding:24px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
      flex-wrap:wrap;
    }
    .cta-band h2{
      margin:0 0 8px;
      font-weight:900;
      font-size:1.5rem;
    }
    .cta-band p{
      margin:0;
      color:var(--muted);
      max-width:62ch;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .site-footer{
      border-top:1px solid rgba(255,255,255,.06);
      background:linear-gradient(180deg, rgba(8,9,13,.8), rgba(5,6,9,.98));
      padding:22px 0 28px;
    }
    .footer-grid{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      align-items:flex-start;
    }
    .footer-brand{
      font-size:1.08rem;
      font-weight:900;
      margin-bottom:8px;
    }
    .copyright{
      color:var(--muted);
      font-size:.93rem;
      max-width:60ch;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px 16px;
      align-items:center;
      justify-content:flex-end;
    }
    .footer-links a{
      color:#ded5c7;
      font-size:.94rem;
    }
    .footer-links a:hover{color:var(--gold-2)}
    .modal-content{
      background:linear-gradient(180deg, rgba(18,22,31,.98), rgba(10,12,17,.98));
      border:1px solid rgba(240,213,140,.18);
      border-radius:20px;
      box-shadow:var(--shadow);
      color:var(--text);
    }
    .modal-header{
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .modal-title{font-weight:850}
    .btn-close{
      filter:invert(1) grayscale(100%) brightness(1.4);
      opacity:.8;
      box-shadow:none!important;
    }
    .form-label{
      color:#e6ddd1;
      font-weight:600;
    }
    .form-control,.form-select{
      background:#0d1016;
      border:1px solid rgba(255,255,255,.08);
      color:var(--text);
      border-radius:14px;
      padding:.84rem .95rem;
      box-shadow:none;
    }
    .form-control::placeholder{color:#867d71}
    .form-control:focus,.form-select:focus{
      background:#0d1016;
      color:var(--text);
      border-color:rgba(240,213,140,.6);
      box-shadow:0 0 0 4px rgba(212,175,90,.1);
    }
    .floating-lead{
      position:fixed;
      right:18px;
      bottom:18px;
      z-index:1035;
      border:none;
      border-radius:999px;
      padding:.95rem 1.2rem;
      background:linear-gradient(180deg, var(--gold-2), var(--gold));
      color:#181207;
      font-weight:800;
      box-shadow:0 16px 34px rgba(0,0,0,.32), 0 0 0 1px rgba(255,231,168,.55);
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .floating-lead:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(0,0,0,.36), 0 0 0 1px rgba(255,231,168,.72);
    }
    .small-muted{
      color:var(--muted);
      font-size:.88rem;
    }
    @media (max-width: 1199.98px){
      .intro-grid{grid-template-columns:1fr}
      .content-grid{grid-template-columns:1fr}
      .sidebar-card{position:relative;top:auto}
      .stats-strip{grid-template-columns:repeat(2, minmax(0,1fr))}
      .entry-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
    }
    @media (max-width: 991.98px){
      .nav-main{
        flex-wrap:wrap;
      }
      .search-wrap{
        order:3;
        flex-basis:100%;
      }
      .intro-left,.intro-right{padding:22px}
      .question-grid{grid-template-columns:1fr}
      .matrix-grid{grid-template-columns:1fr 1fr}
      .entry-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
    }
    @media (max-width: 767.98px){
      .site-container{width:min(calc(100% - 22px), var(--container))}
      .stats-strip{grid-template-columns:1fr}
      .matrix-grid{grid-template-columns:1fr}
      .entry-grid{grid-template-columns:1fr}
      .cta-band{padding:20px}
      .section-head{align-items:flex-start}
      .page-shell{padding-top:18px}
    }
    @media (max-width: 575.98px){
      .nav-main{gap:12px}
      .brand span:last-child{font-size:1rem}
      .search-wrap{
        padding:8px 10px;
        border-radius:16px;
      }
      .search-wrap button{
        width:100%;
      }
      .btn-gold,.btn-outline-gold{
        width:100%;
      }
      .matrix-actions .btn{
        width:100%;
      }
      .floating-lead{
        left:12px;
        right:12px;
        bottom:12px;
        width:auto;
        text-align:center;
      }
      .footer-links{justify-content:flex-start}
    }
