/* roulang page: index */
:root{
      --bg-0:#050711;
      --bg-1:#080d1d;
      --bg-2:#0d1428;
      --panel:rgba(16,25,47,.72);
      --panel-strong:rgba(21,33,62,.9);
      --panel-soft:rgba(255,255,255,.055);
      --text:#eef6ff;
      --muted:#9eb0c8;
      --muted-2:#74839b;
      --line:rgba(124,230,255,.18);
      --line-strong:rgba(124,230,255,.42);
      --cyan:#64f3ff;
      --cyan-2:#20c7d8;
      --violet:#8a7dff;
      --purple:#b168ff;
      --gold:#ffd27a;
      --danger:#ff7b9b;
      --radius-sm:12px;
      --radius:18px;
      --radius-lg:28px;
      --shadow:0 24px 80px rgba(0,0,0,.45);
      --shadow-glow:0 0 40px rgba(100,243,255,.18);
      --container:1180px;
      --ease:all .24s ease;
    }

    *{box-sizing:border-box;}
    html{scroll-behavior:smooth;}
    body{
      margin:0;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      line-height:1.72;
      background:
        radial-gradient(circle at 12% 10%, rgba(100,243,255,.16), transparent 32%),
        radial-gradient(circle at 86% 6%, rgba(138,125,255,.18), transparent 30%),
        radial-gradient(circle at 48% 72%, rgba(177,104,255,.10), transparent 36%),
        linear-gradient(180deg, var(--bg-0) 0%, var(--bg-1) 44%, #060915 100%);
      min-height:100vh;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      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:54px 54px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.8), transparent 82%);
    }
    a{color:inherit;text-decoration:none;transition:var(--ease);}
    a:hover,a:focus{color:var(--cyan);}
    img{max-width:100%;display:block;}
    button,input{font:inherit;}
    button{cursor:pointer;}
    :focus-visible{
      outline:2px solid var(--cyan);
      outline-offset:4px;
      border-radius:10px;
    }
    .site-container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }
    .section{
      padding:82px 0;
      position:relative;
    }
    .section.compact{padding:54px 0;}
    .section-title{
      max-width:760px;
      margin:0 0 32px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--cyan);
      font-size:13px;
      letter-spacing:.08em;
      font-weight:700;
      margin-bottom:12px;
    }
    .eyebrow::before{
      content:"";
      width:28px;
      height:2px;
      background:linear-gradient(90deg,var(--cyan),transparent);
      box-shadow:0 0 16px rgba(100,243,255,.75);
    }
    h1,h2,h3,h4,p{margin-top:0;}
    h1{
      font-size:clamp(38px, 6vw, 76px);
      line-height:1.08;
      letter-spacing:-.06em;
      margin-bottom:22px;
      font-weight:900;
    }
    h2{
      font-size:clamp(28px, 3.2vw, 46px);
      line-height:1.15;
      letter-spacing:-.04em;
      margin-bottom:14px;
      font-weight:850;
    }
    h3{
      font-size:21px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:10px;
    }
    p{color:var(--muted);font-size:16px;}
    .lead{
      font-size:19px;
      color:#c9d7ea;
      max-width:760px;
    }
    .text-gradient{
      background:linear-gradient(90deg,#fff,var(--cyan),#c9b7ff);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(5,7,17,.76);
      border-bottom:1px solid rgba(124,230,255,.14);
      backdrop-filter:blur(18px);
      box-shadow:0 10px 36px rgba(0,0,0,.24);
    }
    .nav-wrap{
      min-height:74px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      font-weight:900;
      letter-spacing:-.02em;
      color:#fff;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:
        linear-gradient(135deg, rgba(100,243,255,.22), rgba(138,125,255,.22)),
        rgba(255,255,255,.04);
      border:1px solid rgba(100,243,255,.34);
      box-shadow:0 0 28px rgba(100,243,255,.16), inset 0 0 18px rgba(255,255,255,.08);
      position:relative;
    }
    .brand-mark::before{
      content:"";
      width:0;
      height:0;
      border-top:8px solid transparent;
      border-bottom:8px solid transparent;
      border-left:13px solid var(--cyan);
      margin-left:3px;
      filter:drop-shadow(0 0 10px rgba(100,243,255,.9));
    }
    .brand-text{
      font-size:18px;
      white-space:nowrap;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      flex:1;
    }
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:12px 15px;
      border-radius:999px;
      color:#c7d4e8;
      font-weight:700;
      font-size:14px;
    }
    .nav-link:hover{
      background:rgba(100,243,255,.08);
      color:#fff;
    }
    .nav-link.active{
      color:#061017;
      background:linear-gradient(90deg,var(--cyan),#9df7ff);
      box-shadow:0 0 22px rgba(100,243,255,.25);
    }
    .mega-holder{position:relative;}
    .mega-trigger{
      border:1px solid rgba(124,230,255,.22);
      background:rgba(255,255,255,.04);
      color:#d9e8f8;
      border-radius:999px;
      padding:11px 14px;
      font-weight:800;
      display:flex;
      align-items:center;
      gap:8px;
      transition:var(--ease);
    }
    .mega-trigger:hover{
      border-color:var(--line-strong);
      background:rgba(100,243,255,.1);
      transform:translateY(-1px);
    }
    .mega-panel{
      position:absolute;
      right:0;
      top:calc(100% + 16px);
      width:560px;
      padding:18px;
      border-radius:24px;
      background:rgba(10,16,33,.94);
      border:1px solid rgba(124,230,255,.22);
      box-shadow:var(--shadow);
      backdrop-filter:blur(20px);
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:var(--ease);
    }
    .mega-holder:hover .mega-panel,
    .mega-holder:focus-within .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }
    .mega-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:14px;
    }
    .mega-card{
      padding:16px;
      border-radius:18px;
      background:linear-gradient(135deg, rgba(100,243,255,.09), rgba(138,125,255,.08));
      border:1px solid rgba(255,255,255,.09);
      min-height:116px;
    }
    .mega-card strong{
      display:block;
      color:#fff;
      margin-bottom:8px;
      font-size:16px;
    }
    .mega-card span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.55;
    }
    .mega-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:12px;
    }
    .mega-tags a{
      border:1px solid rgba(124,230,255,.22);
      border-radius:999px;
      padding:7px 10px;
      font-size:13px;
      color:#cfe7ef;
      background:rgba(255,255,255,.04);
    }
    .mega-tags a:hover{
      background:rgba(100,243,255,.12);
      border-color:var(--cyan);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .search-pill{
      width:190px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:10px 13px;
      border-radius:999px;
      border:1px solid rgba(124,230,255,.18);
      background:rgba(255,255,255,.045);
      color:var(--muted);
    }
    .search-pill input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:#fff;
      box-shadow:none;
      height:auto;
      margin:0;
      padding:0;
      font-size:14px;
    }
    .search-pill:focus-within{
      border-color:var(--cyan);
      box-shadow:0 0 0 4px rgba(100,243,255,.1);
    }
    .mobile-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(124,230,255,.22);
      background:rgba(255,255,255,.04);
      color:#fff;
    }
    .mobile-panel{
      display:none;
      border-top:1px solid rgba(124,230,255,.14);
      padding:14px 0 18px;
    }
    .mobile-panel.open{display:block;}
    .mobile-panel a{
      display:flex;
      padding:12px 4px;
      color:#dce8f5;
      font-weight:750;
      border-bottom:1px solid rgba(255,255,255,.06);
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border-radius:999px;
      padding:13px 20px;
      min-height:48px;
      font-weight:850;
      line-height:1;
      transition:var(--ease);
      border:1px solid transparent;
      text-align:center;
    }
    .btn-primary{
      color:#041017;
      background:linear-gradient(90deg,var(--cyan),#a3fbff);
      box-shadow:0 0 28px rgba(100,243,255,.26);
    }
    .btn-primary:hover{
      color:#041017;
      transform:translateY(-2px);
      box-shadow:0 0 46px rgba(100,243,255,.38);
    }
    .btn-secondary{
      color:#eaf6ff;
      background:rgba(255,255,255,.055);
      border-color:rgba(124,230,255,.28);
    }
    .btn-secondary:hover{
      color:#fff;
      background:rgba(100,243,255,.11);
      border-color:var(--cyan);
      transform:translateY(-2px);
    }
    .btn-small{
      min-height:38px;
      padding:10px 14px;
      font-size:13px;
    }

    .hero{
      padding:62px 0 58px;
      overflow:hidden;
    }
    .countdown-bar{
      margin-bottom:28px;
      border:1px solid rgba(255,210,122,.28);
      background:linear-gradient(90deg, rgba(255,210,122,.12), rgba(100,243,255,.08), rgba(138,125,255,.08));
      border-radius:20px;
      padding:14px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      box-shadow:0 14px 46px rgba(0,0,0,.18);
    }
    .countdown-left{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      color:#fff1ce;
    }
    .countdown-left i{color:var(--gold);}
    .countdown-time{
      display:flex;
      align-items:center;
      gap:8px;
      color:#fff;
      font-weight:900;
      white-space:nowrap;
    }
    .time-box{
      min-width:44px;
      text-align:center;
      padding:6px 9px;
      border-radius:12px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(0,0,0,.2);
      box-shadow:inset 0 0 18px rgba(255,255,255,.04);
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.03fr .97fr;
      gap:44px;
      align-items:center;
    }
    .hero-copy{
      position:relative;
      z-index:2;
    }
    .hero-copy .lead{margin-bottom:26px;}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:13px;
      margin:28px 0 24px;
    }
    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(124,230,255,.18);
      color:#cfe4f4;
      font-size:13px;
      font-weight:750;
    }
    .badge i{color:var(--cyan);}
    .hero-visual{
      position:relative;
      min-height:560px;
    }
    .poster-wall{
      position:absolute;
      inset:0;
      display:grid;
      grid-template-columns:repeat(6,1fr);
      grid-template-rows:repeat(6,1fr);
      gap:12px;
      transform:rotate(-2deg);
    }
    .poster{
      border-radius:22px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.12);
      background:linear-gradient(145deg, rgba(100,243,255,.18), rgba(138,125,255,.16));
      box-shadow:0 24px 58px rgba(0,0,0,.34);
      position:relative;
      isolation:isolate;
    }
    .poster::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, transparent 35%, rgba(0,0,0,.72)),
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.28), transparent 34%),
        linear-gradient(135deg, var(--poster-a), var(--poster-b));
      z-index:-1;
    }
    .poster::after{
      content:attr(data-title);
      position:absolute;
      left:14px;
      bottom:12px;
      right:14px;
      color:#fff;
      font-weight:900;
      font-size:15px;
      text-shadow:0 3px 14px rgba(0,0,0,.55);
    }
    .poster.p1{grid-column:1/4;grid-row:1/4;--poster-a:#153456;--poster-b:#7a5cff;}
    .poster.p2{grid-column:4/7;grid-row:1/3;--poster-a:#1b4852;--poster-b:#34e0d9;}
    .poster.p3{grid-column:2/5;grid-row:4/7;--poster-a:#2d173e;--poster-b:#c268ff;}
    .poster.p4{grid-column:5/7;grid-row:3/6;--poster-a:#493019;--poster-b:#ffd27a;}
    .poster.p5{grid-column:1/2;grid-row:4/6;--poster-a:#10202e;--poster-b:#64f3ff;}
    .visual-panel{
      position:absolute;
      right:18px;
      bottom:20px;
      width:285px;
      padding:18px;
      border-radius:24px;
      background:rgba(7,12,25,.76);
      border:1px solid rgba(124,230,255,.25);
      backdrop-filter:blur(18px);
      box-shadow:var(--shadow-glow);
    }
    .visual-panel strong{
      display:block;
      font-size:19px;
      margin-bottom:8px;
    }
    .visual-meter{
      height:8px;
      border-radius:99px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
      margin:14px 0 10px;
    }
    .visual-meter span{
      display:block;
      width:78%;
      height:100%;
      background:linear-gradient(90deg,var(--cyan),var(--violet));
      box-shadow:0 0 16px rgba(100,243,255,.6);
    }

    .glass-card{
      background:var(--panel);
      border:1px solid rgba(124,230,255,.16);
      border-radius:var(--radius);
      box-shadow:0 20px 62px rgba(0,0,0,.26);
      backdrop-filter:blur(18px);
      transition:var(--ease);
    }
    .glass-card:hover{
      border-color:rgba(124,230,255,.34);
      transform:translateY(-4px);
      box-shadow:0 26px 78px rgba(0,0,0,.34), var(--shadow-glow);
    }
    .feature-row{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .feature-card{
      padding:22px;
      min-height:188px;
    }
    .feature-icon{
      width:48px;
      height:48px;
      border-radius:16px;
      display:grid;
      place-items:center;
      color:#061017;
      background:linear-gradient(135deg,var(--cyan),#d1feff);
      box-shadow:0 0 24px rgba(100,243,255,.24);
      margin-bottom:16px;
      font-size:20px;
    }
    .feature-card p{font-size:15px;margin-bottom:0;}

    .activity-grid{
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:18px;
      align-items:stretch;
    }
    .activity-main{
      padding:26px;
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:24px;
      overflow:hidden;
    }
    .film-strip{
      min-height:310px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(90deg, rgba(255,255,255,.1) 8px, transparent 8px) 0 0/42px 100%,
        radial-gradient(circle at 25% 20%, rgba(100,243,255,.26), transparent 28%),
        linear-gradient(135deg, rgba(100,243,255,.12), rgba(138,125,255,.16));
      position:relative;
      overflow:hidden;
    }
    .film-strip::after{
      content:"片单更新";
      position:absolute;
      left:22px;
      bottom:22px;
      padding:9px 13px;
      border-radius:999px;
      color:#071016;
      background:var(--cyan);
      font-weight:900;
    }
    .activity-list{
      margin:20px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .activity-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:13px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.08);
      color:#dbe8f7;
    }
    .activity-list i{
      color:var(--cyan);
      margin-top:5px;
    }
    .side-stack{
      display:grid;
      gap:18px;
    }
    .mini-stat{
      padding:22px;
    }
    .stat-num{
      display:block;
      font-size:34px;
      line-height:1;
      font-weight:950;
      color:#fff;
      margin-bottom:8px;
    }
    .stat-num small{
      font-size:15px;
      color:var(--cyan);
    }

    .mosaic{
      display:grid;
      grid-template-columns:1.2fr .8fr 1fr;
      grid-template-rows:210px 170px;
      gap:16px;
    }
    .mosaic-card{
      position:relative;
      overflow:hidden;
      padding:20px;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      min-height:170px;
      background:
        linear-gradient(180deg, rgba(5,7,17,.05), rgba(5,7,17,.78)),
        linear-gradient(135deg, rgba(100,243,255,.13), rgba(177,104,255,.14));
    }
    .mosaic-card.big{grid-row:span 2;}
    .mosaic-card.wide{grid-column:span 2;}
    .mosaic-card::before{
      content:"";
      position:absolute;
      width:180px;
      height:180px;
      border-radius:50%;
      top:-65px;
      right:-58px;
      background:radial-gradient(circle, rgba(100,243,255,.32), transparent 68%);
      transition:var(--ease);
    }
    .mosaic-card:hover::before{transform:scale(1.25);}
    .mosaic-card h3,.mosaic-card p,.mosaic-card .badge{position:relative;z-index:1;}
    .mosaic-card p{margin-bottom:0;}

    .category-entry-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:18px;
    }
    .entry-card{
      padding:28px;
      position:relative;
      overflow:hidden;
    }
    .entry-card::after{
      content:"";
      position:absolute;
      inset:auto -80px -90px auto;
      width:230px;
      height:230px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(100,243,255,.2), transparent 70%);
    }
    .entry-card h3{
      font-size:26px;
      margin-bottom:12px;
    }
    .entry-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:18px 0 22px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      padding:7px 10px;
      color:#d5e4f2;
      font-size:13px;
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.1);
    }
    .tag.hot{color:#fff0c4;border-color:rgba(255,210,122,.3);background:rgba(255,210,122,.1);}
    .tag.cyan{color:#c9fbff;border-color:rgba(100,243,255,.28);background:rgba(100,243,255,.09);}

    .proof-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:18px;
      align-items:stretch;
    }
    .quote-card{
      padding:28px;
    }
    .quote-card blockquote{
      margin:0;
      color:#e6f2ff;
      font-size:22px;
      line-height:1.55;
      font-weight:750;
    }
    .quote-card cite{
      display:block;
      margin-top:18px;
      color:var(--muted);
      font-style:normal;
    }
    .proof-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .proof-list li{
      display:grid;
      grid-template-columns:44px 1fr;
      gap:14px;
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.08);
    }
    .proof-list i{
      width:44px;
      height:44px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:var(--cyan);
      background:rgba(100,243,255,.09);
      border:1px solid rgba(100,243,255,.18);
    }
    .proof-list strong{
      display:block;
      color:#fff;
      margin-bottom:4px;
    }
    .proof-list span{
      color:var(--muted);
      font-size:14px;
    }

    .faq-wrap{
      max-width:930px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      background:transparent;
      border:0;
      margin-bottom:12px;
    }
    .accordion-title{
      border:1px solid rgba(124,230,255,.18)!important;
      border-radius:18px!important;
      background:rgba(255,255,255,.045)!important;
      color:#eef6ff!important;
      font-weight:850;
      font-size:17px;
      padding:18px 52px 18px 20px;
      transition:var(--ease);
    }
    .accordion-title::before{
      color:var(--cyan);
      right:20px;
      margin-top:-.55rem;
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:rgba(100,243,255,.08)!important;
      border-color:rgba(100,243,255,.36)!important;
    }
    .accordion-content{
      border:1px solid rgba(124,230,255,.18)!important;
      border-top:0!important;
      border-radius:0 0 18px 18px!important;
      background:rgba(11,17,34,.72)!important;
      color:var(--muted);
      padding:18px 20px 20px;
    }

    .cta-card{
      position:relative;
      overflow:hidden;
      padding:44px;
      border-radius:30px;
      border:1px solid rgba(100,243,255,.26);
      background:
        radial-gradient(circle at 15% 30%, rgba(100,243,255,.22), transparent 28%),
        radial-gradient(circle at 82% 18%, rgba(177,104,255,.2), transparent 30%),
        rgba(12,18,36,.78);
      box-shadow:var(--shadow), var(--shadow-glow);
      display:grid;
      grid-template-columns:1fr auto;
      gap:28px;
      align-items:center;
    }
    .cta-card::before{
      content:"";
      position:absolute;
      inset:16px;
      border:1px solid rgba(255,255,255,.07);
      border-radius:24px;
      pointer-events:none;
    }
    .cta-card h2,.cta-card p,.cta-card .hero-actions{position:relative;z-index:1;}
    .cta-card p{max-width:680px;margin-bottom:0;}

    .site-footer{
      border-top:1px solid rgba(124,230,255,.14);
      background:rgba(4,6,14,.66);
      padding:54px 0 30px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .8fr .8fr 1fr;
      gap:28px;
      margin-bottom:34px;
    }
    .footer-title{
      color:#fff;
      font-weight:900;
      margin-bottom:14px;
      display:block;
    }
    .footer-text{
      color:var(--muted);
      font-size:14px;
      margin:12px 0 0;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:#aebbd0;
      font-size:14px;
    }
    .footer-links a:hover{color:var(--cyan);padding-left:3px;}
    .copyright{
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.08);
      display:flex;
      justify-content:space-between;
      gap:14px;
      color:var(--muted-2);
      font-size:13px;
      flex-wrap:wrap;
    }

    @media (max-width:1200px){
      .search-pill{display:none;}
      .hero-grid{gap:28px;}
      .hero-visual{min-height:500px;}
      .feature-row{grid-template-columns:repeat(2,1fr);}
    }
    @media (max-width:992px){
      .desktop-nav,.nav-actions{display:none;}
      .mobile-toggle{display:grid;place-items:center;}
      .hero-grid,.activity-grid,.activity-main,.proof-grid,.cta-card{
        grid-template-columns:1fr;
      }
      .hero-visual{min-height:470px;}
      .mosaic{
        grid-template-columns:1fr 1fr;
        grid-template-rows:auto;
      }
      .mosaic-card.big,.mosaic-card.wide{
        grid-column:auto;
        grid-row:auto;
      }
      .footer-grid{grid-template-columns:1fr 1fr;}
    }
    @media (max-width:768px){
      .site-container{width:min(100% - 28px, var(--container));}
      .section{padding:58px 0;}
      .hero{padding:38px 0 42px;}
      .countdown-bar{
        align-items:flex-start;
        flex-direction:column;
      }
      .countdown-time{white-space:normal;flex-wrap:wrap;}
      .hero-actions{width:100%;}
      .hero-actions .btn{flex:1 1 100%;}
      .hero-visual{min-height:410px;}
      .poster-wall{gap:9px;}
      .visual-panel{
        left:14px;
        right:14px;
        width:auto;
      }
      .feature-row,.category-entry-grid,.mosaic{
        grid-template-columns:1fr;
      }
      .cta-card{padding:30px 22px;}
      .footer-grid{grid-template-columns:1fr;}
      .copyright{display:block;}
    }
    @media (max-width:576px){
      .brand-text{font-size:16px;}
      .brand-mark{width:38px;height:38px;border-radius:13px;}
      h1{font-size:38px;}
      .lead{font-size:16px;}
      .poster.p1{grid-column:1/5;grid-row:1/4;}
      .poster.p2{grid-column:5/7;grid-row:1/4;}
      .poster.p3{grid-column:1/4;grid-row:4/7;}
      .poster.p4{grid-column:4/7;grid-row:4/6;}
      .poster.p5{display:none;}
      .feature-card,.entry-card,.activity-main,.quote-card,.mini-stat{padding:20px;}
      .countdown-left{align-items:flex-start;}
    }

/* roulang page: category2 */
:root{
      --bg-0:#060912;
      --bg-1:#0b1020;
      --bg-2:#10182b;
      --panel:rgba(17,25,43,.76);
      --panel-strong:rgba(20,31,54,.92);
      --panel-soft:rgba(255,255,255,.055);
      --text:#eef6ff;
      --muted:#a9b8ce;
      --dim:#74839a;
      --line:rgba(133,233,255,.18);
      --line-strong:rgba(97,232,255,.42);
      --cyan:#61e8ff;
      --cyan-2:#24c7d9;
      --violet:#8b7cff;
      --violet-2:#5e4dff;
      --gold:#ffd27a;
      --pink:#ff7bc8;
      --green:#7df0b8;
      --shadow:0 22px 70px rgba(0,0,0,.38);
      --shadow-cyan:0 0 34px rgba(97,232,255,.20);
      --radius:18px;
      --radius-lg:28px;
      --radius-sm:12px;
      --header-h:78px;
      --ease:all .24s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      font-family:"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      line-height:1.75;
      background:
        radial-gradient(circle at 12% 10%, rgba(97,232,255,.16), transparent 30%),
        radial-gradient(circle at 82% 5%, rgba(139,124,255,.18), transparent 28%),
        radial-gradient(circle at 70% 72%, rgba(255,123,200,.10), transparent 30%),
        linear-gradient(180deg,var(--bg-0),var(--bg-1) 48%,#05070d);
      overflow-x:hidden;
    }

    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      background-image:
        linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
      background-size:44px 44px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.78), transparent 86%);
    }

    body:after{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      opacity:.18;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(/%23n)' opacity='.35'/%3E%3C/svg%3E");
    }

    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--cyan)}
    img{display:block;max-width:100%;height:auto}
    button,input{font:inherit}
    button{cursor:pointer}
    :focus-visible{
      outline:2px solid var(--cyan);
      outline-offset:3px;
      border-radius:10px;
    }

    .site-container{
      width:min(1180px, calc(100% - 36px));
      margin-inline:auto;
    }

    .section{
      padding:84px 0;
      position:relative;
    }

    .section.compact{padding:56px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid var(--line);
      border-radius:999px;
      color:var(--cyan);
      background:rgba(97,232,255,.07);
      font-size:13px;
      letter-spacing:.02em;
      margin-bottom:16px;
    }

    .section-title{
      margin:0 0 14px;
      font-size:clamp(28px,4vw,44px);
      line-height:1.18;
      font-weight:900;
      letter-spacing:-.04em;
    }

    .section-lead{
      margin:0;
      color:var(--muted);
      max-width:760px;
      font-size:16px;
    }

    .site-header{
      position:fixed;
      z-index:1000;
      inset:0 0 auto;
      min-height:var(--header-h);
      border-bottom:1px solid rgba(133,233,255,.16);
      background:rgba(6,9,18,.78);
      backdrop-filter:blur(22px);
      box-shadow:0 14px 38px rgba(0,0,0,.22);
    }

    .nav-wrap{
      height:var(--header-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }

    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      color:var(--text);
      font-weight:900;
      letter-spacing:-.03em;
    }

    .brand:hover{color:var(--text)}
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:15px;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(135deg, rgba(97,232,255,.95), rgba(139,124,255,.86)),
        radial-gradient(circle at 70% 25%, #fff, transparent 22%);
      box-shadow:0 0 28px rgba(97,232,255,.32);
    }

    .brand-mark:before{
      content:"";
      position:absolute;
      left:15px;
      top:11px;
      width:0;
      height:0;
      border-left:14px solid rgba(5,8,16,.9);
      border-top:9px solid transparent;
      border-bottom:9px solid transparent;
      filter:drop-shadow(0 0 6px rgba(255,255,255,.35));
    }

    .brand-mark:after{
      content:"";
      position:absolute;
      inset:6px;
      border:1px solid rgba(255,255,255,.42);
      border-radius:11px;
    }

    .brand-text{font-size:18px}
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:6px;
      flex:1;
    }

    .nav-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:10px 13px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      border:1px solid transparent;
    }

    .nav-link:hover{
      color:var(--text);
      background:rgba(255,255,255,.06);
      border-color:var(--line);
    }

    .nav-link.active{
      color:var(--bg-0);
      background:linear-gradient(135deg,var(--cyan),#baf5ff);
      box-shadow:var(--shadow-cyan);
      font-weight:800;
    }

    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:max-content;
    }

    .search-pill{
      display:flex;
      align-items:center;
      gap:8px;
      height:42px;
      width:206px;
      padding:0 14px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.055);
      color:var(--muted);
      transition:var(--ease);
    }

    .search-pill:focus-within{
      border-color:var(--cyan);
      box-shadow:0 0 0 4px rgba(97,232,255,.12);
      color:var(--cyan);
    }

    .search-pill input{
      width:100%;
      min-width:0;
      border:0;
      outline:0;
      color:var(--text);
      background:transparent;
      font-size:13px;
      box-shadow:none;
      margin:0;
      height:auto;
      padding:0;
    }

    .search-pill input::placeholder{color:#7b8ca4}

    .mega-holder{position:relative}
    .mega-trigger,.mobile-toggle{
      border:1px solid var(--line);
      color:var(--text);
      background:rgba(255,255,255,.07);
      border-radius:999px;
      height:42px;
      padding:0 15px;
      display:inline-flex;
      align-items:center;
      gap:8px;
      transition:var(--ease);
    }

    .mega-trigger:hover,.mobile-toggle:hover{
      border-color:var(--line-strong);
      transform:translateY(-1px);
      box-shadow:var(--shadow-cyan);
    }

    .mega-panel{
      position:absolute;
      top:calc(100% + 14px);
      right:0;
      width:min(560px, calc(100vw - 34px));
      padding:18px;
      border:1px solid var(--line);
      border-radius:22px;
      background:rgba(9,14,27,.94);
      backdrop-filter:blur(24px);
      box-shadow:var(--shadow);
      opacity:0;
      visibility:hidden;
      transform:translateY(10px);
      transition:var(--ease);
    }

    .mega-holder:hover .mega-panel,
    .mega-holder:focus-within .mega-panel{
      opacity:1;
      visibility:visible;
      transform:translateY(0);
    }

    .mega-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:12px;
      margin-bottom:14px;
    }

    .mega-card{
      padding:15px;
      border-radius:16px;
      border:1px solid rgba(133,233,255,.14);
      background:linear-gradient(145deg, rgba(97,232,255,.08), rgba(139,124,255,.08));
    }

    .mega-card strong{
      display:block;
      color:var(--text);
      margin-bottom:7px;
      font-size:15px;
    }

    .mega-card span{
      display:block;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
    }

    .mega-card:hover{
      transform:translateY(-2px);
      border-color:var(--line-strong);
      box-shadow:var(--shadow-cyan);
    }

    .mega-tags{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }

    .mega-tags a,.tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:999px;
      color:#cce9f4;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.09);
      font-size:13px;
    }

    .mega-tags a:hover,.tag:hover{
      border-color:var(--cyan);
      color:var(--cyan);
      background:rgba(97,232,255,.08);
    }

    .mobile-toggle{display:none}
    .mobile-panel{
      display:none;
      padding:0 0 18px;
      border-top:1px solid rgba(133,233,255,.12);
    }

    .mobile-panel a{
      display:flex;
      padding:12px 4px;
      color:var(--muted);
      border-bottom:1px solid rgba(255,255,255,.06);
    }

    .mobile-panel a.active{color:var(--cyan)}

    main{padding-top:var(--header-h)}
    .hero-special{
      padding:52px 0 64px;
      overflow:hidden;
    }

    .breadcrumb{
      display:flex;
      align-items:center;
      flex-wrap:wrap;
      gap:9px;
      margin:0 0 28px;
      color:var(--dim);
      font-size:14px;
    }

    .breadcrumb a{color:var(--muted)}
    .breadcrumb i{font-size:11px;color:var(--cyan)}

    .hero-shell{
      position:relative;
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:
        radial-gradient(circle at 78% 20%, rgba(97,232,255,.22), transparent 30%),
        linear-gradient(135deg, rgba(17,25,43,.92), rgba(9,14,27,.72));
      box-shadow:var(--shadow);
    }

    .hero-shell:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size:88px 88px;
      opacity:.38;
      pointer-events:none;
    }

    .hero-content{
      position:relative;
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(320px,.92fr);
      gap:42px;
      align-items:center;
      padding:48px;
    }

    h1{
      margin:0 0 18px;
      font-size:clamp(34px,5vw,62px);
      line-height:1.08;
      font-weight:950;
      letter-spacing:-.055em;
    }

    .hero-desc{
      color:var(--muted);
      font-size:17px;
      max-width:680px;
      margin:0 0 24px;
    }

    .hero-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin:28px 0 0;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:12px 18px;
      border-radius:14px;
      border:1px solid transparent;
      font-weight:850;
      transition:var(--ease);
      line-height:1.2;
    }

    .btn-primary{
      color:#04101a;
      background:linear-gradient(135deg,var(--cyan),#d6fbff);
      box-shadow:0 0 32px rgba(97,232,255,.24);
    }

    .btn-primary:hover{
      color:#04101a;
      transform:translateY(-2px);
      box-shadow:0 0 44px rgba(97,232,255,.36);
    }

    .btn-ghost{
      color:var(--text);
      border-color:var(--line);
      background:rgba(255,255,255,.06);
    }

    .btn-ghost:hover{
      color:var(--cyan);
      border-color:var(--cyan);
      transform:translateY(-2px);
      background:rgba(97,232,255,.08);
    }

    .hero-badges{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:20px;
    }

    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      color:#d9f7ff;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(133,233,255,.14);
      font-size:13px;
    }

    .theme-poster{
      position:relative;
      min-height:390px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      transform:rotate(-1deg);
    }

    .poster-tile{
      position:relative;
      overflow:hidden;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.13);
      background:
        linear-gradient(145deg, rgba(97,232,255,.17), rgba(139,124,255,.12)),
        var(--panel);
      min-height:176px;
      box-shadow:0 18px 46px rgba(0,0,0,.28);
    }

    .poster-tile.large{
      grid-row:span 2;
      min-height:366px;
    }

    .poster-tile:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 55% 35%, rgba(255,255,255,.18), transparent 18%),
        linear-gradient(135deg, transparent 0 35%, rgba(255,255,255,.07) 35% 38%, transparent 38% 60%, rgba(97,232,255,.16) 60% 62%, transparent 62%);
    }

    .poster-tile:after{
      content:attr(data-label);
      position:absolute;
      left:14px;
      right:14px;
      bottom:14px;
      padding:10px 12px;
      border-radius:13px;
      background:rgba(3,7,15,.62);
      backdrop-filter:blur(12px);
      color:var(--text);
      font-weight:900;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.1);
    }

    .poster-tile:nth-child(2){background:linear-gradient(145deg, rgba(255,123,200,.16), rgba(139,124,255,.18)),var(--panel)}
    .poster-tile:nth-child(3){background:linear-gradient(145deg, rgba(255,210,122,.14), rgba(97,232,255,.12)),var(--panel)}

    .layout-special{
      display:grid;
      grid-template-columns:280px minmax(0,1fr);
      gap:28px;
      align-items:start;
    }

    .topic-index{
      position:sticky;
      top:calc(var(--header-h) + 22px);
      padding:20px;
      border-radius:22px;
      border:1px solid var(--line);
      background:rgba(12,18,34,.78);
      backdrop-filter:blur(20px);
      box-shadow:0 18px 48px rgba(0,0,0,.22);
    }

    .topic-index-title{
      display:flex;
      align-items:center;
      gap:9px;
      font-weight:900;
      margin-bottom:14px;
      color:var(--text);
    }

    .topic-index a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:11px 12px;
      margin:7px 0;
      border-radius:14px;
      color:var(--muted);
      border:1px solid transparent;
      background:rgba(255,255,255,.035);
      font-size:14px;
    }

    .topic-index a:hover{
      color:var(--cyan);
      border-color:var(--line);
      background:rgba(97,232,255,.075);
      transform:translateX(3px);
    }

    .index-note{
      margin:16px 0 0;
      padding:13px;
      border-radius:15px;
      color:#d6e5f2;
      background:rgba(255,210,122,.08);
      border:1px solid rgba(255,210,122,.22);
      font-size:13px;
      line-height:1.65;
    }

    .content-stack{
      display:grid;
      gap:22px;
    }

    .feature-card{
      position:relative;
      overflow:hidden;
      display:grid;
      grid-template-columns:280px minmax(0,1fr);
      gap:24px;
      padding:22px;
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(17,25,43,.72);
      box-shadow:0 18px 58px rgba(0,0,0,.23);
      transition:var(--ease);
    }

    .feature-card:hover{
      transform:translateY(-4px);
      border-color:var(--line-strong);
      box-shadow:var(--shadow), var(--shadow-cyan);
    }

    .feature-art{
      position:relative;
      min-height:210px;
      border-radius:20px;
      overflow:hidden;
      background:linear-gradient(135deg, rgba(97,232,255,.18), rgba(139,124,255,.18));
      border:1px solid rgba(255,255,255,.12);
    }

    .feature-art:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 30% 26%, rgba(255,255,255,.18), transparent 20%),
        linear-gradient(145deg, rgba(0,0,0,.05), rgba(0,0,0,.45)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.10) 0 3px, transparent 3px 18px);
      opacity:.82;
    }

    .feature-art:after{
      content:attr(data-rank);
      position:absolute;
      left:16px;
      top:16px;
      width:48px;
      height:48px;
      display:grid;
      place-items:center;
      border-radius:16px;
      background:rgba(5,8,16,.72);
      border:1px solid rgba(255,255,255,.16);
      color:var(--cyan);
      font-weight:950;
      font-size:20px;
      backdrop-filter:blur(12px);
    }

    .feature-body{min-width:0}
    .feature-top{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:10px;
    }

    .level-badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      color:#07111b;
      background:linear-gradient(135deg,var(--gold),#fff0bd);
      font-size:12px;
      font-weight:900;
    }

    .feature-card h2{
      margin:0 0 10px;
      font-size:clamp(22px,3vw,31px);
      line-height:1.2;
      letter-spacing:-.035em;
      font-weight:950;
    }

    .feature-card p{
      margin:0 0 18px;
      color:var(--muted);
      font-size:15px;
    }

    .mini-list{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:18px;
    }

    .mini-item{
      padding:12px;
      border-radius:15px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.08);
    }

    .mini-item strong{
      display:block;
      color:var(--text);
      font-size:14px;
      margin-bottom:3px;
    }

    .mini-item span{
      color:var(--dim);
      font-size:12px;
    }

    .highlight-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
      margin-top:28px;
    }

    .glass-card{
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(17,25,43,.68);
      backdrop-filter:blur(20px);
      box-shadow:0 18px 58px rgba(0,0,0,.22);
    }

    .spotlight{
      padding:28px;
      min-height:100%;
    }

    .spotlight h2,.timeline-card h2,.faq-card h2,.cta-card h2{
      margin:0 0 12px;
      font-size:clamp(25px,3vw,38px);
      line-height:1.18;
      letter-spacing:-.04em;
      font-weight:950;
    }

    .spotlight p,.timeline-card p,.faq-card p,.cta-card p{
      color:var(--muted);
      margin:0;
    }

    .spotlight-list{
      display:grid;
      gap:14px;
      margin-top:24px;
    }

    .spotlight-row{
      display:grid;
      grid-template-columns:42px minmax(0,1fr);
      gap:13px;
      padding:15px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.045);
    }

    .spotlight-row i{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:var(--cyan);
      background:rgba(97,232,255,.10);
      border:1px solid rgba(97,232,255,.22);
    }

    .spotlight-row strong{
      display:block;
      margin-bottom:3px;
      color:var(--text);
    }

    .spotlight-row span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }

    .tag-cloud{
      padding:24px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:24px;
      background:
        radial-gradient(circle at 70% 15%, rgba(255,123,200,.14), transparent 30%),
        rgba(17,25,43,.68);
    }

    .tag-cloud h3{
      margin:0 0 12px;
      font-size:22px;
      font-weight:950;
    }

    .tags-wrap{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }

    .tag.is-hot{
      color:#1a1203;
      background:linear-gradient(135deg,var(--gold),#fff2c6);
      border-color:transparent;
      font-weight:900;
    }

    .update-box{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(97,232,255,.18);
      background:rgba(97,232,255,.065);
    }

    .update-box strong{
      display:flex;
      align-items:center;
      gap:8px;
      color:var(--cyan);
      margin-bottom:6px;
    }

    .update-box span{
      display:block;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }

    .timeline-card{
      padding:30px;
    }

    .timeline{
      position:relative;
      margin-top:28px;
      display:grid;
      gap:18px;
    }

    .timeline:before{
      content:"";
      position:absolute;
      left:20px;
      top:8px;
      bottom:8px;
      width:1px;
      background:linear-gradient(var(--cyan), rgba(139,124,255,.3));
    }

    .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:42px minmax(0,1fr);
      gap:16px;
    }

    .timeline-dot{
      width:42px;
      height:42px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#06101a;
      background:linear-gradient(135deg,var(--cyan),#cdf9ff);
      font-weight:950;
      box-shadow:0 0 24px rgba(97,232,255,.24);
      z-index:1;
    }

    .timeline-panel{
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.09);
    }

    .timeline-panel strong{
      display:block;
      margin-bottom:6px;
      font-size:17px;
    }

    .timeline-panel span{
      color:var(--muted);
      font-size:14px;
    }

    .faq-card{
      padding:30px;
    }

    .accordion{
      margin-top:24px;
      background:transparent;
    }

    .accordion-item{
      margin-bottom:12px;
      border:1px solid rgba(133,233,255,.16);
      border-radius:18px;
      overflow:hidden;
      background:rgba(255,255,255,.045);
    }

    .accordion-title{
      border:0 !important;
      color:var(--text);
      background:rgba(255,255,255,.035);
      font-weight:850;
      font-size:16px;
      padding:18px 50px 18px 18px;
    }

    .accordion-title:before{
      color:var(--cyan);
      font-size:22px;
      right:18px;
      margin-top:-13px;
    }

    .accordion-title:hover,.accordion-title:focus{
      color:var(--cyan);
      background:rgba(97,232,255,.07);
    }

    .accordion-content{
      border:0 !important;
      color:var(--muted);
      background:rgba(5,8,16,.28);
      padding:0 18px 18px;
      line-height:1.75;
    }

    .is-active>.accordion-title{
      color:var(--cyan);
      background:rgba(97,232,255,.08);
    }

    .cta-card{
      position:relative;
      overflow:hidden;
      padding:38px;
      border-radius:28px;
      border:1px solid var(--line-strong);
      background:
        radial-gradient(circle at 15% 20%, rgba(97,232,255,.18), transparent 32%),
        radial-gradient(circle at 88% 60%, rgba(139,124,255,.18), transparent 32%),
        rgba(17,25,43,.78);
      box-shadow:var(--shadow), var(--shadow-cyan);
    }

    .cta-card:before{
      content:"";
      position:absolute;
      inset:auto -10% -60% 35%;
      height:220px;
      transform:rotate(-8deg);
      background:linear-gradient(90deg, transparent, rgba(97,232,255,.18), transparent);
      filter:blur(8px);
    }

    .cta-inner{
      position:relative;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }

    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      min-width:max-content;
    }

    .site-footer{
      padding:58px 0 26px;
      border-top:1px solid rgba(133,233,255,.14);
      background:
        radial-gradient(circle at 20% 0, rgba(97,232,255,.10), transparent 24%),
        rgba(3,6,12,.72);
    }

    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr .75fr 1fr;
      gap:30px;
      align-items:start;
      margin-bottom:28px;
    }

    .footer-text{
      color:var(--muted);
      margin:14px 0 0;
      font-size:14px;
      line-height:1.75;
    }

    .footer-title{
      display:block;
      color:var(--text);
      font-weight:900;
      margin-bottom:13px;
    }

    .footer-links{
      display:grid;
      gap:9px;
    }

    .footer-links a{
      color:var(--muted);
      font-size:14px;
    }

    .footer-links a:hover{
      color:var(--cyan);
      transform:translateX(2px);
    }

    .copyright{
      display:flex;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.08);
      color:var(--dim);
      font-size:13px;
    }

    @media (max-width:1200px){
      .search-pill{display:none}
      .hero-content{grid-template-columns:1fr .78fr;padding:38px}
      .feature-card{grid-template-columns:240px 1fr}
    }

    @media (max-width:992px){
      :root{--header-h:72px}
      .desktop-nav,.nav-actions{display:none}
      .mobile-toggle{display:inline-flex}
      .mobile-panel.is-open{display:block}
      .hero-content{grid-template-columns:1fr}
      .theme-poster{min-height:300px;max-width:620px}
      .poster-tile.large{min-height:300px}
      .layout-special{grid-template-columns:1fr}
      .topic-index{
        position:relative;
        top:auto;
      }
      .topic-index nav{
        display:grid;
        grid-template-columns:1fr 1fr;
        gap:8px;
      }
      .topic-index a{margin:0}
      .feature-card{grid-template-columns:1fr}
      .feature-art{min-height:230px}
      .highlight-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .cta-inner{align-items:flex-start;flex-direction:column}
      .cta-actions{min-width:0}
    }

    @media (max-width:768px){
      .site-container{width:min(100% - 26px, 1180px)}
      .section{padding:62px 0}
      .hero-special{padding:34px 0 48px}
      .hero-content{padding:28px}
      .hero-actions,.cta-actions{width:100%}
      .btn{width:100%}
      .topic-index nav{grid-template-columns:1fr}
      .mini-list{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .copyright{flex-direction:column}
    }

    @media (max-width:576px){
      .brand-text{font-size:16px}
      .brand-mark{width:38px;height:38px;border-radius:13px}
      .hero-shell{border-radius:22px}
      .hero-content{padding:22px}
      .theme-poster{
        grid-template-columns:1fr;
        transform:none;
      }
      .poster-tile,.poster-tile.large{min-height:150px}
      .feature-card,.spotlight,.tag-cloud,.timeline-card,.faq-card,.cta-card{padding:20px}
      .breadcrumb{font-size:13px}
      .section-title{font-size:28px}
    }

/* roulang page: category1 */
:root {
      --bg-deep: #070a12;
      --bg-ink: #0d1322;
      --bg-panel: rgba(16, 24, 41, 0.76);
      --bg-panel-strong: rgba(22, 34, 56, 0.9);
      --text-main: #f3f7ff;
      --text-soft: #b8c4d8;
      --text-muted: #7f8da6;
      --line: rgba(143, 244, 255, 0.18);
      --line-strong: rgba(118, 238, 255, 0.36);
      --cyan: #56f0ff;
      --cyan-2: #27c7d7;
      --violet: #8b6dff;
      --blue: #2d69ff;
      --amber: #f5bf5a;
      --green: #4de2a8;
      --danger: #ff718b;
      --radius-sm: 12px;
      --radius-md: 18px;
      --radius-lg: 26px;
      --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.34);
      --shadow-glow: 0 0 0 1px rgba(86, 240, 255, 0.14), 0 18px 70px rgba(39, 199, 215, 0.14);
      --header-h: 82px;
      --container: 1180px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--text-main);
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      line-height: 1.72;
      background:
        radial-gradient(circle at 12% 8%, rgba(86, 240, 255, 0.16), transparent 30%),
        radial-gradient(circle at 86% 12%, rgba(139, 109, 255, 0.18), transparent 32%),
        radial-gradient(circle at 52% 58%, rgba(45, 105, 255, 0.09), transparent 34%),
        linear-gradient(135deg, #060810 0%, #0b1120 44%, #080b14 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.28;
      background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 72%);
      z-index: -2;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(7, 10, 18, 0.1), rgba(7, 10, 18, 0.78));
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    input,
    button,
    a {
      outline: none;
    }

    input:focus,
    button:focus-visible,
    a:focus-visible {
      box-shadow: 0 0 0 3px rgba(86, 240, 255, 0.24);
      border-color: rgba(86, 240, 255, 0.64) !important;
    }

    .site-container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(7, 10, 18, 0.78);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(143, 244, 255, 0.14);
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    }

    .nav-wrap {
      min-height: var(--header-h);
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
      color: var(--text-main);
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .brand:hover {
      color: var(--cyan);
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      position: relative;
      background:
        linear-gradient(135deg, rgba(86,240,255,0.2), rgba(139,109,255,0.24)),
        rgba(255,255,255,0.04);
      border: 1px solid rgba(86, 240, 255, 0.34);
      box-shadow: inset 0 0 18px rgba(86,240,255,0.16), 0 0 26px rgba(86,240,255,0.12);
    }

    .brand-mark::before {
      content: "";
      position: absolute;
      left: 15px;
      top: 11px;
      width: 0;
      height: 0;
      border-top: 10px solid transparent;
      border-bottom: 10px solid transparent;
      border-left: 15px solid var(--cyan);
      filter: drop-shadow(0 0 8px rgba(86,240,255,0.9));
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 7px;
      border-radius: 10px;
      border: 1px dashed rgba(255,255,255,0.26);
    }

    .brand-text {
      font-size: 18px;
      white-space: nowrap;
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
    }

    .nav-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 13px;
      border-radius: 999px;
      color: var(--text-soft);
      border: 1px solid transparent;
      font-size: 14px;
      line-height: 1;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--text-main);
      background: rgba(86, 240, 255, 0.09);
      border-color: rgba(86, 240, 255, 0.28);
      box-shadow: 0 0 22px rgba(86, 240, 255, 0.1);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .search-pill {
      width: 188px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 13px;
      border: 1px solid rgba(143, 244, 255, 0.18);
      border-radius: 999px;
      color: var(--text-muted);
      background: rgba(255,255,255,0.045);
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .search-pill:focus-within {
      background: rgba(86,240,255,0.07);
      border-color: rgba(86,240,255,0.54);
      box-shadow: 0 0 0 3px rgba(86, 240, 255, 0.14);
    }

    .search-pill input {
      min-width: 0;
      width: 100%;
      border: 0;
      box-shadow: none;
      margin: 0;
      padding: 0;
      height: auto;
      color: var(--text-main);
      background: transparent;
      font-size: 13px;
    }

    .search-pill input::placeholder {
      color: rgba(184,196,216,0.68);
    }

    .mega-holder {
      position: relative;
    }

    .mega-trigger {
      min-height: 42px;
      padding: 0 15px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: var(--text-main);
      border: 1px solid rgba(86, 240, 255, 0.28);
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(86, 240, 255, 0.12), rgba(139, 109, 255, 0.11));
    }

    .mega-trigger:hover {
      transform: translateY(-1px);
      border-color: rgba(86, 240, 255, 0.55);
      box-shadow: 0 12px 34px rgba(86, 240, 255, 0.12);
    }

    .mega-panel {
      position: absolute;
      right: 0;
      top: calc(100% + 14px);
      width: 450px;
      padding: 18px;
      border: 1px solid rgba(143, 244, 255, 0.2);
      border-radius: 22px;
      background: rgba(10, 16, 29, 0.94);
      backdrop-filter: blur(24px);
      box-shadow: var(--shadow-soft);
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
    }

    .mega-holder:hover .mega-panel,
    .mega-holder:focus-within .mega-panel {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .mega-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .mega-card {
      display: block;
      padding: 15px;
      border-radius: 17px;
      background: rgba(255,255,255,0.055);
      border: 1px solid rgba(255,255,255,0.08);
    }

    .mega-card:hover {
      transform: translateY(-2px);
      border-color: rgba(86,240,255,0.34);
      background: rgba(86,240,255,0.08);
    }

    .mega-card strong {
      display: block;
      color: var(--text-main);
      margin-bottom: 7px;
      font-size: 14px;
    }

    .mega-card span {
      display: block;
      color: var(--text-soft);
      font-size: 12px;
      line-height: 1.65;
    }

    .mega-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      padding-top: 14px;
      margin-top: 14px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mega-tags a,
    .chip,
    .filter-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      border: 1px solid rgba(143, 244, 255, 0.18);
      color: var(--text-soft);
      background: rgba(255,255,255,0.045);
      transition: transform var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
    }

    .mega-tags a {
      padding: 7px 10px;
      font-size: 12px;
    }

    .mega-tags a:hover,
    .chip:hover,
    .filter-chip:hover,
    .filter-chip.is-active {
      color: var(--text-main);
      border-color: rgba(86,240,255,0.44);
      background: rgba(86,240,255,0.1);
    }

    .mobile-toggle {
      display: none;
      margin-left: auto;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      border: 1px solid rgba(86,240,255,0.22);
      color: var(--text-main);
      background: rgba(255,255,255,0.055);
    }

    .mobile-panel {
      display: none;
      padding: 0 0 18px;
      border-top: 1px solid rgba(255,255,255,0.08);
    }

    .mobile-panel a {
      display: block;
      padding: 13px 4px;
      color: var(--text-soft);
      border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .mobile-panel a:hover {
      color: var(--cyan);
    }

    main {
      position: relative;
    }

    .section {
      padding: 74px 0;
      position: relative;
    }

    .section-tight {
      padding: 46px 0;
    }

    .breadcrumb-wrap {
      padding: 24px 0 0;
    }

    .breadcrumbs {
      margin: 0;
      background: transparent;
      color: var(--text-muted);
      font-size: 13px;
    }

    .breadcrumbs a {
      color: var(--text-soft);
    }

    .breadcrumbs a:hover {
      color: var(--cyan);
    }

    .category-hero {
      padding: 54px 0 28px;
    }

    .hero-banner {
      overflow: hidden;
      position: relative;
      border-radius: 28px;
      border: 1px solid rgba(143, 244, 255, 0.2);
      background:
        linear-gradient(110deg, rgba(8, 12, 24, 0.96), rgba(18, 35, 55, 0.86) 52%, rgba(33, 21, 55, 0.78)),
        radial-gradient(circle at 84% 24%, rgba(86,240,255,0.26), transparent 25%);
      box-shadow: var(--shadow-glow);
    }

    .hero-banner::before {
      content: "";
      position: absolute;
      inset: -1px;
      background:
        linear-gradient(90deg, transparent 0 8%, rgba(86,240,255,0.08) 8% 9%, transparent 9% 18%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 1px, transparent 1px 78px);
      opacity: 0.36;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 42px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--cyan);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.06em;
      margin-bottom: 16px;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 820px;
      margin-bottom: 16px;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.08;
      letter-spacing: -0.05em;
      font-weight: 900;
    }

    h2 {
      font-size: clamp(26px, 3vw, 38px);
      line-height: 1.18;
      letter-spacing: -0.03em;
      margin-bottom: 14px;
      font-weight: 850;
    }

    h3 {
      font-size: 18px;
      line-height: 1.35;
      font-weight: 800;
      margin-bottom: 9px;
    }

    .hero-lead,
    .section-lead {
      color: var(--text-soft);
      font-size: 17px;
      max-width: 760px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      align-items: center;
      margin-top: 26px;
    }

    .btn-glow,
    .btn-ghost,
    .btn-small {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      line-height: 1;
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
    }

    .btn-glow {
      min-height: 48px;
      padding: 0 22px;
      color: #041018;
      background: linear-gradient(135deg, var(--cyan), #8ff7ff 52%, #a99cff);
      box-shadow: 0 14px 38px rgba(86,240,255,0.22);
    }

    .btn-glow:hover {
      color: #041018;
      transform: translateY(-2px);
      box-shadow: 0 18px 48px rgba(86,240,255,0.33);
    }

    .btn-ghost {
      min-height: 48px;
      padding: 0 20px;
      color: var(--text-main);
      background: rgba(255,255,255,0.055);
      border-color: rgba(143, 244, 255, 0.22);
    }

    .btn-ghost:hover {
      color: var(--cyan);
      transform: translateY(-2px);
      border-color: rgba(86,240,255,0.48);
      background: rgba(86,240,255,0.08);
    }

    .btn-small {
      min-height: 40px;
      padding: 0 15px;
      font-size: 13px;
      color: var(--text-main);
      background: rgba(86,240,255,0.08);
      border-color: rgba(86,240,255,0.28);
    }

    .btn-small:hover {
      transform: translateY(-1px);
      color: var(--cyan);
      border-color: rgba(86,240,255,0.5);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      margin-top: 30px;
    }

    .metric-card {
      padding: 14px 15px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.09);
      background: rgba(255,255,255,0.055);
    }

    .metric-card strong {
      display: block;
      color: var(--text-main);
      font-size: 20px;
      line-height: 1.2;
    }

    .metric-card span {
      display: block;
      color: var(--text-muted);
      font-size: 12px;
      margin-top: 4px;
    }

    .poster-beams {
      position: absolute;
      right: 28px;
      bottom: -30px;
      width: 310px;
      height: 230px;
      opacity: 0.94;
      pointer-events: none;
    }

    .poster-beams span {
      position: absolute;
      width: 118px;
      height: 172px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,0.18);
      background:
        linear-gradient(160deg, rgba(86,240,255,0.16), rgba(139,109,255,0.18)),
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.025));
      box-shadow: 0 20px 44px rgba(0,0,0,0.28), inset 0 0 28px rgba(86,240,255,0.08);
    }

    .poster-beams span:nth-child(1) {
      left: 18px;
      top: 34px;
      transform: rotate(-10deg);
    }

    .poster-beams span:nth-child(2) {
      left: 112px;
      top: 0;
      transform: rotate(5deg);
      background:
        linear-gradient(160deg, rgba(245,191,90,0.12), rgba(86,240,255,0.16)),
        linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.03));
    }

    .poster-beams span:nth-child(3) {
      left: 196px;
      top: 42px;
      transform: rotate(12deg);
    }

    .panel-card {
      border: 1px solid rgba(143, 244, 255, 0.16);
      border-radius: var(--radius-lg);
      background: var(--bg-panel);
      backdrop-filter: blur(22px);
      box-shadow: var(--shadow-soft);
    }

    .filter-panel {
      padding: 22px;
      margin-top: 20px;
    }

    .filter-row {
      display: grid;
      grid-template-columns: 88px 1fr;
      gap: 14px;
      align-items: start;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }

    .filter-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .filter-name {
      color: var(--text-main);
      font-weight: 800;
      font-size: 14px;
      padding-top: 6px;
    }

    .filter-list {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .filter-chip {
      padding: 8px 13px;
      font-size: 13px;
      cursor: pointer;
    }

    .layout-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 318px;
      gap: 24px;
      align-items: start;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 24px;
    }

    .section-head .section-lead {
      margin-bottom: 0;
    }

    .poster-grid {
      column-count: 3;
      column-gap: 18px;
    }

    .movie-card {
      display: inline-block;
      width: 100%;
      margin: 0 0 18px;
      overflow: hidden;
      border-radius: 22px;
      border: 1px solid rgba(143, 244, 255, 0.16);
      background: rgba(255,255,255,0.055);
      box-shadow: 0 14px 38px rgba(0,0,0,0.18);
      break-inside: avoid;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .movie-card:hover {
      transform: translateY(-5px);
      border-color: rgba(86,240,255,0.45);
      background: rgba(86,240,255,0.07);
      box-shadow: 0 24px 62px rgba(0,0,0,0.34), 0 0 30px rgba(86,240,255,0.12);
    }

    .poster-art {
      position: relative;
      min-height: 210px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(86,240,255,0.16), rgba(139,109,255,0.12));
    }

    .movie-card:nth-child(2n) .poster-art {
      min-height: 260px;
      background: linear-gradient(145deg, rgba(245,191,90,0.16), rgba(45,105,255,0.14));
    }

    .movie-card:nth-child(3n) .poster-art {
      min-height: 230px;
      background: linear-gradient(145deg, rgba(77,226,168,0.14), rgba(139,109,255,0.18));
    }

    .poster-art::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 28% 20%, rgba(255,255,255,0.25), transparent 18%),
        linear-gradient(155deg, transparent 0 38%, rgba(0,0,0,0.28) 39% 100%),
        repeating-linear-gradient(90deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 18px);
      transition: transform 260ms ease;
    }

    .movie-card:hover .poster-art::before {
      transform: scale(1.05);
    }

    .poster-label {
      position: absolute;
      left: 14px;
      top: 14px;
      z-index: 1;
      padding: 7px 10px;
      border-radius: 999px;
      color: #041018;
      font-weight: 900;
      font-size: 12px;
      background: rgba(86,240,255,0.92);
      box-shadow: 0 10px 28px rgba(86,240,255,0.22);
    }

    .poster-score {
      position: absolute;
      right: 14px;
      bottom: 14px;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--text-main);
      font-weight: 800;
      font-size: 12px;
      background: rgba(7,10,18,0.72);
      border: 1px solid rgba(255,255,255,0.14);
      backdrop-filter: blur(12px);
    }

    .movie-body {
      padding: 18px;
    }

    .movie-body p {
      color: var(--text-soft);
      font-size: 14px;
      margin-bottom: 14px;
    }

    .meta-line,
    .tag-line {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 12px;
    }

    .chip {
      padding: 6px 9px;
      font-size: 12px;
    }

    .chip.hot {
      color: #1a1102;
      border-color: rgba(245,191,90,0.6);
      background: rgba(245,191,90,0.92);
      font-weight: 900;
    }

    .sidebar {
      position: sticky;
      top: calc(var(--header-h) + 22px);
      display: grid;
      gap: 18px;
    }

    .side-card {
      padding: 20px;
      border-radius: 24px;
      border: 1px solid rgba(143, 244, 255, 0.16);
      background: rgba(255,255,255,0.055);
      box-shadow: 0 14px 40px rgba(0,0,0,0.18);
    }

    .side-card h3 {
      display: flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 14px;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .rank-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .rank-list li {
      display: grid;
      grid-template-columns: 34px 1fr auto;
      gap: 10px;
      align-items: center;
      padding: 12px;
      border-radius: 16px;
      background: rgba(255,255,255,0.045);
      border: 1px solid rgba(255,255,255,0.075);
    }

    .rank-num {
      width: 28px;
      height: 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      color: #061018;
      font-weight: 900;
      background: linear-gradient(135deg, var(--cyan), #a99cff);
    }

    .rank-title {
      color: var(--text-main);
      font-weight: 800;
      font-size: 14px;
    }

    .rank-desc {
      display: block;
      color: var(--text-muted);
      font-size: 12px;
      margin-top: 2px;
    }

    .rank-heat {
      color: var(--amber);
      font-weight: 900;
      font-size: 13px;
    }

    .quick-jump {
      display: grid;
      gap: 10px;
    }

    .quick-jump a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 13px;
      border-radius: 16px;
      color: var(--text-soft);
      border: 1px solid rgba(255,255,255,0.08);
      background: rgba(255,255,255,0.04);
    }

    .quick-jump a:hover {
      color: var(--cyan);
      border-color: rgba(86,240,255,0.34);
      transform: translateX(2px);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .step-card {
      position: relative;
      padding: 22px;
      min-height: 188px;
      border-radius: 24px;
      border: 1px solid rgba(143, 244, 255, 0.16);
      background:
        linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.04));
      overflow: hidden;
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .step-card:hover {
      transform: translateY(-4px);
      border-color: rgba(86,240,255,0.38);
      background: rgba(86,240,255,0.075);
    }

    .step-index {
      display: inline-flex;
      width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      border-radius: 13px;
      color: #061018;
      font-weight: 900;
      background: linear-gradient(135deg, var(--cyan), #8b6dff);
    }

    .step-card p {
      color: var(--text-soft);
      font-size: 14px;
      margin-bottom: 0;
    }

    .notice-strip {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 24px;
      border-radius: 24px;
      border: 1px solid rgba(245,191,90,0.24);
      background:
        linear-gradient(135deg, rgba(245,191,90,0.12), rgba(86,240,255,0.06)),
        rgba(255,255,255,0.045);
    }

    .notice-strip strong {
      display: block;
      font-size: 18px;
      margin-bottom: 4px;
    }

    .notice-strip span {
      display: block;
      color: var(--text-soft);
      font-size: 14px;
    }

    .load-more-wrap {
      display: flex;
      justify-content: center;
      margin-top: 26px;
    }

    .faq-wrap {
      max-width: 900px;
      margin: 0 auto;
    }

    .accordion {
      background: transparent;
      border: 0;
      margin-top: 24px;
    }

    .accordion-item {
      margin-bottom: 12px;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(143, 244, 255, 0.16);
      background: rgba(255,255,255,0.055);
      transition: border-color var(--ease), background var(--ease);
    }

    .accordion-item.is-active {
      border-color: rgba(86,240,255,0.42);
      background: rgba(86,240,255,0.075);
    }

    .accordion-title {
      position: relative;
      display: block;
      padding: 19px 54px 19px 20px;
      border: 0;
      color: var(--text-main);
      font-size: 16px;
      font-weight: 850;
      line-height: 1.45;
      background: transparent;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--cyan);
      background: transparent;
    }

    .accordion-title::before {
      right: 22px;
      color: var(--cyan);
      font-size: 22px;
      margin-top: -12px;
    }

    .accordion-content {
      padding: 0 20px 20px;
      border: 0;
      color: var(--text-soft);
      background: transparent;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      padding: 38px;
      border-radius: 30px;
      border: 1px solid rgba(86,240,255,0.24);
      background:
        radial-gradient(circle at 18% 22%, rgba(86,240,255,0.18), transparent 28%),
        radial-gradient(circle at 86% 44%, rgba(139,109,255,0.2), transparent 30%),
        rgba(255,255,255,0.06);
      box-shadow: var(--shadow-glow);
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      right: -60px;
      top: -80px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      border: 1px solid rgba(86,240,255,0.22);
      box-shadow: inset 0 0 40px rgba(86,240,255,0.12);
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
    }

    .cta-panel p {
      color: var(--text-soft);
      max-width: 720px;
      margin-bottom: 0;
    }

    .site-footer {
      margin-top: 40px;
      padding: 54px 0 26px;
      border-top: 1px solid rgba(143, 244, 255, 0.14);
      background:
        linear-gradient(180deg, rgba(9, 14, 26, 0.36), rgba(4, 6, 12, 0.72));
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
      gap: 28px;
      align-items: start;
    }

    .footer-text {
      color: var(--text-muted);
      font-size: 14px;
      margin: 14px 0 0;
    }

    .footer-title {
      display: block;
      color: var(--text-main);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--text-soft);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--cyan);
      transform: translateX(2px);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.08);
      color: var(--text-muted);
      font-size: 13px;
    }

    @media screen and (max-width: 1200px) {
      .site-container {
        width: min(100% - 32px, 1040px);
      }

      .search-pill {
        display: none;
      }

      .poster-grid {
        column-count: 2;
      }

      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media screen and (max-width: 992px) {
      :root {
        --header-h: 72px;
      }

      .desktop-nav,
      .nav-actions {
        display: none;
      }

      .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .mobile-panel.is-open {
        display: block;
      }

      .layout-grid {
        grid-template-columns: 1fr;
      }

      .sidebar {
        position: static;
        grid-template-columns: 1fr 1fr;
      }

      .hero-content {
        padding: 34px;
      }

      .poster-beams {
        opacity: 0.32;
        right: -60px;
      }

      .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media screen and (max-width: 768px) {
      .section {
        padding: 52px 0;
      }

      .category-hero {
        padding-top: 36px;
      }

      .hero-content {
        padding: 28px 22px;
      }

      .hero-lead,
      .section-lead {
        font-size: 15px;
      }

      .filter-row {
        grid-template-columns: 1fr;
        gap: 9px;
      }

      .filter-name {
        padding-top: 0;
      }

      .poster-grid {
        column-count: 1;
      }

      .sidebar {
        grid-template-columns: 1fr;
      }

      .steps {
        grid-template-columns: 1fr;
      }

      .notice-strip,
      .section-head,
      .cta-inner {
        display: block;
      }

      .notice-strip .btn-small,
      .cta-inner .btn-glow {
        margin-top: 16px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media screen and (max-width: 576px) {
      .site-container {
        width: min(100% - 24px, 100%);
      }

      .brand-text {
        font-size: 16px;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 14px;
      }

      .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .btn-glow,
      .btn-ghost {
        width: 100%;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .filter-panel {
        padding: 16px;
      }

      .cta-panel {
        padding: 26px 20px;
      }

      .movie-body {
        padding: 16px;
      }
    }
