/* roulang page: index */
:root{
      --bg:#08070B;
      --bg-2:#11101A;
      --panel:rgba(255,255,255,.065);
      --panel-2:rgba(255,255,255,.09);
      --text:#EAE7F2;
      --muted:#A9A3B8;
      --weak:#736D80;
      --line:rgba(255,255,255,.11);
      --hot:#FF2E88;
      --violet:#7A5CFF;
      --amber:#FFB23F;
      --cyan:#30D5C8;
      --green:#72E18B;
      --radius-sm:16px;
      --radius-md:22px;
      --radius-lg:30px;
      --shadow:0 24px 80px rgba(0,0,0,.48);
      --shadow-soft:0 16px 42px rgba(0,0,0,.34);
      --container:1240px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 18% 8%, rgba(255,46,136,.24), transparent 34%),
        radial-gradient(circle at 84% 12%, rgba(122,92,255,.24), transparent 34%),
        radial-gradient(circle at 50% 42%, rgba(48,213,200,.08), transparent 30%),
        linear-gradient(180deg,#08070B 0%,#0D0B12 42%,#08070B 100%);
      line-height:1.75;
      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,.025) 1px, transparent 1px);
      background-size:72px 72px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.55), transparent 78%);
    }
    a{color:inherit;text-decoration:none}
    button,input{font:inherit}
    button{border:0;cursor:pointer}
    input{outline:0}
    img,svg{display:block;max-width:100%}
    .container{
      width:min(var(--container), calc(100% - 64px));
      margin-inline:auto;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(18px);
      background:rgba(8,7,11,.78);
      border-bottom:1px solid var(--line);
      box-shadow:0 12px 34px rgba(0,0,0,.24);
    }
    .top-nav{
      min-height:76px;
      display:grid;
      grid-template-columns:auto minmax(280px, 1fr) auto;
      gap:22px;
      align-items:center;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
      font-weight:900;
      letter-spacing:.02em;
    }
    .brand-mark{
      width:42px;
      height:42px;
      border-radius:14px;
      position:relative;
      overflow:hidden;
      background:
        radial-gradient(circle at 50% 15%, rgba(255,255,255,.55), transparent 18%),
        linear-gradient(135deg,var(--hot),var(--violet));
      box-shadow:0 0 34px rgba(255,46,136,.42);
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:8px 10px;
      border:1px solid rgba(255,255,255,.55);
      border-radius:10px;
      transform:skewX(-8deg);
      background:rgba(0,0,0,.16);
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      line-height:1.12;
    }
    .brand-text strong{font-size:17px}
    .brand-text span{font-size:12px;color:var(--muted);font-weight:700;margin-top:3px}
    .search-wrap{
      justify-self:stretch;
      position:relative;
    }
    .search-wrap svg{
      position:absolute;
      left:18px;
      top:50%;
      transform:translateY(-50%);
      color:var(--weak);
      width:18px;
      height:18px;
    }
    .search-wrap input{
      width:100%;
      height:46px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.055);
      color:var(--text);
      padding:0 18px 0 48px;
      transition:.25s ease;
    }
    .search-wrap input::placeholder{color:#8D8799}
    .search-wrap input:focus{
      border-color:rgba(255,46,136,.75);
      box-shadow:0 0 0 4px rgba(255,46,136,.13), 0 0 34px rgba(122,92,255,.16);
      background:rgba(255,255,255,.08);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .status-pill,.badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.14);
      color:var(--text);
      background:rgba(255,255,255,.07);
      padding:7px 11px;
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .status-pill:before,.badge:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:999px;
      background:var(--cyan);
      box-shadow:0 0 14px var(--cyan);
    }
    .badge.hot:before{background:var(--hot);box-shadow:0 0 14px var(--hot)}
    .badge.amber:before{background:var(--amber);box-shadow:0 0 14px var(--amber)}
    .badge.violet:before{background:var(--violet);box-shadow:0 0 14px var(--violet)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:44px;
      padding:12px 20px;
      border-radius:999px;
      font-size:15px;
      font-weight:850;
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--hot),var(--violet));
      box-shadow:0 14px 34px rgba(255,46,136,.28);
    }
    .btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 18px 48px rgba(255,46,136,.42);
    }
    .btn-secondary{
      color:var(--text);
      background:rgba(255,255,255,.065);
      border:1px solid rgba(255,255,255,.15);
    }
    .btn-secondary:hover{
      transform:translateY(-2px);
      background:rgba(255,255,255,.1);
      border-color:rgba(255,255,255,.28);
      box-shadow:var(--shadow-soft);
    }
    .btn:focus-visible,a:focus-visible,summary:focus-visible,input:focus-visible{
      outline:2px solid rgba(48,213,200,.85);
      outline-offset:3px;
    }
    .channel-row{
      border-top:1px solid rgba(255,255,255,.07);
    }
    .channel-tabs{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:13px 0 15px;
      scrollbar-width:none;
    }
    .channel-tabs::-webkit-scrollbar{display:none}
    .tab{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:36px;
      padding:0 15px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.045);
      color:var(--muted);
      font-size:14px;
      font-weight:800;
      white-space:nowrap;
      transition:.22s ease;
    }
    .tab:hover{
      color:#fff;
      background:rgba(255,255,255,.085);
      border-color:rgba(255,255,255,.24);
    }
    .tab.active{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(135deg,rgba(255,46,136,.94),rgba(122,92,255,.94));
      box-shadow:0 10px 28px rgba(122,92,255,.22);
    }
    main{overflow:hidden}
    section{position:relative}
    .section{
      padding:86px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--cyan);
      font-size:13px;
      font-weight:900;
      letter-spacing:.08em;
      margin-bottom:10px;
    }
    .section-kicker:before{
      content:"";
      width:26px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--cyan),transparent);
    }
    h1,h2,h3,p{margin:0}
    h1{
      font-size:clamp(38px, 6.2vw, 72px);
      line-height:1.06;
      letter-spacing:-.055em;
      font-weight:950;
      max-width:820px;
    }
    h2{
      font-size:clamp(28px, 3.2vw, 42px);
      line-height:1.14;
      letter-spacing:-.035em;
      font-weight:920;
    }
    h3{
      font-size:20px;
      line-height:1.25;
      font-weight:880;
    }
    .lead{
      color:var(--muted);
      font-size:17px;
      line-height:1.86;
      max-width:780px;
    }
    .hero{
      min-height:720px;
      display:flex;
      align-items:center;
      padding:72px 0 88px;
    }
    .hero-stage{
      position:relative;
      display:grid;
      grid-template-columns:minmax(0, 1.08fr) minmax(360px, .72fr);
      gap:30px;
      width:100%;
      padding:28px;
      border-radius:36px;
      border:1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(135deg,rgba(255,255,255,.09),rgba(255,255,255,.035)),
        radial-gradient(circle at 24% 15%,rgba(255,46,136,.18),transparent 36%),
        radial-gradient(circle at 83% 30%,rgba(122,92,255,.22),transparent 38%),
        rgba(8,7,11,.74);
      box-shadow:var(--shadow);
      overflow:hidden;
      isolation:isolate;
    }
    .hero-stage:before{
      content:"";
      position:absolute;
      inset:-80px -120px auto;
      height:360px;
      background:radial-gradient(ellipse at center, rgba(255,255,255,.18), transparent 60%);
      transform:rotate(-8deg);
      opacity:.55;
      z-index:-1;
    }
    .hero-stage:after{
      content:"";
      position:absolute;
      right:24%;
      top:-120px;
      width:320px;
      height:860px;
      background:linear-gradient(180deg,rgba(255,46,136,.18),rgba(122,92,255,.04),transparent);
      transform:rotate(18deg);
      filter:blur(4px);
      z-index:-1;
    }
    .hero-copy{
      padding:42px 22px 42px 28px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .hero .lead{
      margin-top:22px;
      max-width:720px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin-top:30px;
    }
    .hero-data{
      display:grid;
      grid-template-columns:repeat(3, minmax(0, 1fr));
      gap:12px;
      margin-top:34px;
      max-width:680px;
    }
    .data-chip{
      padding:15px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.055);
    }
    .data-chip strong{
      display:block;
      font-size:24px;
      line-height:1;
      font-weight:950;
    }
    .data-chip span{
      display:block;
      margin-top:7px;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .spot-panel{
      min-height:520px;
      border-radius:30px;
      border:1px solid rgba(255,255,255,.14);
      background:
        linear-gradient(180deg,rgba(255,255,255,.11),rgba(255,255,255,.045)),
        radial-gradient(circle at 50% 0%,rgba(255,178,63,.18),transparent 38%),
        rgba(255,255,255,.045);
      padding:20px;
      position:relative;
      overflow:hidden;
    }
    .spot-panel:before{
      content:"";
      position:absolute;
      inset:18px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.08);
      pointer-events:none;
    }
    .countbar{
      display:grid;
      grid-template-columns:1fr auto;
      gap:10px;
      align-items:center;
      padding:14px;
      border-radius:18px;
      background:rgba(0,0,0,.28);
      border:1px solid rgba(255,255,255,.1);
      margin-bottom:16px;
    }
    .countbar b{font-size:14px}
    .countbar span{color:var(--amber);font-weight:950;font-size:13px}
    .rank-list{
      display:grid;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .rank-item{
      display:grid;
      grid-template-columns:44px 1fr auto;
      gap:12px;
      align-items:center;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.06);
      transition:.25s ease;
    }
    .rank-item:hover{
      transform:translateY(-2px);
      border-color:rgba(255,46,136,.45);
      background:rgba(255,255,255,.085);
    }
    .rank-num{
      height:44px;
      border-radius:15px;
      display:grid;
      place-items:center;
      font-weight:950;
      background:linear-gradient(135deg,rgba(255,46,136,.35),rgba(122,92,255,.32));
      border:1px solid rgba(255,255,255,.12);
    }
    .rank-item p{color:var(--muted);font-size:13px;line-height:1.45;margin-top:3px}
    .rank-meter{
      width:58px;
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.11);
      overflow:hidden;
    }
    .rank-meter i{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--hot),var(--amber));
    }
    .poster-strip{
      display:flex;
      gap:16px;
      overflow-x:auto;
      padding:6px 4px 18px;
      scrollbar-width:none;
      scroll-snap-type:x proximity;
    }
    .poster-strip::-webkit-scrollbar{display:none}
    .poster-card{
      flex:0 0 224px;
      min-height:298px;
      scroll-snap-align:start;
      border-radius:26px;
      padding:18px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      border:1px solid rgba(255,255,255,.12);
      background:
        radial-gradient(circle at 20% 0%,rgba(255,46,136,.28),transparent 35%),
        radial-gradient(circle at 90% 30%,rgba(122,92,255,.25),transparent 34%),
        linear-gradient(180deg,rgba(255,255,255,.085),rgba(255,255,255,.04));
      box-shadow:0 18px 48px rgba(0,0,0,.28);
      transition:.25s ease;
      position:relative;
      overflow:hidden;
    }
    .poster-card:after{
      content:"";
      position:absolute;
      width:120px;
      height:220px;
      right:-50px;
      top:-30px;
      transform:rotate(24deg);
      background:linear-gradient(180deg,rgba(255,255,255,.18),transparent);
    }
    .poster-card:hover{
      transform:translateY(-6px);
      border-color:rgba(255,46,136,.48);
      box-shadow:0 24px 62px rgba(255,46,136,.18);
    }
    .poster-card h3{font-size:24px;position:relative;z-index:1}
    .poster-card p{font-size:14px;color:var(--muted);line-height:1.65;position:relative;z-index:1}
    .poster-link{
      display:flex;
      align-items:center;
      justify-content:space-between;
      color:#fff;
      font-weight:900;
      margin-top:18px;
      position:relative;
      z-index:1;
    }
    .grid-asym{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:20px;
    }
    .feature-big,.feature-small,.info-card,.safe-card,.app-card,.faq-card,.news-panel{
      border:1px solid rgba(255,255,255,.12);
      background:linear-gradient(180deg,rgba(255,255,255,.075),rgba(255,255,255,.04));
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-soft);
    }
    .feature-big{
      min-height:430px;
      padding:34px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      overflow:hidden;
      position:relative;
    }
    .feature-big:before{
      content:"";
      position:absolute;
      inset:-120px -60px auto auto;
      width:420px;
      height:420px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(255,46,136,.35),transparent 64%);
      filter:blur(4px);
    }
    .feature-big h2,.feature-big p,.feature-big .badge-row,.feature-big .btn{position:relative;z-index:1}
    .badge-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:15px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:7px 10px;
      color:#DCD7EA;
      background:rgba(255,255,255,.07);
      border:1px solid rgba(255,255,255,.1);
      font-size:12px;
      font-weight:800;
    }
    .feature-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:20px;
    }
    .feature-small{
      padding:22px;
      min-height:205px;
      transition:.25s ease;
    }
    .feature-small:hover,.safe-card:hover,.info-card:hover,.app-card:hover{
      transform:translateY(-3px);
      border-color:rgba(122,92,255,.42);
      background:linear-gradient(180deg,rgba(255,255,255,.095),rgba(255,255,255,.05));
    }
    .feature-small p,.safe-card p,.info-card p,.app-card p{
      color:var(--muted);
      font-size:14px;
      line-height:1.72;
      margin-top:10px;
    }
    .quick-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr 1.25fr;
      gap:18px;
      align-items:stretch;
    }
    .quick-card{
      padding:26px;
      border-radius:26px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.06);
      min-height:240px;
    }
    .quick-card:nth-child(2){
      background:
        radial-gradient(circle at 100% 0%,rgba(48,213,200,.16),transparent 42%),
        rgba(255,255,255,.06);
    }
    .quick-card:nth-child(3){
      background:
        radial-gradient(circle at 0% 0%,rgba(255,46,136,.18),transparent 42%),
        rgba(255,255,255,.06);
    }
    .quick-card p{
      color:var(--muted);
      margin-top:12px;
      font-size:15px;
      line-height:1.78;
    }
    .step-list{
      display:grid;
      gap:10px;
      margin-top:18px;
    }
    .step{
      display:flex;
      gap:11px;
      align-items:flex-start;
      color:#D9D3E7;
      font-size:14px;
      font-weight:700;
    }
    .step i{
      width:22px;
      height:22px;
      flex:0 0 22px;
      border-radius:999px;
      display:grid;
      place-items:center;
      color:#06110F;
      background:var(--cyan);
      font-style:normal;
      font-size:12px;
      font-weight:950;
      margin-top:2px;
    }
    .news-layout{
      display:grid;
      grid-template-columns:minmax(0, 1.28fr) minmax(320px, .72fr);
      gap:22px;
    }
    .news-panel{
      padding:10px;
    }
    .news-list{
      display:grid;
      gap:8px;
    }
    .news-link{
      display:grid;
      grid-template-columns:112px 1fr auto;
      gap:16px;
      align-items:center;
      padding:16px;
      border-radius:20px;
      border:1px solid transparent;
      transition:.23s ease;
    }
    .news-link:hover{
      background:rgba(255,255,255,.065);
      border-color:rgba(255,255,255,.12);
    }
    .news-date{
      color:var(--cyan);
      font-weight:950;
      font-size:13px;
    }
    .news-link h3{font-size:17px}
    .news-link p{color:var(--muted);font-size:13px;line-height:1.55;margin-top:3px}
    .arrow{
      color:var(--weak);
      font-size:22px;
      transition:.22s ease;
    }
    .news-link:hover .arrow{transform:translateX(4px);color:#fff}
    .side-reco{
      border-radius:var(--radius-lg);
      padding:24px;
      border:1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(180deg,rgba(255,46,136,.13),rgba(122,92,255,.08)),
        rgba(255,255,255,.045);
      box-shadow:var(--shadow-soft);
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      min-height:100%;
    }
    .side-reco p{color:var(--muted);margin-top:12px}
    .safe-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:18px;
    }
    .safe-card{
      padding:24px;
      border-radius:26px;
      min-height:218px;
    }
    .icon{
      width:48px;
      height:48px;
      border-radius:17px;
      display:grid;
      place-items:center;
      margin-bottom:18px;
      background:linear-gradient(135deg,rgba(255,46,136,.24),rgba(122,92,255,.24));
      border:1px solid rgba(255,255,255,.12);
      color:#fff;
      font-weight:950;
      font-size:20px;
    }
    .app-band{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:24px;
      align-items:stretch;
      border-radius:34px;
      padding:26px;
      border:1px solid rgba(255,255,255,.13);
      background:
        radial-gradient(circle at 12% 10%,rgba(255,46,136,.20),transparent 34%),
        radial-gradient(circle at 90% 20%,rgba(48,213,200,.13),transparent 34%),
        linear-gradient(135deg,rgba(255,255,255,.085),rgba(255,255,255,.035));
      box-shadow:var(--shadow);
    }
    .app-copy{
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .app-copy p{color:var(--muted);margin-top:14px}
    .app-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .app-card{
      padding:22px;
      border-radius:24px;
    }
    .faq-wrap{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:28px;
    }
    .faq-list{
      display:grid;
      gap:12px;
    }
    details{
      border-radius:22px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.055);
      overflow:hidden;
      transition:.25s ease;
    }
    details[open]{
      border-color:rgba(255,46,136,.48);
      background:rgba(255,255,255,.08);
      box-shadow:0 16px 42px rgba(255,46,136,.12);
    }
    summary{
      list-style:none;
      padding:18px 20px;
      display:flex;
      justify-content:space-between;
      gap:18px;
      align-items:center;
      cursor:pointer;
      font-weight:880;
    }
    summary::-webkit-details-marker{display:none}
    summary:after{
      content:"+";
      width:28px;
      height:28px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:rgba(255,255,255,.08);
      color:#fff;
      flex:0 0 28px;
      transition:.22s ease;
    }
    details[open] summary:after{content:"－";background:linear-gradient(135deg,var(--hot),var(--violet))}
    details p{
      color:var(--muted);
      padding:0 20px 20px;
      font-size:14px;
      line-height:1.78;
    }
    .cta-section{padding:44px 0 96px}
    .cta-band{
      border-radius:34px;
      padding:36px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
      border:1px solid rgba(255,255,255,.14);
      background:
        linear-gradient(115deg,rgba(255,46,136,.32),rgba(122,92,255,.22) 48%,rgba(8,7,11,.88)),
        radial-gradient(circle at 80% 10%,rgba(255,178,63,.20),transparent 30%);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .cta-band:after{
      content:"";
      position:absolute;
      width:260px;
      height:520px;
      right:12%;
      top:-190px;
      background:linear-gradient(180deg,rgba(255,255,255,.17),transparent);
      transform:rotate(28deg);
      pointer-events:none;
    }
    .cta-band p{
      color:#D7D0E5;
      margin-top:10px;
      max-width:760px;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .footer{
      border-top:1px solid rgba(255,255,255,.11);
      background:
        radial-gradient(circle at 20% 0%,rgba(255,46,136,.12),transparent 32%),
        #07060A;
      padding:54px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .8fr .8fr 1fr;
      gap:28px;
    }
    .footer p,.footer a,.footer li{
      color:var(--muted);
      font-size:14px;
      line-height:1.75;
    }
    .footer h3{
      font-size:15px;
      margin-bottom:12px;
      color:#fff;
    }
    .footer ul{list-style:none;padding:0;margin:0;display:grid;gap:8px}
    .footer a:hover{color:#fff}
    .footer-bottom{
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.09);
      display:flex;
      justify-content:space-between;
      gap:18px;
      color:var(--weak);
      font-size:13px;
      flex-wrap:wrap;
    }
    .age-note{
      display:inline-flex;
      align-items:flex-start;
      gap:10px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(48,213,200,.08);
      border:1px solid rgba(48,213,200,.18);
      color:#CFF8F4;
      font-size:13px;
      line-height:1.6;
      margin-top:18px;
    }
    @media (max-width:1024px){
      .container{width:min(var(--container), calc(100% - 48px))}
      .top-nav{grid-template-columns:auto 1fr;gap:14px}
      .search-wrap{grid-column:1 / -1;order:3}
      .nav-actions{justify-self:end}
      .hero{min-height:auto;padding:48px 0 70px}
      .hero-stage{grid-template-columns:1fr;padding:22px}
      .spot-panel{min-height:auto}
      .grid-asym,.news-layout,.app-band,.faq-wrap{grid-template-columns:1fr}
      .safe-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .quick-grid{grid-template-columns:1fr 1fr}
      .quick-card:nth-child(3){grid-column:1 / -1}
      .section{padding:68px 0}
      .cta-band{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:768px){
      .container{width:min(var(--container), calc(100% - 32px))}
      .brand-text strong{font-size:15px}
      .brand-mark{width:38px;height:38px}
      .top-nav{min-height:70px}
      .nav-actions .status-pill{display:none}
      .btn{min-height:42px;padding:11px 16px;font-size:14px}
      .hero-stage{border-radius:28px;padding:18px}
      .hero-copy{padding:24px 8px}
      .hero-data{grid-template-columns:1fr}
      .rank-item{grid-template-columns:40px 1fr}
      .rank-meter{grid-column:2 / 3;width:100%}
      .poster-card{flex-basis:76vw;min-height:272px}
      .section-head{display:block}
      .section-head .lead{margin-top:12px}
      .feature-grid,.quick-grid,.safe-grid,.app-grid{grid-template-columns:1fr}
      .feature-big{min-height:auto;padding:26px}
      .news-link{grid-template-columns:1fr auto;gap:10px}
      .news-date{grid-column:1 / -1}
      .cta-actions,.hero-actions{flex-direction:column}
      .cta-actions .btn,.hero-actions .btn{width:100%}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .container{width:min(var(--container), calc(100% - 28px))}
      h1{font-size:38px}
      .lead{font-size:15px}
      .hero{padding:34px 0 56px}
      .section{padding:54px 0}
      .channel-tabs{padding-bottom:12px}
      .search-wrap input{height:43px}
      .top-nav{grid-template-columns:1fr auto}
      .brand-text span{display:none}
      .nav-actions .btn{padding-inline:13px}
      .spot-panel{padding:14px;border-radius:24px}
      .rank-item{padding:12px}
      .cta-band,.app-band{padding:20px;border-radius:26px}
      .footer-bottom{display:block}
      .footer-bottom span{display:block;margin-top:8px}
    }

/* roulang page: category1 */
:root{
      --bg:#08070B;
      --bg-2:#11101A;
      --panel:rgba(255,255,255,.065);
      --panel-strong:rgba(255,255,255,.095);
      --text:#EAE7F2;
      --muted:#A9A3B8;
      --soft:#736D80;
      --line:rgba(255,255,255,.10);
      --line-strong:rgba(255,255,255,.18);
      --pink:#FF2E88;
      --purple:#7A5CFF;
      --amber:#FFB23F;
      --cyan:#30D5C8;
      --danger:#ff668f;
      --radius-xl:32px;
      --radius-lg:24px;
      --radius-md:18px;
      --radius-pill:999px;
      --shadow:0 24px 80px rgba(0,0,0,.46);
      --shadow-soft:0 16px 48px rgba(0,0,0,.32);
      --container:1220px;
      --ease:cubic-bezier(.2,.8,.2,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 16% 8%,rgba(255,46,136,.22),transparent 30%),
        radial-gradient(circle at 86% 12%,rgba(122,92,255,.24),transparent 34%),
        radial-gradient(circle at 50% 82%,rgba(48,213,200,.10),transparent 28%),
        linear-gradient(180deg,#08070B 0%,#11101A 48%,#08070B 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.12;
      z-index:-1;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
      background-size:48px 48px;
      mask-image:radial-gradient(circle at center,#000 0%,transparent 72%);
    }
    a{color:inherit;text-decoration:none}
    button,input{font:inherit}
    button{cursor:pointer}
    input{min-width:0}
    img,svg{max-width:100%;display:block}
    .container{
      width:min(var(--container),calc(100% - 64px));
      margin:0 auto;
    }
    .mt-4{margin-top:1rem}
    .section{padding:76px 0}
    .section-tight{padding:54px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:30px;
      padding:5px 12px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:var(--radius-pill);
      color:var(--muted);
      background:rgba(255,255,255,.045);
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
    }
    .eyebrow::before,.status-pill::before,.badge::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 16px var(--cyan);
      flex:0 0 auto;
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      max-width:760px;
      margin-bottom:18px;
      font-size:clamp(34px,5.4vw,64px);
      line-height:1.08;
      letter-spacing:-.05em;
      font-weight:900;
    }
    h2{
      margin-bottom:12px;
      font-size:clamp(28px,3.6vw,42px);
      line-height:1.15;
      letter-spacing:-.035em;
      font-weight:850;
    }
    h3{
      margin-bottom:10px;
      font-size:21px;
      line-height:1.25;
      font-weight:800;
    }
    p{color:var(--muted)}
    .lead{
      max-width:720px;
      color:#c9c3d6;
      font-size:17px;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(8,7,11,.86);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
      box-shadow:0 18px 60px rgba(0,0,0,.24);
    }
    .top-nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
      padding:16px 0 12px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .brand-mark{
      position:relative;
      width:42px;
      height:42px;
      border-radius:15px;
      background:
        linear-gradient(135deg,rgba(255,46,136,.95),rgba(122,92,255,.9)),
        radial-gradient(circle at 30% 20%,#fff,transparent 38%);
      box-shadow:0 0 34px rgba(255,46,136,.35),inset 0 1px 0 rgba(255,255,255,.35);
      overflow:hidden;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:8px;
      border:1px solid rgba(255,255,255,.46);
      border-radius:10px;
      transform:skewX(-8deg);
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.18}
    .brand-text strong{
      font-size:16px;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .brand-text span{
      color:var(--soft);
      font-size:12px;
      font-weight:600;
      margin-top:3px;
    }
    .search-wrap{
      position:relative;
      flex:1 1 430px;
      max-width:520px;
    }
    .search-wrap svg{
      position:absolute;
      left:17px;
      top:50%;
      width:19px;
      height:19px;
      transform:translateY(-50%);
      color:var(--soft);
      pointer-events:none;
    }
    .search-wrap input{
      width:100%;
      height:46px;
      border:1px solid var(--line);
      border-radius:var(--radius-pill);
      outline:none;
      color:var(--text);
      background:rgba(255,255,255,.055);
      padding:0 18px 0 48px;
      transition:border-color .25s var(--ease),box-shadow .25s var(--ease),background .25s var(--ease);
    }
    .search-wrap input::placeholder{color:#7d758a}
    .search-wrap input:focus{
      border-color:rgba(255,46,136,.72);
      background:rgba(255,255,255,.075);
      box-shadow:0 0 0 4px rgba(255,46,136,.12),0 0 34px rgba(255,46,136,.18);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:max-content;
    }
    .status-pill,.badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.06);
      color:var(--text);
      white-space:nowrap;
      font-size:13px;
      font-weight:800;
    }
    .status-pill{height:38px;padding:0 14px}
    .badge{min-height:30px;padding:5px 11px}
    .badge.amber::before{background:var(--amber);box-shadow:0 0 16px var(--amber)}
    .badge.pink::before{background:var(--pink);box-shadow:0 0 16px var(--pink)}
    .badge.purple::before{background:var(--purple);box-shadow:0 0 16px var(--purple)}
    .badge.warn::before{background:var(--danger);box-shadow:0 0 16px var(--danger)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:12px 20px;
      border:1px solid transparent;
      border-radius:var(--radius-pill);
      font-size:15px;
      font-weight:850;
      line-height:1;
      transition:transform .25s var(--ease),box-shadow .25s var(--ease),border-color .25s var(--ease),background .25s var(--ease),color .25s var(--ease);
    }
    .btn:hover{transform:translateY(-2px)}
    .btn:active{transform:translateY(0)}
    .btn:focus-visible,.tab:focus-visible,summary:focus-visible,input:focus-visible{
      outline:3px solid rgba(48,213,200,.32);
      outline-offset:3px;
    }
    .btn-primary{
      color:white;
      background:linear-gradient(135deg,var(--pink),var(--purple));
      box-shadow:0 14px 34px rgba(255,46,136,.28);
    }
    .btn-primary:hover{box-shadow:0 18px 42px rgba(122,92,255,.34),0 0 0 1px rgba(255,255,255,.12) inset}
    .btn-secondary{
      color:var(--text);
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.15);
    }
    .btn-secondary:hover{
      background:rgba(255,255,255,.105);
      border-color:rgba(255,255,255,.26);
      box-shadow:0 14px 32px rgba(0,0,0,.22);
    }
    .channel-row{
      border-top:1px solid rgba(255,255,255,.065);
    }
    .channel-tabs{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      padding:10px 0 12px;
      scrollbar-width:none;
    }
    .channel-tabs::-webkit-scrollbar{display:none}
    .tab{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:8px 15px;
      border:1px solid rgba(255,255,255,.13);
      border-radius:var(--radius-pill);
      color:#c8c2d4;
      background:rgba(255,255,255,.035);
      white-space:nowrap;
      font-size:14px;
      font-weight:800;
      transition:all .22s var(--ease);
    }
    .tab:hover{
      color:#fff;
      border-color:rgba(122,92,255,.55);
      background:rgba(122,92,255,.14);
    }
    .tab.active{
      color:white;
      border-color:transparent;
      background:linear-gradient(135deg,var(--pink),var(--purple));
      box-shadow:0 10px 30px rgba(255,46,136,.22);
    }

    .category-hero{
      padding:58px 0 42px;
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(320px,.72fr);
      gap:28px;
      align-items:stretch;
      min-height:430px;
      padding:34px;
      border:1px solid rgba(255,255,255,.13);
      border-radius:var(--radius-xl);
      background:
        linear-gradient(110deg,rgba(255,255,255,.082),rgba(255,255,255,.035)),
        radial-gradient(circle at 12% 24%,rgba(255,46,136,.28),transparent 35%),
        radial-gradient(circle at 78% 10%,rgba(122,92,255,.28),transparent 38%),
        rgba(17,16,26,.88);
      box-shadow:var(--shadow);
    }
    .hero-panel::before{
      content:"";
      position:absolute;
      inset:-40%;
      background:linear-gradient(110deg,transparent 35%,rgba(255,255,255,.10) 46%,transparent 57%);
      transform:rotate(7deg);
      opacity:.55;
      pointer-events:none;
    }
    .hero-copy,.hero-board{position:relative;z-index:1}
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:center;
      padding:12px 0;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
    }
    .notice-strip{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .hero-board{
      border:1px solid rgba(255,255,255,.13);
      border-radius:26px;
      padding:18px;
      background:rgba(8,7,11,.55);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08),0 20px 54px rgba(0,0,0,.28);
    }
    .board-title{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-bottom:14px;
      color:#fff;
      font-weight:900;
    }
    .countdown{
      display:flex;
      gap:6px;
      align-items:center;
      color:var(--amber);
      font-size:12px;
      font-weight:900;
    }
    .countdown span{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:26px;
      height:26px;
      border-radius:9px;
      background:rgba(255,178,63,.12);
      border:1px solid rgba(255,178,63,.24);
    }
    .rank-list{
      display:grid;
      gap:10px;
    }
    .rank-item{
      display:grid;
      grid-template-columns:38px 1fr auto;
      gap:12px;
      align-items:center;
      padding:13px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.095);
      background:rgba(255,255,255,.055);
      transition:transform .25s var(--ease),border-color .25s var(--ease),background .25s var(--ease);
    }
    .rank-item:hover{
      transform:translateX(3px);
      border-color:rgba(255,46,136,.36);
      background:rgba(255,255,255,.085);
    }
    .rank-no{
      display:grid;
      place-items:center;
      width:38px;
      height:48px;
      border-radius:14px;
      background:linear-gradient(180deg,rgba(255,46,136,.42),rgba(122,92,255,.18));
      font-weight:950;
      color:#fff;
    }
    .rank-item strong{display:block;color:#fff;line-height:1.25}
    .rank-item small{display:block;color:var(--soft);font-weight:700;margin-top:2px}
    .rank-state{
      color:var(--cyan);
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }

    .filter-bar{
      position:relative;
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:14px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:24px;
      background:rgba(255,255,255,.045);
      box-shadow:var(--shadow-soft);
      scrollbar-width:none;
    }
    .filter-bar::-webkit-scrollbar{display:none}
    .filter-chip{
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:8px 15px;
      border:1px solid rgba(255,255,255,.13);
      border-radius:var(--radius-pill);
      background:rgba(8,7,11,.42);
      color:#d9d4e3;
      font-size:14px;
      font-weight:850;
      white-space:nowrap;
      transition:all .2s var(--ease);
    }
    .filter-chip:hover,.filter-chip.active{
      color:#fff;
      border-color:transparent;
      background:linear-gradient(135deg,var(--pink),var(--purple));
      box-shadow:0 12px 30px rgba(122,92,255,.22);
    }

    .cards-grid{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:18px;
    }
    .entry-card{
      position:relative;
      overflow:hidden;
      grid-column:span 4;
      min-height:292px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:22px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:26px;
      background:
        radial-gradient(circle at 82% 12%,rgba(255,46,136,.18),transparent 34%),
        linear-gradient(150deg,rgba(255,255,255,.085),rgba(255,255,255,.04));
      box-shadow:0 16px 48px rgba(0,0,0,.26);
      transition:transform .28s var(--ease),border-color .28s var(--ease),box-shadow .28s var(--ease);
    }
    .entry-card.wide{grid-column:span 6;min-height:260px}
    .entry-card::after{
      content:"";
      position:absolute;
      right:-44px;
      top:-54px;
      width:150px;
      height:210px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:28px;
      background:linear-gradient(160deg,rgba(255,46,136,.18),rgba(122,92,255,.10),transparent);
      transform:rotate(10deg);
      transition:transform .35s var(--ease),opacity .35s var(--ease);
      opacity:.8;
    }
    .entry-card:hover{
      transform:translateY(-6px);
      border-color:rgba(255,46,136,.42);
      box-shadow:0 24px 70px rgba(0,0,0,.42),0 0 0 1px rgba(255,46,136,.12) inset;
    }
    .entry-card:hover::after{transform:rotate(14deg) translateY(-10px);opacity:1}
    .card-top,.card-bottom{position:relative;z-index:1}
    .tag-row{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:14px 0 12px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:4px 10px;
      border-radius:var(--radius-pill);
      color:#dcd7e8;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(8,7,11,.34);
      font-size:12px;
      font-weight:800;
    }
    .entry-card p{
      display:-webkit-box;
      -webkit-line-clamp:2;
      -webkit-box-orient:vertical;
      overflow:hidden;
      margin-bottom:16px;
    }
    .text-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:#fff;
      font-weight:900;
      transition:gap .22s var(--ease),color .22s var(--ease);
    }
    .text-link:hover{gap:12px;color:#ffb9d8}

    .slider-wrap{
      position:relative;
      overflow:hidden;
      border-radius:28px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.04);
      padding:18px;
    }
    .slider{
      display:grid;
      grid-auto-flow:column;
      grid-auto-columns:minmax(220px,1fr);
      gap:14px;
      overflow-x:auto;
      scroll-snap-type:x mandatory;
      padding-bottom:4px;
      scrollbar-width:thin;
      scrollbar-color:rgba(255,46,136,.55) rgba(255,255,255,.06);
    }
    .mini-card{
      scroll-snap-align:start;
      min-height:178px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      padding:18px;
      border:1px solid rgba(255,255,255,.11);
      border-radius:22px;
      background:
        linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035)),
        radial-gradient(circle at 40% 0%,rgba(122,92,255,.20),transparent 42%);
      transition:transform .25s var(--ease),border-color .25s var(--ease),background .25s var(--ease);
    }
    .mini-card:hover{
      transform:translateY(-4px);
      border-color:rgba(122,92,255,.45);
      background:
        linear-gradient(180deg,rgba(255,255,255,.105),rgba(255,255,255,.045)),
        radial-gradient(circle at 40% 0%,rgba(255,46,136,.20),transparent 42%);
    }
    .mini-card h3{font-size:18px}
    .mini-card p{font-size:14px;margin-bottom:0}

    .info-split{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:stretch;
    }
    .process-panel,.guidance-panel{
      border:1px solid rgba(255,255,255,.12);
      border-radius:28px;
      background:rgba(255,255,255,.055);
      padding:24px;
      box-shadow:var(--shadow-soft);
    }
    .step-list{
      display:grid;
      gap:13px;
      margin-top:18px;
    }
    .step{
      display:grid;
      grid-template-columns:42px 1fr;
      gap:13px;
      align-items:start;
      padding:14px;
      border-radius:18px;
      background:rgba(8,7,11,.32);
      border:1px solid rgba(255,255,255,.08);
    }
    .step-num{
      display:grid;
      place-items:center;
      width:42px;
      height:42px;
      border-radius:15px;
      background:linear-gradient(135deg,var(--pink),var(--purple));
      color:white;
      font-weight:950;
      box-shadow:0 12px 26px rgba(255,46,136,.20);
    }
    .step strong{display:block;color:#fff;margin-bottom:2px}
    .step span{display:block;color:var(--muted);font-size:14px;line-height:1.65}
    .guidance-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-top:18px;
    }
    .guide-item{
      padding:16px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(8,7,11,.30);
    }
    .guide-item strong{display:block;color:#fff;margin-bottom:5px}
    .guide-item span{display:block;color:var(--muted);font-size:14px;line-height:1.65}

    .faq-list{
      display:grid;
      gap:12px;
      max-width:920px;
    }
    details{
      border:1px solid rgba(255,255,255,.11);
      border-radius:20px;
      background:rgba(255,255,255,.052);
      overflow:hidden;
      transition:border-color .22s var(--ease),background .22s var(--ease);
    }
    details[open]{
      border-color:rgba(255,46,136,.38);
      background:rgba(255,255,255,.075);
      box-shadow:0 18px 44px rgba(0,0,0,.22);
    }
    summary{
      list-style:none;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:18px 20px;
      color:#fff;
      font-weight:900;
      cursor:pointer;
    }
    summary::-webkit-details-marker{display:none}
    summary::after{
      content:"+";
      display:grid;
      place-items:center;
      width:32px;
      height:32px;
      border-radius:50%;
      background:rgba(255,255,255,.08);
      color:var(--pink);
      font-size:22px;
      line-height:1;
      flex:0 0 auto;
      transition:transform .22s var(--ease),background .22s var(--ease);
    }
    details[open] summary::after{
      content:"–";
      transform:rotate(180deg);
      background:rgba(255,46,136,.16);
    }
    details p{
      margin:0;
      padding:0 20px 20px;
      border-left:3px solid rgba(255,46,136,.55);
      margin-left:20px;
      padding-left:16px;
    }

    .cta-panel{
      position:relative;
      overflow:hidden;
      display:grid;
      grid-template-columns:1fr auto;
      gap:26px;
      align-items:center;
      padding:32px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:32px;
      background:
        linear-gradient(120deg,rgba(255,46,136,.30),rgba(122,92,255,.22) 42%,rgba(8,7,11,.65)),
        radial-gradient(circle at 14% 0%,rgba(255,255,255,.16),transparent 28%);
      box-shadow:var(--shadow);
    }
    .cta-panel::after{
      content:"";
      position:absolute;
      right:-60px;
      top:-80px;
      width:280px;
      height:280px;
      background:radial-gradient(circle,rgba(255,255,255,.18),transparent 62%);
      pointer-events:none;
    }
    .cta-panel h2,.cta-panel p,.cta-actions{position:relative;z-index:1}
    .cta-panel p{margin-bottom:0;max-width:680px;color:#ddd8e9}
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      justify-content:flex-end;
    }

    .footer{
      margin-top:38px;
      padding:54px 0 28px;
      border-top:1px solid rgba(255,255,255,.10);
      background:
        linear-gradient(180deg,rgba(255,255,255,.035),rgba(8,7,11,.92)),
        radial-gradient(circle at 50% 0%,rgba(255,46,136,.12),transparent 42%);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .8fr .8fr 1.15fr;
      gap:28px;
      align-items:start;
    }
    .footer h3{
      font-size:16px;
      margin-bottom:12px;
    }
    .footer p,.footer li,.footer a{
      color:var(--muted);
      font-size:14px;
    }
    .footer ul{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer a{
      transition:color .2s var(--ease),padding-left .2s var(--ease);
    }
    .footer a:hover{
      color:#fff;
      padding-left:4px;
    }
    .footer-bottom{
      display:flex;
      justify-content:space-between;
      gap:18px;
      flex-wrap:wrap;
      margin-top:34px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.09);
      color:var(--soft);
      font-size:13px;
    }

    @media (max-width:1024px){
      .container{width:min(var(--container),calc(100% - 48px))}
      .top-nav{flex-wrap:wrap}
      .brand{order:1}
      .nav-actions{order:2}
      .search-wrap{order:3;flex-basis:100%;max-width:none}
      .hero-panel{grid-template-columns:1fr;min-height:auto}
      .cards-grid{grid-template-columns:repeat(6,1fr)}
      .entry-card,.entry-card.wide{grid-column:span 3}
      .info-split{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .cta-panel{grid-template-columns:1fr}
      .cta-actions{justify-content:flex-start}
    }

    @media (max-width:768px){
      .section{padding:58px 0}
      .section-tight{padding:42px 0}
      h1{font-size:clamp(34px,10vw,44px)}
      .section-head{display:block}
      .section-head .lead{margin-top:8px}
      .container{width:calc(100% - 32px)}
      .top-nav{gap:14px}
      .brand-text strong{font-size:15px}
      .brand-text span{display:none}
      .nav-actions{width:100%;justify-content:space-between}
      .status-pill{font-size:12px}
      .btn{min-height:44px;padding:12px 16px}
      .channel-tabs{padding-left:0;padding-right:0}
      .category-hero{padding:34px 0 28px}
      .hero-panel{padding:22px;border-radius:26px}
      .rank-item{grid-template-columns:34px 1fr}
      .rank-state{grid-column:2}
      .cards-grid{grid-template-columns:1fr}
      .entry-card,.entry-card.wide{grid-column:auto;min-height:250px}
      .slider{grid-auto-columns:minmax(235px,82%)}
      .guidance-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{display:grid}
    }

    @media (max-width:520px){
      .container{width:calc(100% - 28px)}
      .brand-mark{width:38px;height:38px;border-radius:14px}
      .search-wrap input{height:44px}
      .hero-actions,.cta-actions{display:grid;grid-template-columns:1fr;width:100%}
      .hero-actions .btn,.cta-actions .btn{width:100%}
      .notice-strip{gap:8px}
      .badge{font-size:12px}
      .hero-board{padding:14px;border-radius:22px}
      .board-title{display:block}
      .countdown{margin-top:8px}
      .filter-bar{border-radius:20px;padding:10px}
      .cta-panel{padding:24px;border-radius:26px}
      summary{padding:16px}
      details p{margin-left:16px;padding-right:16px}
    }

/* roulang page: category2 */
:root {
      --bg: #08070b;
      --bg-2: #11101a;
      --panel: rgba(255,255,255,.065);
      --panel-strong: rgba(255,255,255,.095);
      --text: #eae7f2;
      --muted: #a9a3b8;
      --weak: #736d80;
      --line: rgba(255,255,255,.11);
      --primary: #ff2e88;
      --primary-2: #7a5cff;
      --amber: #ffb23f;
      --cyan: #30d5c8;
      --danger: #ff5c7a;
      --shadow: 0 24px 80px rgba(0,0,0,.45);
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --container: 1220px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--text);
      line-height: 1.75;
      background:
        radial-gradient(circle at 18% -8%, rgba(255,46,136,.28), transparent 34%),
        radial-gradient(circle at 82% 6%, rgba(122,92,255,.25), transparent 36%),
        linear-gradient(180deg, #08070b 0%, #11101a 45%, #08070b 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background:
        linear-gradient(115deg, transparent 0 20%, rgba(255,255,255,.045) 20.5%, transparent 21.3% 55%, rgba(255,46,136,.04) 56%, transparent 57%),
        radial-gradient(circle at 50% 0, rgba(255,255,255,.06), transparent 46%);
      opacity: .95;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img,
    svg {
      display: block;
      max-width: 100%;
    }

    button,
    input {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      background: rgba(255,46,136,.38);
      color: #fff;
    }

    .container {
      width: min(var(--container), calc(100% - 64px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(8,7,11,.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 18px 44px rgba(0,0,0,.28);
    }

    .top-nav {
      min-height: 82px;
      display: grid;
      grid-template-columns: auto minmax(280px, 1fr) auto;
      gap: 22px;
      align-items: center;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      position: relative;
      flex: 0 0 auto;
      background:
        linear-gradient(135deg, rgba(255,46,136,.95), rgba(122,92,255,.95)),
        radial-gradient(circle at 50% 0, rgba(255,255,255,.85), transparent 55%);
      box-shadow: 0 0 30px rgba(255,46,136,.36), inset 0 1px 0 rgba(255,255,255,.28);
      overflow: hidden;
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      inset: 9px 12px;
      border: 1px solid rgba(255,255,255,.62);
      border-radius: 8px;
      transform: skewX(-8deg);
    }

    .brand-mark::after {
      inset: 15px 8px 11px 18px;
      border-color: rgba(255,255,255,.32);
    }

    .brand-text {
      display: grid;
      gap: 1px;
    }

    .brand-text strong {
      font-size: 17px;
      line-height: 1.25;
      font-weight: 850;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-text span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
    }

    .search-wrap {
      height: 46px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 16px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.055);
      color: var(--muted);
      transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
    }

    .search-wrap:focus-within {
      border-color: rgba(255,46,136,.7);
      background: rgba(255,255,255,.08);
      box-shadow: 0 0 0 4px rgba(255,46,136,.13), 0 0 32px rgba(255,46,136,.18);
    }

    .search-wrap svg {
      width: 20px;
      height: 20px;
      flex: 0 0 auto;
    }

    .search-wrap input {
      width: 100%;
      border: 0;
      outline: 0;
      color: var(--text);
      background: transparent;
      min-width: 0;
    }

    .search-wrap input::placeholder {
      color: var(--weak);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
    }

    .status-pill,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      width: fit-content;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.07);
      color: var(--text);
      font-size: 12px;
      font-weight: 750;
      line-height: 1;
      padding: 8px 12px;
    }

    .status-pill::before,
    .badge::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--amber);
      box-shadow: 0 0 14px rgba(255,178,63,.66);
      flex: 0 0 auto;
    }

    .badge.cyan::before {
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(48,213,200,.58);
    }

    .badge.pink::before {
      background: var(--primary);
      box-shadow: 0 0 14px rgba(255,46,136,.6);
    }

    .badge.purple::before {
      background: var(--primary-2);
      box-shadow: 0 0 14px rgba(122,92,255,.62);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      border: 1px solid transparent;
      padding: 13px 20px;
      min-height: 46px;
      font-size: 14px;
      font-weight: 800;
      line-height: 1;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease, color .22s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn:focus-visible,
    .tab:focus-visible,
    .chip:focus-visible,
    summary:focus-visible,
    input:focus-visible {
      outline: 3px solid rgba(255,46,136,.42);
      outline-offset: 3px;
    }

    .btn-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      box-shadow: 0 14px 34px rgba(255,46,136,.28);
    }

    .btn-primary:hover {
      box-shadow: 0 18px 46px rgba(255,46,136,.38), 0 0 0 1px rgba(255,255,255,.18) inset;
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(255,255,255,.07);
      border-color: rgba(255,255,255,.14);
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,.11);
      border-color: rgba(255,255,255,.24);
      box-shadow: 0 16px 38px rgba(0,0,0,.28);
    }

    .channel-row {
      border-top: 1px solid rgba(255,255,255,.07);
      background: rgba(8,7,11,.64);
    }

    .channel-tabs {
      display: flex;
      gap: 10px;
      padding-top: 12px;
      padding-bottom: 12px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .channel-tabs::-webkit-scrollbar {
      display: none;
    }

    .tab {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 9px 16px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.13);
      color: var(--muted);
      background: rgba(255,255,255,.035);
      font-size: 14px;
      font-weight: 750;
      white-space: nowrap;
      transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    .tab:hover {
      color: var(--text);
      border-color: rgba(255,255,255,.24);
      background: rgba(255,255,255,.075);
    }

    .tab.active {
      color: #fff;
      border-color: rgba(255,255,255,.18);
      background: linear-gradient(135deg, rgba(255,46,136,.92), rgba(122,92,255,.92));
      box-shadow: 0 12px 30px rgba(122,92,255,.24);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 78px 0;
      position: relative;
    }

    .top-banner {
      min-height: 470px;
      display: flex;
      align-items: end;
      padding: 78px 0 54px;
      border-bottom: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(8,7,11,.1), rgba(8,7,11,.88)),
        radial-gradient(circle at 72% 22%, rgba(122,92,255,.45), transparent 36%),
        radial-gradient(circle at 28% 8%, rgba(255,46,136,.32), transparent 32%);
      position: relative;
      isolation: isolate;
    }

    .top-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background:
        linear-gradient(100deg, rgba(255,255,255,.08) 0 1px, transparent 1px 14%),
        linear-gradient(115deg, transparent 0 58%, rgba(48,213,200,.09) 58.4%, transparent 60%),
        linear-gradient(70deg, transparent 0 36%, rgba(255,46,136,.12) 36.5%, transparent 38%);
      mask-image: linear-gradient(180deg, rgba(0,0,0,.92), transparent 92%);
    }

    .banner-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 36px;
      align-items: end;
    }

    .eyebrow {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 18px;
    }

    h1 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(36px, 6vw, 66px);
      line-height: 1.08;
      font-weight: 900;
      letter-spacing: 0;
    }

    .lead {
      margin: 18px 0 0;
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
    }

    .banner-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .signal-board {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(155deg, rgba(255,255,255,.12), rgba(255,255,255,.045)),
        radial-gradient(circle at 80% 0, rgba(255,46,136,.25), transparent 42%);
      box-shadow: var(--shadow);
      padding: 20px;
      overflow: hidden;
    }

    .signal-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .signal-head strong {
      font-size: 18px;
      line-height: 1.3;
    }

    .timer-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 18px;
    }

    .timer-box {
      min-height: 72px;
      display: grid;
      place-items: center;
      gap: 2px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(8,7,11,.42);
    }

    .timer-box b {
      font-size: 24px;
      line-height: 1;
    }

    .timer-box span {
      color: var(--muted);
      font-size: 12px;
    }

    .signal-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .signal-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.055);
      border: 1px solid rgba(255,255,255,.09);
      color: var(--muted);
      font-size: 14px;
    }

    .signal-list strong {
      color: var(--text);
      font-weight: 800;
    }

    .layout {
      display: grid;
      grid-template-columns: 286px minmax(0, 1fr);
      gap: 28px;
      align-items: start;
    }

    .filter-sidebar {
      position: sticky;
      top: 154px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.06);
      box-shadow: 0 18px 50px rgba(0,0,0,.28);
      padding: 18px;
    }

    .filter-sidebar h2,
    .content-head h2,
    .guide-head h2,
    .faq-head h2,
    .cta-panel h2 {
      margin: 0;
      font-size: clamp(26px, 3.2vw, 38px);
      line-height: 1.18;
      font-weight: 850;
      letter-spacing: 0;
    }

    .filter-sidebar p,
    .content-head p,
    .guide-head p,
    .faq-head p,
    .cta-panel p {
      color: var(--muted);
      margin: 10px 0 0;
    }

    .filter-group {
      margin-top: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.1);
    }

    .filter-group h3 {
      margin: 0 0 12px;
      font-size: 14px;
      color: var(--text);
      font-weight: 850;
    }

    .chip-list {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
    }

    .chip {
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 999px;
      background: rgba(255,255,255,.045);
      color: var(--muted);
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 750;
      transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
    }

    .chip:hover,
    .chip.active {
      color: #fff;
      border-color: rgba(255,46,136,.48);
      background: rgba(255,46,136,.16);
      transform: translateY(-1px);
    }

    .age-note {
      margin-top: 18px;
      padding: 14px;
      border-radius: 18px;
      border: 1px solid rgba(48,213,200,.28);
      background: rgba(48,213,200,.08);
      color: #c7fffa;
      font-size: 13px;
      line-height: 1.7;
    }

    .mobile-chips {
      display: none;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 12px;
      margin-bottom: 18px;
      scrollbar-width: none;
    }

    .mobile-chips::-webkit-scrollbar {
      display: none;
    }

    .content-head {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 24px;
    }

    .content-head p {
      max-width: 560px;
    }

    .magazine-flow {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 18px;
    }

    .entry-card {
      position: relative;
      min-height: 238px;
      grid-column: span 3;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(145deg, rgba(255,255,255,.095), rgba(255,255,255,.045)),
        radial-gradient(circle at 84% 8%, rgba(122,92,255,.22), transparent 38%);
      box-shadow: 0 20px 60px rgba(0,0,0,.24);
      padding: 22px;
      overflow: hidden;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .entry-card::after {
      content: "";
      position: absolute;
      right: -42px;
      bottom: -58px;
      width: 170px;
      height: 220px;
      border-radius: 28px;
      transform: rotate(9deg);
      background:
        linear-gradient(160deg, rgba(255,46,136,.34), rgba(122,92,255,.12)),
        repeating-linear-gradient(180deg, rgba(255,255,255,.08) 0 1px, transparent 1px 18px);
      border: 1px solid rgba(255,255,255,.12);
      opacity: .78;
    }

    .entry-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,46,136,.36);
      box-shadow: 0 26px 70px rgba(0,0,0,.34), 0 0 42px rgba(255,46,136,.12);
    }

    .entry-card.wide {
      grid-column: span 6;
      min-height: 285px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) 280px;
      gap: 24px;
      align-items: end;
      background:
        linear-gradient(120deg, rgba(255,46,136,.20), rgba(122,92,255,.12) 42%, rgba(255,255,255,.055)),
        radial-gradient(circle at 78% 18%, rgba(48,213,200,.16), transparent 36%);
    }

    .entry-card.compact {
      grid-column: span 2;
      min-height: 248px;
    }

    .entry-card h3 {
      position: relative;
      z-index: 1;
      margin: 16px 0 0;
      font-size: 24px;
      line-height: 1.25;
      font-weight: 850;
      letter-spacing: 0;
    }

    .entry-card.compact h3 {
      font-size: 20px;
    }

    .entry-card p {
      position: relative;
      z-index: 1;
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .tag-row {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--muted);
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(8,7,11,.28);
      font-size: 12px;
      font-weight: 750;
    }

    .card-action {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 22px;
      color: #fff;
      font-size: 14px;
      font-weight: 850;
    }

    .card-action span {
      width: 28px;
      height: 28px;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
      transition: transform .22s ease;
    }

    .entry-card:hover .card-action span {
      transform: translateX(4px);
    }

    .metric-stack {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
    }

    .metric {
      padding: 16px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(8,7,11,.38);
    }

    .metric b {
      display: block;
      font-size: 26px;
      line-height: 1;
    }

    .metric span {
      color: var(--muted);
      font-size: 13px;
    }

    .guide-section {
      padding-top: 0;
    }

    .guide-head {
      display: grid;
      grid-template-columns: minmax(0, .8fr) minmax(0, 1fr);
      gap: 26px;
      align-items: end;
      margin-bottom: 24px;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-xl);
      overflow: hidden;
      background: rgba(255,255,255,.055);
      box-shadow: var(--shadow);
    }

    .compare-card {
      min-height: 320px;
      padding: 24px;
      border-right: 1px solid rgba(255,255,255,.1);
      background:
        radial-gradient(circle at 80% 0, rgba(255,46,136,.14), transparent 42%),
        rgba(255,255,255,.025);
    }

    .compare-card:last-child {
      border-right: 0;
    }

    .compare-card:nth-child(2) {
      background:
        radial-gradient(circle at 80% 0, rgba(48,213,200,.13), transparent 42%),
        rgba(255,255,255,.025);
    }

    .compare-card:nth-child(3) {
      background:
        radial-gradient(circle at 80% 0, rgba(122,92,255,.18), transparent 42%),
        rgba(255,255,255,.025);
    }

    .compare-card h3 {
      margin: 16px 0 10px;
      font-size: 22px;
      font-weight: 850;
    }

    .compare-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .check-list {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 18px 0 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 9px;
      color: var(--muted);
      font-size: 14px;
    }

    .check-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 9px;
      border-radius: 999px;
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(48,213,200,.52);
      flex: 0 0 auto;
    }

    .strip {
      margin-top: 24px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px 20px;
      border-radius: 22px;
      border: 1px solid rgba(255,178,63,.24);
      background: linear-gradient(90deg, rgba(255,178,63,.12), rgba(255,46,136,.08), rgba(122,92,255,.10));
    }

    .strip strong {
      font-size: 17px;
    }

    .strip span {
      color: var(--muted);
      font-size: 14px;
    }

    .updates {
      padding-top: 0;
    }

    .update-grid {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 20px;
      align-items: stretch;
    }

    .update-panel {
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.058);
      padding: 24px;
    }

    .update-panel h2 {
      margin: 0;
      font-size: 32px;
      line-height: 1.18;
      font-weight: 850;
    }

    .update-panel p {
      color: var(--muted);
      margin: 12px 0 0;
    }

    .timeline {
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 92px 1fr;
      gap: 14px;
      padding: 16px;
      border-radius: 18px;
      background: rgba(8,7,11,.32);
      border: 1px solid rgba(255,255,255,.09);
    }

    .timeline-item time {
      color: var(--cyan);
      font-weight: 850;
      font-size: 13px;
    }

    .timeline-item strong {
      display: block;
      margin-bottom: 3px;
    }

    .timeline-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .keyword-panel {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .keyword-box {
      min-height: 156px;
      padding: 18px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(150deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
        radial-gradient(circle at 100% 0, rgba(255,46,136,.12), transparent 38%);
      transition: transform .22s ease, border-color .22s ease;
    }

    .keyword-box:hover {
      transform: translateY(-3px);
      border-color: rgba(122,92,255,.38);
    }

    .keyword-box h3 {
      margin: 12px 0 6px;
      font-size: 18px;
      font-weight: 850;
    }

    .keyword-box p {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
      line-height: 1.7;
    }

    .cta-section {
      padding-top: 0;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border-radius: 32px;
      border: 1px solid rgba(255,255,255,.16);
      background:
        linear-gradient(120deg, rgba(255,46,136,.26), rgba(122,92,255,.20) 45%, rgba(8,7,11,.92)),
        radial-gradient(circle at 82% 10%, rgba(48,213,200,.18), transparent 36%);
      box-shadow: var(--shadow);
      padding: 34px;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 24px;
      align-items: center;
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 0 55%, rgba(255,255,255,.08) 55.5%, transparent 58%);
      pointer-events: none;
    }

    .cta-panel > * {
      position: relative;
      z-index: 1;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    .faq-section {
      padding-top: 0;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .72fr 1fr;
      gap: 28px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    details {
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      background: rgba(255,255,255,.055);
      overflow: hidden;
      transition: border-color .2s ease, background .2s ease;
    }

    details[open] {
      border-color: rgba(255,46,136,.38);
      background: rgba(255,255,255,.078);
    }

    summary {
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      font-weight: 850;
      line-height: 1.45;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    summary::after {
      content: "+";
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: #fff;
      background: rgba(255,255,255,.08);
      flex: 0 0 auto;
      transition: transform .2s ease, background .2s ease;
    }

    details[open] summary::after {
      content: "−";
      background: linear-gradient(135deg, var(--primary), var(--primary-2));
    }

    details p {
      margin: 0;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .footer {
      position: relative;
      padding: 58px 0 28px;
      border-top: 1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(180deg, rgba(17,16,26,.88), rgba(8,7,11,1)),
        radial-gradient(circle at 18% 0, rgba(255,46,136,.18), transparent 35%);
    }

    .footer::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--primary), var(--primary-2), transparent);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.35fr .8fr .8fr 1.1fr;
      gap: 34px;
      align-items: start;
    }

    .footer p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.8;
      margin: 0;
    }

    .footer h3 {
      margin: 0 0 12px;
      font-size: 15px;
      font-weight: 850;
    }

    .footer ul {
      display: grid;
      gap: 9px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .footer a {
      color: var(--muted);
      font-size: 14px;
      transition: color .2s ease;
    }

    .footer a:hover {
      color: #fff;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      margin-top: 38px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.1);
      color: var(--weak);
      font-size: 13px;
    }

    .mt-4 {
      margin-top: 16px !important;
    }

    @media (max-width: 1024px) {
      .container {
        width: min(var(--container), calc(100% - 48px));
      }

      .top-nav {
        grid-template-columns: 1fr auto;
      }

      .search-wrap {
        grid-column: 1 / -1;
        order: 3;
      }

      .banner-grid,
      .layout,
      .guide-head,
      .update-grid,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .filter-sidebar {
        position: static;
        display: none;
      }

      .mobile-chips {
        display: flex;
      }

      .entry-card.wide {
        grid-template-columns: 1fr;
      }

      .metric-stack {
        grid-template-columns: repeat(3, 1fr);
      }

      .compare-grid {
        grid-template-columns: 1fr;
      }

      .compare-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
      }

      .compare-card:last-child {
        border-bottom: 0;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .cta-panel {
        grid-template-columns: 1fr;
      }

      .cta-actions {
        justify-content: flex-start;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(var(--container), calc(100% - 32px));
      }

      .top-nav {
        min-height: auto;
        padding: 16px 0;
        gap: 14px;
      }

      .brand-text strong {
        font-size: 15px;
        white-space: normal;
      }

      .brand-text span {
        display: none;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
        border-radius: 13px;
      }

      .nav-actions {
        gap: 8px;
      }

      .nav-actions .status-pill {
        display: none;
      }

      .btn {
        padding: 12px 16px;
        min-height: 42px;
      }

      .top-banner {
        min-height: 560px;
        padding: 54px 0 40px;
      }

      .lead {
        font-size: 15px;
      }

      .banner-actions,
      .cta-actions {
        flex-direction: column;
      }

      .banner-actions .btn,
      .cta-actions .btn {
        width: 100%;
      }

      .section {
        padding: 58px 0;
      }

      .content-head {
        display: block;
      }

      .magazine-flow {
        grid-template-columns: 1fr;
      }

      .entry-card,
      .entry-card.compact,
      .entry-card.wide {
        grid-column: auto;
      }

      .metric-stack,
      .keyword-panel {
        grid-template-columns: 1fr;
      }

      .strip {
        grid-template-columns: 1fr;
      }

      .timeline-item {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(var(--container), calc(100% - 28px));
      }

      .top-nav {
        grid-template-columns: 1fr;
      }

      .nav-actions {
        width: 100%;
      }

      .nav-actions .btn {
        width: 100%;
      }

      .search-wrap {
        height: 44px;
      }

      .channel-tabs {
        padding-top: 10px;
        padding-bottom: 10px;
      }

      .tab {
        min-height: 36px;
        padding: 8px 13px;
        font-size: 13px;
      }

      h1 {
        font-size: 38px;
      }

      .signal-board,
      .cta-panel {
        border-radius: 24px;
        padding: 18px;
      }

      .timer-row {
        grid-template-columns: 1fr;
      }

      .entry-card {
        padding: 18px;
        min-height: 230px;
      }

      .entry-card::after {
        opacity: .42;
      }

      .compare-card,
      .update-panel {
        padding: 18px;
      }

      summary {
        padding: 16px;
      }

      details p {
        padding: 0 16px 16px;
      }
    }
