/* roulang page: index */
:root{
      --bg:#111012;
      --bg-soft:#17151a;
      --bg-card:#1f1b22;
      --bg-card-2:#261d25;
      --text:#f7f1eb;
      --muted:#b9ada8;
      --weak:#81777a;
      --line:rgba(255,255,255,.12);
      --line-strong:rgba(255,255,255,.22);
      --brand:#9e2f49;
      --brand-2:#5f355f;
      --amber:#f1b66c;
      --cyan:#8abdc2;
      --green:#89c48d;
      --danger:#d46a7a;
      --shadow:0 22px 70px rgba(0,0,0,.36);
      --shadow-soft:0 14px 40px rgba(0,0,0,.24);
      --radius-xl:28px;
      --radius-lg:18px;
      --radius-md:14px;
      --radius-sm:10px;
      --container:1220px;
      --section:92px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }
    *{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(--text);
      background:
        radial-gradient(circle at 18% 0%, rgba(158,47,73,.24), transparent 34%),
        radial-gradient(circle at 78% 12%, rgba(95,53,95,.23), transparent 35%),
        linear-gradient(180deg,#0d0c0e 0%, var(--bg) 42%, #151116 100%);
      line-height:1.72;
      min-height:100vh;
      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,.025) 1px, transparent 1px);
      background-size:36px 36px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.9), transparent 85%);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:color .2s var(--ease),border-color .2s var(--ease),background .2s var(--ease),transform .2s var(--ease)}
    img{max-width:100%;height:auto;display:block}
    button,input{font:inherit}
    button{cursor:pointer}
    :focus-visible{
      outline:3px solid rgba(241,182,108,.72);
      outline-offset:4px;
      border-radius:12px;
    }
    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }
    .section{
      padding:var(--section) 0;
      position:relative;
    }
    .section.compact{padding:64px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:28px;
      padding:4px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      color:var(--amber);
      background:rgba(241,182,108,.08);
      font-size:13px;
      letter-spacing:.04em;
      margin-bottom:16px;
    }
    .section-kicker:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 18px rgba(241,182,108,.8);
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:28px;
      margin-bottom:32px;
    }
    .section-title{
      margin:0;
      font-size:clamp(28px,4vw,46px);
      line-height:1.16;
      letter-spacing:-.04em;
      color:var(--text);
    }
    .section-desc{
      margin:12px 0 0;
      max-width:660px;
      color:var(--muted);
      font-size:16px;
    }
    .top-shell{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(17,16,18,.76);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.09);
      transition:box-shadow .25s var(--ease),background .25s var(--ease);
    }
    .top-shell.is-scrolled{
      box-shadow:0 12px 34px rgba(0,0,0,.28);
      background:rgba(17,16,18,.9);
    }
    .nav-row{
      min-height:76px;
      display:flex;
      align-items:center;
      gap:22px;
      overflow:hidden;
    }
    .brand{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:12px;
      color:var(--text);
      font-weight:900;
      letter-spacing:-.03em;
      white-space:nowrap;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      background:
        linear-gradient(135deg, rgba(241,182,108,.95), rgba(158,47,73,.92)),
        radial-gradient(circle at 72% 28%, rgba(255,255,255,.5), transparent 28%);
      position:relative;
      box-shadow:0 12px 28px rgba(158,47,73,.32);
      overflow:hidden;
    }
    .brand-mark:before,.brand-mark:after{
      content:"";
      position:absolute;
      width:9px;
      height:9px;
      border-radius:50%;
      background:#111012;
      top:50%;
      transform:translateY(-50%);
    }
    .brand-mark:before{left:-4px}
    .brand-mark:after{right:-4px}
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-text strong{font-size:16px}
    .brand-text span{
      color:var(--weak);
      font-size:12px;
      font-weight:700;
      letter-spacing:.08em;
      margin-top:4px;
    }
    .chip-nav{
      margin-left:auto;
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      padding:12px 2px;
    }
    .chip-nav::-webkit-scrollbar{display:none}
    .nav-chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:8px 16px;
      border-radius:999px;
      border:1px solid var(--line);
      color:var(--muted);
      background:rgba(255,255,255,.04);
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
      user-select:none;
    }
    .nav-chip:hover{
      color:var(--text);
      border-color:rgba(241,182,108,.45);
      background:rgba(241,182,108,.1);
      transform:translateY(-1px);
    }
    .nav-chip:active{
      transform:translateY(0) scale(.98);
      background:rgba(241,182,108,.16);
    }
    .nav-chip.active{
      color:#1a1013;
      background:linear-gradient(135deg,var(--amber),#e78972);
      border-color:transparent;
      box-shadow:0 10px 24px rgba(241,182,108,.22);
    }
    .hero{
      min-height:690px;
      display:flex;
      align-items:stretch;
      padding:34px 0 0;
    }
    .hero-kv{
      position:relative;
      width:100%;
      min-height:620px;
      border-radius:0 0 42px 42px;
      overflow:hidden;
      border-bottom:1px solid var(--line);
      background:
        linear-gradient(90deg, rgba(13,12,14,.96) 0%, rgba(23,18,22,.78) 48%, rgba(17,16,18,.88) 100%),
        radial-gradient(circle at 72% 28%, rgba(158,47,73,.42), transparent 32%),
        linear-gradient(135deg,#24151b,#101012 72%);
    }
    .hero-kv:before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.22;
      background:
        repeating-linear-gradient(90deg, transparent 0 18px, rgba(255,255,255,.08) 18px 19px, transparent 19px 42px),
        linear-gradient(180deg, transparent, rgba(0,0,0,.38));
      pointer-events:none;
    }
    .hero-kv:after{
      content:"";
      position:absolute;
      right:8%;
      top:12%;
      width:360px;
      height:500px;
      border:1px solid rgba(255,255,255,.16);
      border-radius:30px;
      background:
        linear-gradient(160deg, rgba(241,182,108,.16), rgba(158,47,73,.2) 44%, rgba(255,255,255,.045)),
        radial-gradient(circle at 50% 0%, rgba(255,255,255,.26), transparent 42%);
      box-shadow:var(--shadow);
      transform:rotate(3deg);
    }
    .hero-inner{
      position:relative;
      z-index:2;
      min-height:620px;
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(300px,.62fr);
      gap:42px;
      align-items:center;
      padding:74px 0 116px;
    }
    .hero-copy{
      max-width:820px;
    }
    .hero-label{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.07);
      border:1px solid var(--line);
      color:var(--amber);
      font-weight:900;
      font-size:14px;
      margin-bottom:18px;
    }
    .hero-label span{
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 18px rgba(137,196,141,.8);
    }
    h1{
      margin:0;
      max-width:860px;
      font-size:clamp(42px,7vw,82px);
      line-height:1.02;
      letter-spacing:-.075em;
      color:#fff8ef;
      text-wrap:balance;
    }
    .hero-lead{
      max-width:720px;
      margin:24px 0 0;
      color:#dacfc9;
      font-size:clamp(16px,2vw,20px);
      line-height:1.85;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:32px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      min-height:48px;
      padding:13px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:900;
      letter-spacing:.01em;
      transition:transform .22s var(--ease),box-shadow .22s var(--ease),background .22s var(--ease),border-color .22s var(--ease),color .22s var(--ease);
    }
    .btn-primary{
      color:#1b1112;
      background:linear-gradient(135deg,var(--amber),#ef8b73);
      box-shadow:0 16px 34px rgba(241,182,108,.24);
    }
    .btn-primary:hover{
      color:#100c0c;
      transform:translateY(-2px);
      box-shadow:0 22px 46px rgba(241,182,108,.32);
    }
    .btn-secondary{
      color:var(--text);
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.18);
    }
    .btn-secondary:hover{
      color:#fff;
      background:rgba(255,255,255,.12);
      border-color:rgba(241,182,108,.42);
      transform:translateY(-2px);
    }
    .btn-ghost{
      color:var(--amber);
      background:transparent;
      border-color:rgba(241,182,108,.28);
    }
    .btn-ghost:hover{
      color:#1b1112;
      background:var(--amber);
      border-color:var(--amber);
      transform:translateY(-2px);
    }
    .hero-panel{
      position:relative;
      z-index:3;
      align-self:stretch;
      display:flex;
      align-items:center;
      justify-content:center;
    }
    .poster-ticket{
      width:min(390px,100%);
      border-radius:32px;
      padding:18px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(20,17,20,.78);
      backdrop-filter:blur(14px);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .poster-ticket:before,.poster-ticket:after{
      content:"";
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      width:36px;
      height:18px;
      background:#111012;
      border:1px solid rgba(255,255,255,.1);
      z-index:2;
    }
    .poster-ticket:before{top:-1px;border-radius:0 0 18px 18px;border-top:none}
    .poster-ticket:after{bottom:-1px;border-radius:18px 18px 0 0;border-bottom:none}
    .poster-art{
      min-height:350px;
      border-radius:24px;
      padding:24px;
      background:
        radial-gradient(circle at 42% 28%, rgba(241,182,108,.28), transparent 30%),
        linear-gradient(145deg, rgba(158,47,73,.76), rgba(65,38,66,.72) 48%, rgba(12,12,14,.92));
      border:1px solid rgba(255,255,255,.13);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      position:relative;
      overflow:hidden;
    }
    .poster-art:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px dashed rgba(255,255,255,.18);
      border-radius:18px;
      pointer-events:none;
    }
    .poster-code{
      display:flex;
      justify-content:space-between;
      gap:12px;
      color:#fff4e7;
      font-weight:900;
      font-size:13px;
      letter-spacing:.08em;
      position:relative;
      z-index:1;
    }
    .poster-title{
      position:relative;
      z-index:1;
      margin-top:auto;
    }
    .poster-title strong{
      display:block;
      font-size:30px;
      line-height:1.08;
      letter-spacing:-.05em;
      color:#fff;
    }
    .poster-title span{
      display:inline-flex;
      margin-top:12px;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(0,0,0,.25);
      color:var(--amber);
      font-weight:900;
      font-size:13px;
    }
    .ticket-meta{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-top:14px;
    }
    .ticket-mini{
      border:1px solid var(--line);
      border-radius:18px;
      padding:14px;
      background:rgba(255,255,255,.045);
    }
    .ticket-mini b{
      display:block;
      color:#fff;
      font-size:20px;
      line-height:1;
    }
    .ticket-mini span{
      color:var(--muted);
      font-size:12px;
    }
    .countdown-strip{
      position:absolute;
      z-index:4;
      left:50%;
      bottom:28px;
      transform:translateX(-50%);
      width:min(980px, calc(100% - 40px));
      display:grid;
      grid-template-columns:1.25fr repeat(4, minmax(86px,1fr));
      gap:1px;
      overflow:hidden;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.15);
      background:rgba(255,255,255,.12);
      box-shadow:0 18px 46px rgba(0,0,0,.34);
      backdrop-filter:blur(18px);
    }
    .countdown-title,.time-box{
      background:rgba(18,16,19,.82);
      padding:18px 20px;
    }
    .countdown-title{
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .countdown-title b{font-size:15px;color:#fff}
    .countdown-title span{font-size:13px;color:var(--muted)}
    .time-box{text-align:center}
    .time-box b{
      display:block;
      font-size:28px;
      line-height:1;
      color:var(--amber);
      letter-spacing:-.04em;
    }
    .time-box span{
      display:block;
      margin-top:6px;
      color:var(--weak);
      font-size:12px;
    }
    .status-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .status-chip{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:9px 13px;
      border:1px solid var(--line);
      border-radius:999px;
      color:var(--muted);
      background:rgba(255,255,255,.055);
      font-size:13px;
      font-weight:800;
    }
    .status-chip i{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 16px rgba(138,189,194,.75);
    }
    .series-wrap{
      display:flex;
      gap:14px;
      overflow-x:auto;
      padding:4px 0 16px;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
    }
    .series-wrap::-webkit-scrollbar{display:none}
    .series-card{
      flex:0 0 280px;
      min-height:154px;
      border-radius:22px;
      padding:20px;
      border:1px solid var(--line);
      background:linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
      box-shadow:var(--shadow-soft);
      position:relative;
      overflow:hidden;
    }
    .series-card:after{
      content:"";
      position:absolute;
      right:-18px;
      top:22px;
      width:64px;
      height:64px;
      border-radius:50%;
      border:1px dashed rgba(241,182,108,.25);
    }
    .series-card:hover{
      transform:translateY(-4px);
      border-color:rgba(241,182,108,.38);
      background:linear-gradient(145deg, rgba(158,47,73,.18), rgba(255,255,255,.045));
    }
    .badge,.label-tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:26px;
      padding:4px 10px;
      border-radius:999px;
      border:1px solid var(--line);
      color:var(--amber);
      background:rgba(241,182,108,.08);
      font-size:12px;
      font-weight:900;
      letter-spacing:.02em;
    }
    .series-card h3,.feature-card h3,.hot-card h3,.voice-card h3{
      margin:16px 0 8px;
      font-size:21px;
      line-height:1.25;
      letter-spacing:-.035em;
      color:#fff;
    }
    .series-card p,.feature-card p,.hot-card p,.voice-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .hot-layout{
      display:grid;
      grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);
      gap:24px;
      align-items:stretch;
    }
    .hot-rail{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .hot-card{
      min-height:340px;
      border-radius:26px;
      border:1px solid var(--line);
      background:var(--bg-card);
      overflow:hidden;
      box-shadow:var(--shadow-soft);
      position:relative;
      transition:transform .22s var(--ease),border-color .22s var(--ease),box-shadow .22s var(--ease);
    }
    .hot-card:hover{
      transform:translateY(-5px);
      border-color:rgba(241,182,108,.4);
      box-shadow:0 26px 70px rgba(0,0,0,.34);
    }
    .hot-visual{
      height:182px;
      background:
        radial-gradient(circle at 30% 25%, rgba(241,182,108,.32), transparent 30%),
        linear-gradient(145deg, rgba(95,53,95,.84), rgba(158,47,73,.46), rgba(17,16,18,.95));
      position:relative;
      overflow:hidden;
    }
    .hot-visual:before{
      content:"";
      position:absolute;
      inset:12px;
      border-radius:18px;
      border:1px dashed rgba(255,255,255,.16);
    }
    .hot-index{
      position:absolute;
      top:14px;
      left:14px;
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      background:rgba(17,16,18,.72);
      border:1px solid rgba(255,255,255,.14);
      color:var(--amber);
      font-weight:1000;
    }
    .hot-body{
      padding:20px;
    }
    .hot-link{
      display:inline-flex;
      margin-top:16px;
      color:var(--amber);
      font-weight:900;
      font-size:14px;
    }
    .hot-link:hover{color:#fff}
    .feature-card{
      border-radius:26px;
      border:1px solid rgba(241,182,108,.22);
      padding:26px;
      background:
        linear-gradient(180deg, rgba(241,182,108,.12), rgba(158,47,73,.1)),
        rgba(255,255,255,.045);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
      position:relative;
    }
    .feature-card:before{
      content:"";
      position:absolute;
      width:180px;
      height:180px;
      border-radius:50%;
      background:rgba(241,182,108,.14);
      right:-76px;
      bottom:-80px;
      filter:blur(4px);
    }
    .step-list{
      margin:22px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:14px;
      position:relative;
      z-index:1;
    }
    .step-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:16px;
      background:rgba(0,0,0,.16);
      border:1px solid rgba(255,255,255,.09);
      color:var(--muted);
      font-size:14px;
    }
    .step-list b{
      flex:0 0 auto;
      color:var(--amber);
    }
    .news-shell{
      display:grid;
      grid-template-columns:minmax(0,1fr) 330px;
      gap:24px;
      align-items:start;
    }
    .news-list{
      display:grid;
      gap:14px;
    }
    .news-item{
      display:grid;
      grid-template-columns:84px minmax(0,1fr) auto;
      gap:18px;
      align-items:center;
      padding:18px;
      border:1px solid var(--line);
      border-radius:22px;
      background:rgba(255,255,255,.045);
      box-shadow:0 10px 32px rgba(0,0,0,.18);
      transition:transform .22s var(--ease),border-color .22s var(--ease),background .22s var(--ease);
    }
    .news-item:hover{
      transform:translateY(-3px);
      border-color:rgba(241,182,108,.36);
      background:rgba(255,255,255,.07);
    }
    .news-date{
      min-height:70px;
      border-radius:18px;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      background:rgba(241,182,108,.09);
      border:1px dashed rgba(241,182,108,.28);
      color:var(--amber);
      text-align:center;
      font-weight:900;
      font-size:12px;
      line-height:1.35;
    }
    .news-copy h3{
      margin:0 0 7px;
      color:#fff;
      font-size:19px;
      line-height:1.35;
      letter-spacing:-.025em;
    }
    .news-copy p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
    }
    .news-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:12px;
    }
    .news-go{
      color:var(--amber);
      font-weight:900;
      white-space:nowrap;
    }
    .news-go:hover{color:#fff}
    .empty-state{
      padding:28px;
      border-radius:24px;
      border:1px dashed rgba(241,182,108,.32);
      background:rgba(241,182,108,.07);
      color:var(--muted);
    }
    .side-card{
      border:1px solid var(--line);
      border-radius:26px;
      padding:24px;
      background:linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
      box-shadow:var(--shadow-soft);
      position:sticky;
      top:104px;
    }
    .side-card h3{margin:0 0 12px;font-size:23px;color:#fff;letter-spacing:-.035em}
    .side-card p{margin:0;color:var(--muted);font-size:14px}
    .side-tags{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-top:18px;
    }
    .member-panel{
      border-radius:32px;
      border:1px solid rgba(241,182,108,.22);
      background:
        radial-gradient(circle at 82% 18%, rgba(241,182,108,.16), transparent 26%),
        linear-gradient(135deg, rgba(158,47,73,.22), rgba(255,255,255,.045));
      box-shadow:var(--shadow);
      padding:34px;
      overflow:hidden;
      position:relative;
    }
    .member-grid{
      display:grid;
      grid-template-columns:1fr 1fr 1fr;
      gap:18px;
      margin-top:28px;
    }
    .member-card{
      border-radius:22px;
      border:1px solid var(--line);
      background:rgba(15,13,15,.42);
      padding:22px;
      min-height:178px;
    }
    .member-card b{
      display:block;
      color:#fff;
      font-size:22px;
      margin:14px 0 8px;
      letter-spacing:-.035em;
    }
    .member-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
    }
    .metrics-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:24px;
    }
    .metric-bar-card,.timeline-card{
      border-radius:28px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.045);
      padding:26px;
      box-shadow:var(--shadow-soft);
    }
    .metric-row{
      display:grid;
      grid-template-columns:150px 1fr 74px;
      align-items:center;
      gap:18px;
      padding:14px 0;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .metric-row:last-child{border-bottom:none}
    .metric-name{color:#fff;font-weight:900}
    .metric-track{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
    }
    .metric-fill{
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--brand),var(--amber));
    }
    .metric-value{color:var(--amber);font-weight:1000;text-align:right}
    .timeline{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:18px;
    }
    .timeline li{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:14px;
      align-items:start;
    }
    .timeline time{
      color:var(--amber);
      font-weight:1000;
      font-size:13px;
    }
    .timeline b{
      display:block;
      color:#fff;
      margin-bottom:4px;
    }
    .timeline span{
      color:var(--muted);
      font-size:14px;
    }
    .voices{
      display:grid;
      grid-template-columns:1fr 1.15fr .9fr;
      gap:18px;
      align-items:start;
    }
    .voice-card{
      border:1px solid var(--line);
      border-radius:26px;
      padding:24px;
      background:rgba(255,255,255,.045);
      box-shadow:var(--shadow-soft);
    }
    .voice-card:nth-child(2){margin-top:28px;background:rgba(158,47,73,.13)}
    .stars{color:var(--amber);letter-spacing:.08em;font-size:14px}
    .voice-user{
      margin-top:18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:var(--weak);
      font-size:13px;
    }
    .faq-grid{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:24px;
      align-items:start;
    }
    .faq-intro{
      border-radius:28px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.045);
      padding:28px;
      box-shadow:var(--shadow-soft);
    }
    .faq-list{
      display:grid;
      gap:12px;
    }
    .faq-item{
      border:1px solid var(--line);
      border-radius:20px;
      background:rgba(255,255,255,.045);
      overflow:hidden;
    }
    .faq-question{
      width:100%;
      border:0;
      background:transparent;
      color:#fff;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:20px;
      text-align:left;
      font-weight:900;
    }
    .faq-question span:last-child{
      width:28px;
      height:28px;
      border-radius:50%;
      display:grid;
      place-items:center;
      background:rgba(241,182,108,.12);
      color:var(--amber);
      transition:transform .2s var(--ease);
    }
    .faq-answer{
      display:none;
      padding:0 20px 20px;
      color:var(--muted);
      font-size:15px;
    }
    .faq-item.is-open{
      border-color:rgba(241,182,108,.36);
      background:rgba(241,182,108,.07);
    }
    .faq-item.is-open .faq-answer{display:block}
    .faq-item.is-open .faq-question span:last-child{transform:rotate(45deg)}
    .cta-card{
      border-radius:34px;
      border:1px solid rgba(241,182,108,.26);
      background:
        linear-gradient(135deg, rgba(241,182,108,.16), rgba(158,47,73,.18)),
        rgba(255,255,255,.045);
      box-shadow:var(--shadow);
      padding:36px;
      display:grid;
      grid-template-columns:1fr minmax(300px,430px);
      gap:28px;
      align-items:center;
    }
    .cta-card h2{
      margin:0;
      font-size:clamp(28px,4vw,48px);
      line-height:1.14;
      letter-spacing:-.05em;
    }
    .cta-card p{
      margin:14px 0 0;
      max-width:660px;
      color:var(--muted);
    }
    .search-box{
      display:flex;
      gap:10px;
      padding:10px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(0,0,0,.2);
    }
    .search-box input{
      min-width:0;
      flex:1;
      height:48px;
      border:0;
      outline:0;
      color:#fff;
      padding:0 16px;
      border-radius:999px;
      background:rgba(255,255,255,.065);
    }
    .search-box input::placeholder{color:var(--weak)}
    .search-box .btn{
      min-height:48px;
      padding:0 18px;
    }
    .footer{
      border-top:1px solid var(--line);
      padding:42px 0;
      background:rgba(9,8,10,.48);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .footer p{
      margin:10px 0 0;
      color:var(--weak);
      font-size:14px;
      max-width:680px;
    }
    .footer-links{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .footer-links a{
      color:var(--muted);
      border:1px solid var(--line);
      border-radius:999px;
      padding:8px 12px;
      font-size:13px;
      font-weight:800;
    }
    .footer-links a:hover{
      color:var(--amber);
      border-color:rgba(241,182,108,.35);
      background:rgba(241,182,108,.08);
    }
    .copyright{
      margin-top:24px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      color:var(--weak);
      font-size:13px;
    }
    @media (max-width:1024px){
      :root{--section:74px}
      .hero-inner{
        grid-template-columns:1fr;
        padding-top:58px;
      }
      .hero-kv:after{
        right:-60px;
        top:80px;
        opacity:.5;
      }
      .hero-panel{
        justify-content:flex-start;
      }
      .poster-ticket{
        max-width:360px;
      }
      .hot-layout,.news-shell,.metrics-grid,.faq-grid,.cta-card{
        grid-template-columns:1fr;
      }
      .hot-rail{
        grid-template-columns:repeat(2,1fr);
      }
      .side-card{
        position:relative;
        top:auto;
      }
      .voices{
        grid-template-columns:1fr 1fr;
      }
      .voice-card:nth-child(2){margin-top:0}
      .member-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 28px, var(--container))}
      .nav-row{
        min-height:68px;
        gap:14px;
      }
      .brand-mark{width:38px;height:38px;border-radius:14px}
      .brand-text strong{font-size:14px}
      .brand-text span{display:none}
      .chip-nav{gap:8px}
      .nav-chip{min-height:36px;padding:8px 13px;font-size:13px}
      .hero{padding-top:18px;min-height:auto}
      .hero-kv{
        min-height:760px;
        border-radius:0 0 30px 30px;
      }
      .hero-inner{
        min-height:auto;
        padding:46px 0 190px;
      }
      .hero-lead{font-size:16px}
      .countdown-strip{
        grid-template-columns:1fr 1fr;
        bottom:18px;
      }
      .countdown-title{
        grid-column:1 / -1;
      }
      .poster-ticket{
        width:100%;
      }
      .poster-art{min-height:260px}
      .section-head{
        display:block;
      }
      .hot-rail,.member-grid,.voices{
        grid-template-columns:1fr;
      }
      .metric-row{
        grid-template-columns:1fr;
        gap:9px;
      }
      .metric-value{text-align:left}
      .news-item{
        grid-template-columns:1fr;
      }
      .news-date{
        min-height:52px;
        align-items:flex-start;
        padding:10px 14px;
      }
      .news-go{justify-self:start}
      .search-box{
        border-radius:22px;
        flex-direction:column;
      }
      .search-box .btn{width:100%}
      .footer-grid{
        grid-template-columns:1fr;
      }
      .footer-links{justify-content:flex-start}
    }
    @media (max-width:520px){
      :root{--section:58px}
      h1{font-size:40px}
      .hero-actions .btn{width:100%}
      .status-row{display:grid}
      .countdown-strip{
        width:calc(100% - 24px);
      }
      .time-box,.countdown-title{padding:14px}
      .time-box b{font-size:23px}
      .section-title{font-size:28px}
      .series-card{flex-basis:246px}
      .member-panel,.cta-card{padding:24px;border-radius:26px}
    }

/* roulang page: article */
:root{
      --bg:#111012;
      --bg-soft:#17151a;
      --bg-card:#1f1b22;
      --bg-card-2:#261d25;
      --text:#f7f1eb;
      --muted:#b9ada8;
      --weak:#81777a;
      --line:rgba(255,255,255,.12);
      --line-strong:rgba(255,255,255,.22);
      --brand:#9e2f49;
      --brand-2:#5f355f;
      --amber:#f1b66c;
      --cyan:#8abdc2;
      --green:#89c48d;
      --danger:#d46a7a;
      --shadow:0 22px 70px rgba(0,0,0,.36);
      --shadow-soft:0 14px 40px rgba(0,0,0,.24);
      --radius-xl:28px;
      --radius-lg:18px;
      --radius-md:14px;
      --radius-sm:10px;
      --container:1220px;
      --section:78px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      color:var(--text);
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
      line-height:1.78;
      background:
        radial-gradient(circle at 16% 0%, rgba(158,47,73,.22), transparent 30%),
        radial-gradient(circle at 82% 10%, rgba(95,53,95,.26), transparent 33%),
        linear-gradient(180deg,#0d0c0e 0%, var(--bg) 42%, #151116 100%);
      overflow-x:hidden;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    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,.025) 1px, transparent 1px);
      background-size:36px 36px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.92), transparent 86%);
      z-index:-1;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition:color .2s var(--ease),border-color .2s var(--ease),background .2s var(--ease),transform .2s var(--ease),box-shadow .2s var(--ease),opacity .2s var(--ease);
    }
    a:hover{color:var(--text)}
    img{
      max-width:100%;
      display:block;
      height:auto;
    }
    button,input,select,textarea{
      font:inherit;
    }
    button{cursor:pointer}
    :focus{outline:none}
    :focus-visible{
      outline:2px solid rgba(241,182,108,.92);
      outline-offset:2px;
      border-radius:10px;
    }
    ::selection{
      background:rgba(241,182,108,.26);
      color:var(--text);
    }

    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }
    .section{
      padding:var(--section) 0;
      position:relative;
    }

    .top-shell{
      position:sticky;
      top:0;
      z-index:80;
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      background:linear-gradient(180deg, rgba(16,15,18,.86), rgba(16,15,18,.72));
      border-bottom:1px solid rgba(255,255,255,.08);
      box-shadow:0 10px 30px rgba(0,0,0,.14);
    }
    .nav-row{
      min-height:76px;
      display:flex;
      align-items:center;
      gap:20px;
      overflow:hidden;
    }
    .brand{
      flex:0 0 auto;
      display:inline-flex;
      align-items:center;
      gap:12px;
      color:var(--text);
      font-weight:900;
      letter-spacing:-.03em;
      white-space:nowrap;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      background:
        linear-gradient(135deg, rgba(241,182,108,.96), rgba(158,47,73,.92)),
        radial-gradient(circle at 72% 28%, rgba(255,255,255,.52), transparent 28%);
      position:relative;
      box-shadow:0 12px 28px rgba(158,47,73,.32);
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-mark:before,
    .brand-mark:after{
      content:"";
      position:absolute;
      width:9px;
      height:9px;
      border-radius:50%;
      background:#111012;
      top:50%;
      transform:translateY(-50%);
    }
    .brand-mark:before{left:-4px}
    .brand-mark:after{right:-4px}
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.1;
    }
    .brand-text strong{
      font-size:16px;
      letter-spacing:-.03em;
    }
    .brand-text span{
      color:var(--weak);
      font-size:12px;
      font-weight:700;
      letter-spacing:.08em;
      margin-top:4px;
    }
    .chip-nav{
      margin-left:auto;
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
      padding:12px 2px;
      max-width:100%;
    }
    .chip-nav::-webkit-scrollbar{display:none}
    .nav-chip{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:8px 16px;
      border-radius:999px;
      border:1px solid var(--line);
      color:var(--muted);
      background:rgba(255,255,255,.04);
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
      user-select:none;
      letter-spacing:.01em;
    }
    .nav-chip:hover{
      color:var(--text);
      border-color:rgba(241,182,108,.45);
      background:rgba(241,182,108,.1);
      transform:translateY(-1px);
    }
    .nav-chip:active{
      transform:translateY(0) scale(.98);
      background:rgba(241,182,108,.16);
    }
    .nav-chip.active{
      color:#1a1013;
      background:linear-gradient(135deg,var(--amber),#e78972);
      border-color:transparent;
      box-shadow:0 10px 24px rgba(241,182,108,.22);
    }

    .article-hero{
      padding-top:34px;
      padding-bottom:28px;
    }
    .hero-panel{
      display:grid;
      grid-template-columns:minmax(0,1.55fr) minmax(300px,.95fr);
      gap:28px;
      align-items:stretch;
      padding:28px;
      border:1px solid var(--line);
      border-radius:32px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
        radial-gradient(circle at 72% 22%, rgba(158,47,73,.16), transparent 34%),
        linear-gradient(135deg, rgba(31,27,34,.94), rgba(20,18,22,.92));
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:0;
      pointer-events:none;
      opacity:.35;
      background:
        linear-gradient(90deg, transparent 0, rgba(255,255,255,.03) 16%, transparent 32%),
        repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,.05) 22px 23px, transparent 23px 44px);
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.9), transparent 100%);
    }
    .hero-copy{
      position:relative;
      z-index:1;
      padding-right:10px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:28px;
      padding:4px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      color:var(--amber);
      background:rgba(241,182,108,.08);
      font-size:13px;
      letter-spacing:.04em;
      margin-bottom:16px;
    }
    .section-kicker:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 18px rgba(241,182,108,.8);
    }
    .hero-breadcrumb{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      color:var(--weak);
      font-size:13px;
      margin-bottom:12px;
    }
    .hero-breadcrumb a{
      color:var(--muted);
    }
    .hero-breadcrumb a:hover{
      color:var(--text);
    }
    .meta-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      margin:14px 0 18px;
    }
    .status-chip,
    .tag-chip,
    .mini-chip,
    .pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:30px;
      padding:5px 12px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.04);
      color:var(--muted);
      font-size:13px;
      font-weight:700;
      white-space:nowrap;
    }
    .status-chip strong,
    .tag-chip strong,
    .mini-chip strong,
    .pill strong{color:var(--text)}
    .status-chip{
      background:rgba(241,182,108,.08);
      color:#f4d2a3;
      border-color:rgba(241,182,108,.18);
    }
    .hero-copy h1{
      margin:0;
      font-size:clamp(34px,5vw,56px);
      line-height:1.06;
      letter-spacing:-.05em;
      color:var(--text);
      max-width:12em;
    }
    .hero-copy .lead{
      margin:18px 0 0;
      max-width:68ch;
      font-size:16px;
      color:var(--muted);
      line-height:1.88;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:24px;
    }
    .button,
    .button.secondary,
    .button.ghost,
    .button-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 18px;
      border-radius:14px;
      border:1px solid transparent;
      font-size:14px;
      font-weight:800;
      letter-spacing:.01em;
      transition:transform .2s var(--ease),background .2s var(--ease),border-color .2s var(--ease),box-shadow .2s var(--ease),color .2s var(--ease),opacity .2s var(--ease);
      user-select:none;
    }
    .button:hover,
    .button.secondary:hover,
    .button.ghost:hover,
    .button-link:hover{
      transform:translateY(-1px);
    }
    .button:active,
    .button.secondary:active,
    .button.ghost:active,
    .button-link:active{
      transform:translateY(0) scale(.99);
    }
    .button{
      color:#1a1013;
      background:linear-gradient(135deg,var(--amber),#e78972);
      box-shadow:0 14px 30px rgba(241,182,108,.16);
    }
    .button:hover{
      box-shadow:0 18px 34px rgba(241,182,108,.2);
      color:#140c0f;
    }
    .button.secondary{
      color:var(--text);
      background:rgba(255,255,255,.03);
      border-color:rgba(255,255,255,.12);
    }
    .button.secondary:hover{
      background:rgba(255,255,255,.06);
      border-color:rgba(241,182,108,.28);
    }
    .button.ghost{
      color:var(--muted);
      background:transparent;
      border-color:rgba(255,255,255,.12);
    }
    .button.ghost:hover{
      color:var(--text);
      border-color:rgba(255,255,255,.22);
      background:rgba(255,255,255,.04);
    }

    .hero-aside{
      position:relative;
      z-index:1;
      display:flex;
      align-items:stretch;
      min-height:100%;
    }
    .poster-card{
      width:100%;
      border-radius:24px;
      border:1px solid var(--line);
      background:
        radial-gradient(circle at 20% 18%, rgba(241,182,108,.18), transparent 22%),
        radial-gradient(circle at 80% 16%, rgba(95,53,95,.38), transparent 26%),
        linear-gradient(180deg, rgba(38,29,37,.94), rgba(19,16,21,.92));
      overflow:hidden;
      box-shadow:var(--shadow-soft);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:18px;
      position:relative;
      min-height:100%;
    }
    .poster-card:before{
      content:"";
      position:absolute;
      inset:12px;
      border-radius:18px;
      border:1px dashed rgba(255,255,255,.12);
      pointer-events:none;
    }
    .poster-top{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:10px;
      position:relative;
      z-index:1;
    }
    .poster-top .mini-chip{
      background:rgba(255,255,255,.05);
      border-color:rgba(255,255,255,.12);
      color:var(--muted);
    }
    .poster-cover{
      margin:18px 0 16px;
      border-radius:20px;
      min-height:240px;
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.11);
      background:
        linear-gradient(135deg, rgba(158,47,73,.5), rgba(95,53,95,.18) 58%, rgba(17,16,18,.22)),
        radial-gradient(circle at 26% 30%, rgba(241,182,108,.3), transparent 20%),
        linear-gradient(180deg, #2b1b24 0%, #17131a 100%);
    }
    .poster-cover:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, transparent 0, rgba(255,255,255,.08) 12%, transparent 24%),
        repeating-linear-gradient(180deg, rgba(255,255,255,.05) 0 1px, transparent 1px 16px);
      opacity:.28;
      mix-blend-mode:screen;
    }
    .poster-cover .number{
      position:absolute;
      left:18px;
      bottom:18px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:9px 12px;
      border-radius:14px;
      background:rgba(17,16,18,.72);
      border:1px solid rgba(255,255,255,.12);
      color:var(--text);
      font-size:12px;
      font-weight:800;
      letter-spacing:.06em;
      backdrop-filter:blur(8px);
    }
    .poster-copy{
      position:relative;
      z-index:1;
    }
    .poster-copy h2{
      margin:0 0 8px;
      font-size:18px;
      line-height:1.25;
      letter-spacing:-.03em;
    }
    .poster-copy p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .poster-stats{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:10px;
      margin-top:18px;
    }
    .stat-box{
      padding:12px 10px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.04);
      min-height:84px;
    }
    .stat-box strong{
      display:block;
      color:var(--text);
      font-size:19px;
      line-height:1;
      margin-bottom:6px;
      letter-spacing:-.03em;
    }
    .stat-box span{
      color:var(--weak);
      font-size:12px;
      line-height:1.45;
    }

    .article-main{
      padding-bottom:10px;
    }
    .article-card,
    .sidebar-card,
    .cta-card,
    .related-card,
    .note-card,
    .empty-state{
      border-radius:var(--radius-xl);
      border:1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)),
        linear-gradient(135deg, rgba(31,27,34,.96), rgba(23,21,27,.96));
      box-shadow:var(--shadow-soft);
    }
    .article-card{
      padding:28px;
    }
    .article-topline{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
      padding-bottom:16px;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .article-topline .left,
    .article-topline .right{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
    }
    .article-status{
      color:var(--weak);
      font-size:13px;
    }
    .article-title{
      margin:0;
      font-size:clamp(28px,3.4vw,42px);
      line-height:1.15;
      letter-spacing:-.04em;
      color:var(--text);
    }
    .article-subtitle{
      margin:14px 0 0;
      color:var(--muted);
      font-size:16px;
      line-height:1.84;
      max-width:74ch;
    }

    .article-layout{
      align-items:flex-start;
    }
    .article-content-wrap{
      position:relative;
    }
    .richtext{
      font-size:16px;
      line-height:1.88;
      color:var(--text);
      max-width:780px;
    }
    .richtext > *:first-child{margin-top:0}
    .richtext > *:last-child{margin-bottom:0}
    .richtext p{
      margin:0 0 1.05em;
      color:#efe6df;
    }
    .richtext h2,
    .richtext h3,
    .richtext h4{
      margin:1.6em 0 .8em;
      line-height:1.22;
      letter-spacing:-.03em;
      color:var(--text);
    }
    .richtext h2{font-size:28px}
    .richtext h3{font-size:22px}
    .richtext h4{font-size:18px}
    .richtext a{
      color:#ffceb1;
      text-decoration:underline;
      text-underline-offset:3px;
    }
    .richtext a:hover{color:#ffe1ce}
    .richtext ul,
    .richtext ol{
      margin:0 0 1.2em 1.3em;
      padding:0;
      color:#efe6df;
    }
    .richtext li{
      margin:.45em 0;
    }
    .richtext blockquote{
      margin:1.4em 0;
      padding:18px 18px 18px 20px;
      border-left:4px solid var(--amber);
      border-radius:18px;
      background:rgba(241,182,108,.08);
      color:#f6ead8;
    }
    .richtext hr{
      border:none;
      border-top:1px solid rgba(255,255,255,.1);
      margin:1.8em 0;
    }
    .richtext img{
      margin:1.4em 0;
      border-radius:20px;
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 18px 38px rgba(0,0,0,.24);
      background:#0f0e11;
    }
    .richtext figure{
      margin:1.4em 0;
    }
    .richtext figure img{
      margin:0;
    }
    .richtext figcaption{
      margin-top:10px;
      color:var(--weak);
      font-size:13px;
      line-height:1.6;
    }
    .richtext table{
      width:100%;
      border-collapse:collapse;
      overflow:hidden;
      border-radius:16px;
      margin:1.3em 0;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
    }
    .richtext th,
    .richtext td{
      padding:12px 14px;
      border-bottom:1px solid rgba(255,255,255,.08);
      text-align:left;
      vertical-align:top;
    }
    .richtext th{
      color:var(--text);
      background:rgba(255,255,255,.04);
      font-weight:800;
    }
    .richtext pre{
      padding:16px;
      overflow:auto;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
      background:#0d0c0e;
      color:#f4e7de;
      margin:1.3em 0;
    }
    .richtext code{
      padding:.16em .45em;
      border-radius:8px;
      background:rgba(255,255,255,.06);
      color:#ffd9bd;
    }

    .article-foot{
      margin-top:22px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      justify-content:space-between;
    }
    .article-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .article-tools{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .sidebar-stack{
      display:grid;
      gap:18px;
      position:sticky;
      top:100px;
    }
    .sidebar-card{
      padding:20px;
    }
    .sidebar-card h3,
    .sidebar-card h4{
      margin:0 0 12px;
      line-height:1.2;
      letter-spacing:-.03em;
      color:var(--text);
      font-size:18px;
    }
    .sidebar-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.76;
    }
    .sidebar-list{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:12px;
    }
    .sidebar-list li{
      padding:12px 0 0;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .sidebar-list li:first-child{
      border-top:none;
      padding-top:0;
    }
    .sidebar-list a{
      display:block;
      color:var(--text);
      font-weight:800;
      line-height:1.45;
      margin-bottom:5px;
    }
    .sidebar-list a:hover{
      color:#ffd4ba;
    }
    .sidebar-list .sub{
      color:var(--weak);
      font-size:13px;
      line-height:1.65;
    }
    .metric-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:12px;
      margin-top:14px;
    }
    .metric{
      padding:14px;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
    }
    .metric strong{
      display:block;
      font-size:18px;
      line-height:1;
      margin-bottom:7px;
      color:var(--text);
    }
    .metric span{
      color:var(--weak);
      font-size:12px;
      line-height:1.55;
    }

    .related{
      padding-top:20px;
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:28px;
      margin-bottom:24px;
    }
    .section-title{
      margin:0;
      font-size:clamp(24px,3.6vw,38px);
      line-height:1.16;
      letter-spacing:-.04em;
      color:var(--text);
    }
    .section-desc{
      margin:12px 0 0;
      max-width:680px;
      color:var(--muted);
      font-size:15px;
      line-height:1.82;
    }
    .card-grid{
      display:grid;
      gap:18px;
    }
    .related-grid{
      grid-template-columns:repeat(3,minmax(0,1fr));
    }
    .related-card{
      padding:18px;
      min-height:100%;
      display:flex;
      flex-direction:column;
      gap:14px;
      transition:transform .22s var(--ease),box-shadow .22s var(--ease),border-color .22s var(--ease),background .22s var(--ease);
    }
    .related-card:hover{
      transform:translateY(-2px);
      border-color:rgba(241,182,108,.2);
      box-shadow:0 18px 40px rgba(0,0,0,.28);
    }
    .thumb{
      position:relative;
      aspect-ratio:16/10;
      border-radius:20px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.1);
      background:
        linear-gradient(135deg, rgba(158,47,73,.42), rgba(95,53,95,.16)),
        linear-gradient(180deg, #2a1a21, #151116);
    }
    .thumb:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 18px),
        linear-gradient(180deg, rgba(255,255,255,.08), transparent 26%);
      opacity:.28;
    }
    .thumb .chip{
      position:absolute;
      left:14px;
      top:14px;
      display:inline-flex;
      align-items:center;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(17,16,18,.68);
      border:1px solid rgba(255,255,255,.14);
      color:#f3e7dc;
      font-size:12px;
      font-weight:800;
      backdrop-filter:blur(8px);
    }
    .related-card h3{
      margin:0;
      font-size:18px;
      line-height:1.38;
      letter-spacing:-.03em;
    }
    .related-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.74;
      flex:1 1 auto;
    }
    .meta-small{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      color:var(--weak);
      font-size:12px;
    }
    .meta-small .dot{
      width:4px;height:4px;border-radius:50%;background:var(--weak);display:inline-block;
    }

    .faq-block{
      padding-top:14px;
    }
    .faq-grid{
      display:grid;
      gap:14px;
    }
    .faq-item{
      border-radius:18px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.03);
      overflow:hidden;
      box-shadow:var(--shadow-soft);
    }
    .faq-item summary{
      list-style:none;
      cursor:pointer;
      padding:18px 20px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      font-weight:800;
      color:var(--text);
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary .q{
      line-height:1.45;
    }
    .faq-item summary .toggle{
      flex:0 0 auto;
      width:28px;
      height:28px;
      border-radius:999px;
      display:grid;
      place-items:center;
      border:1px solid rgba(255,255,255,.12);
      color:var(--muted);
      background:rgba(255,255,255,.04);
      transition:transform .2s var(--ease),background .2s var(--ease),border-color .2s var(--ease),color .2s var(--ease);
    }
    .faq-item[open] summary .toggle{
      transform:rotate(45deg);
      color:#1a1013;
      background:linear-gradient(135deg,var(--amber),#e78972);
      border-color:transparent;
    }
    .faq-item .answer{
      padding:0 20px 18px;
      color:var(--muted);
      font-size:14px;
      line-height:1.84;
    }

    .cta-band{
      padding-top:26px;
      padding-bottom:88px;
    }
    .cta-card{
      padding:24px;
      display:grid;
      grid-template-columns:minmax(0,1.2fr) minmax(0,.8fr);
      gap:20px;
      align-items:center;
      border-color:rgba(241,182,108,.16);
      background:
        radial-gradient(circle at 18% 18%, rgba(241,182,108,.1), transparent 26%),
        radial-gradient(circle at 82% 16%, rgba(158,47,73,.18), transparent 24%),
        linear-gradient(135deg, rgba(30,25,33,.98), rgba(19,17,22,.96));
    }
    .cta-copy h2{
      margin:0;
      font-size:clamp(24px,3.4vw,36px);
      line-height:1.18;
      letter-spacing:-.04em;
    }
    .cta-copy p{
      margin:12px 0 0;
      color:var(--muted);
      font-size:15px;
      line-height:1.84;
      max-width:62ch;
    }
    .search-form{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:10px;
      align-items:center;
      margin-top:18px;
    }
    .search-form input{
      width:100%;
      min-height:48px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.04);
      color:var(--text);
      padding:0 14px;
    }
    .search-form input::placeholder{color:var(--weak)}
    .search-form input:focus{
      border-color:rgba(241,182,108,.36);
      box-shadow:0 0 0 4px rgba(241,182,108,.08);
      background:rgba(255,255,255,.055);
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }

    .empty-state{
      padding:38px 24px;
      text-align:left;
      display:grid;
      gap:16px;
      align-items:start;
    }
    .empty-badge{
      display:inline-flex;
      width:max-content;
      padding:6px 12px;
      border-radius:999px;
      border:1px solid rgba(241,182,108,.2);
      background:rgba(241,182,108,.08);
      color:#f2d4a7;
      font-size:13px;
      font-weight:800;
    }
    .empty-state h2{
      margin:0;
      font-size:clamp(24px,3vw,34px);
      line-height:1.2;
      letter-spacing:-.04em;
    }
    .empty-state p{
      margin:0;
      color:var(--muted);
      max-width:60ch;
      line-height:1.84;
    }

    .footer{
      padding:34px 0 28px;
      border-top:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(17,16,18,.25), rgba(17,16,18,.65));
    }
    .footer-grid{
      display:grid;
      grid-template-columns:minmax(0,1.2fr) auto;
      gap:20px;
      align-items:start;
    }
    .footer .brand{
      margin-bottom:12px;
    }
    .footer p{
      margin:0;
      max-width:68ch;
      color:var(--muted);
      font-size:14px;
      line-height:1.82;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:10px 16px;
      align-content:flex-start;
      padding-top:8px;
    }
    .footer-links a{
      color:var(--muted);
      font-weight:700;
      font-size:14px;
    }
    .footer-links a:hover{
      color:var(--text);
    }
    .copyright{
      margin-top:18px;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.08);
      color:var(--weak);
      font-size:13px;
      line-height:1.75;
    }

    @media (max-width: 1024px){
      .hero-panel,
      .cta-card{
        grid-template-columns:1fr;
      }
      .sidebar-stack{
        position:static;
      }
      .related-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .article-card{
        padding:24px;
      }
      .hero-copy h1{
        max-width:16ch;
      }
    }
    @media (max-width: 768px){
      .site-container{
        width:min(var(--container), calc(100% - 28px));
      }
      .nav-row{
        min-height:72px;
        gap:14px;
      }
      .brand-text span{
        display:none;
      }
      .chip-nav{
        gap:8px;
        padding:10px 2px;
      }
      .nav-chip{
        min-height:36px;
        padding:7px 14px;
        font-size:13px;
      }
      .section{
        padding:56px 0;
      }
      .article-hero{
        padding-top:24px;
        padding-bottom:18px;
      }
      .hero-panel{
        padding:18px;
        border-radius:24px;
      }
      .poster-cover{
        min-height:190px;
      }
      .poster-stats{
        grid-template-columns:1fr;
      }
      .article-title{
        font-size:clamp(28px,7vw,38px);
      }
      .section-title{
        font-size:clamp(22px,6vw,32px);
      }
      .related-grid{
        grid-template-columns:1fr;
      }
      .footer-grid{
        grid-template-columns:1fr;
      }
      .footer-links{
        justify-content:flex-start;
        padding-top:0;
      }
      .cta-card{
        padding:20px;
      }
      .search-form{
        grid-template-columns:1fr;
      }
      .cta-actions{
        justify-content:flex-start;
      }
    }
    @media (max-width: 520px){
      .site-container{
        width:min(var(--container), calc(100% - 20px));
      }
      .nav-row{
        min-height:68px;
      }
      .brand{
        gap:10px;
      }
      .brand-mark{
        width:38px;
        height:38px;
        border-radius:14px;
      }
      .article-card,
      .sidebar-card,
      .cta-card,
      .related-card,
      .empty-state{
        border-radius:22px;
      }
      .article-card{
        padding:18px;
      }
      .hero-panel{
        gap:18px;
      }
      .hero-copy h1{
        max-width:100%;
        font-size:clamp(28px,9vw,34px);
      }
      .hero-copy .lead{
        font-size:15px;
      }
      .meta-row{
        gap:8px;
      }
      .status-chip,
      .tag-chip,
      .mini-chip,
      .pill{
        min-height:28px;
        padding:4px 10px;
        font-size:12px;
      }
      .poster-card{
        padding:14px;
        border-radius:20px;
      }
      .poster-cover{
        min-height:164px;
        border-radius:16px;
      }
      .poster-copy h2{
        font-size:16px;
      }
      .button,
      .button.secondary,
      .button.ghost,
      .button-link{
        min-height:44px;
        padding:11px 14px;
        font-size:13px;
      }
      .faq-item summary{
        padding:16px;
      }
      .faq-item .answer{
        padding:0 16px 16px;
      }
    }
