/* roulang page: index */
:root{
      --bg:#090a0f;
      --bg-2:#100b18;
      --panel:rgba(255,255,255,.065);
      --panel-2:rgba(255,255,255,.095);
      --line:rgba(255,255,255,.13);
      --line-strong:rgba(45,212,191,.42);
      --text:#e5e7eb;
      --muted:#9ca3af;
      --muted-2:#c4c7d0;
      --purple:#8b5cf6;
      --purple-2:#7c3aed;
      --cyan:#22d3ee;
      --mint:#2dd4bf;
      --rose:#f43f5e;
      --amber:#fbbf24;
      --dark-card:#12131d;
      --radius-lg:30px;
      --radius-md:22px;
      --radius-sm:16px;
      --shadow-purple:0 22px 70px rgba(124,58,237,.26);
      --shadow-cyan:0 18px 55px rgba(34,211,238,.15);
      --container:1200px;
      --nav-h:72px;
      --ease:all .25s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--text);
      line-height:1.75;
      background:
        radial-gradient(circle at 10% 8%, rgba(124,58,237,.34), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(34,211,238,.18), transparent 32%),
        linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 48%, #090a0f 100%);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      z-index:-2;
      background-image:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(115deg, transparent 0 48%, rgba(34,211,238,.06) 49%, transparent 52%);
      background-size:48px 48px,48px 48px,140px 140px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.2));
      pointer-events:none;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:#fff}
    img{max-width:100%;height:auto}
    button,input,textarea,select{font:inherit}
    .container{max-width:var(--container)}
    .site-section{padding:92px 0;position:relative}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(34,211,238,.28);
      border-radius:999px;
      background:rgba(34,211,238,.08);
      color:#bff7ff;
      font-size:13px;
      letter-spacing:.04em;
      margin-bottom:16px;
    }
    .section-kicker:before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:var(--mint);
      box-shadow:0 0 14px rgba(45,212,191,.9);
    }
    .section-title{
      font-weight:800;
      font-size:clamp(28px,4vw,42px);
      line-height:1.2;
      margin:0 0 14px;
      letter-spacing:-.03em;
    }
    .section-desc{
      color:var(--muted-2);
      max-width:760px;
      margin:0;
      font-size:16.5px;
    }

    .top-alert{
      border-bottom:1px solid rgba(255,255,255,.1);
      background:rgba(9,10,15,.72);
      backdrop-filter:blur(18px);
      font-size:13px;
      color:#d6d8df;
      position:relative;
      z-index:1031;
    }
    .top-alert .container{
      min-height:38px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
    }
    .age-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#fff;
      white-space:nowrap;
    }
    .age-chip span{
      width:8px;height:8px;border-radius:50%;
      background:var(--amber);
      box-shadow:0 0 14px rgba(251,191,36,.7);
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1030;
      min-height:var(--nav-h);
      background:rgba(9,10,15,.78);
      backdrop-filter:blur(20px);
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .navbar{
      min-height:var(--nav-h);
      padding:0;
    }
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:#fff!important;
      font-weight:800;
      letter-spacing:-.02em;
      font-size:19px;
      max-width:60vw;
    }
    .logo-mark{
      width:38px;height:38px;border-radius:14px;
      background:
        linear-gradient(135deg, rgba(139,92,246,.95), rgba(34,211,238,.86)),
        radial-gradient(circle at 30% 20%, rgba(255,255,255,.55), transparent 36%);
      box-shadow:0 0 26px rgba(124,58,237,.45);
      position:relative;
      flex:0 0 auto;
    }
    .logo-mark:after{
      content:"";
      position:absolute;
      inset:10px;
      border:1px solid rgba(255,255,255,.64);
      border-radius:9px;
    }
    .navbar-toggler{
      border:1px solid rgba(255,255,255,.16);
      border-radius:14px;
      padding:9px 11px;
      box-shadow:none!important;
      background:rgba(255,255,255,.06);
    }
    .navbar-toggler:focus{outline:2px solid rgba(34,211,238,.42)}
    .navbar-toggler-icon{
      filter:invert(1) grayscale(1);
      width:1.2em;height:1.2em;
    }
    .nav-link{
      color:#cbd0dc!important;
      font-size:14px;
      padding:9px 14px!important;
      border-radius:999px;
      margin:0 3px;
      position:relative;
    }
    .nav-link:hover{
      color:#fff!important;
      background:rgba(255,255,255,.07);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.1);
    }
    .nav-link.active{
      color:#fff!important;
      background:linear-gradient(135deg, rgba(124,58,237,.28), rgba(34,211,238,.14));
      box-shadow:inset 0 0 0 1px rgba(45,212,191,.35),0 0 22px rgba(124,58,237,.18);
    }
    .nav-cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:40px;
      padding:9px 17px;
      border-radius:999px;
      color:#fff!important;
      font-size:14px;
      font-weight:700;
      background:linear-gradient(135deg,var(--purple-2),var(--rose),var(--cyan));
      background-size:180% 180%;
      box-shadow:0 12px 32px rgba(244,63,94,.22);
      border:0;
      white-space:nowrap;
    }
    .nav-cta:hover{
      transform:translateY(-2px);
      background-position:100% 0;
      box-shadow:0 16px 44px rgba(139,92,246,.34);
    }

    .hero{
      padding:36px 0 64px;
    }
    .hero-band{
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.14);
      border-radius:0 0 34px 34px;
      background:
        linear-gradient(90deg, rgba(255,255,255,.10), rgba(255,255,255,.035)),
        radial-gradient(circle at 22% 0%, rgba(139,92,246,.45), transparent 35%),
        radial-gradient(circle at 82% 45%, rgba(34,211,238,.24), transparent 35%);
      box-shadow:var(--shadow-purple);
    }
    .hero-band:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(34,211,238,.12) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px);
      background-size:34px 34px;
      opacity:.45;
      pointer-events:none;
    }
    .hero-band:after{
      content:"";
      position:absolute;
      width:42%;
      height:2px;
      right:-6%;
      top:28%;
      background:linear-gradient(90deg, transparent, rgba(34,211,238,.8), transparent);
      box-shadow:0 0 24px rgba(34,211,238,.8);
      transform:rotate(-8deg);
    }
    .hero-inner{
      position:relative;
      z-index:1;
      min-height:360px;
      display:grid;
      grid-template-columns:1fr;
      align-items:center;
      padding:56px 48px;
    }
    .hero-topline{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-bottom:18px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(9,10,15,.38);
      color:#e9fbff;
      font-size:13px;
    }
    .pill .dot{
      width:7px;height:7px;border-radius:50%;
      background:var(--mint);
      box-shadow:0 0 13px rgba(45,212,191,.8);
    }
    h1{
      max-width:900px;
      font-size:clamp(34px,5.3vw,58px);
      line-height:1.13;
      font-weight:850;
      letter-spacing:-.045em;
      margin:0 0 18px;
    }
    .hero-lead{
      max-width:830px;
      color:#d8dce7;
      font-size:17.5px;
      margin:0 0 24px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      align-items:center;
      margin-bottom:28px;
    }
    .btn-neon,.btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:48px;
      padding:12px 22px;
      border-radius:999px;
      font-weight:750;
      transition:var(--ease);
      border:1px solid transparent;
    }
    .btn-neon{
      color:#fff;
      background:linear-gradient(135deg,var(--purple-2),var(--rose),var(--cyan));
      background-size:190% 190%;
      box-shadow:0 18px 46px rgba(124,58,237,.32);
    }
    .btn-neon:hover,.btn-neon:focus{
      color:#fff;
      transform:translateY(-2px);
      background-position:100% 0;
      box-shadow:0 20px 58px rgba(34,211,238,.22),0 18px 46px rgba(244,63,94,.18);
    }
    .btn-ghost{
      color:#edf0f8;
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.16);
    }
    .btn-ghost:hover,.btn-ghost:focus{
      color:#fff;
      background:rgba(34,211,238,.08);
      border-color:rgba(45,212,191,.5);
      transform:translateY(-2px);
    }
    .btn-neon:focus,.btn-ghost:focus,.form-control:focus{
      outline:3px solid rgba(34,211,238,.24);
      outline-offset:2px;
    }
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      max-width:820px;
    }
    .metric-box{
      border:1px solid rgba(255,255,255,.13);
      background:rgba(9,10,15,.42);
      border-radius:18px;
      padding:14px 16px;
      position:relative;
      overflow:hidden;
    }
    .metric-box:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg, transparent, rgba(34,211,238,.08), transparent);
      transform:translateX(-100%);
      transition:transform .55s ease;
    }
    .metric-box:hover:before{transform:translateX(100%)}
    .metric-num{
      display:block;
      color:#fff;
      font-weight:850;
      font-size:22px;
      line-height:1.2;
    }
    .metric-label{font-size:13px;color:var(--muted)}

    .flow-wrap{
      margin-top:36px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
      position:relative;
    }
    .step-card{
      position:relative;
      padding:24px;
      border-radius:var(--radius-md);
      background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
      border:1px solid var(--line);
      min-height:186px;
      box-shadow:0 18px 50px rgba(0,0,0,.22);
    }
    .step-card:hover{
      transform:translateY(-4px);
      border-color:rgba(45,212,191,.45);
      box-shadow:var(--shadow-cyan);
    }
    .step-no{
      display:inline-flex;
      width:42px;height:42px;
      align-items:center;justify-content:center;
      border-radius:999px;
      background:rgba(124,58,237,.22);
      border:1px solid rgba(139,92,246,.4);
      color:#fff;
      font-weight:800;
      margin-bottom:18px;
    }
    .step-card h3,.console-card h3,.proof-card h3,.benefit-card h3,.guide-card h3{
      font-size:21px;
      font-weight:800;
      margin:0 0 8px;
      color:#fff;
    }
    .step-card p,.console-card p,.proof-card p,.benefit-card p,.guide-card p{
      color:var(--muted-2);
      margin:0;
      font-size:15.5px;
    }
    .step-status{
      position:absolute;
      right:20px;top:20px;
      width:10px;height:10px;border-radius:50%;
      background:var(--mint);
      box-shadow:0 0 18px rgba(45,212,191,.85);
    }

    .benefit-grid{
      margin-top:34px;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:20px;
    }
    .benefit-panel,.eligibility-panel,.news-panel,.form-panel,.cta-panel{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
      box-shadow:0 20px 70px rgba(0,0,0,.2);
      overflow:hidden;
    }
    .benefit-panel{
      padding:28px;
    }
    .benefit-items{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
      margin-top:22px;
    }
    .benefit-card{
      padding:20px;
      border-radius:20px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(9,10,15,.34);
    }
    .benefit-card:hover{
      border-color:rgba(139,92,246,.45);
      transform:translateY(-3px);
    }
    .rank-panel{
      padding:28px;
      background:
        radial-gradient(circle at 80% 15%, rgba(244,63,94,.16), transparent 36%),
        rgba(255,255,255,.055);
    }
    .rank-list{
      display:flex;
      flex-direction:column;
      gap:12px;
      margin-top:18px;
    }
    .rank-item{
      display:grid;
      grid-template-columns:38px 1fr auto;
      align-items:center;
      gap:12px;
      padding:13px;
      border-radius:16px;
      background:rgba(9,10,15,.42);
      border:1px solid rgba(255,255,255,.1);
    }
    .rank-item:hover{
      border-color:rgba(34,211,238,.38);
      background:rgba(34,211,238,.06);
    }
    .rank-no{
      width:30px;height:30px;border-radius:10px;
      display:flex;align-items:center;justify-content:center;
      background:linear-gradient(135deg, rgba(139,92,246,.55), rgba(34,211,238,.35));
      font-weight:800;
    }
    .rank-name{font-weight:750;color:#fff}
    .rank-meta{color:var(--muted);font-size:13px}
    .trend{
      color:#bff7ff;
      font-size:13px;
      padding:5px 9px;
      border-radius:999px;
      border:1px solid rgba(34,211,238,.3);
      background:rgba(34,211,238,.08);
    }

    .eligibility-grid{
      margin-top:32px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:20px;
      align-items:stretch;
    }
    .eligibility-panel{padding:30px}
    .check-list{
      list-style:none;
      padding:0;margin:22px 0 0;
      display:grid;
      gap:13px;
    }
    .check-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      color:#d7dbe6;
      padding:13px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.09);
    }
    .check-list li:before{
      content:"✓";
      width:22px;height:22px;border-radius:50%;
      display:inline-flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      color:#071014;
      background:var(--mint);
      font-weight:900;
      margin-top:2px;
    }
    .topic-cloud{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:22px;
    }
    .topic-tag{
      padding:9px 12px;
      border-radius:999px;
      color:#e8fbff;
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.055);
      font-size:14px;
    }
    .topic-tag:hover{
      border-color:rgba(45,212,191,.48);
      background:rgba(34,211,238,.08);
      transform:translateY(-2px);
    }

    .proof-grid{
      margin-top:34px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .proof-card{
      padding:24px;
      border-radius:var(--radius-md);
      border:1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.035)),
        radial-gradient(circle at 85% 10%, rgba(124,58,237,.18), transparent 38%);
      min-height:250px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .proof-card:hover{
      transform:translateY(-4px);
      border-color:rgba(139,92,246,.45);
      box-shadow:var(--shadow-purple);
    }
    .path{
      margin-top:20px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.1);
      display:flex;
      flex-wrap:wrap;
      gap:8px;
    }
    .path span{
      font-size:12px;
      color:#dfe9ff;
      padding:6px 9px;
      border-radius:999px;
      background:rgba(9,10,15,.38);
      border:1px solid rgba(255,255,255,.11);
    }
    .quote{
      color:#cfd6e6;
      margin-top:16px;
      font-size:14.5px;
    }

    .news-layout{
      margin-top:34px;
      display:grid;
      grid-template-columns:1.35fr .65fr;
      gap:20px;
      align-items:start;
    }
    .news-panel{padding:26px}
    .news-list{
      list-style:none;
      padding:0;margin:0;
      display:grid;
      gap:12px;
    }
    .news-list a{
      display:grid;
      grid-template-columns:1fr auto;
      gap:18px;
      align-items:center;
      padding:16px 18px;
      border-radius:18px;
      background:rgba(9,10,15,.36);
      border:1px solid rgba(255,255,255,.1);
    }
    .news-list a:hover{
      border-color:rgba(45,212,191,.42);
      background:rgba(45,212,191,.07);
      transform:translateX(4px);
    }
    .news-title{
      color:#fff;
      font-weight:760;
    }
    .news-meta{
      color:var(--muted);
      font-size:13px;
      white-space:nowrap;
    }
    .recommend-box{
      padding:22px;
      border-radius:22px;
      border:1px solid rgba(244,63,94,.24);
      background:
        radial-gradient(circle at 80% 10%, rgba(244,63,94,.18), transparent 38%),
        rgba(255,255,255,.055);
    }
    .recommend-box p{color:var(--muted-2);margin:10px 0 18px}

    .accordion{
      margin-top:34px;
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid rgba(255,255,255,.13)!important;
      background:rgba(255,255,255,.055)!important;
      border-radius:20px!important;
      overflow:hidden;
      color:var(--text);
    }
    .accordion-button{
      min-height:56px;
      color:#fff!important;
      background:transparent!important;
      box-shadow:none!important;
      font-weight:800;
      padding:18px 22px;
    }
    .accordion-button:focus{
      outline:3px solid rgba(34,211,238,.18);
      outline-offset:-3px;
    }
    .accordion-button:not(.collapsed){
      background:linear-gradient(135deg, rgba(124,58,237,.16), rgba(34,211,238,.08))!important;
      border-bottom:1px solid rgba(255,255,255,.1);
    }
    .accordion-button::after{
      filter:invert(1);
      opacity:.7;
    }
    .accordion-body{
      color:#cfd4df;
      padding:18px 22px 22px;
      line-height:1.75;
    }

    .form-section-wrap{
      display:grid;
      grid-template-columns:.85fr 1.15fr;
      gap:22px;
      align-items:stretch;
      margin-top:34px;
    }
    .form-panel{padding:28px}
    .form-control,.form-select{
      min-height:48px;
      color:#fff!important;
      border:1px solid rgba(255,255,255,.14)!important;
      background:rgba(9,10,15,.52)!important;
      border-radius:16px!important;
      box-shadow:none!important;
    }
    .form-control::placeholder{color:#7f8797}
    .form-control:focus,.form-select:focus{
      border-color:rgba(45,212,191,.65)!important;
      box-shadow:0 0 0 .22rem rgba(45,212,191,.12)!important;
    }
    .form-label{
      color:#e9ecf5;
      font-weight:700;
      margin-bottom:8px;
    }
    .form-note{
      color:var(--muted);
      font-size:13px;
      margin-top:14px;
    }

    .cta-panel{
      padding:34px;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
      background:
        radial-gradient(circle at 18% 20%, rgba(124,58,237,.28), transparent 36%),
        radial-gradient(circle at 92% 80%, rgba(34,211,238,.2), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.09), rgba(255,255,255,.04));
    }
    .cta-panel h2{
      font-size:clamp(26px,4vw,38px);
      font-weight:850;
      margin:0 0 10px;
      letter-spacing:-.03em;
    }
    .cta-panel p{
      color:var(--muted-2);
      margin:0;
      max-width:710px;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    .site-footer{
      padding:54px 0 30px;
      background:rgba(5,6,10,.76);
      border-top:1px solid rgba(255,255,255,.12);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:28px;
      align-items:start;
    }
    .footer-logo{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:850;
      color:#fff;
      font-size:18px;
      margin-bottom:14px;
    }
    .footer-desc{
      color:var(--muted);
      max-width:620px;
      margin:0;
      font-size:14.5px;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      justify-content:flex-end;
    }
    .footer-links a{
      color:#cbd1de;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.035);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      border-color:rgba(34,211,238,.4);
      background:rgba(34,211,238,.08);
    }
    .copyright{
      margin-top:28px;
      padding-top:18px;
      border-top:1px solid rgba(255,255,255,.08);
      color:#858b99;
      font-size:13px;
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
    }

    @media (max-width: 991.98px){
      :root{--nav-h:64px}
      .navbar-collapse{
        margin-top:12px;
        padding:14px;
        border:1px solid rgba(255,255,255,.12);
        border-radius:22px;
        background:rgba(9,10,15,.96);
        box-shadow:0 18px 55px rgba(0,0,0,.32);
      }
      .nav-link{
        margin:4px 0;
        min-height:46px;
        display:flex;
        align-items:center;
      }
      .nav-cta{width:100%;margin-top:8px}
      .hero-inner{padding:44px 28px;min-height:330px}
      .hero-metrics,.flow-wrap,.proof-grid{grid-template-columns:1fr}
      .benefit-grid,.eligibility-grid,.news-layout,.form-section-wrap,.cta-panel,.footer-grid{grid-template-columns:1fr}
      .footer-links,.cta-actions{justify-content:flex-start}
      .benefit-items{grid-template-columns:1fr 1fr}
      .site-section{padding:72px 0}
    }
    @media (max-width: 575.98px){
      .top-alert .container{
        flex-direction:column;
        align-items:flex-start;
        padding-top:8px;
        padding-bottom:8px;
        gap:6px;
      }
      .navbar-brand{font-size:16px;max-width:72vw}
      .logo-mark{width:34px;height:34px;border-radius:12px}
      .hero{padding:24px 0 48px}
      .hero-band{border-radius:0 0 24px 24px}
      .hero-inner{padding:34px 20px}
      .hero-actions{flex-direction:column;align-items:stretch}
      .btn-neon,.btn-ghost{width:100%}
      .hero-metrics{grid-template-columns:1fr}
      .benefit-items{grid-template-columns:1fr}
      .news-list a{grid-template-columns:1fr}
      .news-meta{white-space:normal}
      .rank-item{grid-template-columns:34px 1fr}
      .trend{grid-column:2}
      .cta-actions{flex-direction:column}
      .section-desc{font-size:15.5px}
      .site-section{padding:60px 0}
      .footer-links{flex-direction:column}
      .footer-links a{width:100%}
    }

/* roulang page: category1 */
:root {
      --bg: #090A0F;
      --bg-deep: #100B18;
      --panel: rgba(255,255,255,0.065);
      --panel-strong: rgba(255,255,255,0.105);
      --text: #E5E7EB;
      --muted: #9CA3AF;
      --faint: #6B7280;
      --line: rgba(255,255,255,0.12);
      --line-strong: rgba(45,212,191,0.38);
      --purple: #8B5CF6;
      --purple-deep: #7C3AED;
      --cyan: #22D3EE;
      --mint: #2DD4BF;
      --rose: #F43F5E;
      --warning: #FBBF24;
      --radius-xl: 30px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --shadow-neon: 0 22px 70px rgba(124,58,237,0.28), 0 12px 42px rgba(34,211,238,0.12);
      --shadow-soft: 0 18px 60px rgba(0,0,0,0.35);
      --container: 1200px;
      --header-h: 72px;
      --ease: all .25s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 16% 10%, rgba(139,92,246,0.28), transparent 34%),
        radial-gradient(circle at 86% 18%, rgba(34,211,238,0.18), transparent 30%),
        radial-gradient(circle at 48% 90%, rgba(244,63,94,0.10), transparent 38%),
        linear-gradient(135deg, #090A0F 0%, #100B18 48%, #070810 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.86), rgba(0,0,0,0.25));
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background:
        repeating-linear-gradient(115deg, transparent 0 18px, rgba(34,211,238,0.035) 19px, transparent 21px),
        linear-gradient(to bottom, rgba(255,255,255,0.03), transparent 28%);
      opacity: .55;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    a:hover {
      color: #fff;
    }

    img, svg {
      max-width: 100%;
      display: block;
    }

    button, input {
      font-family: inherit;
    }

    .container {
      max-width: var(--container);
      padding-left: 20px;
      padding-right: 20px;
    }

    ::selection {
      color: #fff;
      background: rgba(139,92,246,0.65);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(18px);
      background: rgba(9,10,15,0.72);
      border-bottom: 1px solid var(--line);
    }

    .site-header .navbar {
      min-height: var(--header-h);
      padding: 0;
    }

    .navbar-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 800;
      letter-spacing: .01em;
      font-size: 18px;
      padding: 0;
    }

    .navbar-brand:hover,
    .navbar-brand:focus {
      color: #fff;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: inline-block;
      position: relative;
      flex: 0 0 auto;
      background:
        linear-gradient(135deg, rgba(139,92,246,1), rgba(34,211,238,0.95));
      box-shadow: 0 0 22px rgba(139,92,246,0.55), inset 0 0 14px rgba(255,255,255,0.25);
      overflow: hidden;
    }

    .logo-mark::before {
      content: "";
      position: absolute;
      inset: 8px;
      border: 1px solid rgba(255,255,255,0.78);
      border-radius: 7px;
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      width: 18px;
      height: 2px;
      right: -2px;
      top: 11px;
      background: #fff;
      box-shadow: 0 7px 0 rgba(255,255,255,0.75), 0 14px 0 rgba(255,255,255,0.45);
      transform: rotate(-22deg);
    }

    .navbar-nav {
      gap: 8px;
    }

    .nav-link {
      position: relative;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      border-radius: 999px;
      padding: 9px 16px !important;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
    }

    .nav-link:hover,
    .nav-link:focus {
      color: #fff;
      background: rgba(255,255,255,0.07);
      outline: none;
    }

    .nav-link.active {
      color: #fff !important;
      background: rgba(139,92,246,0.16);
      box-shadow: inset 0 0 0 1px rgba(139,92,246,0.45), 0 0 18px rgba(139,92,246,0.18);
    }

    .nav-link.active::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 6px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--cyan), var(--purple));
    }

    .nav-cta,
    .btn-neon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      border: 0;
      border-radius: 999px;
      padding: 12px 20px;
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      background-size: 180% 180%;
      background-image: linear-gradient(135deg, var(--purple-deep), var(--rose), var(--cyan));
      box-shadow: 0 12px 34px rgba(124,58,237,0.32), 0 0 0 1px rgba(255,255,255,0.12) inset;
      transition: var(--ease);
      white-space: nowrap;
    }

    .nav-cta:hover,
    .btn-neon:hover,
    .nav-cta:focus,
    .btn-neon:focus {
      color: #fff;
      transform: translateY(-2px);
      background-position: 100% 50%;
      box-shadow: 0 18px 46px rgba(244,63,94,0.28), 0 0 26px rgba(34,211,238,0.20);
      outline: none;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      border-radius: 999px;
      padding: 11px 19px;
      color: var(--text);
      font-weight: 800;
      font-size: 14px;
      background: rgba(255,255,255,0.065);
      border: 1px solid var(--line);
      transition: var(--ease);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      color: #fff;
      border-color: rgba(45,212,191,0.55);
      background: rgba(45,212,191,0.10);
      transform: translateY(-2px);
      outline: none;
    }

    .navbar-toggler {
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 9px 10px;
      box-shadow: none !important;
    }

    .navbar-toggler:focus {
      outline: 2px solid rgba(34,211,238,0.45);
      outline-offset: 3px;
    }

    .navbar-toggler-icon {
      width: 22px;
      height: 22px;
      background-image: none;
      position: relative;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after,
    .navbar-toggler-icon {
      border-top: 2px solid #fff;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
    }

    .navbar-toggler-icon::before {
      top: 7px;
    }

    .navbar-toggler-icon::after {
      top: 15px;
    }

    main {
      position: relative;
    }

    .section {
      padding: 92px 0;
      position: relative;
    }

    .section-sm {
      padding: 70px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      color: #DDFBFF;
      border: 1px solid rgba(34,211,238,0.28);
      background: rgba(34,211,238,0.08);
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .02em;
      margin-bottom: 18px;
    }

    .eyebrow::before,
    .status-dot {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--mint);
      box-shadow: 0 0 12px rgba(45,212,191,0.88);
      flex: 0 0 auto;
    }

    .hero-category {
      min-height: 360px;
      padding: 74px 0 52px;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .hero-category::before {
      content: "";
      position: absolute;
      width: 560px;
      height: 560px;
      right: -160px;
      top: -210px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(139,92,246,0.32), transparent 62%);
      pointer-events: none;
    }

    .breadcrumb-line {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      margin-bottom: 22px;
      color: var(--muted);
      font-size: 13px;
    }

    .breadcrumb-line a {
      color: #C4B5FD;
      font-weight: 700;
    }

    .breadcrumb-line span {
      color: rgba(255,255,255,0.42);
    }

    h1 {
      max-width: 780px;
      font-size: clamp(34px, 5vw, 56px);
      line-height: 1.12;
      font-weight: 850;
      letter-spacing: -0.045em;
      margin: 0 0 20px;
    }

    .hero-lead {
      max-width: 700px;
      color: #C7CBD4;
      font-size: 17px;
      margin: 0 0 26px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .hero-console {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.10), rgba(255,255,255,0.045)),
        linear-gradient(90deg, rgba(34,211,238,0.05), transparent);
      box-shadow: var(--shadow-neon);
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .hero-console::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 28px 28px;
      opacity: .42;
      pointer-events: none;
    }

    .console-head,
    .console-row,
    .slot-item,
    .metric-card,
    .info-card,
    .entry-card,
    .rules-card,
    .side-card {
      position: relative;
      z-index: 1;
    }

    .console-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding-bottom: 16px;
      margin-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }

    .console-title {
      font-weight: 850;
      color: #fff;
      margin: 0;
    }

    .console-badge,
    .tag,
    .mini-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      padding: 6px 10px;
      font-size: 12px;
      font-weight: 800;
      color: #DDFBFF;
      border: 1px solid rgba(34,211,238,0.26);
      background: rgba(34,211,238,0.08);
      white-space: nowrap;
    }

    .slot-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 16px;
    }

    .slot-item {
      padding: 14px;
      border: 1px solid rgba(255,255,255,0.11);
      border-radius: 18px;
      background: rgba(0,0,0,0.18);
      transition: var(--ease);
    }

    .slot-item:hover {
      transform: translateY(-2px);
      border-color: rgba(45,212,191,0.45);
      background: rgba(45,212,191,0.07);
    }

    .slot-item strong {
      display: block;
      color: #fff;
      font-size: 14px;
      margin-bottom: 4px;
    }

    .slot-item span {
      color: var(--muted);
      font-size: 12px;
    }

    .time-panel {
      position: relative;
      z-index: 1;
      padding: 16px;
      border: 1px solid rgba(139,92,246,0.24);
      border-radius: 20px;
      background: rgba(139,92,246,0.08);
    }

    .time-panel-title {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      color: #fff;
      font-weight: 800;
      margin-bottom: 12px;
    }

    .time-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .time-pill {
      border-radius: 999px;
      padding: 7px 10px;
      border: 1px solid rgba(255,255,255,0.13);
      background: rgba(255,255,255,0.055);
      color: #D1D5DB;
      font-size: 12px;
      font-weight: 800;
    }

    .time-pill.is-on {
      color: #fff;
      border-color: rgba(45,212,191,0.42);
      background: rgba(45,212,191,0.14);
      box-shadow: 0 0 18px rgba(45,212,191,0.12);
    }

    .notice-strip {
      border: 1px solid rgba(251,191,36,0.28);
      background: rgba(251,191,36,0.075);
      color: #FDE68A;
      border-radius: 18px;
      padding: 13px 15px;
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 14px;
      margin-top: 22px;
    }

    .notice-strip strong {
      color: #fff6cc;
    }

    .section-title {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-title h2 {
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.18;
      font-weight: 850;
      letter-spacing: -0.03em;
      margin: 0 0 14px;
    }

    .section-title p {
      color: var(--muted);
      margin: 0;
      font-size: 16px;
    }

    .filter-wrap {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      padding: 24px;
      background: rgba(255,255,255,0.045);
      box-shadow: var(--shadow-soft);
    }

    .searchbar {
      display: flex;
      gap: 12px;
      padding: 8px;
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 999px;
      background: rgba(0,0,0,0.20);
      margin-bottom: 22px;
    }

    .searchbar input {
      flex: 1;
      min-width: 0;
      border: 0;
      outline: none;
      color: #fff;
      background: transparent;
      padding: 0 14px;
      font-size: 15px;
    }

    .searchbar input::placeholder {
      color: rgba(229,231,235,0.48);
    }

    .searchbar:focus-within {
      border-color: rgba(34,211,238,0.52);
      box-shadow: 0 0 0 4px rgba(34,211,238,0.10);
    }

    .metric-card,
    .info-card,
    .entry-card,
    .side-card {
      height: 100%;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
      padding: 24px;
      transition: var(--ease);
      overflow: hidden;
    }

    .metric-card::after,
    .entry-card::after,
    .info-card::after {
      content: "";
      position: absolute;
      inset: auto 16px 0 16px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(34,211,238,0.55), transparent);
      opacity: 0;
      transition: var(--ease);
    }

    .metric-card:hover,
    .info-card:hover,
    .entry-card:hover,
    .side-card:hover {
      transform: translateY(-4px);
      border-color: rgba(45,212,191,0.42);
      box-shadow: 0 18px 46px rgba(34,211,238,0.10);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.105), rgba(45,212,191,0.055));
    }

    .metric-card:hover::after,
    .entry-card:hover::after,
    .info-card:hover::after {
      opacity: 1;
    }

    .metric-top,
    .card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
    }

    .icon-box {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, rgba(139,92,246,0.82), rgba(34,211,238,0.65));
      box-shadow: 0 0 24px rgba(139,92,246,0.24);
    }

    .metric-card h3,
    .info-card h3,
    .entry-card h3,
    .side-card h3 {
      color: #fff;
      font-size: 20px;
      font-weight: 850;
      margin: 0 0 10px;
    }

    .metric-card p,
    .info-card p,
    .entry-card p,
    .side-card p {
      color: var(--muted);
      margin: 0;
      font-size: 15px;
    }

    .content-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035)),
        radial-gradient(circle at 8% 20%, rgba(139,92,246,0.16), transparent 38%);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
    }

    .content-main {
      padding: 34px;
    }

    .content-main h2 {
      color: #fff;
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.22;
      font-weight: 850;
      margin: 0 0 18px;
    }

    .content-main p {
      color: #C6CAD3;
      margin-bottom: 18px;
      font-size: 16px;
    }

    .check-list {
      display: grid;
      gap: 12px;
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 13px 14px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 16px;
      background: rgba(0,0,0,0.17);
      color: #D7DAE2;
    }

    .check-list li::before {
      content: "✓";
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #061114;
      background: var(--mint);
      font-weight: 900;
      flex: 0 0 auto;
      margin-top: 2px;
    }

    .side-stack {
      padding: 24px;
      height: 100%;
      border-left: 1px solid var(--line);
      background: rgba(0,0,0,0.16);
    }

    .anchor-list {
      display: grid;
      gap: 10px;
      margin-bottom: 20px;
    }

    .anchor-list a {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      align-items: center;
      min-height: 46px;
      padding: 11px 13px;
      border: 1px solid rgba(255,255,255,0.10);
      border-radius: 15px;
      color: #D1D5DB;
      background: rgba(255,255,255,0.045);
      font-weight: 800;
      font-size: 14px;
    }

    .anchor-list a:hover,
    .anchor-list a:focus {
      color: #fff;
      border-color: rgba(34,211,238,0.40);
      background: rgba(34,211,238,0.08);
      outline: none;
    }

    .rules-card {
      border: 1px solid rgba(251,191,36,0.25);
      border-radius: 20px;
      padding: 18px;
      background: rgba(251,191,36,0.07);
    }

    .rules-card h3 {
      color: #FFF1B8;
      font-size: 18px;
      font-weight: 850;
      margin-bottom: 9px;
    }

    .rules-card p {
      color: #EBDCA9;
      margin: 0;
      font-size: 14px;
    }

    .entry-layout {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 22px;
      align-items: start;
    }

    .entry-nav {
      position: sticky;
      top: calc(var(--header-h) + 20px);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,0.055);
      padding: 16px;
    }

    .entry-nav-title {
      color: #fff;
      font-weight: 850;
      margin: 0 0 12px;
    }

    .entry-nav a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      padding: 12px 13px;
      border-radius: 14px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }

    .entry-nav a:hover,
    .entry-nav a.is-current {
      color: #fff;
      background: rgba(139,92,246,0.15);
    }

    .entry-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: center;
      margin-bottom: 14px;
    }

    .entry-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 14px 0 0;
    }

    .entry-actions {
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-width: 140px;
    }

    .mini-badge {
      color: #D9FDF8;
      border-color: rgba(45,212,191,0.28);
      background: rgba(45,212,191,0.07);
    }

    .accordion {
      --bs-accordion-bg: transparent;
      --bs-accordion-border-width: 0;
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      color: var(--text);
      background:
        linear-gradient(145deg, rgba(255,255,255,0.075), rgba(255,255,255,0.035));
      border: 1px solid var(--line) !important;
      border-radius: 20px !important;
      overflow: hidden;
      box-shadow: none;
    }

    .accordion-button {
      min-height: 56px;
      color: #fff;
      background: transparent;
      border: 0;
      box-shadow: none !important;
      font-weight: 850;
      padding: 18px 22px;
      line-height: 1.45;
    }

    .accordion-button:not(.collapsed) {
      color: #fff;
      background: rgba(139,92,246,0.13);
    }

    .accordion-button::after {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background-image: none;
      background-color: rgba(34,211,238,0.10);
      border: 1px solid rgba(34,211,238,0.28);
      content: "+";
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #E9FFFF;
      font-size: 20px;
      line-height: 1;
      transform: none;
      text-align: center;
      flex-shrink: 0;
    }

    .accordion-button:not(.collapsed)::after {
      content: "−";
      transform: none;
      background-color: rgba(45,212,191,0.16);
    }

    .accordion-button:focus {
      outline: 2px solid rgba(34,211,238,0.35);
      outline-offset: -2px;
    }

    .accordion-body {
      color: #C8CCD5;
      padding: 0 22px 20px;
      font-size: 15px;
      line-height: 1.75;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(139,92,246,0.34);
      border-radius: 32px;
      padding: 38px;
      background:
        radial-gradient(circle at 82% 50%, rgba(34,211,238,0.20), transparent 32%),
        radial-gradient(circle at 12% 20%, rgba(244,63,94,0.18), transparent 36%),
        linear-gradient(135deg, rgba(139,92,246,0.18), rgba(255,255,255,0.06));
      box-shadow: var(--shadow-neon);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      width: 360px;
      height: 360px;
      right: -140px;
      top: -120px;
      border: 1px solid rgba(34,211,238,0.18);
      border-radius: 50%;
      box-shadow: inset 0 0 34px rgba(34,211,238,0.10);
    }

    .cta-panel h2 {
      position: relative;
      z-index: 1;
      color: #fff;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.18;
      font-weight: 850;
      margin: 0 0 12px;
    }

    .cta-panel p {
      position: relative;
      z-index: 1;
      color: #D1D5DB;
      max-width: 660px;
      margin: 0;
    }

    .cta-buttons {
      position: relative;
      z-index: 1;
      display: flex;
      gap: 12px;
      justify-content: flex-end;
      flex-wrap: wrap;
    }

    .site-footer {
      padding: 56px 0 30px;
      border-top: 1px solid var(--line);
      background: rgba(4,5,10,0.72);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(240px, .65fr);
      gap: 34px;
      align-items: start;
      padding-bottom: 28px;
    }

    .footer-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 18px;
      font-weight: 850;
      margin-bottom: 14px;
    }

    .footer-desc {
      max-width: 660px;
      color: var(--muted);
      margin: 0;
      font-size: 14px;
      line-height: 1.85;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      justify-items: start;
    }

    .footer-links a {
      color: #C7CBD4;
      font-weight: 700;
      font-size: 14px;
      padding: 4px 0;
    }

    .footer-links a:hover,
    .footer-links a:focus {
      color: #fff;
      transform: translateX(3px);
      outline: none;
    }

    .copyright {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.09);
      color: var(--faint);
      font-size: 13px;
    }

    @media (max-width: 991.98px) {
      :root {
        --header-h: 62px;
      }

      .site-header .navbar {
        min-height: var(--header-h);
        padding: 10px 0;
      }

      .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 22px;
        background: rgba(9,10,15,0.94);
        box-shadow: var(--shadow-soft);
      }

      .navbar-nav {
        align-items: stretch !important;
      }

      .nav-link {
        width: 100%;
        justify-content: flex-start;
      }

      .nav-cta {
        width: 100%;
        margin-top: 10px;
      }

      .hero-category {
        padding-top: 52px;
      }

      .hero-console {
        margin-top: 30px;
      }

      .side-stack {
        border-left: 0;
        border-top: 1px solid var(--line);
      }

      .entry-layout {
        grid-template-columns: 1fr;
      }

      .entry-nav {
        position: relative;
        top: auto;
      }

      .entry-nav .nav-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
      }

      .cta-buttons {
        justify-content: flex-start;
        margin-top: 24px;
      }
    }

    @media (max-width: 767.98px) {
      .section {
        padding: 66px 0;
      }

      .section-sm {
        padding: 54px 0;
      }

      .container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .hero-category {
        min-height: auto;
        padding: 42px 0 42px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-actions,
      .cta-buttons {
        flex-direction: column;
        align-items: stretch;
      }

      .btn-neon,
      .btn-ghost {
        width: 100%;
      }

      .searchbar {
        border-radius: 22px;
        flex-direction: column;
        padding: 12px;
      }

      .searchbar input {
        min-height: 42px;
      }

      .slot-grid,
      .entry-nav .nav-list {
        grid-template-columns: 1fr;
      }

      .filter-wrap,
      .content-main,
      .cta-panel {
        padding: 22px;
      }

      .entry-card {
        grid-template-columns: 1fr;
      }

      .entry-actions {
        min-width: 0;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .copyright {
        flex-direction: column;
      }
    }

    @media (max-width: 520px) {
      .navbar-brand {
        font-size: 16px;
      }

      .logo-mark {
        width: 31px;
        height: 31px;
        border-radius: 11px;
      }

      .breadcrumb-line {
        font-size: 12px;
      }

      .notice-strip {
        font-size: 13px;
      }

      .metric-card,
      .info-card,
      .entry-card,
      .side-card {
        padding: 20px;
      }

      .accordion-button {
        padding: 16px 18px;
        font-size: 15px;
      }
    }
