/* roulang page: index */
:root{
      --bg:#09070d;
      --bg-2:#111018;
      --bg-3:#17111f;
      --panel:#12111a;
      --panel-2:#171521;
      --line:rgba(255,255,255,.09);
      --line-2:rgba(255,255,255,.14);
      --text:#f3eef7;
      --muted:#b6afbd;
      --muted-2:#8f8898;
      --accent:#ff4fa1;
      --accent-2:#43dcc3;
      --accent-3:#b78cff;
      --shadow:0 18px 50px rgba(0,0,0,.42);
      --shadow-soft:0 12px 28px rgba(0,0,0,.28);
      --radius:16px;
      --radius-sm:12px;
      --radius-xs:10px;
      --space:24px;
      --space-lg:44px;
      --space-xl:72px;
      --container:1280px;
      --focus:0 0 0 3px rgba(67,220,195,.18), 0 0 0 1px rgba(67,220,195,.45) inset;
      --topbar-h:34px;
      --nav-h:68px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      background:
        linear-gradient(180deg, #09070d 0%, #0d0b12 40%, #111018 100%);
      font-family:PingFang SC, Microsoft YaHei, Noto Sans SC, system-ui, sans-serif;
      line-height:1.7;
      letter-spacing:0;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px),
        linear-gradient(135deg, rgba(255,79,161,.04), rgba(67,220,195,.025));
      background-size:34px 34px, 34px 34px, 100% 100%;
      opacity:.44;
      z-index:-1;
    }
    body::after{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(180deg, rgba(9,7,13,0) 0%, rgba(9,7,13,.12) 100%);
      z-index:-1;
    }
    a{
      color:inherit;
      text-decoration:none;
      transition:color .2s ease, opacity .2s ease, transform .2s ease, border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
    }
    a:hover{color:var(--accent-2)}
    img{max-width:100%; display:block}
    button, input, textarea, select{
      font:inherit;
      letter-spacing:0;
    }
    .container-wrap{
      max-width:var(--container);
      margin:0 auto;
      padding-left:clamp(16px, 2vw, 24px);
      padding-right:clamp(16px, 2vw, 24px);
    }
    .section{
      position:relative;
      padding:var(--space-xl) 0;
    }
    .section.compact{padding:56px 0}
    .section + .section{border-top:1px solid rgba(255,255,255,.04)}
    .section-title{
      margin:0 0 18px;
      font-size:clamp(24px, 2.6vw, 36px);
      line-height:1.18;
      font-weight:800;
      letter-spacing:0;
    }
    .section-desc{
      margin:0 0 28px;
      max-width:760px;
      color:var(--muted);
      font-size:16px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      color:#efe9f5;
      background:rgba(255,255,255,.03);
      font-size:12px;
      line-height:1;
      margin-bottom:16px;
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow:0 0 0 3px rgba(255,79,161,.12);
    }
    .top-strip{
      min-height:var(--topbar-h);
      display:flex;
      align-items:center;
      border-bottom:1px solid rgba(67,220,195,.14);
      background:linear-gradient(180deg, rgba(18,17,26,.96), rgba(13,12,18,.96));
      position:relative;
      z-index:20;
    }
    .top-strip::after{
      content:"";
      position:absolute;
      left:0;right:0;bottom:-1px;height:1px;
      background:linear-gradient(90deg, transparent, rgba(67,220,195,.34), rgba(255,79,161,.38), transparent);
    }
    .top-strip-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      min-height:var(--topbar-h);
      font-size:12px;
      color:var(--muted);
    }
    .top-strip strong{color:#fff; font-weight:700}
    .top-strip .left, .top-strip .right{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .top-strip .right{
      justify-content:flex-end;
      flex-wrap:wrap;
    }
    .mini-link{
      color:#fff;
      border-bottom:1px solid rgba(255,255,255,.18);
      padding-bottom:1px;
    }
    .mini-link:hover{border-color:var(--accent-2); color:var(--accent-2)}
    .mini-tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 10px;
      border-radius:999px;
      background:rgba(67,220,195,.08);
      color:#d7fff8;
      border:1px solid rgba(67,220,195,.18);
      white-space:nowrap;
    }
    .site-nav-wrap{
      position:sticky;
      top:0;
      z-index:19;
      backdrop-filter:blur(18px);
      background:rgba(9,7,13,.82);
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .nav-shell{
      min-height:var(--nav-h);
      display:flex;
      align-items:center;
    }
    .top-bar,
    .title-bar{
      width:100%;
      background:transparent;
      padding:0;
    }
    .title-bar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 0;
    }
    .title-bar .menu-icon{
      margin:0;
      width:42px;
      height:42px;
      border-radius:12px;
      background-color:rgba(255,255,255,.05);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.1);
    }
    .title-bar .menu-icon::after{
      background:#f4eef7;
      box-shadow:0 7px 0 #f4eef7, 0 -7px 0 #f4eef7;
    }
    .title-bar-title{
      font-size:16px;
      font-weight:800;
      color:#fff;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .top-bar .top-bar-left,
    .top-bar .top-bar-right,
    .top-bar .top-bar-center{
      display:flex;
      align-items:center;
      min-width:0;
    }
    .top-bar{
      justify-content:space-between;
      gap:18px;
      padding:10px 0;
      min-height:var(--nav-h);
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-size:18px;
      font-weight:800;
      color:#fff;
      white-space:nowrap;
      letter-spacing:0;
    }
    .brand::before{
      content:"";
      width:12px;height:12px;
      border-radius:4px;
      background:linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow:0 0 0 3px rgba(255,79,161,.12);
      flex:none;
    }
    .menu{
      gap:8px;
      align-items:center;
      margin:0;
    }
    .menu > li > a{
      position:relative;
      padding:12px 16px;
      color:#efeaf6;
      border-radius:12px;
      font-size:14px;
      line-height:1;
    }
    .menu > li > a:hover,
    .menu > li.is-active > a,
    .menu > li > a.is-active{
      color:#fff;
      background:rgba(255,255,255,.03);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.08);
    }
    .menu > li > a.is-active::after,
    .menu > li.is-active > a::after{
      content:"";
      position:absolute;
      left:16px;
      right:16px;
      bottom:8px;
      height:2px;
      border-radius:2px;
      background:linear-gradient(90deg, var(--accent), var(--accent-2));
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .nav-actions .ghost-text{
      color:var(--muted);
      font-size:13px;
      white-space:nowrap;
    }
    .button{
      margin:0;
      border-radius:12px;
      border:1px solid transparent;
      font-weight:700;
      letter-spacing:0;
      transition:transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease, opacity .18s ease;
      box-shadow:none;
    }
    .button:hover,
    .button:focus{
      transform:translateY(-1px);
      box-shadow:0 12px 28px rgba(0,0,0,.24);
    }
    .button.primary-btn{
      background:linear-gradient(135deg, rgba(255,79,161,.16), rgba(67,220,195,.12));
      color:#fff;
      border-color:rgba(255,79,161,.42);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.04);
    }
    .button.primary-btn:hover,
    .button.primary-btn:focus{
      border-color:rgba(67,220,195,.52);
      box-shadow:0 14px 34px rgba(0,0,0,.34), 0 0 0 1px rgba(67,220,195,.18) inset;
    }
    .button.secondary-btn{
      background:rgba(255,255,255,.03);
      color:#f3eef7;
      border-color:rgba(255,255,255,.12);
    }
    .button.secondary-btn:hover,
    .button.secondary-btn:focus{
      background:rgba(255,255,255,.06);
      border-color:rgba(67,220,195,.34);
      color:#fff;
    }
    .button.small{
      padding:.78em 1em;
      font-size:13px;
    }
    .button.large{
      padding:1em 1.3em;
      font-size:15px;
    }
    .button:focus,
    input:focus,
    textarea:focus,
    select:focus{
      outline:none;
      box-shadow:var(--focus);
    }
    .hero{
      position:relative;
      padding:44px 0 24px;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg, rgba(255,79,161,.08), transparent 42%),
        linear-gradient(315deg, rgba(67,220,195,.07), transparent 38%);
      pointer-events:none;
      opacity:.8;
    }
    .hero-shell{
      position:relative;
      border:1px solid rgba(255,255,255,.08);
      border-radius:24px;
      background:
        linear-gradient(180deg, rgba(23,17,31,.9), rgba(10,8,14,.82));
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .hero-shell::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(transparent 0%, transparent 77%, rgba(255,255,255,.03) 78%, transparent 79%),
        linear-gradient(90deg, transparent 0%, transparent 78%, rgba(255,255,255,.03) 79%, transparent 80%);
      background-size:100% 100%, 42px 42px;
      opacity:.36;
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      padding:clamp(26px, 3.5vw, 44px);
    }
    .hero-copy{
      padding-right:18px;
    }
    .hero h1{
      margin:0 0 18px;
      font-size:clamp(32px, 4.6vw, 58px);
      line-height:1.08;
      font-weight:800;
      letter-spacing:0;
      max-width:10.5em;
    }
    .hero p{
      margin:0 0 22px;
      max-width:680px;
      color:var(--muted);
      font-size:16px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      align-items:center;
      margin:18px 0 14px;
    }
    .hero-micro{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .micro-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:#f6f1fa;
      font-size:13px;
      white-space:nowrap;
    }
    .micro-chip i{
      width:8px;height:8px;border-radius:50%;
      background:var(--accent-2);
      display:inline-block;
      box-shadow:0 0 0 3px rgba(67,220,195,.12);
    }
    .hero-panel{
      position:relative;
      display:grid;
      gap:14px;
      grid-template-columns:repeat(2, minmax(0,1fr));
    }
    .panel-card{
      position:relative;
      padding:18px;
      min-height:126px;
      border-radius:18px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02)),
        linear-gradient(180deg, rgba(17,16,24,.98), rgba(14,12,18,.98));
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .panel-card::before{
      content:"";
      position:absolute;
      left:0;top:0;right:0;height:2px;
      background:linear-gradient(90deg, var(--accent), var(--accent-2));
      opacity:.9;
    }
    .panel-card .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 8px;
      border-radius:999px;
      background:rgba(67,220,195,.08);
      color:#d8fff5;
      border:1px solid rgba(67,220,195,.16);
      font-size:12px;
      margin-bottom:10px;
    }
    .panel-card .title{
      margin:0 0 8px;
      font-size:17px;
      line-height:1.22;
      font-weight:700;
      color:#fff;
    }
    .panel-card .text{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.65;
    }
    .hero-frame{
      margin-top:18px;
      border-radius:18px;
      padding:16px 18px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      color:var(--muted);
      position:relative;
      overflow:hidden;
    }
    .hero-frame::after{
      content:"";
      position:absolute;
      right:-28px;
      top:-16px;
      width:120px;
      height:120px;
      border-radius:30px;
      background:linear-gradient(135deg, rgba(255,79,161,.08), rgba(67,220,195,.05));
      transform:rotate(18deg);
      pointer-events:none;
    }
    .hero-frame strong{color:#fff}
    .frame-arrow{
      color:var(--accent-2);
      font-weight:700;
      white-space:nowrap;
    }
    .story-grid .story-card,
    .poster-card,
    .note-card,
    .metric-card,
    .cta-card,
    .faq-shell,
    .update-panel,
    .mini-list,
    .trust-card{
      position:relative;
      border-radius:var(--radius);
      border:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(19,17,27,.96), rgba(13,11,18,.96));
      box-shadow:var(--shadow-soft);
      overflow:hidden;
    }
    .story-card::before,
    .poster-card::before,
    .note-card::before,
    .metric-card::before,
    .cta-card::before,
    .faq-shell::before,
    .update-panel::before,
    .mini-list::before,
    .trust-card::before{
      content:"";
      position:absolute;
      left:0; top:0; right:0;
      height:2px;
      background:linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
      opacity:.82;
    }
    .story-grid .story-card{
      min-height:100%;
      padding:24px;
    }
    .story-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .badge-step{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:34px;
      height:34px;
      border-radius:12px;
      background:rgba(255,79,161,.12);
      color:#fff;
      border:1px solid rgba(255,79,161,.26);
      font-weight:800;
      flex:none;
    }
    .story-card h3{
      margin:0 0 10px;
      font-size:20px;
      line-height:1.25;
      font-weight:700;
    }
    .story-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }
    .story-tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      margin-top:14px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      color:#f6f1fa;
      background:rgba(255,255,255,.03);
      font-size:12px;
    }
    .poster-grid{
      display:grid;
      grid-template-columns:repeat(12, minmax(0,1fr));
      gap:18px;
      align-items:stretch;
    }
    .poster-card{
      padding:18px;
      min-height:100%;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      transition:transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }
    .poster-card:hover{
      transform:translateY(-4px);
      border-color:rgba(67,220,195,.28);
      box-shadow:0 18px 40px rgba(0,0,0,.42);
    }
    .poster-card .label{
      display:inline-flex;
      align-items:center;
      gap:6px;
      margin-bottom:12px;
      font-size:12px;
      color:#dcfff7;
      background:rgba(67,220,195,.08);
      border:1px solid rgba(67,220,195,.16);
      padding:5px 8px;
      border-radius:999px;
      width:fit-content;
    }
    .poster-card h3{
      margin:0 0 10px;
      font-size:20px;
      line-height:1.22;
      font-weight:700;
    }
    .poster-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .poster-footer{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:18px;
    }
    .poster-link{
      color:#fff;
      font-weight:700;
      border-bottom:1px solid rgba(255,255,255,.2);
      padding-bottom:2px;
    }
    .poster-link:hover{
      color:var(--accent-2);
      border-color:var(--accent-2);
    }
    .poster-meta{
      font-size:12px;
      color:var(--muted-2);
      white-space:nowrap;
    }
    .wide-6{grid-column:span 6}
    .wide-4{grid-column:span 4}
    .wide-3{grid-column:span 3}
    .wide-8{grid-column:span 8}
    .wide-7{grid-column:span 7}
    .wide-5{grid-column:span 5}
    .wide-12{grid-column:span 12}
    .update-layout{
      display:grid;
      grid-template-columns:minmax(0,1.4fr) minmax(280px,.85fr);
      gap:18px;
      align-items:start;
    }
    .update-list{
      list-style:none;
      margin:0;
      padding:0;
    }
    .update-list li + li{margin-top:12px}
    .update-item{
      display:flex;
      justify-content:space-between;
      gap:14px;
      align-items:flex-start;
      padding:16px 18px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.07);
      background:rgba(255,255,255,.03);
      transition:transform .2s ease, border-color .2s ease, background-color .2s ease;
    }
    .update-item:hover{
      transform:translateY(-2px);
      border-color:rgba(67,220,195,.2);
      background:rgba(255,255,255,.045);
    }
    .update-title{
      display:block;
      font-weight:700;
      color:#fff;
      margin-bottom:6px;
      line-height:1.35;
    }
    .update-title:hover{color:var(--accent-2)}
    .update-desc{
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
      margin:0;
    }
    .update-time{
      color:var(--muted-2);
      font-size:12px;
      white-space:nowrap;
      padding-top:2px;
    }
    .update-panel{
      padding:20px;
    }
    .side-section + .side-section{margin-top:20px}
    .side-title{
      margin:0 0 12px;
      font-size:18px;
      line-height:1.25;
      font-weight:700;
    }
    .tag-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag-cloud a,
    .tag-cloud span{
      display:inline-flex;
      align-items:center;
      min-height:34px;
      padding:7px 11px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.09);
      background:rgba(255,255,255,.03);
      color:#f7f2fa;
      font-size:13px;
    }
    .tag-cloud a:hover{
      background:rgba(67,220,195,.08);
      border-color:rgba(67,220,195,.22);
      color:#d8fff7;
    }
    .check-list{
      list-style:none;
      margin:0;
      padding:0;
    }
    .check-list li{
      position:relative;
      padding-left:22px;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .check-list li + li{margin-top:10px}
    .check-list li::before{
      content:"";
      position:absolute;
      left:0;
      top:.58em;
      width:10px;
      height:10px;
      border-radius:50%;
      background:linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow:0 0 0 3px rgba(255,79,161,.12);
    }
    .trust-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:18px;
    }
    .metric-card{
      padding:20px;
    }
    .metric-top{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:12px;
      margin-bottom:12px;
    }
    .metric-number{
      font-size:34px;
      line-height:1;
      font-weight:800;
      letter-spacing:0;
    }
    .metric-label{
      color:var(--muted);
      font-size:13px;
      white-space:nowrap;
    }
    .metric-card p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:14px;
      min-height:42px;
    }
    .meter{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.05);
      overflow:hidden;
      border:1px solid rgba(255,255,255,.07);
    }
    .meter > span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--accent), var(--accent-2));
      box-shadow:0 0 18px rgba(67,220,195,.18);
    }
    .cta-card{
      padding:28px;
      background:
        linear-gradient(135deg, rgba(255,79,161,.08), rgba(67,220,195,.04)),
        linear-gradient(180deg, rgba(19,17,27,.98), rgba(12,10,16,.98));
    }
    .cta-layout{
      display:grid;
      grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
      gap:22px;
      align-items:center;
    }
    .cta-card h2{
      margin:0 0 14px;
      font-size:clamp(26px, 3vw, 38px);
      line-height:1.15;
      font-weight:800;
    }
    .cta-card p{
      margin:0;
      color:var(--muted);
      font-size:16px;
      max-width:680px;
    }
    .cta-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
    }
    .subscribe-form{
      display:grid;
      gap:12px;
      padding:22px;
      border-radius:18px;
      background:rgba(255,255,255,.03);
      border:1px solid rgba(255,255,255,.08);
    }
    .subscribe-form label{
      display:block;
      font-size:13px;
      color:#ebe5f1;
      margin-bottom:8px;
      font-weight:700;
    }
    .subscribe-form .input-group{
      margin:0;
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:10px;
    }
    .subscribe-form input{
      margin:0;
      height:48px;
      border-radius:12px;
      background:rgba(9,7,13,.72);
      border:1px solid rgba(255,255,255,.12);
      color:#fff;
      box-shadow:none;
      padding:0 14px;
    }
    .subscribe-form input::placeholder{color:#837b8d}
    .subscribe-form .button{
      height:48px;
      padding:0 18px;
      white-space:nowrap;
    }
    .form-note{
      color:var(--muted-2);
      font-size:12px;
      margin:0;
    }
    .faq-shell{
      padding:18px;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-title{
      color:#fff;
      font-size:16px;
      line-height:1.5;
      padding:18px 18px 18px 46px;
      border:none;
      border-radius:14px;
      background:rgba(255,255,255,.03);
      position:relative;
      transition:background-color .2s ease, border-color .2s ease, color .2s ease;
    }
    .accordion-title::before{
      border-color:transparent transparent transparent var(--accent-2);
      left:16px;
    }
    .accordion-item{
      border:none;
      margin:0 0 10px;
      border-radius:14px;
      overflow:hidden;
    }
    .accordion-item.is-active .accordion-title{
      background:rgba(67,220,195,.06);
      border:1px solid rgba(67,220,195,.16);
      color:#fff;
    }
    .accordion-content{
      background:rgba(255,255,255,.02);
      border:1px solid rgba(255,255,255,.07);
      border-top:none;
      color:var(--muted);
      padding:16px 18px 18px 18px;
      font-size:15px;
      line-height:1.8;
    }
    .footer{
      padding:32px 0 24px;
      background:linear-gradient(180deg, rgba(9,7,13,0), rgba(10,8,14,.6));
      border-top:1px solid rgba(255,255,255,.05);
    }
    .footer-top-line{
      height:1px;
      background:linear-gradient(90deg, transparent, rgba(255,79,161,.38), rgba(67,220,195,.38), transparent);
      margin-bottom:28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr .9fr 1fr;
      gap:18px;
      align-items:start;
    }
    .footer-brand{
      font-size:18px;
      font-weight:800;
      margin:0 0 12px;
    }
    .footer-desc{
      color:var(--muted);
      font-size:14px;
      margin:0;
      max-width:320px;
    }
    .footer-title{
      font-size:14px;
      color:#fff;
      margin:0 0 12px;
      font-weight:700;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
    }
    .footer-links li + li{margin-top:10px}
    .footer-links a{
      color:var(--muted);
      font-size:14px;
    }
    .footer-links a:hover{color:var(--accent-2)}
    .footer-note{
      color:var(--muted-2);
      font-size:12px;
      margin-top:12px;
      line-height:1.7;
    }
    .copyright{
      margin-top:22px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.06);
      color:var(--muted-2);
      font-size:12px;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      justify-content:space-between;
      align-items:center;
    }
    .copyright strong{color:#dfd8e8}
    .divider-dot{
      width:4px;height:4px;border-radius:50%;
      background:rgba(255,255,255,.28);
      display:inline-block;
      margin:0 8px;
      vertical-align:middle;
    }
    .focus-ring:focus,
    .button:focus,
    .menu a:focus,
    .accordion-title:focus{
      outline:none;
      box-shadow:var(--focus);
    }
    .note-grid{
      display:grid;
      grid-template-columns:repeat(4, minmax(0,1fr));
      gap:18px;
    }
    .note-card{
      padding:20px;
    }
    .note-card h3{
      margin:0 0 10px;
      font-size:18px;
      line-height:1.24;
      font-weight:700;
    }
    .note-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .note-card .state{
      display:inline-flex;
      margin-top:14px;
      color:#dbfff8;
      background:rgba(67,220,195,.08);
      border:1px solid rgba(67,220,195,.16);
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
    }
    .mini-rules{
      display:grid;
      grid-template-columns:repeat(2, minmax(0,1fr));
      gap:14px;
    }
    .rule{
      padding:14px 15px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.025);
      color:var(--muted);
      font-size:14px;
      line-height:1.7;
    }
    .rule strong{
      display:block;
      color:#fff;
      margin-bottom:6px;
      font-size:15px;
    }
    .badge-inline{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:6px 9px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.03);
      color:#f7f2fa;
      font-size:12px;
      margin-bottom:12px;
    }
    .badge-inline i{
      width:8px;height:8px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 3px rgba(255,79,161,.12);
      display:inline-block;
    }
    .mobile-only{display:none}
    .desktop-only{display:block}
    .small-gap{margin-top:14px}
    @media (max-width: 1024px){
      .trust-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .note-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .footer-grid{grid-template-columns:repeat(2, minmax(0,1fr))}
      .update-layout,
      .cta-layout{
        grid-template-columns:1fr;
      }
      .hero-inner{padding:28px}
      .hero-copy{padding-right:0}
    }
    @media (max-width: 768px){
      .section{padding:56px 0}
      .hero{padding-top:22px}
      .hero-shell{border-radius:20px}
      .hero h1{max-width:none}
      .hero-panel{grid-template-columns:1fr}
      .mini-rules{grid-template-columns:1fr}
      .poster-grid{gap:14px}
      .wide-6, .wide-5, .wide-4, .wide-3, .wide-7, .wide-8, .wide-12{grid-column:span 12}
      .subscribe-form .input-group{grid-template-columns:1fr}
      .nav-actions{
        justify-content:flex-start;
      }
      .mobile-only{display:block}
      .desktop-only{display:none}
      .top-strip-inner{
        gap:8px;
        flex-wrap:wrap;
        padding:6px 0;
      }
      .top-strip .right{
        justify-content:flex-start;
      }
      .menu{
        display:flex;
        flex-direction:column;
        align-items:stretch;
        width:100%;
        gap:6px;
        padding:6px 0 10px;
      }
      .menu > li > a{
        width:100%;
        padding:14px 16px;
      }
      .menu > li > a.is-active::after,
      .menu > li.is-active > a::after{
        left:16px;
        right:auto;
        width:64px;
      }
      .top-bar{
        flex-direction:column;
        align-items:stretch;
        gap:12px;
      }
      .top-bar-left,
      .top-bar-right{
        width:100%;
        justify-content:space-between;
        flex-wrap:wrap;
      }
      .brand{
        white-space:normal;
      }
    }
    @media (max-width: 520px){
      .container-wrap{
        padding-left:14px;
        padding-right:14px;
      }
      .hero-inner{padding:22px}
      .hero h1{font-size:32px}
      .section-title{font-size:24px}
      .section-desc{font-size:15px}
      .story-grid .story-card,
      .poster-card,
      .note-card,
      .metric-card,
      .cta-card,
      .update-panel,
      .mini-list,
      .faq-shell{
        border-radius:14px;
      }
      .trust-grid,
      .note-grid,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .update-item{
        flex-direction:column;
      }
      .update-time{padding-top:0}
      .copyright{
        flex-direction:column;
        align-items:flex-start;
      }
      .nav-actions .ghost-text{display:none}
      .button.small{
        padding:.8em .95em;
      }
      .title-bar{
        padding:10px 0;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #09070d;
      --bg-soft: #111018;
      --bg-panel: #17111f;
      --bg-card: #1c1526;
      --text: #f5edf7;
      --muted: #b9aabd;
      --weak: #877b90;
      --line: rgba(255,255,255,.12);
      --line-strong: rgba(255, 94, 166, .48);
      --pink: #ff4fa3;
      --cyan: #28e6c7;
      --violet: #9b7cff;
      --amber: #ffd166;
      --radius-sm: 10px;
      --radius-md: 14px;
      --radius-lg: 18px;
      --shadow: 0 22px 60px rgba(0,0,0,.42);
      --shadow-neon: 0 0 0 1px rgba(255,79,163,.26), 0 18px 54px rgba(255,79,163,.12);
      --container: 1220px;
      --ease: all .22s ease;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(255,79,163,.12), transparent 28%),
        radial-gradient(circle at 88% 20%, rgba(40,230,199,.09), transparent 26%),
        linear-gradient(180deg, #09070d 0%, #111018 44%, #09070d 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .18;
      background-image:
        linear-gradient(120deg, rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 48px 48px, 100% 7px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.25));
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    a:hover, a:focus { color: var(--cyan); }

    button, input {
      font: inherit;
    }

    input:focus, button:focus, a:focus {
      outline: 2px solid rgba(40,230,199,.65);
      outline-offset: 3px;
    }

    .container-wrap {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .top-strip {
      min-height: 34px;
      background: rgba(5,4,8,.92);
      border-bottom: 1px solid rgba(40,230,199,.22);
      color: var(--muted);
      font-size: 13px;
    }

    .top-strip-inner {
      min-height: 34px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .top-strip .left,
    .top-strip .right {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .top-strip strong {
      color: var(--text);
      font-weight: 700;
      white-space: nowrap;
    }

    .mini-link {
      color: var(--cyan);
      border-bottom: 1px solid rgba(40,230,199,.35);
      white-space: nowrap;
    }

    .mini-tag {
      display: inline-flex;
      align-items: center;
      min-height: 22px;
      padding: 2px 9px;
      border: 1px solid rgba(255,79,163,.34);
      border-radius: 999px;
      color: #ffd7ea;
      background: rgba(255,79,163,.08);
      white-space: nowrap;
    }

    .site-nav-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(12,9,18,.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255,255,255,.09);
      box-shadow: 0 18px 36px rgba(0,0,0,.24);
    }

    .nav-shell {
      min-height: 68px;
      display: flex;
      align-items: center;
    }

    .top-bar {
      width: 100%;
      padding: 0;
      background: transparent;
    }

    .top-bar ul {
      background: transparent;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-weight: 800;
      font-size: 18px;
      line-height: 1.2;
      max-width: 290px;
    }

    .brand::before {
      content: "";
      width: 12px;
      height: 34px;
      border-radius: 8px;
      background: linear-gradient(180deg, var(--pink), var(--cyan));
      box-shadow: 0 0 18px rgba(255,79,163,.45);
      flex: 0 0 auto;
    }

    .menu a {
      color: var(--muted);
      font-weight: 600;
      padding: 1rem .9rem;
      position: relative;
    }

    .menu li.is-active > a,
    .menu a.is-active {
      color: var(--text);
      background: transparent;
    }

    .menu li.is-active > a::after,
    .menu a.is-active::after {
      content: "";
      position: absolute;
      left: .9rem;
      right: .9rem;
      bottom: .42rem;
      height: 2px;
      border-radius: 99px;
      background: linear-gradient(90deg, var(--pink), var(--cyan));
      box-shadow: 0 0 14px rgba(255,79,163,.5);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .ghost-text {
      color: var(--weak);
      font-size: 13px;
      white-space: nowrap;
    }

    .button {
      border-radius: var(--radius-sm);
      font-weight: 700;
      line-height: 1;
      transition: var(--ease);
      margin: 0;
    }

    .primary-btn {
      color: #120812;
      background: linear-gradient(135deg, var(--pink), #ff89c7);
      border: 1px solid rgba(255,255,255,.16);
      box-shadow: 0 10px 30px rgba(255,79,163,.22);
    }

    .primary-btn:hover, .primary-btn:focus {
      color: #09070d;
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(255,79,163,.34);
      filter: brightness(1.06);
    }

    .secondary-btn {
      color: var(--text);
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(40,230,199,.32);
    }

    .secondary-btn:hover, .secondary-btn:focus {
      color: var(--cyan);
      background: rgba(40,230,199,.08);
      transform: translateY(-2px);
      box-shadow: 0 12px 34px rgba(40,230,199,.15);
    }

    .mobile-only { display: none; }

    .title-bar {
      width: 100%;
      min-height: 60px;
      padding: 0;
      background: transparent;
    }

    .title-bar-title {
      color: var(--text);
      font-weight: 800;
    }

    .menu-icon::after {
      background: var(--text);
      box-shadow: 0 7px 0 var(--text), 0 14px 0 var(--text);
    }

    main {
      display: block;
    }

    .category-header {
      position: relative;
      padding: 58px 0 28px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(90deg, rgba(255,79,163,.10), transparent 38%),
        linear-gradient(180deg, rgba(23,17,31,.74), rgba(9,7,13,.32));
    }

    .breadcrumb {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--weak);
      font-size: 14px;
    }

    .breadcrumb a {
      color: var(--muted);
    }

    .breadcrumb span:last-child {
      color: var(--cyan);
    }

    .header-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
      gap: 34px;
      align-items: end;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 14px;
      color: #ffd7ea;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0;
    }

    .eyebrow::before {
      content: "";
      width: 32px;
      height: 2px;
      background: linear-gradient(90deg, var(--pink), var(--cyan));
      box-shadow: 0 0 14px rgba(255,79,163,.55);
    }

    h1, h2, h3, p {
      margin-top: 0;
    }

    h1 {
      max-width: 850px;
      margin-bottom: 16px;
      font-size: clamp(31px, 4vw, 52px);
      line-height: 1.12;
      font-weight: 800;
      letter-spacing: 0;
    }

    .lead {
      max-width: 850px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 17px;
    }

    .status-panel {
      position: relative;
      padding: 20px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(145deg, rgba(28,21,38,.96), rgba(13,10,19,.96)),
        repeating-linear-gradient(135deg, rgba(255,255,255,.04) 0 1px, transparent 1px 12px);
      border: 1px solid rgba(255,255,255,.11);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .status-panel::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 3px;
      background: linear-gradient(90deg, var(--pink), var(--cyan), transparent);
    }

    .panel-title {
      margin-bottom: 14px;
      color: var(--text);
      font-weight: 800;
      font-size: 18px;
    }

    .check-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 10px;
      align-items: center;
      min-height: 42px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: var(--muted);
      font-size: 14px;
    }

    .check-row:first-of-type {
      border-top: 0;
    }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(40,230,199,.7);
    }

    .state {
      color: #ffd7ea;
      font-size: 12px;
      border: 1px solid rgba(255,79,163,.24);
      border-radius: 999px;
      padding: 2px 8px;
      background: rgba(255,79,163,.07);
      white-space: nowrap;
    }

    .filter-section {
      padding: 24px 0 0;
    }

    .filter-board {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: var(--radius-lg);
      background: rgba(17,16,24,.82);
      box-shadow: 0 14px 42px rgba(0,0,0,.25);
    }

    .tag-scroll {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      scrollbar-width: thin;
      padding-bottom: 2px;
    }

    .filter-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 8px 13px;
      color: var(--muted);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 11px;
      background: rgba(255,255,255,.035);
      white-space: nowrap;
      font-size: 14px;
      font-weight: 700;
    }

    .filter-tag.active,
    .filter-tag:hover {
      color: var(--text);
      border-color: rgba(255,79,163,.55);
      background: rgba(255,79,163,.10);
      box-shadow: 0 0 18px rgba(255,79,163,.10);
    }

    .filter-tag .dot {
      width: 7px;
      height: 7px;
    }

    .sort-note {
      flex: 0 0 auto;
      color: var(--weak);
      font-size: 13px;
    }

    .content-section {
      padding: 58px 0 76px;
    }

    .layout-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 340px;
      gap: 28px;
      align-items: start;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .entry-card {
      position: relative;
      min-height: 294px;
      display: flex;
      flex-direction: column;
      padding: 20px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(28,21,38,.96), rgba(14,11,20,.98)),
        radial-gradient(circle at 90% 8%, rgba(40,230,199,.12), transparent 28%);
      border: 1px solid rgba(255,255,255,.11);
      box-shadow: 0 18px 46px rgba(0,0,0,.28);
      overflow: hidden;
      transition: var(--ease);
    }

    .entry-card::before {
      content: "";
      position: absolute;
      left: 18px;
      top: 0;
      width: 74px;
      height: 3px;
      border-radius: 0 0 99px 99px;
      background: linear-gradient(90deg, var(--pink), var(--cyan));
    }

    .entry-card::after {
      content: attr(data-index);
      position: absolute;
      right: 18px;
      top: 16px;
      color: rgba(255,255,255,.08);
      font-size: 42px;
      line-height: 1;
      font-weight: 800;
    }

    .entry-card:hover {
      transform: translateY(-4px);
      border-color: rgba(255,79,163,.42);
      box-shadow: var(--shadow-neon);
    }

    .entry-card.featured {
      grid-row: span 2;
      min-height: 606px;
      background:
        linear-gradient(180deg, rgba(38,23,45,.98), rgba(13,10,19,.98)),
        radial-gradient(circle at 30% 10%, rgba(255,79,163,.20), transparent 34%),
        radial-gradient(circle at 80% 70%, rgba(40,230,199,.12), transparent 36%);
    }

    .card-art {
      position: relative;
      height: 120px;
      margin: 8px 0 18px;
      border-radius: 14px;
      border: 1px solid rgba(255,255,255,.10);
      background:
        linear-gradient(135deg, rgba(255,79,163,.18), transparent 35%),
        linear-gradient(315deg, rgba(40,230,199,.13), transparent 38%),
        repeating-linear-gradient(90deg, rgba(255,255,255,.06) 0 1px, transparent 1px 18px),
        #130f1b;
      overflow: hidden;
    }

    .featured .card-art {
      height: 260px;
    }

    .card-art span {
      position: absolute;
      left: 16px;
      bottom: 14px;
      right: 16px;
      color: rgba(255,255,255,.84);
      font-weight: 800;
      font-size: 22px;
      line-height: 1.3;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      align-self: flex-start;
      gap: 8px;
      min-height: 28px;
      margin-bottom: 14px;
      padding: 4px 10px;
      color: #ffd7ea;
      background: rgba(255,79,163,.08);
      border: 1px solid rgba(255,79,163,.28);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
    }

    .entry-card h2,
    .entry-card h3 {
      position: relative;
      z-index: 1;
      margin-bottom: 10px;
      color: var(--text);
      font-size: 21px;
      line-height: 1.35;
      font-weight: 800;
    }

    .entry-card p {
      position: relative;
      z-index: 1;
      color: var(--muted);
      font-size: 15px;
      margin-bottom: 18px;
    }

    .card-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: auto;
      margin-bottom: 16px;
    }

    .meta-pill {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 3px 9px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.10);
      color: var(--weak);
      font-size: 12px;
      background: rgba(255,255,255,.035);
    }

    .text-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      align-self: flex-start;
      color: var(--cyan);
      font-weight: 800;
      font-size: 14px;
    }

    .text-link::after {
      content: "";
      width: 22px;
      height: 1px;
      background: currentColor;
      transition: var(--ease);
    }

    .text-link:hover::after {
      width: 34px;
    }

    .sidebar {
      position: sticky;
      top: 94px;
      display: grid;
      gap: 16px;
    }

    .side-panel {
      padding: 18px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(18,14,25,.92);
      box-shadow: 0 16px 42px rgba(0,0,0,.26);
    }

    .side-panel h2,
    .side-panel h3 {
      margin-bottom: 12px;
      font-size: 18px;
      font-weight: 800;
    }

    .side-panel p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 12px;
    }

    .side-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .side-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 11px 0;
      color: var(--muted);
      border-top: 1px solid rgba(255,255,255,.08);
      font-size: 14px;
    }

    .side-list li:first-child {
      border-top: 0;
    }

    .side-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 9px;
      border-radius: 50%;
      background: var(--pink);
      box-shadow: 0 0 12px rgba(255,79,163,.7);
      flex: 0 0 auto;
    }

    .hot-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .hot-tags a {
      display: inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--muted);
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.10);
      font-size: 13px;
      font-weight: 700;
    }

    .hot-tags a:hover {
      color: var(--text);
      border-color: rgba(40,230,199,.45);
      background: rgba(40,230,199,.08);
    }

    .progress-item {
      margin-top: 14px;
    }

    .progress-label {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 7px;
    }

    .meter {
      height: 7px;
      border-radius: 99px;
      background: rgba(255,255,255,.08);
      overflow: hidden;
    }

    .meter span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--pink), var(--cyan));
      box-shadow: 0 0 18px rgba(40,230,199,.34);
    }

    .load-more {
      margin-top: 26px;
      display: flex;
      justify-content: center;
    }

    .faq-cta-section {
      padding: 0 0 86px;
    }

    .split-panel {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
      gap: 24px;
      align-items: stretch;
    }

    .cta-box {
      padding: 28px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(135deg, rgba(255,79,163,.14), rgba(40,230,199,.08)),
        rgba(23,17,31,.94);
      border: 1px solid rgba(255,255,255,.11);
      box-shadow: var(--shadow);
    }

    .cta-box h2 {
      margin-bottom: 12px;
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1.22;
      font-weight: 800;
    }

    .cta-box p {
      color: var(--muted);
      margin-bottom: 20px;
    }

    .subscribe-form {
      display: flex;
      gap: 10px;
      margin-top: 18px;
    }

    .subscribe-form input {
      min-height: 48px;
      margin: 0;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255,255,255,.15);
      background: rgba(9,7,13,.76);
      color: var(--text);
      box-shadow: none;
    }

    .subscribe-form input::placeholder {
      color: var(--weak);
    }

    .subscribe-form input:focus {
      border-color: var(--cyan);
      background: rgba(9,7,13,.92);
      box-shadow: 0 0 0 3px rgba(40,230,199,.12);
    }

    .error-slot {
      min-height: 18px;
      margin-top: 8px;
      color: #ff9fc9;
      font-size: 12px;
    }

    .accordion {
      background: transparent;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.10);
    }

    .accordion-item {
      background: rgba(17,16,24,.82);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .accordion-item:last-child {
      border-bottom: 0;
    }

    .accordion-title {
      color: var(--text);
      background: rgba(255,255,255,.02);
      border: 0;
      font-weight: 800;
      font-size: 16px;
      padding: 18px 48px 18px 18px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--cyan);
      background: rgba(40,230,199,.06);
    }

    .accordion-content {
      color: var(--muted);
      background: rgba(9,7,13,.48);
      border: 0;
      border-top: 1px solid rgba(40,230,199,.22);
      padding: 18px;
    }

    .footer {
      background: #07050a;
      border-top: 1px solid rgba(255,255,255,.10);
      padding: 48px 0 28px;
      color: var(--muted);
    }

    .footer-top-line {
      height: 2px;
      width: 100%;
      margin-bottom: 30px;
      background: linear-gradient(90deg, var(--pink), var(--cyan), transparent);
      border-radius: 999px;
      opacity: .86;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr .75fr .85fr;
      gap: 28px;
    }

    .footer-brand {
      margin-bottom: 10px;
      color: var(--text);
      font-size: 20px;
      font-weight: 800;
    }

    .footer-desc,
    .footer-note {
      max-width: 420px;
      color: var(--weak);
      font-size: 14px;
    }

    .footer-title {
      margin-bottom: 12px;
      color: var(--text);
      font-weight: 800;
    }

    .footer-links {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 9px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--cyan);
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: 30px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: var(--weak);
      font-size: 13px;
    }

    .divider-dot {
      display: inline-block;
      width: 4px;
      height: 4px;
      margin: 0 9px 2px;
      border-radius: 50%;
      background: var(--weak);
    }

    @media screen and (max-width: 1024px) {
      .desktop-only,
      .ghost-text {
        display: none !important;
      }

      .header-grid,
      .layout-grid,
      .split-panel {
        grid-template-columns: 1fr;
      }

      .sidebar {
        position: static;
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media screen and (max-width: 767px) {
      .container-wrap {
        width: min(100% - 28px, var(--container));
      }

      .top-strip-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 8px 0;
        gap: 6px;
      }

      .top-strip .left,
      .top-strip .right {
        width: 100%;
        justify-content: space-between;
        gap: 8px;
      }

      .top-strip span:not(.mini-tag) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

      .nav-shell {
        min-height: 60px;
      }

      .top-bar {
        padding: 10px 0 14px;
      }

      .top-bar-left,
      .top-bar-right {
        width: 100%;
      }

      .top-bar-right.nav-actions {
        display: none;
      }

      .mobile-only {
        display: block !important;
      }

      .mobile-only .menu a {
        min-height: 44px;
        padding: 12px 0;
      }

      .category-header {
        padding: 38px 0 22px;
      }

      h1 {
        font-size: clamp(30px, 9vw, 38px);
      }

      .lead {
        font-size: 15px;
      }

      .filter-board {
        align-items: flex-start;
        flex-direction: column;
      }

      .sort-note {
        width: 100%;
      }

      .entry-grid,
      .sidebar,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .entry-card,
      .entry-card.featured {
        min-height: auto;
        grid-row: auto;
      }

      .featured .card-art,
      .card-art {
        height: 160px;
      }

      .content-section {
        padding: 42px 0 58px;
      }

      .faq-cta-section {
        padding-bottom: 60px;
      }

      .subscribe-form {
        flex-direction: column;
      }

      .subscribe-form .button {
        width: 100%;
        min-height: 48px;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media screen and (max-width: 520px) {
      .top-strip .right {
        flex-wrap: wrap;
        justify-content: flex-start;
      }

      .title-bar .primary-btn {
        display: none;
      }

      .status-panel,
      .side-panel,
      .cta-box,
      .entry-card {
        border-radius: 14px;
      }

      .card-art span {
        font-size: 18px;
      }

      .check-row {
        grid-template-columns: auto 1fr;
      }

      .check-row .state {
        grid-column: 2;
        justify-self: start;
        margin-bottom: 8px;
      }
    }
