/* roulang page: index */
:root{
      --bg:#07111f;
      --bg-2:#091827;
      --bg-3:#0b1020;
      --panel:rgba(12,28,52,.58);
      --panel-strong:rgba(14,35,64,.78);
      --text:#f4f8ff;
      --muted:#aebbd0;
      --weak:#738197;
      --line:rgba(255,255,255,.10);
      --line-blue:rgba(120,178,255,.18);
      --blue:#2f8cff;
      --green:#36f2a3;
      --orange:#ffb84d;
      --red:#ff6b7d;
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --shadow:0 22px 70px rgba(0,0,0,.38);
      --glow:0 0 24px rgba(47,140,255,.38);
      --font:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      --num:"DIN Alternate","Roboto Condensed","Arial Narrow",Arial,sans-serif;
      --ease:all .28s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 20% 0%, rgba(47,140,255,.16), transparent 34%),
        radial-gradient(circle at 82% 12%, rgba(54,242,163,.10), transparent 28%),
        linear-gradient(180deg,var(--bg),var(--bg-3) 46%,#050b14);
      line-height:1.75;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:46px 46px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.9), transparent 75%);
      z-index:-2;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font-family:inherit}
    ::selection{background:rgba(47,140,255,.45);color:#fff}
    .site-shell{position:relative;min-height:100vh}
    .grid-container{max-width:1220px}
    .section{padding:96px 0;position:relative}
    .section.tight{padding:72px 0}
    .section-head{max-width:760px;margin-bottom:34px}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--green);
      font-size:14px;
      letter-spacing:.08em;
      margin-bottom:14px;
      font-weight:700;
    }
    .section-kicker:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--green);
      box-shadow:0 0 14px rgba(54,242,163,.8);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(34px,5vw,58px);
      line-height:1.12;
      font-weight:800;
      letter-spacing:-.04em;
      margin-bottom:22px;
    }
    h2{
      font-size:clamp(28px,3.2vw,40px);
      line-height:1.22;
      font-weight:780;
      letter-spacing:-.03em;
      margin-bottom:16px;
    }
    h3{font-size:22px;line-height:1.35;font-weight:730;margin-bottom:10px}
    p{color:var(--muted);font-size:16px}
    .lead{font-size:18px;color:#c6d4ea;max-width:650px}
    .text-gradient{
      background:linear-gradient(90deg,#fff 0%,#bcd8ff 45%,#6ff5bf 100%);
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .top-bar-wrap{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(7,17,31,.72);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
    }
    .site-nav{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:-.02em;
      white-space:nowrap;
    }
    .brand-mark{
      width:40px;height:40px;border-radius:14px;
      background:
        linear-gradient(135deg,rgba(47,140,255,.95),rgba(54,242,163,.88));
      box-shadow:0 0 26px rgba(47,140,255,.32);
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.22);
    }
    .brand-mark:before,.brand-mark:after{
      content:"";
      position:absolute;
      background:rgba(7,17,31,.62);
    }
    .brand-mark:before{width:22px;height:3px;left:9px;top:14px;border-radius:99px}
    .brand-mark:after{width:22px;height:3px;left:9px;top:23px;border-radius:99px}
    .brand span:last-child{font-size:17px;color:#fff}
    .nav-menu{
      display:flex;
      align-items:center;
      gap:6px;
      margin:0;
      list-style:none;
    }
    .nav-menu a{
      position:relative;
      display:inline-flex;
      align-items:center;
      height:38px;
      padding:0 11px;
      color:var(--muted);
      font-size:14px;
      font-weight:650;
      border-radius:999px;
    }
    .nav-menu a:hover,.nav-menu a:focus-visible{color:#fff;background:rgba(255,255,255,.055)}
    .nav-menu a.active{color:#fff;background:rgba(47,140,255,.12);border:1px solid rgba(47,140,255,.24)}
    .nav-menu a.active:after{
      content:"";
      position:absolute;
      left:50%;
      transform:translateX(-50%);
      bottom:-12px;
      width:24px;height:2px;border-radius:2px;
      background:linear-gradient(90deg,var(--blue),var(--green));
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .menu-toggle{
      display:none;
      width:44px;height:44px;border-radius:14px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.04);
      color:#fff;
      cursor:pointer;
    }
    .menu-toggle span{
      display:block;width:18px;height:2px;background:#fff;margin:5px auto;border-radius:99px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:760;
      font-size:15px;
      line-height:1;
      cursor:pointer;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      color:#06111f;
      background:linear-gradient(135deg,var(--blue),var(--green));
      box-shadow:var(--glow);
    }
    .btn-primary:hover,.btn-primary:focus-visible{transform:translateY(-2px);box-shadow:0 0 34px rgba(54,242,163,.32)}
    .btn-ghost{
      color:#e7f0ff;
      background:rgba(255,255,255,.045);
      border-color:var(--line-blue);
      backdrop-filter:blur(12px);
    }
    .btn-ghost:hover,.btn-ghost:focus-visible{background:rgba(47,140,255,.12);border-color:rgba(54,242,163,.35);transform:translateY(-2px)}
    a:focus-visible,button:focus-visible,input:focus-visible,summary:focus-visible{
      outline:3px solid rgba(54,242,163,.38);
      outline-offset:3px;
    }
    .hero{
      position:relative;
      padding:96px 0 80px;
      min-height:720px;
      display:flex;
      align-items:center;
      overflow:hidden;
      background:
        linear-gradient(90deg,rgba(7,17,31,.94),rgba(7,17,31,.62)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 60% 22%, rgba(47,140,255,.22), transparent 35%),
        radial-gradient(circle at 78% 75%, rgba(54,242,163,.13), transparent 30%),
        linear-gradient(180deg,transparent 72%,var(--bg));
      pointer-events:none;
    }
    .hero:after{
      content:"";
      position:absolute;
      width:520px;height:520px;
      right:5%;top:14%;
      border:1px solid rgba(255,255,255,.09);
      border-radius:50%;
      box-shadow:inset 0 0 0 70px rgba(255,255,255,.018);
      opacity:.7;
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:2}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border:1px solid var(--line-blue);
      border-radius:999px;
      background:rgba(12,28,52,.54);
      color:#dceaff;
      font-size:14px;
      font-weight:700;
      margin-bottom:18px;
      backdrop-filter:blur(14px);
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--green);
      box-shadow:0 0 12px rgba(54,242,163,.8);
    }
    .hero-buttons{display:flex;gap:14px;flex-wrap:wrap;margin:30px 0 22px}
    .trust-list{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin:0;
      padding:0;
      list-style:none;
    }
    .trust-list li{
      color:#d3def0;
      font-size:14px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.055);
      border:1px solid var(--line);
    }
    .score-cockpit{
      position:relative;
      padding:24px;
      border-radius:var(--radius-xl);
      background:linear-gradient(145deg,rgba(12,28,52,.76),rgba(12,28,52,.38));
      border:1px solid var(--line-blue);
      box-shadow:var(--shadow);
      backdrop-filter:blur(18px);
      overflow:hidden;
    }
    .score-cockpit:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(120deg,rgba(255,255,255,.14),transparent 28%,transparent 72%,rgba(54,242,163,.08));
      pointer-events:none;
    }
    .cockpit-head,.match-row,.preview-row{position:relative;z-index:1}
    .cockpit-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      margin-bottom:18px;
      padding-bottom:16px;
      border-bottom:1px solid var(--line);
    }
    .cockpit-title{font-size:17px;font-weight:800}
    .live-badge,.tag,.status{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:760;
      line-height:1;
    }
    .live-badge{color:#052016;background:rgba(54,242,163,.92)}
    .pulse{
      width:7px;height:7px;border-radius:50%;
      background:var(--green);
      box-shadow:0 0 12px rgba(54,242,163,.85);
      animation:pulse 1.5s infinite ease-in-out;
    }
    @keyframes pulse{
      0%,100%{transform:scale(1);opacity:1}
      50%{transform:scale(1.5);opacity:.55}
    }
    .match-row{
      display:grid;
      grid-template-columns:86px 1fr auto;
      align-items:center;
      gap:14px;
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.08);
      margin-bottom:12px;
      transition:var(--ease);
    }
    .match-row:hover{border-color:rgba(54,242,163,.28);transform:translateY(-2px);background:rgba(47,140,255,.075)}
    .league{color:var(--weak);font-size:13px}
    .teams{font-weight:760;color:#fff}
    .teams small{display:block;color:var(--muted);font-weight:550;margin-top:3px}
    .score{
      font-family:var(--num);
      font-size:30px;
      font-weight:800;
      letter-spacing:.03em;
      color:#fff;
      text-align:right;
    }
    .status{background:rgba(47,140,255,.13);color:#cfe3ff;border:1px solid rgba(47,140,255,.22)}
    .status.on{background:rgba(54,242,163,.13);color:#bfffe5;border-color:rgba(54,242,163,.28)}
    .mini-chart{
      display:flex;
      align-items:end;
      gap:5px;
      height:44px;
      margin-top:18px;
      padding:0 6px;
    }
    .mini-chart i{
      flex:1;
      border-radius:8px 8px 0 0;
      background:linear-gradient(180deg,rgba(54,242,163,.9),rgba(47,140,255,.26));
      min-height:10px;
    }
    .glass-card{
      background:var(--panel);
      border:1px solid var(--line-blue);
      border-radius:var(--radius-lg);
      box-shadow:0 18px 54px rgba(0,0,0,.24);
      backdrop-filter:blur(16px);
      transition:var(--ease);
      overflow:hidden;
    }
    .glass-card:hover{transform:translateY(-4px);border-color:rgba(54,242,163,.28);box-shadow:0 24px 70px rgba(0,0,0,.34),0 0 26px rgba(47,140,255,.13)}
    .pain-timeline{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      position:relative;
    }
    .pain-timeline:before{
      content:"";
      position:absolute;
      left:8%;right:8%;top:33px;height:1px;
      background:linear-gradient(90deg,transparent,var(--blue),var(--green),transparent);
      opacity:.6;
    }
    .pain-card{
      position:relative;
      padding:74px 22px 24px;
      min-height:230px;
    }
    .pain-no{
      position:absolute;
      top:18px;left:20px;
      width:34px;height:34px;border-radius:50%;
      display:grid;place-items:center;
      font-family:var(--num);
      font-weight:800;
      color:#07111f;
      background:linear-gradient(135deg,var(--green),#d7ffef);
      box-shadow:0 0 18px rgba(54,242,163,.38);
    }
    .solution-wrap{
      display:grid;
      grid-template-columns: .85fr 1.15fr;
      gap:34px;
      align-items:center;
    }
    .radar{
      min-height:470px;
      position:relative;
      border-radius:32px;
      border:1px solid var(--line-blue);
      background:
        radial-gradient(circle at 50% 50%,rgba(47,140,255,.2),transparent 23%),
        radial-gradient(circle at 50% 50%,transparent 0 32%,rgba(255,255,255,.035) 33% 34%,transparent 35% 50%,rgba(255,255,255,.03) 51% 52%,transparent 53%),
        rgba(12,28,52,.42);
      overflow:hidden;
      backdrop-filter:blur(15px);
    }
    .radar-center{
      position:absolute;
      left:50%;top:50%;
      transform:translate(-50%,-50%);
      width:150px;height:150px;border-radius:50%;
      display:grid;place-items:center;text-align:center;
      background:linear-gradient(145deg,rgba(47,140,255,.35),rgba(54,242,163,.16));
      border:1px solid rgba(255,255,255,.16);
      box-shadow:0 0 40px rgba(47,140,255,.2);
      font-weight:800;
    }
    .node{
      position:absolute;
      width:205px;
      padding:15px;
      border-radius:18px;
      background:rgba(7,17,31,.66);
      border:1px solid rgba(255,255,255,.1);
    }
    .node b{display:block;color:#fff;margin-bottom:4px}
    .node span{display:block;color:var(--muted);font-size:13px;line-height:1.55}
    .node:nth-child(2){left:24px;top:30px}
    .node:nth-child(3){right:24px;top:44px}
    .node:nth-child(4){left:34px;bottom:44px}
    .node:nth-child(5){right:32px;bottom:34px}
    .node:nth-child(6){left:50%;top:18px;transform:translateX(-50%)}
    .node:nth-child(7){left:50%;bottom:16px;transform:translateX(-50%)}
    .feature-stack{display:grid;gap:16px}
    .feature-card{
      padding:22px;
      display:grid;
      grid-template-columns:44px 1fr;
      gap:16px;
      align-items:start;
    }
    .icon-box{
      width:44px;height:44px;border-radius:15px;
      display:grid;place-items:center;
      background:rgba(47,140,255,.16);
      border:1px solid rgba(47,140,255,.28);
      color:var(--green);
      font-weight:900;
    }
    .value-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .metric{
      padding:24px;
      min-height:185px;
    }
    .metric strong{
      display:block;
      font-family:var(--num);
      font-size:38px;
      line-height:1;
      color:#fff;
      margin-bottom:10px;
    }
    .metric span{color:var(--green);font-weight:800;font-size:14px}
    .category-grid{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:16px;
    }
    .category-card{
      min-height:220px;
      position:relative;
      padding:22px;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      overflow:hidden;
    }
    .category-card img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      opacity:.54;
      transition:var(--ease);
    }
    .category-card:hover img{transform:scale(1.05);opacity:.68}
    .category-card:after{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(180deg,rgba(7,17,31,.12),rgba(7,17,31,.92));
    }
    .category-card h3,.category-card p,.category-card .tag{position:relative;z-index:1}
    .tag{
      width:max-content;
      color:#06111f;
      background:var(--orange);
      margin-bottom:12px;
    }
    .match-strip{
      display:grid;
      gap:12px;
    }
    .preview-row{
      display:grid;
      grid-template-columns:140px 1fr 110px 120px;
      align-items:center;
      gap:14px;
      padding:16px 18px;
      border-radius:20px;
      background:rgba(12,28,52,.55);
      border:1px solid var(--line);
      transition:var(--ease);
    }
    .preview-row:hover{background:rgba(47,140,255,.08);border-color:rgba(47,140,255,.24);transform:translateX(4px)}
    .preview-row .time{color:var(--muted);font-size:14px}
    .preview-row .duel{font-weight:760;color:#fff}
    .preview-row .duel small{display:block;color:var(--weak);font-weight:500}
    .review-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .review-card{padding:22px}
    .review-top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      margin-bottom:14px;
    }
    .avatar{
      width:42px;height:42px;border-radius:50%;
      background:linear-gradient(135deg,var(--blue),var(--green));
      box-shadow:0 0 18px rgba(47,140,255,.24);
      flex:0 0 auto;
    }
    .review-name{font-weight:800;color:#fff;line-height:1.25}
    .review-label{font-size:12px;color:var(--weak)}
    .rating{font-family:var(--num);color:var(--orange);font-weight:800}
    .review-card p{font-size:15px;color:#c7d4e8;margin-bottom:14px}
    .review-meta{
      display:flex;
      justify-content:space-between;
      gap:8px;
      color:var(--weak);
      font-size:12px;
      border-top:1px solid var(--line);
      padding-top:12px;
    }
    .faq-wrap{
      max-width:900px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid var(--line-blue);
      border-radius:18px;
      overflow:hidden;
      background:rgba(12,28,52,.52);
      backdrop-filter:blur(14px);
    }
    .accordion-title{
      color:#fff;
      border:0 !important;
      background:transparent !important;
      font-size:16px;
      font-weight:780;
      padding:20px 54px 20px 22px;
    }
    .accordion-title:before{color:var(--green);font-size:24px;right:20px;margin-top:-13px}
    .accordion-title:hover,.accordion-title:focus{background:rgba(47,140,255,.08) !important;color:#fff}
    .accordion-content{
      border:0 !important;
      background:rgba(255,255,255,.025) !important;
      color:var(--muted);
      padding:0 22px 22px;
      line-height:1.8;
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      padding:46px;
      border-radius:32px;
      background:
        linear-gradient(135deg,rgba(47,140,255,.22),rgba(54,242,163,.11)),
        rgba(12,28,52,.65);
      border:1px solid rgba(120,178,255,.24);
      box-shadow:var(--shadow);
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
      background-size:34px 34px;
      opacity:.36;
      pointer-events:none;
    }
    .cta-panel .grid-x{position:relative;z-index:1}
    .newsletter{
      display:flex;
      gap:10px;
      padding:8px;
      border-radius:999px;
      background:rgba(7,17,31,.48);
      border:1px solid var(--line);
      max-width:520px;
      margin-top:18px;
    }
    .newsletter input{
      flex:1;
      min-width:0;
      height:44px;
      border:0;
      background:transparent;
      color:#fff;
      padding:0 14px;
      box-shadow:none;
      margin:0;
    }
    .newsletter input::placeholder{color:var(--weak)}
    .site-footer{
      background:#050b14;
      border-top:1px solid var(--line);
      padding:64px 0 24px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr repeat(3,1fr);
      gap:34px;
      margin-bottom:36px;
    }
    .footer-title{font-weight:800;color:#fff;margin-bottom:14px}
    .footer-links{list-style:none;margin:0;padding:0;display:grid;gap:9px}
    .footer-links a,.footer-links li{color:#91a0b6;font-size:14px}
    .footer-links a:hover{color:var(--green)}
    .footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:14px}
    .footer-bottom{
      border-top:1px solid var(--line);
      padding-top:22px;
      text-align:center;
      color:#8b98ad;
      font-size:13px;
      line-height:1.9;
    }
    .footer-bottom a{color:#9bacbf;margin:0 6px}
    .footer-bottom a:hover{color:var(--blue)}
    @media (max-width:1100px){
      .nav-menu a{padding:0 8px;font-size:13px}
      .category-grid{grid-template-columns:repeat(3,1fr)}
      .review-grid,.value-grid,.pain-timeline{grid-template-columns:repeat(2,1fr)}
      .pain-timeline:before{display:none}
      .solution-wrap{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:900px){
      .site-nav{min-height:66px}
      .menu-toggle{display:block}
      .nav-actions .btn{display:none}
      .nav-menu{
        position:absolute;
        left:16px;right:16px;top:72px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        border-radius:22px;
        background:rgba(7,17,31,.96);
        border:1px solid var(--line-blue);
        box-shadow:var(--shadow);
        backdrop-filter:blur(18px);
      }
      .nav-menu.is-open{display:flex}
      .nav-menu a{height:44px;justify-content:space-between}
      .nav-menu a.active:after{display:none}
      .hero{padding:74px 0 64px;min-height:auto}
      .score-cockpit{margin-top:34px}
      .preview-row{grid-template-columns:1fr 1fr;gap:8px}
      .review-grid{grid-template-columns:repeat(2,1fr)}
      .category-grid{grid-template-columns:repeat(2,1fr)}
      .radar{min-height:auto;padding:22px;display:grid;gap:12px}
      .radar-center,.node{position:static;transform:none !important;width:auto}
      .radar-center{width:auto;height:auto;border-radius:20px;padding:22px}
    }
    @media (max-width:640px){
      .section{padding:66px 0}
      .section.tight{padding:52px 0}
      .brand span:last-child{font-size:15px}
      .hero-buttons,.newsletter{flex-direction:column}
      .btn{width:100%;min-height:48px}
      .match-row{grid-template-columns:1fr;gap:8px}
      .score{text-align:left}
      .pain-timeline,.value-grid,.review-grid,.category-grid{grid-template-columns:1fr}
      .feature-card{grid-template-columns:1fr}
      .preview-row{grid-template-columns:1fr}
      .cta-panel{padding:28px 20px}
      .footer-grid{grid-template-columns:1fr}
    }

/* roulang page: category1 */
:root{
      --bg:#07111f;
      --bg-2:#091827;
      --bg-3:#0b1020;
      --panel:rgba(12,28,52,.62);
      --panel-strong:rgba(15,36,66,.78);
      --panel-soft:rgba(255,255,255,.055);
      --primary:#2f8cff;
      --primary-2:#65b2ff;
      --green:#36f2a3;
      --amber:#ffb84d;
      --red:#ff6b7a;
      --text:#f4f8ff;
      --muted:#aebbd0;
      --weak:#738197;
      --border:rgba(120,178,255,.18);
      --border-soft:rgba(255,255,255,.10);
      --shadow:0 22px 60px rgba(0,0,0,.38);
      --glow:0 0 24px rgba(47,140,255,.38);
      --green-glow:0 0 16px rgba(54,242,163,.55);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --ease:all .25s ease;
      --font:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      --num:"DIN Alternate","Roboto Condensed","Arial Narrow",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 18% 8%,rgba(47,140,255,.22),transparent 32%),
        radial-gradient(circle at 88% 18%,rgba(54,242,163,.12),transparent 34%),
        linear-gradient(180deg,var(--bg),var(--bg-3) 48%,#050b14);
      line-height:1.75;
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
      background-size:46px 46px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.75),transparent 82%);
      z-index:-2;
    }
    body:after{
      content:"";
      position:fixed;
      width:720px;
      height:720px;
      right:-280px;
      top:220px;
      border:1px solid rgba(54,242,163,.08);
      border-radius:50%;
      box-shadow:0 0 0 80px rgba(47,140,255,.025),0 0 0 160px rgba(54,242,163,.018);
      pointer-events:none;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--text)}
    img{max-width:100%;height:auto;display:block}
    button,input,select,textarea{font-family:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(47,140,255,.45);color:#fff}
    :focus-visible{outline:2px solid rgba(54,242,163,.85);outline-offset:4px;border-radius:10px}
    .grid-container{max-width:1220px}
    .top-bar-wrap{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(7,17,31,.76);
      border-bottom:1px solid rgba(255,255,255,.08);
      backdrop-filter:blur(18px);
      transition:var(--ease);
    }
    .top-bar-wrap.is-scrolled{
      background:rgba(7,17,31,.9);
      box-shadow:0 12px 40px rgba(0,0,0,.24);
    }
    .site-nav{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:.02em;
      color:var(--text);
      white-space:nowrap;
    }
    .brand{font-size:19px}
    .brand-mark{
      width:36px;
      height:36px;
      border-radius:13px;
      position:relative;
      display:inline-block;
      background:
        linear-gradient(135deg,rgba(47,140,255,.95),rgba(54,242,163,.86)),
        radial-gradient(circle at 70% 20%,#fff,transparent 24%);
      box-shadow:var(--glow);
      flex:0 0 auto;
    }
    .brand-mark:before,.brand-mark:after{
      content:"";
      position:absolute;
      left:8px;
      right:8px;
      height:2px;
      border-radius:10px;
      background:rgba(5,16,31,.72);
    }
    .brand-mark:before{top:12px}
    .brand-mark:after{bottom:12px}
    .nav-menu{
      list-style:none;
      padding:0;
      margin:0;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:4px;
      flex:1;
    }
    .nav-menu a{
      position:relative;
      display:flex;
      align-items:center;
      min-height:38px;
      padding:8px 12px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      letter-spacing:.02em;
    }
    .nav-menu a:after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:3px;
      height:2px;
      border-radius:99px;
      background:linear-gradient(90deg,var(--primary),var(--green));
      transform:scaleX(0);
      transform-origin:center;
      transition:var(--ease);
    }
    .nav-menu a:hover{color:var(--text);background:rgba(255,255,255,.045)}
    .nav-menu a:hover:after,.nav-menu a.active:after{transform:scaleX(1)}
    .nav-menu a.active{
      color:var(--text);
      background:rgba(47,140,255,.11);
      box-shadow:inset 0 0 0 1px rgba(47,140,255,.22);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid var(--border-soft);
      background:rgba(255,255,255,.045);
      border-radius:14px;
      padding:0;
      align-items:center;
      justify-content:center;
      flex-direction:column;
      gap:5px;
    }
    .menu-toggle span{
      display:block;
      width:18px;
      height:2px;
      background:var(--text);
      border-radius:999px;
      transition:var(--ease);
    }
    .menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
    .menu-toggle.is-open span:nth-child(2){opacity:0}
    .menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:46px;
      padding:12px 20px;
      border:1px solid transparent;
      border-radius:999px;
      font-size:15px;
      font-weight:700;
      line-height:1.2;
      letter-spacing:.01em;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#21c7ff 48%,var(--green));
      box-shadow:var(--glow);
    }
    .btn-primary:hover{
      transform:translateY(-2px);
      color:#fff;
      box-shadow:0 0 34px rgba(47,140,255,.48);
      filter:saturate(1.08);
    }
    .btn-ghost{
      color:var(--text);
      background:rgba(255,255,255,.055);
      border-color:var(--border);
      backdrop-filter:blur(12px);
    }
    .btn-ghost:hover{
      transform:translateY(-2px);
      border-color:rgba(54,242,163,.42);
      background:rgba(54,242,163,.08);
      box-shadow:0 12px 34px rgba(0,0,0,.22);
    }
    .section{padding:96px 0;position:relative}
    .section-tight{padding:70px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      color:#dff4ff;
      border:1px solid rgba(120,178,255,.24);
      border-radius:999px;
      background:rgba(47,140,255,.10);
      font-size:13px;
      font-weight:700;
      letter-spacing:.05em;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--green);
      box-shadow:var(--green-glow);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      margin:20px 0 20px;
      font-size:clamp(34px,5.2vw,58px);
      line-height:1.12;
      font-weight:800;
      letter-spacing:-.04em;
    }
    h2{
      margin-bottom:16px;
      font-size:clamp(28px,3.4vw,40px);
      line-height:1.22;
      font-weight:800;
      letter-spacing:-.025em;
    }
    h3{
      font-size:22px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:12px;
    }
    p{color:var(--muted);font-size:16px}
    .lead{
      max-width:720px;
      font-size:18px;
      color:#c4d1e4;
      line-height:1.85;
    }
    .muted{color:var(--weak)}
    .hero-live{
      min-height:690px;
      padding:84px 0 70px;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(90deg,rgba(7,17,31,.84),rgba(7,17,31,.62)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
    }
    .hero-live:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 72% 46%,rgba(47,140,255,.22),transparent 30%),
        linear-gradient(0deg,rgba(7,17,31,.92),transparent 42%,rgba(7,17,31,.70)),
        repeating-linear-gradient(90deg,rgba(255,255,255,.04) 0 1px,transparent 1px 96px);
      pointer-events:none;
    }
    .hero-live .grid-container{position:relative;z-index:1;width:100%}
    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      margin-bottom:22px;
      color:var(--weak);
      font-size:14px;
    }
    .breadcrumb a{color:var(--muted)}
    .breadcrumb a:hover{color:var(--primary-2)}
    .breadcrumb span:last-child{color:var(--text)}
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:26px;
    }
    .mini-point{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border:1px solid var(--border-soft);
      border-radius:999px;
      background:rgba(255,255,255,.045);
      color:#c9d7ea;
      font-size:14px;
    }
    .mini-point i{
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--green);
      box-shadow:var(--green-glow);
      display:inline-block;
    }
    .timeline-console{
      position:relative;
      border:1px solid var(--border);
      border-radius:var(--radius-xl);
      background:linear-gradient(180deg,rgba(12,28,52,.76),rgba(9,20,38,.62));
      backdrop-filter:blur(18px);
      box-shadow:var(--shadow);
      padding:26px;
      overflow:hidden;
    }
    .timeline-console:before{
      content:"LIVE MATCH";
      position:absolute;
      top:22px;
      right:-20px;
      font-family:var(--num);
      font-size:54px;
      font-weight:800;
      letter-spacing:.04em;
      color:rgba(255,255,255,.035);
      pointer-events:none;
    }
    .console-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      margin-bottom:22px;
      position:relative;
      z-index:1;
    }
    .console-title{font-size:18px;font-weight:800}
    .refresh-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--green);
      padding:7px 10px;
      border-radius:999px;
      background:rgba(54,242,163,.08);
      border:1px solid rgba(54,242,163,.20);
      font-size:13px;
      font-weight:700;
    }
    .refresh-badge:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--green);
      box-shadow:var(--green-glow);
      animation:pulse 1.8s ease-in-out infinite;
    }
    @keyframes pulse{
      0%,100%{transform:scale(.85);opacity:.68}
      50%{transform:scale(1.18);opacity:1}
    }
    .match-timeline{
      position:relative;
      display:grid;
      gap:16px;
      padding-left:18px;
    }
    .match-timeline:before{
      content:"";
      position:absolute;
      left:4px;
      top:10px;
      bottom:12px;
      width:2px;
      background:linear-gradient(var(--green),var(--primary),rgba(255,255,255,.08));
      border-radius:99px;
    }
    .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:74px 1fr;
      gap:14px;
      padding:15px;
      border:1px solid rgba(255,255,255,.10);
      border-radius:18px;
      background:rgba(255,255,255,.052);
      transition:var(--ease);
    }
    .timeline-item:before{
      content:"";
      position:absolute;
      left:-20px;
      top:24px;
      width:11px;
      height:11px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 14px rgba(47,140,255,.75);
    }
    .timeline-item.live:before{background:var(--green);box-shadow:var(--green-glow)}
    .timeline-item.hot{border-color:rgba(255,184,77,.34);background:linear-gradient(135deg,rgba(255,184,77,.10),rgba(255,255,255,.045))}
    .timeline-item:hover{
      transform:translateY(-3px);
      border-color:rgba(120,178,255,.34);
      box-shadow:0 16px 34px rgba(0,0,0,.22);
    }
    .timeline-time{
      font-family:var(--num);
      color:var(--text);
      font-weight:800;
      font-size:20px;
      line-height:1.2;
    }
    .timeline-time small{
      display:block;
      margin-top:6px;
      font-family:var(--font);
      font-size:12px;
      color:var(--weak);
      font-weight:600;
    }
    .match-row-top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      margin-bottom:10px;
    }
    .league-tag,.status,.filter-pill,.badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      font-weight:700;
      line-height:1.2;
    }
    .league-tag{
      padding:6px 9px;
      font-size:12px;
      color:#d7e7ff;
      background:rgba(47,140,255,.13);
      border:1px solid rgba(47,140,255,.24);
    }
    .status{
      padding:6px 9px;
      font-size:12px;
      color:var(--muted);
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.10);
      white-space:nowrap;
    }
    .status.live{color:var(--green);background:rgba(54,242,163,.09);border-color:rgba(54,242,163,.24)}
    .status.done{color:#d4dbea}
    .status.next{color:var(--amber);background:rgba(255,184,77,.09);border-color:rgba(255,184,77,.22)}
    .teams{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      color:#edf5ff;
      font-weight:800;
    }
    .teams .score{
      font-family:var(--num);
      font-size:28px;
      letter-spacing:.03em;
      color:#fff;
      min-width:66px;
      text-align:center;
      text-shadow:0 0 18px rgba(47,140,255,.34);
    }
    .timeline-note{
      margin:8px 0 0;
      font-size:13px;
      color:var(--weak);
      line-height:1.55;
    }
    .panel{
      border:1px solid var(--border);
      border-radius:var(--radius-xl);
      background:linear-gradient(180deg,var(--panel),rgba(8,19,36,.54));
      backdrop-filter:blur(16px);
      box-shadow:var(--shadow);
    }
    .panel-pad{padding:28px}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:34px;
    }
    .section-head p{max-width:640px;margin-bottom:0}
    .filter-bar{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:14px;
      border:1px solid var(--border-soft);
      border-radius:24px;
      background:rgba(255,255,255,.04);
      margin-bottom:28px;
    }
    .filter-pill{
      min-height:38px;
      padding:9px 14px;
      color:var(--muted);
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.09);
      font-size:14px;
    }
    .filter-pill:hover,.filter-pill.active{
      color:var(--text);
      background:rgba(47,140,255,.13);
      border-color:rgba(47,140,255,.32);
      box-shadow:0 0 18px rgba(47,140,255,.14);
    }
    .focus-strip{
      display:grid;
      gap:14px;
    }
    .focus-match{
      display:grid;
      grid-template-columns:130px 1fr 120px;
      align-items:center;
      gap:16px;
      padding:18px 20px;
      border:1px solid rgba(255,255,255,.10);
      border-radius:20px;
      background:linear-gradient(90deg,rgba(255,255,255,.06),rgba(255,255,255,.035));
      transition:var(--ease);
    }
    .focus-match:hover{
      transform:translateX(4px);
      border-color:rgba(54,242,163,.28);
      background:linear-gradient(90deg,rgba(54,242,163,.08),rgba(47,140,255,.045));
    }
    .match-meta{
      color:var(--weak);
      font-size:13px;
      line-height:1.6;
    }
    .match-name{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:12px;
      font-weight:800;
      color:#f6f9ff;
      font-size:17px;
    }
    .match-name .vs{
      font-family:var(--num);
      color:var(--green);
      font-size:15px;
      letter-spacing:.08em;
    }
    .match-score{
      text-align:right;
      font-family:var(--num);
      font-size:30px;
      font-weight:800;
      color:#fff;
    }
    .match-score small{
      display:block;
      margin-top:2px;
      font-family:var(--font);
      font-size:12px;
      font-weight:700;
      color:var(--muted);
    }
    .schedule-grid{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:24px;
      align-items:start;
    }
    .group-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin:0 0 16px;
      padding-bottom:14px;
      border-bottom:1px solid rgba(255,255,255,.09);
    }
    .group-title strong{font-size:20px}
    .group-title span{font-size:13px;color:var(--weak)}
    .schedule-list{display:grid;gap:12px}
    .schedule-card{
      display:grid;
      grid-template-columns:86px 1fr auto;
      gap:14px;
      align-items:center;
      padding:15px;
      border:1px solid rgba(255,255,255,.09);
      border-radius:18px;
      background:rgba(255,255,255,.045);
      transition:var(--ease);
    }
    .schedule-card:hover{
      transform:translateY(-3px);
      border-color:rgba(47,140,255,.28);
      box-shadow:0 14px 30px rgba(0,0,0,.22);
    }
    .schedule-time{
      font-family:var(--num);
      font-weight:800;
      font-size:21px;
      color:#fff;
    }
    .schedule-time small{
      display:block;
      font-family:var(--font);
      font-size:12px;
      color:var(--weak);
      font-weight:600;
      margin-top:3px;
    }
    .schedule-team{font-weight:800;color:#eef6ff}
    .schedule-team small{
      display:block;
      margin-top:4px;
      color:var(--weak);
      font-weight:500;
      font-size:13px;
    }
    .side-stack{display:grid;gap:18px}
    .image-card{
      position:relative;
      min-height:250px;
      border-radius:var(--radius-xl);
      overflow:hidden;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .image-card img{
      width:100%;
      height:100%;
      min-height:250px;
      object-fit:cover;
      filter:saturate(.92) contrast(1.05);
    }
    .image-card:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(7,17,31,.10),rgba(7,17,31,.78));
    }
    .image-card-content{
      position:absolute;
      left:22px;
      right:22px;
      bottom:20px;
      z-index:1;
    }
    .image-card-content h3{margin-bottom:8px}
    .image-card-content p{margin-bottom:0;font-size:14px}
    .stat-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .stat-card{
      padding:18px;
      border-radius:20px;
      border:1px solid rgba(255,255,255,.09);
      background:rgba(255,255,255,.045);
    }
    .stat-num{
      display:block;
      margin-bottom:4px;
      font-family:var(--num);
      font-size:32px;
      font-weight:800;
      color:#fff;
    }
    .stat-card span:last-child{color:var(--muted);font-size:13px}
    .entry-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:20px;
    }
    .entry-card{
      position:relative;
      padding:24px;
      min-height:210px;
      overflow:hidden;
      border:1px solid var(--border);
      border-radius:var(--radius-xl);
      background:linear-gradient(145deg,rgba(12,28,52,.70),rgba(8,19,36,.52));
      box-shadow:0 16px 40px rgba(0,0,0,.22);
      transition:var(--ease);
    }
    .entry-card:before{
      content:"";
      position:absolute;
      width:130px;
      height:130px;
      right:-46px;
      top:-48px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(47,140,255,.22),transparent 68%);
    }
    .entry-card:hover{
      transform:translateY(-5px);
      border-color:rgba(54,242,163,.32);
      box-shadow:0 20px 46px rgba(0,0,0,.30),0 0 26px rgba(47,140,255,.12);
    }
    .entry-icon{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      margin-bottom:16px;
      border-radius:15px;
      background:linear-gradient(135deg,rgba(47,140,255,.22),rgba(54,242,163,.12));
      border:1px solid rgba(120,178,255,.22);
      color:var(--green);
      font-family:var(--num);
      font-weight:800;
    }
    .entry-card p{font-size:14px;margin-bottom:18px}
    .entry-link{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#dceeff;
      font-weight:800;
      font-size:14px;
    }
    .entry-link:hover{color:var(--green)}
    .guide-layout{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:26px;
      align-items:start;
    }
    .steps{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:14px;
      counter-reset:steps;
    }
    .steps li{
      position:relative;
      padding:18px 18px 18px 64px;
      border:1px solid rgba(255,255,255,.09);
      border-radius:20px;
      background:rgba(255,255,255,.045);
    }
    .steps li:before{
      counter-increment:steps;
      content:"0" counter(steps);
      position:absolute;
      left:16px;
      top:17px;
      width:34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:13px;
      color:#fff;
      font-family:var(--num);
      font-weight:800;
      background:linear-gradient(135deg,var(--primary),var(--green));
      box-shadow:0 0 20px rgba(47,140,255,.28);
    }
    .steps strong{display:block;color:#fff;margin-bottom:4px}
    .steps span{display:block;color:var(--muted);font-size:14px;line-height:1.6}
    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border:1px solid rgba(255,255,255,.10);
      border-radius:20px;
      overflow:hidden;
      background:rgba(255,255,255,.045);
      transition:var(--ease);
    }
    .accordion-item.is-active{
      border-color:rgba(54,242,163,.32);
      background:rgba(54,242,163,.055);
    }
    .accordion-title{
      position:relative;
      display:block;
      padding:20px 56px 20px 22px;
      border:0;
      color:var(--text);
      font-size:17px;
      font-weight:800;
      line-height:1.5;
    }
    .accordion-title:hover,.accordion-title:focus{background:rgba(47,140,255,.06);color:var(--text)}
    .accordion-title:before{
      right:22px;
      margin-top:-11px;
      color:var(--green);
      font-size:22px;
    }
    .accordion-content{
      padding:0 22px 22px;
      border:0;
      background:transparent;
      color:var(--muted);
      line-height:1.85;
    }
    .cta-band{
      position:relative;
      overflow:hidden;
      padding:44px;
      border:1px solid rgba(120,178,255,.24);
      border-radius:32px;
      background:
        linear-gradient(135deg,rgba(47,140,255,.20),rgba(54,242,163,.10)),
        linear-gradient(180deg,rgba(12,28,52,.86),rgba(7,17,31,.92));
      box-shadow:var(--shadow);
    }
    .cta-band:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
      background-size:34px 34px;
      opacity:.35;
      pointer-events:none;
    }
    .cta-band .grid-x{position:relative;z-index:1}
    .cta-actions{display:flex;justify-content:flex-end;gap:14px;flex-wrap:wrap}
    .site-footer{
      padding:64px 0 30px;
      background:#050b14;
      border-top:1px solid rgba(255,255,255,.08);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .8fr .9fr .9fr;
      gap:34px;
      padding-bottom:38px;
    }
    .footer-title{
      margin-bottom:14px;
      color:#fff;
      font-size:16px;
      font-weight:800;
    }
    .site-footer p{font-size:14px;line-height:1.8;margin-bottom:0}
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:9px;
      color:var(--muted);
      font-size:14px;
    }
    .footer-links a{color:var(--muted)}
    .footer-links a:hover{color:var(--primary-2)}
    .footer-bottom{
      display:grid;
      gap:7px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.08);
      text-align:center;
      color:#8b98ad;
      font-size:13px;
      line-height:1.7;
    }
    .footer-bottom a{color:#9fafc7}
    .footer-bottom a:hover{color:var(--green)}
    @media (max-width:1024px){
      .site-nav{gap:14px}
      .nav-menu a{padding:8px 9px;font-size:13px}
      .nav-actions .btn{padding:11px 14px}
      .schedule-grid,.guide-layout{grid-template-columns:1fr}
      .entry-grid{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:repeat(2,1fr)}
      .focus-match{grid-template-columns:110px 1fr 100px}
    }
    @media (max-width:767px){
      .top-bar-wrap{position:sticky}
      .site-nav{min-height:66px}
      .brand{font-size:16px}
      .brand-mark{width:32px;height:32px;border-radius:12px}
      .menu-toggle{display:flex;order:3}
      .nav-actions{display:none}
      .nav-menu{
        position:absolute;
        left:16px;
        right:16px;
        top:72px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        gap:8px;
        padding:14px;
        border:1px solid var(--border);
        border-radius:22px;
        background:rgba(7,17,31,.96);
        box-shadow:var(--shadow);
        backdrop-filter:blur(18px);
      }
      .nav-menu.is-open{display:flex}
      .nav-menu a{justify-content:center;min-height:44px;font-size:15px}
      .hero-live{min-height:auto;padding:46px 0 58px}
      .timeline-console{margin-top:28px;padding:18px;border-radius:22px}
      .console-head{flex-direction:column}
      .timeline-item{grid-template-columns:1fr;gap:8px}
      .timeline-time{display:flex;align-items:center;gap:10px}
      .timeline-time small{margin-top:0}
      .teams{align-items:flex-start;flex-direction:column}
      .teams .score{text-align:left}
      .section{padding:66px 0}
      .section-tight{padding:52px 0}
      .section-head{display:block}
      .section-head p{margin-top:8px}
      .focus-match{grid-template-columns:1fr;gap:10px}
      .match-score{text-align:left}
      .schedule-card{grid-template-columns:1fr;gap:9px}
      .stat-grid,.entry-grid{grid-template-columns:1fr}
      .cta-band{padding:26px;border-radius:24px}
      .cta-actions{justify-content:flex-start}
      .hero-actions .btn,.cta-actions .btn{width:100%}
      .footer-grid{grid-template-columns:1fr;gap:26px}
    }
    @media (max-width:520px){
      .grid-container{padding-left:18px;padding-right:18px}
      h1{font-size:33px}
      h2{font-size:27px}
      .lead{font-size:16px}
      .filter-bar{overflow-x:auto;flex-wrap:nowrap;padding-bottom:12px}
      .filter-pill{flex:0 0 auto}
      .match-row-top{align-items:flex-start;flex-direction:column}
      .panel-pad{padding:20px}
      .image-card-content{left:18px;right:18px}
      .accordion-title{font-size:16px;padding:18px 48px 18px 18px}
      .accordion-content{padding:0 18px 18px}
    }

/* roulang page: category2 */
:root{
      --bg:#07111F;
      --bg-2:#091827;
      --bg-3:#0B1020;
      --panel:rgba(12,28,52,.62);
      --panel-strong:rgba(14,34,62,.82);
      --line:rgba(120,178,255,.18);
      --line-soft:rgba(255,255,255,.10);
      --text:#F4F8FF;
      --muted:#AEBBD0;
      --weak:#738197;
      --primary:#2F8CFF;
      --primary-2:#69B3FF;
      --green:#36F2A3;
      --amber:#FFB84D;
      --red:#FF6B7A;
      --radius-lg:26px;
      --radius-md:18px;
      --radius-sm:12px;
      --shadow:0 24px 70px rgba(0,0,0,.38);
      --glow:0 0 28px rgba(47,140,255,.34);
      --container:1220px;
      --font:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      --num:"DIN Alternate","Roboto Condensed",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      line-height:1.75;
      background:
        radial-gradient(circle at 18% 4%,rgba(47,140,255,.22),transparent 34%),
        radial-gradient(circle at 82% 18%,rgba(54,242,163,.12),transparent 30%),
        linear-gradient(180deg,var(--bg-3) 0%,var(--bg) 42%,#050B15 100%);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      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);
      background-size:54px 54px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.85),rgba(0,0,0,.24));
    }
    body:after{
      content:"";
      position:fixed;
      width:720px;
      height:720px;
      left:50%;
      top:80px;
      transform:translateX(-50%);
      border:1px solid rgba(54,242,163,.09);
      border-radius:50%;
      pointer-events:none;
      z-index:-1;
      box-shadow:0 0 120px rgba(47,140,255,.09) inset;
    }
    a{color:inherit;text-decoration:none;transition:color .22s ease,border-color .22s ease,background .22s ease,transform .22s ease}
    a:hover,a:focus{color:var(--text)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font-family:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(47,140,255,.42);color:#fff}
    :focus-visible{outline:2px solid rgba(54,242,163,.85);outline-offset:3px;border-radius:10px}
    .grid-container{max-width:var(--container)}
    .top-bar-wrap{
      position:sticky;
      top:0;
      z-index:1000;
      border-bottom:1px solid rgba(255,255,255,.08);
      background:rgba(7,17,31,.76);
      backdrop-filter:blur(18px);
      transition:background .25s ease,box-shadow .25s ease;
    }
    .top-bar-wrap.is-scrolled{background:rgba(7,17,31,.92);box-shadow:0 12px 34px rgba(0,0,0,.28)}
    .site-nav{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:.02em;
      color:var(--text);
      white-space:nowrap;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:13px;
      display:inline-block;
      position:relative;
      background:linear-gradient(135deg,rgba(47,140,255,.96),rgba(54,242,163,.92));
      box-shadow:0 0 24px rgba(47,140,255,.42);
      flex:0 0 auto;
    }
    .brand-mark:before{
      content:"";
      position:absolute;
      inset:9px 7px;
      border:2px solid rgba(255,255,255,.8);
      border-left-width:1px;
      border-right-width:1px;
      border-radius:4px;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      left:50%;
      top:8px;
      width:2px;
      height:22px;
      transform:translateX(-50%);
      background:rgba(255,255,255,.72);
      box-shadow:-9px 9px 0 -1px rgba(255,255,255,.7),9px 9px 0 -1px rgba(255,255,255,.7);
    }
    .nav-menu{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      align-items:center;
      gap:4px;
      flex:1;
      justify-content:center;
    }
    .nav-menu a{
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:0 13px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      position:relative;
    }
    .nav-menu a:after{
      content:"";
      position:absolute;
      left:16px;
      right:16px;
      bottom:4px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--green));
      opacity:0;
      transform:scaleX(.45);
      transition:.22s ease;
    }
    .nav-menu a:hover{color:var(--text);background:rgba(255,255,255,.04)}
    .nav-menu a:hover:after,.nav-menu a.active:after{opacity:1;transform:scaleX(1)}
    .nav-menu a.active{color:var(--text);background:rgba(47,140,255,.10)}
    .nav-actions{display:flex;align-items:center;gap:12px}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid var(--line-soft);
      border-radius:14px;
      background:rgba(255,255,255,.04);
      padding:10px;
    }
    .menu-toggle span{display:block;height:2px;background:var(--text);border-radius:999px;margin:5px 0;transition:.22s ease}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-size:14px;
      font-weight:700;
      letter-spacing:.01em;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,border-color .22s ease;
      white-space:nowrap;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#20C7D7 52%,var(--green));
      box-shadow:var(--glow);
    }
    .btn-primary:hover{color:#fff;box-shadow:0 0 34px rgba(54,242,163,.28),0 0 30px rgba(47,140,255,.34)}
    .btn-ghost{
      border-color:rgba(120,178,255,.28);
      background:rgba(255,255,255,.045);
      color:var(--text);
    }
    .btn-ghost:hover{border-color:rgba(54,242,163,.48);background:rgba(54,242,163,.08)}
    .section{padding:94px 0;position:relative}
    .section-tight{padding:68px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:7px 12px;
      border-radius:999px;
      color:#DCEBFF;
      border:1px solid rgba(120,178,255,.24);
      background:rgba(47,140,255,.10);
      font-size:13px;
      font-weight:700;
    }
    .eyebrow:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 12px rgba(54,242,163,.8);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(34px,5vw,58px);
      line-height:1.12;
      margin:18px 0 20px;
      letter-spacing:-.04em;
      font-weight:800;
    }
    h2{
      font-size:clamp(28px,3.2vw,38px);
      line-height:1.22;
      font-weight:800;
      margin-bottom:14px;
      letter-spacing:-.03em;
    }
    h3{
      font-size:21px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:10px;
    }
    .lead{font-size:17px;color:var(--muted);max-width:720px}
    .muted{color:var(--muted)}
    .weak{color:var(--weak)}
    .breadcrumb-wrap{padding:24px 0 0}
    .breadcrumb{
      margin:0;
      padding:0;
      list-style:none;
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      color:var(--weak);
      font-size:14px;
    }
    .breadcrumb li:not(:last-child):after{content:"/";margin-left:9px;color:rgba(255,255,255,.24)}
    .breadcrumb a{color:var(--muted)}
    .breadcrumb a:hover{color:var(--green)}
    .league-hero{
      padding:46px 0 88px;
      position:relative;
      overflow:hidden;
    }
    .league-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(7,17,31,.92),rgba(7,17,31,.66)),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      opacity:.52;
      z-index:-2;
    }
    .league-hero:after{
      content:"";
      position:absolute;
      right:-150px;
      top:32px;
      width:520px;
      height:520px;
      border-radius:50%;
      border:1px solid rgba(54,242,163,.16);
      box-shadow:0 0 90px rgba(47,140,255,.14) inset;
      z-index:-1;
    }
    .hero-copy{padding-top:44px}
    .hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:28px;
    }
    .trust-pill,.league-tab,.status-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.045);
      color:var(--muted);
      font-size:13px;
    }
    .trust-pill b{color:var(--text)}
    .console-card{
      background:linear-gradient(145deg,rgba(12,28,52,.72),rgba(11,20,38,.54));
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      backdrop-filter:blur(16px);
      box-shadow:var(--shadow);
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .console-card:before{
      content:"";
      position:absolute;
      left:-30%;
      top:-48%;
      width:90%;
      height:90%;
      background:radial-gradient(circle,rgba(47,140,255,.20),transparent 66%);
      pointer-events:none;
    }
    .console-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
      position:relative;
      z-index:1;
    }
    .console-title{font-size:16px;font-weight:800}
    .live-dot{
      width:9px;
      height:9px;
      display:inline-block;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 13px rgba(54,242,163,.75);
      animation:pulse 1.8s infinite;
    }
    @keyframes pulse{0%,100%{transform:scale(.9);opacity:.72}50%{transform:scale(1.24);opacity:1}}
    .league-tabs{
      display:flex;
      gap:9px;
      overflow:auto;
      padding-bottom:8px;
      margin-bottom:18px;
      position:relative;
      z-index:1;
      scrollbar-width:thin;
    }
    .league-tab{flex:0 0 auto}
    .league-tab.active{
      background:linear-gradient(135deg,rgba(47,140,255,.20),rgba(54,242,163,.12));
      border-color:rgba(54,242,163,.34);
      color:var(--text);
    }
    .mini-table{
      position:relative;
      z-index:1;
      border:1px solid rgba(255,255,255,.08);
      border-radius:20px;
      overflow:hidden;
      background:rgba(255,255,255,.035);
    }
    .mini-row{
      display:grid;
      grid-template-columns:42px 1fr 58px 58px;
      gap:10px;
      align-items:center;
      padding:13px 14px;
      border-bottom:1px solid rgba(255,255,255,.075);
      font-size:14px;
    }
    .mini-row:last-child{border-bottom:none}
    .mini-row.head{color:var(--weak);background:rgba(255,255,255,.04);font-size:12px}
    .mini-row:hover{background:rgba(47,140,255,.08)}
    .rank{font-family:var(--num);font-weight:800;color:var(--green)}
    .points{font-family:var(--num);font-size:20px;font-weight:800;color:var(--text)}
    .team-name{font-weight:700}
    .trend-list{
      margin-top:18px;
      display:grid;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .trend-item{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding:13px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.08);
    }
    .trend-item span{font-size:13px;color:var(--muted)}
    .trend-item strong{color:var(--text)}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:34px;
    }
    .section-head .lead{margin-bottom:0}
    .glass-card{
      border:1px solid var(--line);
      border-radius:var(--radius-lg);
      background:var(--panel);
      backdrop-filter:blur(16px);
      box-shadow:0 18px 48px rgba(0,0,0,.22);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
      overflow:hidden;
    }
    .glass-card:hover{
      transform:translateY(-4px);
      border-color:rgba(54,242,163,.32);
      box-shadow:0 24px 60px rgba(0,0,0,.30),0 0 30px rgba(47,140,255,.10);
    }
    .league-matrix .glass-card{padding:24px;min-height:210px}
    .league-icon{
      width:52px;
      height:52px;
      border-radius:18px;
      display:grid;
      place-items:center;
      margin-bottom:18px;
      background:linear-gradient(135deg,rgba(47,140,255,.24),rgba(54,242,163,.10));
      border:1px solid rgba(120,178,255,.20);
      font-family:var(--num);
      font-weight:900;
      color:var(--green);
    }
    .league-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:16px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      border-radius:999px;
      padding:5px 10px;
      background:rgba(47,140,255,.10);
      color:#CFE4FF;
      border:1px solid rgba(47,140,255,.18);
      font-size:12px;
      line-height:1.4;
    }
    .tag.green{background:rgba(54,242,163,.08);border-color:rgba(54,242,163,.20);color:#CCFFE9}
    .tag.amber{background:rgba(255,184,77,.09);border-color:rgba(255,184,77,.22);color:#FFE2AE}
    .data-board{
      display:grid;
      grid-template-columns:minmax(0,1.65fr) minmax(300px,.95fr);
      gap:22px;
      align-items:start;
    }
    .table-panel{padding:22px}
    .table-toolbar{
      display:flex;
      justify-content:space-between;
      gap:16px;
      align-items:center;
      margin-bottom:18px;
      flex-wrap:wrap;
    }
    .data-table-wrap{overflow-x:auto;border-radius:18px;border:1px solid rgba(255,255,255,.08)}
    table.data-table{
      width:100%;
      min-width:760px;
      margin:0;
      border-collapse:separate;
      border-spacing:0;
      color:var(--text);
      background:rgba(255,255,255,.025);
    }
    .data-table thead th{
      background:rgba(47,140,255,.12);
      color:#DDEEFF;
      font-size:13px;
      font-weight:800;
      padding:14px 16px;
      border-bottom:1px solid rgba(120,178,255,.16);
      text-align:left;
      white-space:nowrap;
    }
    .data-table tbody td{
      padding:15px 16px;
      border-bottom:1px solid rgba(255,255,255,.07);
      color:var(--muted);
      font-size:14px;
      white-space:nowrap;
    }
    .data-table tbody tr:hover td{background:rgba(54,242,163,.055);color:var(--text)}
    .data-table tbody tr:last-child td{border-bottom:none}
    .club-cell{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      color:var(--text);
    }
    .club-badge{
      width:28px;height:28px;border-radius:10px;
      background:linear-gradient(135deg,rgba(47,140,255,.34),rgba(54,242,163,.22));
      border:1px solid rgba(255,255,255,.12);
      display:inline-flex;align-items:center;justify-content:center;
      font-family:var(--num);font-size:13px;color:#fff;
    }
    .num{font-family:var(--num);font-weight:800;color:var(--text)}
    .side-stack{display:grid;gap:18px}
    .insight-card{padding:22px}
    .progress-line{
      height:9px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
      margin-top:10px;
    }
    .progress-line span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--green));
      box-shadow:0 0 16px rgba(54,242,163,.22);
    }
    .insight-kv{
      display:flex;
      justify-content:space-between;
      gap:12px;
      margin-top:12px;
      color:var(--muted);
      font-size:14px;
    }
    .observe-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
      align-items:stretch;
    }
    .image-card{
      min-height:410px;
      position:relative;
      overflow:hidden;
    }
    .image-card img{
      width:100%;
      height:100%;
      min-height:410px;
      object-fit:cover;
      filter:saturate(1.08) contrast(1.04);
    }
    .image-card:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(7,17,31,.10),rgba(7,17,31,.88));
    }
    .image-caption{
      position:absolute;
      left:24px;
      right:24px;
      bottom:24px;
      z-index:1;
    }
    .analysis-list{display:grid;gap:16px}
    .analysis-item{
      padding:22px;
      display:grid;
      grid-template-columns:auto 1fr;
      gap:16px;
      align-items:start;
    }
    .analysis-no{
      width:42px;height:42px;border-radius:15px;
      display:grid;place-items:center;
      background:rgba(47,140,255,.14);
      color:var(--green);
      font-family:var(--num);
      font-size:20px;
      font-weight:900;
      border:1px solid rgba(120,178,255,.16);
    }
    .compare-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
    }
    .metric-card{
      padding:22px;
      border-radius:22px;
      background:linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.026));
      border:1px solid rgba(255,255,255,.10);
    }
    .metric-value{
      font-family:var(--num);
      font-size:38px;
      line-height:1;
      font-weight:900;
      color:var(--text);
      margin:10px 0 8px;
    }
    .metric-value small{font-size:16px;color:var(--green)}
    .guide-panel{
      padding:28px;
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      align-items:center;
    }
    .guide-list{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .guide-list li{
      display:flex;
      gap:12px;
      padding:13px 14px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(255,255,255,.04);
      border-radius:16px;
      color:var(--muted);
    }
    .guide-list li:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--green);
      box-shadow:0 0 11px rgba(54,242,163,.72);
      margin-top:10px;
      flex:0 0 auto;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      border:1px solid rgba(255,255,255,.10);
      border-radius:18px;
      background:rgba(255,255,255,.04);
      overflow:hidden;
      margin-bottom:12px;
    }
    .accordion-title{
      border:0!important;
      color:var(--text)!important;
      background:transparent!important;
      font-size:16px;
      font-weight:800;
      padding:19px 54px 19px 20px;
    }
    .accordion-title:before{color:var(--green);font-size:22px;margin-top:-13px}
    .is-active>.accordion-title{
      background:rgba(47,140,255,.09)!important;
      border-bottom:1px solid rgba(120,178,255,.14)!important;
    }
    .accordion-content{
      border:0!important;
      background:rgba(7,17,31,.38)!important;
      color:var(--muted);
      padding:18px 20px 22px;
      font-size:15px;
      line-height:1.8;
    }
    .cta-band{
      position:relative;
      overflow:hidden;
      border:1px solid rgba(120,178,255,.22);
      border-radius:32px;
      padding:44px;
      background:
        linear-gradient(135deg,rgba(47,140,255,.20),rgba(54,242,163,.10)),
        linear-gradient(180deg,rgba(12,28,52,.88),rgba(7,17,31,.92));
      box-shadow:var(--shadow);
    }
    .cta-band:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:
        linear-gradient(90deg,rgba(255,255,255,.07) 1px,transparent 1px),
        linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px);
      background-size:36px 36px;
      opacity:.22;
    }
    .cta-band>*{position:relative;z-index:1}
    .site-footer{
      background:#050A13;
      border-top:1px solid rgba(255,255,255,.09);
      padding:64px 0 28px;
      color:var(--muted);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.55fr 1fr 1fr 1fr;
      gap:34px;
      margin-bottom:38px;
    }
    .footer-title{
      color:var(--text);
      font-weight:800;
      margin-bottom:14px;
      font-size:16px;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:9px;
    }
    .footer-links a,.footer-bottom a{color:var(--muted)}
    .footer-links a:hover,.footer-bottom a:hover{color:var(--green)}
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.08);
      padding-top:24px;
      text-align:center;
      color:#8B98AD;
      font-size:13px;
      display:grid;
      gap:8px;
    }
    @media (max-width:1024px){
      .site-nav{gap:16px}
      .nav-menu a{padding:0 9px;font-size:13px}
      .nav-actions .btn{padding:0 15px}
      .data-board{grid-template-columns:1fr}
      .compare-strip{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr}
      .section{padding:78px 0}
    }
    @media (max-width:768px){
      .site-nav{min-height:66px}
      .menu-toggle{display:block}
      .nav-menu{
        position:absolute;
        left:14px;
        right:14px;
        top:70px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        border:1px solid var(--line);
        border-radius:22px;
        background:rgba(7,17,31,.96);
        backdrop-filter:blur(18px);
        box-shadow:var(--shadow);
      }
      .nav-menu.is-open{display:flex}
      .nav-menu a{justify-content:center;min-height:44px}
      .nav-actions{display:none}
      .league-hero{padding:28px 0 62px}
      .hero-copy{padding-top:26px}
      .console-card{margin-top:26px}
      .section-head{display:block}
      .section-head .lead{margin-top:10px}
      .observe-grid,.guide-panel{grid-template-columns:1fr}
      .image-card,.image-card img{min-height:300px}
      .footer-grid{grid-template-columns:1fr}
      .cta-band{padding:30px 22px;border-radius:24px}
      .table-panel{padding:16px}
      .mini-row{grid-template-columns:36px 1fr 50px 48px}
    }
    @media (max-width:520px){
      h1{font-size:34px}
      .brand span:last-child{font-size:15px}
      .brand-mark{width:34px;height:34px;border-radius:12px}
      .hero-actions .btn{width:100%}
      .trust-row{display:grid;grid-template-columns:1fr}
      .league-matrix .cell{margin-bottom:14px}
      .compare-strip{grid-template-columns:1fr}
      .metric-value{font-size:32px}
      .analysis-item{grid-template-columns:1fr}
      .console-head{align-items:flex-start;flex-direction:column}
      .section{padding:62px 0}
    }

/* roulang page: category4 */
:root{
      --bg:#07111F;
      --bg-2:#091827;
      --bg-3:#0B1020;
      --panel:rgba(12,28,52,.62);
      --panel-strong:rgba(15,36,67,.82);
      --text:#F4F8FF;
      --muted:#AEBBD0;
      --subtle:#738197;
      --line:rgba(255,255,255,.10);
      --line-blue:rgba(120,178,255,.22);
      --primary:#2F8CFF;
      --green:#36F2A3;
      --amber:#FFB84D;
      --danger:#FF6B7A;
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --shadow:0 22px 70px rgba(0,0,0,.36);
      --glow:0 0 24px rgba(47,140,255,.38);
      --font:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      --num:"DIN Alternate","Roboto Condensed",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      min-height:100vh;
      font-family:var(--font);
      color:var(--text);
      line-height:1.75;
      background:
        radial-gradient(circle at 12% 8%, rgba(47,140,255,.18), transparent 31%),
        radial-gradient(circle at 86% 18%, rgba(54,242,163,.12), transparent 29%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 46%, var(--bg-3) 100%);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-2;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:48px 48px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.82), rgba(0,0,0,.18));
    }
    body:after{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-1;
      background:
        linear-gradient(90deg, transparent 0 48%, rgba(54,242,163,.045) 49%, transparent 50%),
        radial-gradient(ellipse at center, transparent 0 28%, rgba(47,140,255,.035) 29%, transparent 31%);
      opacity:.55;
    }
    a{color:inherit;text-decoration:none;transition:color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease}
    a:hover{color:var(--text)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font-family:inherit}
    button{cursor:pointer}
    :focus-visible{outline:2px solid rgba(54,242,163,.88);outline-offset:4px;border-radius:12px}
    .grid-container{max-width:1210px}
    .section{padding:92px 0;position:relative}
    .section-tight{padding:64px 0}
    .section-head{max-width:780px;margin-bottom:34px}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      color:var(--green);
      font-size:14px;
      letter-spacing:.08em;
      font-weight:700;
      margin-bottom:14px;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:999px;
      background:var(--green);
      box-shadow:0 0 14px rgba(54,242,163,.8);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(34px, 5.1vw, 58px);
      line-height:1.12;
      letter-spacing:-.04em;
      font-weight:800;
      margin-bottom:22px;
    }
    h2{
      font-size:clamp(28px, 3vw, 38px);
      line-height:1.24;
      letter-spacing:-.03em;
      font-weight:800;
      margin-bottom:14px;
    }
    h3{
      font-size:22px;
      line-height:1.35;
      font-weight:750;
      margin-bottom:10px;
    }
    p{color:var(--muted);font-size:16px}
    .lead{font-size:18px;color:#D6E2F4;max-width:700px}
    .top-bar-wrap{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(7,17,31,.76);
      border-bottom:1px solid rgba(255,255,255,.08);
      backdrop-filter:blur(18px);
      transition:box-shadow .22s ease, background .22s ease;
    }
    .top-bar-wrap.is-scrolled{box-shadow:0 18px 50px rgba(0,0,0,.28);background:rgba(7,17,31,.9)}
    .site-nav{
      min-height:78px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--text);
      white-space:nowrap;
    }
    .brand-mark{
      width:36px;
      height:28px;
      border-radius:10px;
      position:relative;
      display:inline-block;
      background:
        linear-gradient(135deg, rgba(47,140,255,.95), rgba(54,242,163,.88));
      box-shadow:0 0 24px rgba(47,140,255,.35);
    }
    .brand-mark:before,.brand-mark:after{
      content:"";
      position:absolute;
      left:7px;
      right:7px;
      height:2px;
      border-radius:999px;
      background:rgba(7,17,31,.68);
    }
    .brand-mark:before{top:9px}
    .brand-mark:after{bottom:9px}
    .nav-menu{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      align-items:center;
      gap:4px;
    }
    .nav-menu a{
      position:relative;
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:0 12px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      font-weight:650;
    }
    .nav-menu a:after{
      content:"";
      position:absolute;
      left:18px;
      right:18px;
      bottom:3px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--green));
      transform:scaleX(0);
      transform-origin:center;
      transition:transform .22s ease;
    }
    .nav-menu a:hover,.nav-menu a.active{color:var(--text);background:rgba(255,255,255,.045)}
    .nav-menu a:hover:after,.nav-menu a.active:after{transform:scaleX(1)}
    .nav-actions{display:flex;align-items:center;gap:12px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:46px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-size:14px;
      font-weight:750;
      line-height:1;
      white-space:nowrap;
      transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
    }
    .btn:hover{transform:translateY(-2px)}
    .btn-primary{
      color:#06111E;
      background:linear-gradient(135deg,var(--primary),var(--green));
      box-shadow:var(--glow);
    }
    .btn-primary:hover{color:#06111E;box-shadow:0 0 34px rgba(54,242,163,.34), 0 0 28px rgba(47,140,255,.32)}
    .btn-ghost{
      color:var(--text);
      background:rgba(255,255,255,.055);
      border-color:rgba(255,255,255,.14);
    }
    .btn-ghost:hover{border-color:rgba(54,242,163,.45);background:rgba(54,242,163,.08)}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:14px;
      background:rgba(255,255,255,.045);
      padding:10px;
    }
    .menu-toggle span{
      display:block;
      height:2px;
      margin:5px 0;
      background:var(--text);
      border-radius:999px;
      transition:transform .22s ease, opacity .22s ease;
    }
    .crumbs{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      color:var(--subtle);
      font-size:14px;
      margin-bottom:22px;
    }
    .crumbs a{color:#C8D5EA}
    .crumbs a:hover{color:var(--green)}
    .hero-news{
      position:relative;
      padding:72px 0 76px;
      overflow:hidden;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .hero-news:before{
      content:"";
      position:absolute;
      inset:0;
      z-index:-1;
      background:
        linear-gradient(90deg, rgba(7,17,31,.92), rgba(7,17,31,.64)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      opacity:.92;
    }
    .headline-card{
      min-height:480px;
      border-radius:var(--radius-xl);
      overflow:hidden;
      position:relative;
      display:flex;
      align-items:flex-end;
      box-shadow:var(--shadow);
      border:1px solid var(--line-blue);
      background:var(--panel);
    }
    .headline-card img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      opacity:.7;
      transform:scale(1.02);
    }
    .headline-card:after{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg, rgba(7,17,31,.06) 0%, rgba(7,17,31,.56) 45%, rgba(7,17,31,.96) 100%),
        radial-gradient(circle at 22% 20%, rgba(47,140,255,.28), transparent 32%);
    }
    .headline-content{
      position:relative;
      z-index:2;
      padding:34px;
    }
    .tag-row{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:14px}
    .tag,.status-badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      min-height:28px;
      padding:0 11px;
      border-radius:999px;
      font-size:13px;
      font-weight:750;
      color:#DDEBFF;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .tag.hot{color:#1B1204;background:linear-gradient(135deg,var(--amber),#FFE09A);border-color:rgba(255,184,77,.45)}
    .tag.live{color:#062016;background:rgba(54,242,163,.88);border-color:rgba(54,242,163,.55)}
    .headline-content h2{font-size:clamp(28px,3.6vw,44px);margin-bottom:14px}
    .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      color:#C9D6E8;
      font-size:14px;
    }
    .brief-panel{
      padding:24px;
      border-radius:var(--radius-xl);
      background:rgba(12,28,52,.66);
      border:1px solid var(--line-blue);
      backdrop-filter:blur(16px);
      box-shadow:var(--shadow);
    }
    .brief-list{
      display:grid;
      gap:14px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .brief-item{
      position:relative;
      padding:17px 16px 17px 42px;
      border-radius:18px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.09);
      transition:transform .22s ease, border-color .22s ease, background .22s ease;
    }
    .brief-item:hover{transform:translateX(4px);border-color:rgba(54,242,163,.35);background:rgba(54,242,163,.065)}
    .brief-item:before{
      content:"";
      position:absolute;
      left:17px;
      top:22px;
      width:10px;
      height:10px;
      border-radius:999px;
      background:var(--green);
      box-shadow:0 0 14px rgba(54,242,163,.8);
      animation:pulse 1.8s infinite;
    }
    .brief-item strong{display:block;color:var(--text);font-size:16px;line-height:1.45;margin-bottom:5px}
    .brief-item span{display:block;color:var(--muted);font-size:14px;line-height:1.55}
    @keyframes pulse{
      0%,100%{transform:scale(.9);opacity:.65}
      50%{transform:scale(1.16);opacity:1}
    }
    .glass-card{
      position:relative;
      background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035)), var(--panel);
      border:1px solid var(--line-blue);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      backdrop-filter:blur(16px);
      overflow:hidden;
      transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease;
    }
    .glass-card:hover{
      transform:translateY(-4px);
      border-color:rgba(54,242,163,.36);
      box-shadow:0 28px 78px rgba(0,0,0,.42), 0 0 26px rgba(47,140,255,.12);
    }
    .observe-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:stretch;
    }
    .observe-main{padding:28px}
    .observe-image{
      min-height:330px;
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
    }
    .observe-image img{
      width:100%;
      height:100%;
      min-height:330px;
      object-fit:cover;
      opacity:.82;
    }
    .observe-image:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, transparent, rgba(7,17,31,.72));
    }
    .key-list{
      display:grid;
      gap:12px;
      margin:20px 0 0;
      padding:0;
      list-style:none;
    }
    .key-list li{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:16px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.08);
    }
    .key-list i{
      flex:0 0 24px;
      width:24px;
      height:24px;
      border-radius:9px;
      background:linear-gradient(135deg,var(--primary),var(--green));
      box-shadow:0 0 16px rgba(47,140,255,.25);
    }
    .key-list strong{display:block;color:var(--text);line-height:1.4;margin-bottom:2px}
    .key-list span{color:var(--muted);font-size:14px}
    .content-split{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .news-card{
      display:flex;
      flex-direction:column;
      min-height:100%;
      border-radius:var(--radius-lg);
      overflow:hidden;
      background:rgba(12,28,52,.58);
      border:1px solid var(--line-blue);
      box-shadow:0 18px 54px rgba(0,0,0,.25);
      transition:transform .24s ease, border-color .24s ease, box-shadow .24s ease;
    }
    .news-card:hover{transform:translateY(-5px);border-color:rgba(47,140,255,.48);box-shadow:0 26px 72px rgba(0,0,0,.32)}
    .news-cover{
      height:160px;
      position:relative;
      overflow:hidden;
    }
    .news-cover img{
      width:100%;
      height:100%;
      object-fit:cover;
      opacity:.78;
      transition:transform .4s ease;
    }
    .news-card:hover .news-cover img{transform:scale(1.06)}
    .news-cover:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(7,17,31,.05), rgba(7,17,31,.82));
    }
    .news-body{padding:20px;display:flex;flex-direction:column;gap:10px;flex:1}
    .news-body h3{font-size:19px;margin-bottom:0}
    .news-body p{font-size:15px;margin-bottom:0}
    .news-date{margin-top:auto;color:var(--subtle);font-size:13px;display:flex;justify-content:space-between;gap:12px}
    .tactic-board{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:center;
    }
    .board-panel{
      position:relative;
      min-height:390px;
      border-radius:var(--radius-xl);
      background:
        radial-gradient(circle at center, rgba(54,242,163,.12), transparent 26%),
        linear-gradient(135deg, rgba(47,140,255,.18), rgba(12,28,52,.42)),
        rgba(12,28,52,.66);
      border:1px solid var(--line-blue);
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .board-panel:before{
      content:"";
      position:absolute;
      inset:28px;
      border:2px solid rgba(54,242,163,.18);
      border-radius:22px;
    }
    .board-panel:after{
      content:"";
      position:absolute;
      left:50%;
      top:28px;
      bottom:28px;
      width:2px;
      background:rgba(54,242,163,.15);
    }
    .player-dot{
      position:absolute;
      width:18px;
      height:18px;
      border-radius:999px;
      background:var(--primary);
      box-shadow:0 0 18px rgba(47,140,255,.65);
    }
    .player-dot.green{background:var(--green);box-shadow:0 0 18px rgba(54,242,163,.7)}
    .player-dot.a{left:18%;top:25%}.player-dot.b{left:34%;top:43%}.player-dot.c{left:19%;bottom:26%}
    .player-dot.d{right:20%;top:30%}.player-dot.e{right:33%;top:54%}.player-dot.f{right:16%;bottom:22%}
    .trend-list{
      display:grid;
      gap:14px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .trend-list li{
      padding:18px;
      border-radius:18px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.09);
    }
    .trend-top{display:flex;justify-content:space-between;gap:14px;align-items:center;margin-bottom:10px}
    .trend-top strong{color:var(--text)}
    .bar{
      height:8px;
      border-radius:999px;
      overflow:hidden;
      background:rgba(255,255,255,.08);
    }
    .bar span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--green));
      box-shadow:0 0 14px rgba(54,242,163,.28);
    }
    .review-lane{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:20px;
    }
    .review-card{padding:24px}
    .review-card .score{
      font-family:var(--num);
      font-size:42px;
      font-weight:800;
      color:var(--green);
      line-height:1;
      margin-bottom:10px;
    }
    .review-points{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .review-points li{
      color:#D7E4F6;
      padding-left:20px;
      position:relative;
      font-size:15px;
    }
    .review-points li:before{
      content:"";
      position:absolute;
      left:0;
      top:.72em;
      width:7px;
      height:7px;
      border-radius:999px;
      background:var(--amber);
    }
    .related-strip{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .related-card{
      padding:24px;
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.09);
      transition:transform .22s ease, background .22s ease, border-color .22s ease;
    }
    .related-card:hover{transform:translateY(-4px);background:rgba(47,140,255,.075);border-color:rgba(47,140,255,.36)}
    .related-card h3{font-size:20px}
    .related-card p{font-size:15px;margin-bottom:16px}
    .link-more{display:inline-flex;align-items:center;gap:8px;color:var(--green);font-weight:750;font-size:14px}
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border-radius:18px;
      overflow:hidden;
      background:rgba(12,28,52,.58);
      border:1px solid rgba(120,178,255,.18);
    }
    .accordion-title{
      border:0!important;
      background:transparent!important;
      color:var(--text)!important;
      font-size:17px;
      font-weight:750;
      padding:20px 56px 20px 22px;
    }
    .accordion-title:focus,.accordion-title:hover{background:rgba(47,140,255,.08)!important;color:var(--text)!important}
    .accordion-title:before{color:var(--green);font-size:24px;margin-top:-12px}
    .accordion-content{
      border:0!important;
      background:rgba(255,255,255,.028)!important;
      color:var(--muted);
      padding:0 22px 22px;
      line-height:1.75;
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      padding:44px;
      background:
        linear-gradient(135deg, rgba(47,140,255,.24), rgba(54,242,163,.14)),
        rgba(12,28,52,.78);
      border:1px solid rgba(120,178,255,.28);
      box-shadow:var(--shadow);
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 18% 18%, rgba(54,242,163,.16), transparent 28%),
        linear-gradient(90deg, transparent 0 48%, rgba(255,255,255,.055) 49%, transparent 50%);
      opacity:.82;
    }
    .cta-content{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:26px}
    .cta-content h2{margin-bottom:8px}
    .cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
    .site-footer{
      background:rgba(5,12,23,.96);
      border-top:1px solid rgba(255,255,255,.09);
      padding:58px 0 30px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .85fr .9fr .9fr;
      gap:34px;
      margin-bottom:36px;
    }
    .footer-title{
      color:var(--text);
      font-weight:800;
      font-size:16px;
      margin-bottom:14px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:8px;
      color:var(--muted);
      font-size:14px;
    }
    .footer-links a{color:var(--muted)}
    .footer-links a:hover{color:var(--primary)}
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.08);
      padding-top:24px;
      text-align:center;
      color:#8B98AD;
      font-size:13px;
      line-height:1.9;
    }
    .footer-bottom a{color:#AAB7CB}
    .footer-bottom a:hover{color:var(--green)}
    @media (max-width:1024px){
      .nav-actions{display:none}
      .nav-menu a{padding:0 9px}
      .content-split{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1fr 1fr}
      .tactic-board,.observe-grid{grid-template-columns:1fr}
      .headline-card{min-height:420px}
    }
    @media (max-width:768px){
      .site-nav{min-height:64px;position:relative}
      .menu-toggle{display:block}
      .nav-menu{
        position:absolute;
        top:calc(100% + 10px);
        left:0;
        right:0;
        display:none;
        flex-direction:column;
        align-items:stretch;
        padding:14px;
        border-radius:20px;
        background:rgba(7,17,31,.96);
        border:1px solid rgba(255,255,255,.11);
        box-shadow:var(--shadow);
      }
      .nav-menu.is-open{display:flex}
      .nav-menu a{justify-content:space-between;min-height:46px}
      .hero-news{padding:44px 0 56px}
      .brief-panel{margin-top:20px}
      .section{padding:66px 0}
      .content-split,.review-lane,.related-strip{grid-template-columns:1fr}
      .cta-content{flex-direction:column;align-items:flex-start}
      .cta-actions{justify-content:flex-start}
      .cta-panel{padding:30px 22px}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .brand span:last-child{font-size:15px}
      .brand-mark{width:32px;height:26px}
      .headline-content{padding:24px}
      .headline-card{min-height:390px}
      .btn{width:100%;min-height:48px}
      .cta-actions{width:100%}
      .news-cover{height:150px}
      .review-card,.observe-main{padding:20px}
      .section-head{margin-bottom:24px}
      h1{font-size:33px}
      p,.lead{font-size:15px}
    }

/* roulang page: category3 */
:root{
      --bg-0:#07111F;
      --bg-1:#091827;
      --bg-2:#0B1020;
      --panel:rgba(12,28,52,.58);
      --panel-strong:rgba(16,38,70,.78);
      --line:rgba(120,178,255,.18);
      --line-soft:rgba(255,255,255,.10);
      --text:#F4F8FF;
      --muted:#AEBBD0;
      --weak:#738197;
      --blue:#2F8CFF;
      --green:#36F2A3;
      --amber:#FFB84D;
      --red:#FF6B7A;
      --radius-lg:28px;
      --radius-md:20px;
      --radius-sm:14px;
      --shadow:0 24px 70px rgba(0,0,0,.36);
      --glow:0 0 24px rgba(47,140,255,.38);
      --green-glow:0 0 18px rgba(54,242,163,.42);
      --font:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      --score-font:"DIN Alternate","Roboto Condensed","Arial Narrow",Arial,sans-serif;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%,rgba(47,140,255,.20),transparent 32%),
        radial-gradient(circle at 88% 18%,rgba(54,242,163,.12),transparent 30%),
        linear-gradient(180deg,var(--bg-0),var(--bg-2) 46%,#050B15);
      line-height:1.75;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      z-index:-2;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
      background-size:44px 44px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.82),rgba(0,0,0,.18));
    }
    body::after{
      content:"";
      position:fixed;
      inset:auto -12% 12% -12%;
      height:380px;
      z-index:-1;
      pointer-events:none;
      background:radial-gradient(ellipse at center,rgba(47,140,255,.13),transparent 68%);
      filter:blur(10px);
    }
    a{color:inherit;text-decoration:none;transition:color .22s ease,background .22s ease,border-color .22s ease,transform .22s ease,box-shadow .22s ease}
    a:hover,a:focus{color:var(--text)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font-family:inherit}
    button{cursor:pointer}
    :focus-visible{outline:2px solid rgba(54,242,163,.88);outline-offset:4px;border-radius:12px}
    .grid-container{max-width:1220px}
    .section{padding:96px 0;position:relative}
    .section-tight{padding:72px 0}
    .section-head{max-width:780px;margin-bottom:34px}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--green);
      font-size:14px;
      font-weight:700;
      letter-spacing:.04em;
      padding:7px 12px;
      border:1px solid rgba(54,242,163,.24);
      background:rgba(54,242,163,.08);
      border-radius:999px;
      margin-bottom:18px;
    }
    .eyebrow::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 12px rgba(54,242,163,.75);
    }
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(36px,5vw,58px);
      line-height:1.12;
      font-weight:800;
      letter-spacing:-.04em;
      margin-bottom:22px;
    }
    h2{
      font-size:clamp(28px,3.4vw,38px);
      line-height:1.25;
      font-weight:780;
      letter-spacing:-.03em;
      margin-bottom:16px;
    }
    h3{
      font-size:22px;
      line-height:1.35;
      font-weight:760;
      margin-bottom:12px;
    }
    p{color:var(--muted);font-size:16px}
    .lead{font-size:18px;color:#D5E2F6;max-width:720px}
    .muted{color:var(--weak)}
    .text-gradient{
      background:linear-gradient(90deg,#fff,var(--blue) 46%,var(--green));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }

    .top-bar-wrap{
      position:sticky;
      top:0;
      z-index:50;
      padding:14px 0;
      background:rgba(7,17,31,.76);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.08);
      transition:box-shadow .25s ease,background .25s ease;
    }
    .top-bar-wrap.is-scrolled{
      background:rgba(7,17,31,.91);
      box-shadow:0 18px 50px rgba(0,0,0,.26);
    }
    .site-nav{
      min-height:58px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      color:var(--text);
      letter-spacing:-.02em;
      white-space:nowrap;
    }
    .brand{font-size:18px}
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:12px;
      display:inline-block;
      position:relative;
      background:
        linear-gradient(135deg,rgba(47,140,255,.95),rgba(54,242,163,.86)),
        linear-gradient(180deg,#10233d,#07111f);
      box-shadow:var(--glow);
      overflow:hidden;
      flex:0 0 auto;
    }
    .brand-mark::before{
      content:"";
      position:absolute;
      inset:8px 6px;
      border-top:2px solid rgba(255,255,255,.84);
      border-bottom:2px solid rgba(255,255,255,.68);
    }
    .brand-mark::after{
      content:"1:0";
      position:absolute;
      inset:0;
      display:flex;
      align-items:center;
      justify-content:center;
      font-family:var(--score-font);
      font-weight:800;
      font-size:10px;
      color:#061220;
      transform:translateY(1px);
    }
    .nav-menu{
      display:flex;
      align-items:center;
      gap:2px;
      list-style:none;
      padding:0;
      margin:0;
      flex:1;
      justify-content:center;
    }
    .nav-menu a{
      position:relative;
      display:inline-flex;
      align-items:center;
      min-height:40px;
      padding:0 13px;
      color:var(--muted);
      font-size:14px;
      font-weight:650;
      border-radius:999px;
    }
    .nav-menu a::after{
      content:"";
      position:absolute;
      left:16px;
      right:16px;
      bottom:3px;
      height:2px;
      border-radius:999px;
      transform:scaleX(0);
      transform-origin:center;
      background:linear-gradient(90deg,var(--blue),var(--green));
      transition:transform .22s ease;
    }
    .nav-menu a:hover{
      color:var(--text);
      background:rgba(255,255,255,.045);
    }
    .nav-menu a:hover::after,.nav-menu a.active::after{transform:scaleX(1)}
    .nav-menu a.active{
      color:var(--text);
      background:rgba(47,140,255,.09);
      border:1px solid rgba(47,140,255,.16);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .menu-toggle{
      display:none;
      width:46px;
      height:42px;
      border:1px solid var(--line-soft);
      border-radius:14px;
      background:rgba(255,255,255,.05);
      padding:9px 10px;
    }
    .menu-toggle span{
      display:block;
      height:2px;
      background:var(--text);
      border-radius:999px;
      margin:5px 0;
      transition:transform .2s ease,opacity .2s ease;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:0 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-size:15px;
      font-weight:760;
      line-height:1;
      white-space:nowrap;
      position:relative;
      overflow:hidden;
    }
    .btn::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(120deg,transparent,rgba(255,255,255,.22),transparent);
      transform:translateX(-120%);
      transition:transform .55s ease;
    }
    .btn:hover::before{transform:translateX(120%)}
    .btn-primary{
      color:#061220;
      background:linear-gradient(135deg,var(--blue),var(--green));
      box-shadow:var(--glow);
    }
    .btn-primary:hover{
      color:#04111f;
      transform:translateY(-2px);
      box-shadow:0 0 34px rgba(47,140,255,.45);
    }
    .btn-ghost{
      color:var(--text);
      border-color:rgba(120,178,255,.26);
      background:rgba(255,255,255,.055);
      backdrop-filter:blur(14px);
    }
    .btn-ghost:hover{
      border-color:rgba(54,242,163,.46);
      background:rgba(54,242,163,.08);
      transform:translateY(-2px);
    }

    .breadcrumb-wrap{padding:28px 0 0}
    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:8px;
      margin:0;
      padding:0;
      list-style:none;
      font-size:14px;
      color:var(--weak);
    }
    .breadcrumb a{color:var(--muted)}
    .breadcrumb a:hover{color:var(--green)}
    .breadcrumb .sep{color:rgba(255,255,255,.28)}

    .hero{
      position:relative;
      padding:72px 0 88px;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(7,17,31,.72),rgba(7,17,31,.22)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      opacity:.36;
      z-index:-2;
    }
    .hero::after{
      content:"";
      position:absolute;
      right:-110px;
      top:70px;
      width:520px;
      height:520px;
      border:1px solid rgba(54,242,163,.16);
      border-radius:50%;
      background:
        radial-gradient(circle,transparent 47%,rgba(47,140,255,.10) 48%,transparent 51%),
        radial-gradient(circle at center,rgba(54,242,163,.08),transparent 65%);
      z-index:-1;
    }
    .hero-content{padding-right:22px}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin:30px 0 24px;
    }
    .trust-row{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .trust-row li{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--muted);
      font-size:14px;
      padding:8px 11px;
      border:1px solid rgba(255,255,255,.09);
      border-radius:999px;
      background:rgba(255,255,255,.045);
    }
    .trust-row li::before{
      content:"";
      width:6px;
      height:6px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 10px rgba(54,242,163,.72);
    }

    .versus-board{
      position:relative;
      padding:22px;
      border-radius:var(--radius-lg);
      border:1px solid var(--line);
      background:
        linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.02)),
        var(--panel);
      backdrop-filter:blur(18px);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .versus-board::before{
      content:"MATCH DATA";
      position:absolute;
      top:22px;
      right:22px;
      color:rgba(255,255,255,.08);
      font-size:38px;
      font-weight:900;
      letter-spacing:.08em;
      line-height:1;
    }
    .board-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      position:relative;
      z-index:1;
      margin-bottom:18px;
    }
    .live-pill,.tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 11px;
      border-radius:999px;
      font-size:13px;
      font-weight:760;
      color:#CFFFE9;
      border:1px solid rgba(54,242,163,.28);
      background:rgba(54,242,163,.09);
    }
    .live-pill::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 12px rgba(54,242,163,.8);
      animation:pulse 1.8s infinite;
    }
    @keyframes pulse{
      0%,100%{opacity:.58;transform:scale(.9)}
      50%{opacity:1;transform:scale(1.18)}
    }
    .team-compare{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:18px;
      position:relative;
      z-index:1;
      margin:24px 0;
    }
    .team-card{
      min-height:188px;
      padding:20px;
      border-radius:22px;
      border:1px solid rgba(120,178,255,.16);
      background:rgba(6,18,34,.62);
    }
    .team-card.right{text-align:right}
    .team-logo{
      width:46px;
      height:46px;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      margin-bottom:12px;
      color:#061220;
      font-weight:900;
      background:linear-gradient(135deg,var(--blue),var(--green));
      box-shadow:0 0 18px rgba(47,140,255,.28);
    }
    .team-card.right .team-logo{background:linear-gradient(135deg,var(--amber),var(--blue));}
    .team-card h2,.team-card h3{font-size:25px;margin-bottom:5px}
    .team-meta{font-size:14px;color:var(--weak);margin-bottom:16px}
    .form-dots{
      display:flex;
      gap:7px;
      align-items:center;
    }
    .team-card.right .form-dots{justify-content:flex-end}
    .form-dot{
      width:28px;
      height:28px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:13px;
      font-weight:800;
      color:#061220;
    }
    .win{background:var(--green)}
    .draw{background:var(--amber)}
    .loss{background:var(--red);color:#fff}
    .vs-core{
      width:94px;
      height:94px;
      border-radius:32px;
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--text);
      font-family:var(--score-font);
      font-size:30px;
      font-weight:900;
      border:1px solid rgba(255,255,255,.16);
      background:
        radial-gradient(circle at 30% 22%,rgba(255,255,255,.18),transparent 34%),
        linear-gradient(135deg,rgba(47,140,255,.42),rgba(54,242,163,.20));
      box-shadow:var(--green-glow);
    }
    .status-bars{
      position:relative;
      z-index:1;
      display:grid;
      gap:14px;
    }
    .status-row{
      display:grid;
      grid-template-columns:88px 1fr 48px;
      align-items:center;
      gap:12px;
      font-size:14px;
      color:var(--muted);
    }
    .bar-track{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.09);
      overflow:hidden;
    }
    .bar-fill{
      height:100%;
      width:var(--value);
      border-radius:999px;
      background:linear-gradient(90deg,var(--blue),var(--green));
      box-shadow:0 0 12px rgba(54,242,163,.38);
    }

    .glass-card{
      border:1px solid var(--line);
      background:
        linear-gradient(180deg,rgba(255,255,255,.065),rgba(255,255,255,.025)),
        var(--panel);
      backdrop-filter:blur(16px);
      border-radius:var(--radius-md);
      box-shadow:0 18px 48px rgba(0,0,0,.22);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease,background .22s ease;
      overflow:hidden;
    }
    .glass-card:hover{
      transform:translateY(-4px);
      border-color:rgba(54,242,163,.34);
      box-shadow:0 24px 64px rgba(0,0,0,.32),0 0 24px rgba(47,140,255,.14);
    }
    .card-pad{padding:26px}
    .metric-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .metric-card{padding:24px}
    .metric-num{
      font-family:var(--score-font);
      font-size:42px;
      line-height:1;
      font-weight:900;
      letter-spacing:-.04em;
      color:var(--text);
      margin-bottom:10px;
    }
    .metric-card .tag{margin-top:14px;color:#DCEBFF;border-color:rgba(47,140,255,.24);background:rgba(47,140,255,.09)}
    .form-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
      align-items:start;
    }
    .match-list{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .match-item{
      display:grid;
      grid-template-columns:92px 1fr auto;
      gap:14px;
      align-items:center;
      padding:15px 16px;
      border:1px solid rgba(255,255,255,.09);
      background:rgba(255,255,255,.035);
      border-radius:16px;
      transition:background .2s ease,border-color .2s ease,transform .2s ease;
    }
    .match-item:hover{
      background:rgba(47,140,255,.07);
      border-color:rgba(47,140,255,.20);
      transform:translateX(3px);
    }
    .match-time{font-size:13px;color:var(--weak)}
    .match-teams{font-weight:760;color:var(--text)}
    .score{
      font-family:var(--score-font);
      font-size:22px;
      font-weight:900;
      color:var(--green);
      min-width:54px;
      text-align:right;
    }
    .result-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:34px;
      height:28px;
      padding:0 10px;
      border-radius:999px;
      font-size:13px;
      font-weight:800;
      color:#061220;
    }
    .aside-panel{
      padding:24px;
      position:relative;
    }
    .aside-panel img{
      width:100%;
      height:190px;
      object-fit:cover;
      border-radius:18px;
      opacity:.88;
      margin-bottom:20px;
      border:1px solid rgba(255,255,255,.10);
    }
    .check-list{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:12px;
    }
    .check-list li{
      display:flex;
      gap:10px;
      color:var(--muted);
      font-size:15px;
    }
    .check-list li::before{
      content:"";
      width:18px;
      height:18px;
      flex:0 0 auto;
      margin-top:4px;
      border-radius:6px;
      background:linear-gradient(135deg,var(--blue),var(--green));
      box-shadow:0 0 12px rgba(54,242,163,.22);
    }

    .split-board{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:24px;
      align-items:stretch;
    }
    .home-away-card{
      padding:28px;
      min-height:100%;
    }
    .circle-stat{
      width:156px;
      height:156px;
      margin:6px auto 22px;
      border-radius:50%;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      border:1px solid rgba(54,242,163,.28);
      background:
        conic-gradient(var(--green) 0 68%,rgba(255,255,255,.10) 68% 100%),
        radial-gradient(circle,#0A1729 0 59%,transparent 60%);
      box-shadow:var(--green-glow);
      position:relative;
    }
    .circle-stat::after{
      content:"";
      position:absolute;
      inset:12px;
      border-radius:50%;
      background:#091827;
      border:1px solid rgba(255,255,255,.08);
      z-index:0;
    }
    .circle-stat strong,.circle-stat span{position:relative;z-index:1}
    .circle-stat strong{
      font-family:var(--score-font);
      font-size:44px;
      line-height:1;
    }
    .circle-stat span{
      color:var(--muted);
      font-size:13px;
      margin-top:6px;
    }
    .compare-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0 10px;
      margin:0;
    }
    .compare-table th{
      color:var(--weak);
      font-size:13px;
      font-weight:700;
      text-align:left;
      padding:0 14px 4px;
    }
    .compare-table td{
      padding:15px 14px;
      color:var(--muted);
      background:rgba(255,255,255,.045);
      border-top:1px solid rgba(255,255,255,.08);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .compare-table td:first-child{
      border-left:1px solid rgba(255,255,255,.08);
      border-radius:14px 0 0 14px;
      color:var(--text);
      font-weight:750;
    }
    .compare-table td:last-child{
      border-right:1px solid rgba(255,255,255,.08);
      border-radius:0 14px 14px 0;
      text-align:right;
      font-family:var(--score-font);
      color:var(--green);
      font-weight:900;
      font-size:18px;
    }

    .bars-layout{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
    }
    .data-bar{
      margin-bottom:18px;
    }
    .data-bar:last-child{margin-bottom:0}
    .data-bar-head{
      display:flex;
      justify-content:space-between;
      gap:12px;
      color:var(--muted);
      font-size:14px;
      margin-bottom:8px;
    }
    .data-bar-head strong{color:var(--text)}
    .dual-track{
      height:14px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
      display:flex;
    }
    .dual-track span:first-child{
      width:var(--left);
      background:linear-gradient(90deg,var(--blue),#62A8FF);
    }
    .dual-track span:last-child{
      flex:1;
      background:linear-gradient(90deg,var(--amber),var(--green));
      opacity:.88;
    }
    .radar-notes{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:22px;
    }
    .note{
      padding:16px;
      border-radius:16px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
    }
    .note strong{display:block;margin-bottom:5px;color:var(--text)}
    .note span{color:var(--weak);font-size:14px}

    .h2h-strip{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:12px;
      margin-top:22px;
    }
    .h2h-item{
      padding:16px 14px;
      text-align:center;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.09);
      background:rgba(255,255,255,.04);
    }
    .h2h-item .date{font-size:12px;color:var(--weak)}
    .h2h-item .score{display:block;text-align:center;margin:8px 0 4px;font-size:26px}
    .h2h-item .desc{font-size:13px;color:var(--muted)}

    .news-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:22px;
    }
    .feature-news{
      min-height:420px;
      position:relative;
      display:flex;
      align-items:flex-end;
      padding:28px;
      background:
        linear-gradient(180deg,rgba(7,17,31,.08),rgba(7,17,31,.92)),
        url("/assets/images/coverpic/cover-6.webp") center/cover no-repeat;
    }
    .feature-news .tag{margin-bottom:14px}
    .feature-news p{max-width:620px}
    .news-list{
      display:grid;
      gap:14px;
    }
    .news-card{
      padding:20px;
      display:grid;
      gap:8px;
    }
    .news-card .meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      color:var(--weak);
      font-size:13px;
    }
    .news-card h3{font-size:20px;margin:0}
    .news-card p{font-size:15px;margin:0}

    .guide-grid{
      display:grid;
      grid-template-columns:.78fr 1.22fr;
      gap:28px;
      align-items:start;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid rgba(255,255,255,.10);
      border-radius:18px;
      overflow:hidden;
      background:rgba(255,255,255,.045);
    }
    .accordion-title{
      color:var(--text);
      font-size:16px;
      font-weight:760;
      line-height:1.5;
      border:0;
      padding:18px 52px 18px 20px;
      background:transparent;
    }
    .accordion-title:hover,.accordion-title:focus{
      color:var(--text);
      background:rgba(47,140,255,.08);
    }
    .accordion-title::before{
      color:var(--green);
      font-size:22px;
      margin-top:-13px;
      right:20px;
    }
    .accordion-content{
      border:0;
      color:var(--muted);
      background:rgba(3,12,23,.36);
      padding:0 20px 20px;
      line-height:1.75;
    }

    .cta-section{
      padding:82px 0;
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      padding:42px;
      border-radius:32px;
      border:1px solid rgba(120,178,255,.20);
      background:
        linear-gradient(135deg,rgba(47,140,255,.22),rgba(54,242,163,.09)),
        rgba(9,24,39,.78);
      box-shadow:var(--shadow);
    }
    .cta-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
      background-size:34px 34px;
      opacity:.45;
      mask-image:radial-gradient(circle at 70% 40%,black,transparent 68%);
    }
    .cta-inner{
      position:relative;
      z-index:1;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:28px;
    }
    .cta-inner h2{margin-bottom:10px}
    .cta-inner p{margin-bottom:0;max-width:680px}

    .site-footer{
      background:#050A13;
      border-top:1px solid rgba(255,255,255,.08);
      padding:62px 0 30px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .8fr .9fr .9fr;
      gap:34px;
      margin-bottom:42px;
    }
    .footer-title{
      color:var(--text);
      font-weight:800;
      font-size:16px;
      margin-bottom:14px;
    }
    .site-footer p{
      font-size:14px;
      color:#96A4BA;
      max-width:380px;
      margin:14px 0 0;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:9px;
      color:#92A0B5;
      font-size:14px;
    }
    .footer-links a{color:#92A0B5}
    .footer-links a:hover{color:var(--green)}
    .footer-bottom{
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.08);
      display:grid;
      gap:8px;
      text-align:center;
      color:#8B98AD;
      font-size:13px;
    }
    .footer-bottom a{color:#9BA8BC}
    .footer-bottom a:hover{color:var(--blue)}

    @media (max-width:1024px){
      .nav-menu a{padding:0 9px;font-size:13px}
      .nav-actions .btn{padding:0 15px}
      .metric-grid{grid-template-columns:repeat(2,1fr)}
      .team-compare{grid-template-columns:1fr;gap:14px}
      .team-card.right{text-align:left}
      .team-card.right .form-dots{justify-content:flex-start}
      .vs-core{width:76px;height:76px;margin:auto;border-radius:24px}
      .split-board,.form-grid,.news-grid,.guide-grid{grid-template-columns:1fr}
      .h2h-strip{grid-template-columns:repeat(3,1fr)}
    }

    @media (max-width:820px){
      .top-bar-wrap{padding:10px 0}
      .site-nav{min-height:52px}
      .menu-toggle{display:block}
      .nav-menu{
        position:absolute;
        top:72px;
        left:16px;
        right:16px;
        display:none;
        flex-direction:column;
        align-items:stretch;
        justify-content:flex-start;
        gap:6px;
        padding:14px;
        border:1px solid var(--line);
        border-radius:20px;
        background:rgba(7,17,31,.96);
        backdrop-filter:blur(18px);
        box-shadow:var(--shadow);
      }
      .nav-menu.is-open{display:flex}
      .nav-menu a{width:100%;justify-content:space-between;padding:0 14px}
      .nav-actions{display:none}
      .hero{padding:54px 0 70px}
      .hero-content{padding-right:0;margin-bottom:28px}
      .section{padding:72px 0}
      .section-tight{padding:56px 0}
      .bars-layout,.radar-notes{grid-template-columns:1fr}
      .cta-inner{flex-direction:column;align-items:flex-start}
      .footer-grid{grid-template-columns:1fr 1fr}
    }

    @media (max-width:560px){
      h1{font-size:34px}
      h2{font-size:27px}
      .brand{font-size:16px}
      .brand-mark{width:31px;height:31px;border-radius:11px}
      .hero-actions{flex-direction:column}
      .hero-actions .btn,.cta-inner .btn{width:100%}
      .versus-board{padding:16px;border-radius:22px}
      .team-card{padding:17px;min-height:auto}
      .status-row{grid-template-columns:72px 1fr 40px}
      .metric-grid{grid-template-columns:1fr}
      .match-item{grid-template-columns:1fr;gap:6px}
      .score{text-align:left}
      .h2h-strip{grid-template-columns:1fr}
      .table-scroll{overflow-x:auto}
      .compare-table{min-width:520px}
      .feature-news{min-height:360px;padding:22px}
      .cta-panel{padding:28px 20px;border-radius:24px}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{font-size:12px}
    }

/* roulang page: category5 */
:root{
      --bg:#07111f;
      --bg-2:#091827;
      --bg-3:#0b1020;
      --panel:rgba(12,28,52,.62);
      --panel-strong:rgba(13,34,62,.82);
      --primary:#2f8cff;
      --secondary:#36f2a3;
      --accent:#ffb84d;
      --text:#f4f8ff;
      --muted:#aebbd0;
      --weak:#738197;
      --border:rgba(255,255,255,.10);
      --border-blue:rgba(120,178,255,.20);
      --shadow:0 22px 70px rgba(0,0,0,.36);
      --glow:0 0 24px rgba(47,140,255,.38);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-sm:12px;
      --nav-h:78px;
      --font:"PingFang SC","Microsoft YaHei","Noto Sans SC","Helvetica Neue",Arial,sans-serif;
      --num:"DIN Alternate","Roboto Condensed",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 16% 0%, rgba(47,140,255,.18), transparent 32%),
        radial-gradient(circle at 88% 14%, rgba(54,242,163,.10), transparent 28%),
        linear-gradient(180deg,var(--bg),var(--bg-3) 48%,#050b16);
      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,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:54px 54px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.78), transparent 86%);
    }
    body:after{
      content:"";
      position:fixed;
      width:620px;
      height:620px;
      right:-250px;
      top:180px;
      z-index:-1;
      pointer-events:none;
      background:radial-gradient(circle, rgba(47,140,255,.16), transparent 68%);
      filter:blur(12px);
    }
    a{color:inherit;text-decoration:none;transition:color .22s ease,border-color .22s ease,background .22s ease,transform .22s ease,box-shadow .22s ease}
    a:hover,a:focus{color:var(--text)}
    img{display:block;max-width:100%;height:auto}
    button,input,select,textarea{font-family:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(47,140,255,.38);color:#fff}
    :focus-visible{outline:2px solid rgba(54,242,163,.88);outline-offset:4px;border-radius:10px}
    .grid-container{max-width:1220px}
    .top-bar-wrap{
      position:sticky;
      top:0;
      z-index:1000;
      min-height:var(--nav-h);
      background:rgba(7,17,31,.72);
      border-bottom:1px solid rgba(255,255,255,.08);
      backdrop-filter:blur(18px);
      box-shadow:0 12px 40px rgba(0,0,0,.20);
    }
    .site-nav{
      min-height:var(--nav-h);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:800;
      letter-spacing:.02em;
      color:var(--text);
      white-space:nowrap;
    }
    .brand{font-size:18px}
    .brand-mark{
      width:36px;
      height:36px;
      border-radius:12px;
      display:inline-block;
      position:relative;
      background:
        linear-gradient(135deg, rgba(47,140,255,.95), rgba(54,242,163,.82)),
        radial-gradient(circle at 70% 22%, #fff, transparent 20%);
      box-shadow:0 0 28px rgba(47,140,255,.36);
      flex:0 0 auto;
    }
    .brand-mark:before{
      content:"";
      position:absolute;
      left:8px;
      right:8px;
      top:11px;
      height:3px;
      border-radius:4px;
      background:rgba(255,255,255,.86);
      box-shadow:0 7px 0 rgba(255,255,255,.62);
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      right:8px;
      bottom:7px;
      width:7px;
      height:7px;
      border-radius:50%;
      background:#07111f;
      box-shadow:0 0 0 2px rgba(255,255,255,.42);
    }
    .nav-menu{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:4px;
      margin:0;
      list-style:none;
      flex:1;
    }
    .nav-menu a{
      position:relative;
      display:inline-flex;
      align-items:center;
      min-height:38px;
      padding:8px 12px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      letter-spacing:.02em;
    }
    .nav-menu a:after{
      content:"";
      position:absolute;
      left:16px;
      right:16px;
      bottom:3px;
      height:2px;
      border-radius:999px;
      transform:scaleX(0);
      transform-origin:center;
      background:linear-gradient(90deg,var(--primary),var(--secondary));
      transition:transform .22s ease;
    }
    .nav-menu a:hover{color:var(--text);background:rgba(255,255,255,.045)}
    .nav-menu a:hover:after,.nav-menu a.active:after{transform:scaleX(1)}
    .nav-menu a.active{
      color:var(--text);
      background:rgba(47,140,255,.10);
      border:1px solid rgba(47,140,255,.22);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .btn{
      min-height:44px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:12px 20px;
      line-height:1;
      font-size:14px;
      font-weight:700;
      border:1px solid transparent;
      white-space:nowrap;
      position:relative;
      overflow:hidden;
    }
    .btn:before{
      content:"";
      position:absolute;
      inset:0;
      transform:translateX(-120%);
      background:linear-gradient(90deg, transparent, rgba(255,255,255,.25), transparent);
      transition:transform .55s ease;
    }
    .btn:hover:before{transform:translateX(120%)}
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#22bfff 45%,var(--secondary));
      box-shadow:var(--glow);
    }
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 0 34px rgba(47,140,255,.52)}
    .btn-ghost{
      color:var(--text);
      background:rgba(255,255,255,.055);
      border-color:rgba(255,255,255,.14);
      backdrop-filter:blur(12px);
    }
    .btn-ghost:hover{transform:translateY(-2px);border-color:rgba(54,242,163,.36);background:rgba(54,242,163,.08)}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid var(--border);
      border-radius:14px;
      background:rgba(255,255,255,.05);
      padding:10px;
    }
    .menu-toggle span{
      display:block;
      height:2px;
      margin:5px 0;
      border-radius:4px;
      background:var(--text);
      transition:transform .22s ease,opacity .22s ease;
    }
    .menu-toggle.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
    .menu-toggle.is-open span:nth-child(2){opacity:0}
    .menu-toggle.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
    main{position:relative}
    .section{padding:96px 0}
    .section-tight{padding:72px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border:1px solid rgba(54,242,163,.22);
      border-radius:999px;
      color:#c9ffea;
      background:rgba(54,242,163,.07);
      font-size:13px;
      font-weight:700;
      letter-spacing:.06em;
    }
    .eyebrow:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--secondary);
      box-shadow:0 0 12px rgba(54,242,163,.75);
    }
    .hero{
      min-height:690px;
      padding:92px 0 72px;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(90deg, rgba(7,17,31,.96), rgba(7,17,31,.64) 58%, rgba(7,17,31,.86)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.34;
      background:
        radial-gradient(circle at 50% 46%, transparent 0 72px, rgba(54,242,163,.28) 74px, transparent 76px),
        linear-gradient(90deg, transparent 49.8%, rgba(54,242,163,.20) 50%, transparent 50.2%),
        linear-gradient(0deg, transparent 49.8%, rgba(47,140,255,.18) 50%, transparent 50.2%);
      background-size:100% 100%,100% 100%,100% 100%;
      pointer-events:none;
    }
    .hero:after{
      content:"";
      position:absolute;
      inset:auto -8% -38% -8%;
      height:58%;
      background:radial-gradient(ellipse at center, rgba(47,140,255,.22), transparent 66%);
      pointer-events:none;
    }
    .hero .grid-container{position:relative;z-index:2}
    .breadcrumbs{
      display:flex;
      flex-wrap:wrap;
      align-items:center;
      gap:9px;
      color:var(--weak);
      font-size:14px;
      margin-bottom:24px;
    }
    .breadcrumbs a{color:var(--muted)}
    .breadcrumbs a:hover{color:var(--secondary)}
    .hero h1{
      margin:18px 0 18px;
      max-width:720px;
      font-size:56px;
      line-height:1.12;
      font-weight:800;
      letter-spacing:-.035em;
      color:var(--text);
    }
    .hero p.lead{
      max-width:660px;
      color:var(--muted);
      font-size:18px;
      line-height:1.85;
      margin-bottom:28px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin:30px 0}
    .hero-points{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:0;
      list-style:none;
    }
    .hero-points li{
      padding:8px 12px;
      border-radius:999px;
      color:var(--muted);
      background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.10);
      font-size:13px;
    }
    .topic-wall{
      position:relative;
      min-height:530px;
    }
    .poster-main{
      position:relative;
      min-height:340px;
      border-radius:var(--radius-xl);
      padding:28px;
      overflow:hidden;
      border:1px solid rgba(120,178,255,.26);
      background:
        linear-gradient(180deg, rgba(12,28,52,.18), rgba(7,17,31,.86)),
        url("/assets/images/coverpic/cover-10.webp") center/cover no-repeat;
      box-shadow:var(--shadow),0 0 42px rgba(47,140,255,.14);
    }
    .poster-main:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 72% 20%, rgba(255,184,77,.22), transparent 26%),
        linear-gradient(135deg, rgba(47,140,255,.16), transparent 42%, rgba(54,242,163,.10));
      pointer-events:none;
    }
    .poster-content{position:relative;z-index:2;display:flex;flex-direction:column;justify-content:space-between;min-height:284px}
    .poster-labels{display:flex;flex-wrap:wrap;gap:9px}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      min-height:28px;
      padding:6px 10px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.13);
      color:var(--muted);
      background:rgba(255,255,255,.06);
      font-size:12px;
      font-weight:700;
    }
    .tag.hot{color:#ffe4b5;border-color:rgba(255,184,77,.30);background:rgba(255,184,77,.10)}
    .tag.live{color:#c9ffea;border-color:rgba(54,242,163,.28);background:rgba(54,242,163,.08)}
    .poster-main h2{
      margin:0 0 10px;
      font-size:32px;
      line-height:1.22;
      font-weight:800;
    }
    .poster-main p{margin:0;color:#d4e0ef;max-width:470px}
    .poster-meta{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:18px;
      color:var(--muted);
      font-size:13px;
    }
    .mini-topic-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:16px;
      margin-top:16px;
    }
    .mini-topic{
      position:relative;
      overflow:hidden;
      min-height:156px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.10);
      background:var(--panel);
      box-shadow:0 18px 50px rgba(0,0,0,.22);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }
    .mini-topic:hover{
      transform:translateY(-4px);
      border-color:rgba(54,242,163,.28);
      box-shadow:0 24px 60px rgba(0,0,0,.30),0 0 22px rgba(54,242,163,.10);
    }
    .mini-topic img{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      opacity:.48;
    }
    .mini-topic .mini-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(7,17,31,.18), rgba(7,17,31,.88));
    }
    .mini-topic .mini-body{
      position:relative;
      z-index:2;
      min-height:156px;
      padding:18px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .mini-topic h3{
      font-size:18px;
      line-height:1.35;
      margin:0;
      color:var(--text);
    }
    .mini-topic span{font-size:13px;color:var(--muted)}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:34px;
    }
    .section-title{max-width:780px}
    .section-title h2{
      margin:12px 0 10px;
      font-size:36px;
      line-height:1.25;
      font-weight:800;
      letter-spacing:-.02em;
    }
    .section-title p{
      margin:0;
      color:var(--muted);
      font-size:16px;
      max-width:720px;
    }
    .glass-card{
      border:1px solid var(--border-blue);
      border-radius:var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(255,255,255,.035), transparent),
        var(--panel);
      backdrop-filter:blur(16px);
      box-shadow:var(--shadow);
      transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
    }
    .glass-card:hover{
      transform:translateY(-4px);
      border-color:rgba(120,178,255,.36);
      box-shadow:0 26px 78px rgba(0,0,0,.42),0 0 26px rgba(47,140,255,.14);
    }
    .stage-board{padding:28px}
    .stage-row{
      display:grid;
      grid-template-columns:160px 1fr 120px;
      gap:18px;
      align-items:center;
      padding:20px 0;
      border-bottom:1px solid rgba(255,255,255,.09);
    }
    .stage-row:last-child{border-bottom:none}
    .stage-name{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      color:var(--text);
    }
    .stage-dot{
      width:14px;
      height:14px;
      border-radius:50%;
      background:rgba(255,255,255,.18);
      border:2px solid rgba(255,255,255,.22);
    }
    .stage-row.done .stage-dot{background:var(--secondary);box-shadow:0 0 16px rgba(54,242,163,.60)}
    .stage-row.current .stage-dot{background:var(--accent);box-shadow:0 0 16px rgba(255,184,77,.62)}
    .progress-track{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
    }
    .progress-bar{
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--secondary));
      box-shadow:0 0 18px rgba(47,140,255,.42);
    }
    .stage-note{color:var(--muted);font-size:14px;text-align:right}
    .topic-matrix{
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:16px;
    }
    .topic-card{
      padding:22px;
      min-height:220px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .topic-icon{
      width:46px;
      height:46px;
      display:grid;
      place-items:center;
      border-radius:16px;
      color:#fff;
      background:linear-gradient(135deg, rgba(47,140,255,.88), rgba(54,242,163,.70));
      box-shadow:0 0 24px rgba(47,140,255,.24);
      font-family:var(--num);
      font-weight:800;
    }
    .topic-card h3{
      margin:18px 0 8px;
      font-size:20px;
      line-height:1.32;
      font-weight:800;
    }
    .topic-card p{margin:0;color:var(--muted);font-size:14px;line-height:1.68}
    .topic-link{
      display:inline-flex;
      align-items:center;
      gap:7px;
      margin-top:18px;
      color:#cfe6ff;
      font-size:14px;
      font-weight:700;
    }
    .topic-link:hover{color:var(--secondary)}
    .match-strip{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .match-row{
      display:grid;
      grid-template-columns:120px 1fr 120px 130px;
      gap:16px;
      align-items:center;
      padding:18px 20px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.045);
      transition:background .22s ease,border-color .22s ease,transform .22s ease;
    }
    .match-row:hover{
      transform:translateX(4px);
      background:rgba(47,140,255,.075);
      border-color:rgba(47,140,255,.28);
    }
    .match-time{color:var(--muted);font-size:14px}
    .match-teams{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      min-width:0;
      font-weight:800;
    }
    .versus{
      color:var(--weak);
      font-family:var(--num);
      font-weight:800;
      letter-spacing:.08em;
    }
    .match-status{
      justify-self:start;
      padding:6px 10px;
      border-radius:999px;
      color:#c9ffea;
      background:rgba(54,242,163,.08);
      border:1px solid rgba(54,242,163,.25);
      font-size:12px;
      font-weight:800;
    }
    .match-brief{color:var(--muted);font-size:14px;text-align:right}
    .feature-split{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:24px;
      align-items:stretch;
    }
    .article-panel{
      overflow:hidden;
    }
    .article-cover{
      position:relative;
      min-height:280px;
      overflow:hidden;
      border-radius:var(--radius-lg) var(--radius-lg) 0 0;
    }
    .article-cover img{
      width:100%;
      height:280px;
      object-fit:cover;
    }
    .article-cover:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg, rgba(7,17,31,.05), rgba(7,17,31,.92));
    }
    .article-body{padding:26px}
    .article-body h3{
      margin:12px 0 10px;
      font-size:26px;
      line-height:1.28;
      font-weight:800;
    }
    .article-body p{margin:0;color:var(--muted)}
    .article-meta{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
      color:var(--weak);
      font-size:13px;
    }
    .stack-list{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .stack-item{
      padding:18px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.10);
      background:rgba(255,255,255,.045);
    }
    .stack-item h3{
      margin:0 0 8px;
      font-size:18px;
      line-height:1.38;
      font-weight:800;
    }
    .stack-item p{margin:0;color:var(--muted);font-size:14px}
    .guide-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .guide-card{
      padding:24px;
    }
    .guide-card h3{
      margin:0 0 10px;
      font-size:20px;
      font-weight:800;
    }
    .guide-card p{margin:0;color:var(--muted)}
    .guide-card ul{
      margin:18px 0 0;
      padding:0;
      list-style:none;
      display:grid;
      gap:10px;
    }
    .guide-card li{
      position:relative;
      padding-left:18px;
      color:var(--muted);
      font-size:14px;
    }
    .guide-card li:before{
      content:"";
      position:absolute;
      left:0;
      top:.72em;
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--secondary);
      box-shadow:0 0 10px rgba(54,242,163,.55);
    }
    .faq-wrap{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:28px;
      align-items:start;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border:1px solid rgba(255,255,255,.10);
      border-radius:18px;
      overflow:hidden;
      background:rgba(255,255,255,.045);
    }
    .accordion-title{
      border:none;
      color:var(--text);
      font-size:16px;
      font-weight:800;
      padding:19px 48px 19px 20px;
      background:transparent;
    }
    .accordion-title:hover,.accordion-title:focus{
      background:rgba(47,140,255,.08);
      color:var(--text);
    }
    .accordion-title:before{color:var(--secondary);font-size:22px;margin-top:-13px}
    .accordion-content{
      border:none;
      color:var(--muted);
      background:rgba(7,17,31,.35);
      padding:0 20px 20px;
      line-height:1.85;
    }
    .cta{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      padding:44px;
      border:1px solid rgba(120,178,255,.23);
      background:
        linear-gradient(135deg, rgba(47,140,255,.20), rgba(54,242,163,.10)),
        linear-gradient(180deg, rgba(12,28,52,.92), rgba(7,17,31,.92));
      box-shadow:var(--shadow),0 0 42px rgba(47,140,255,.16);
    }
    .cta:before{
      content:"";
      position:absolute;
      inset:0;
      opacity:.18;
      background-image:
        linear-gradient(90deg, transparent 49.5%, rgba(54,242,163,.45) 50%, transparent 50.5%),
        radial-gradient(circle at 50% 50%, transparent 0 80px, rgba(47,140,255,.62) 81px, transparent 83px);
      pointer-events:none;
    }
    .cta-inner{
      position:relative;
      z-index:2;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:28px;
    }
    .cta h2{
      margin:0 0 10px;
      font-size:34px;
      line-height:1.25;
      font-weight:800;
    }
    .cta p{margin:0;color:var(--muted);max-width:680px}
    .cta-actions{display:flex;gap:12px;flex-wrap:wrap;flex:0 0 auto}
    .site-footer{
      padding:70px 0 32px;
      background:#050b16;
      border-top:1px solid rgba(255,255,255,.09);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .8fr .9fr .9fr;
      gap:34px;
      padding-bottom:36px;
    }
    .footer-title{
      margin-bottom:14px;
      color:var(--text);
      font-weight:800;
      font-size:16px;
    }
    .site-footer p{
      margin:16px 0 0;
      color:var(--muted);
      max-width:380px;
      font-size:14px;
      line-height:1.8;
    }
    .footer-links{
      margin:0;
      padding:0;
      list-style:none;
      display:grid;
      gap:9px;
      color:var(--muted);
      font-size:14px;
    }
    .footer-links a{color:var(--muted)}
    .footer-links a:hover{color:var(--primary)}
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.08);
      padding-top:22px;
      text-align:center;
      color:#8b98ad;
      font-size:13px;
      line-height:1.9;
    }
    .footer-bottom a{color:#9ba8bd}
    .footer-bottom a:hover{color:var(--secondary)}
    @media (max-width:1120px){
      .nav-menu a{padding:8px 9px;font-size:13px}
      .nav-actions .btn{padding:11px 14px}
      .topic-matrix{grid-template-columns:repeat(3,1fr)}
      .hero h1{font-size:48px}
    }
    @media (max-width:1024px){
      .site-nav{flex-wrap:wrap;padding:14px 0}
      .menu-toggle{display:inline-block}
      .nav-menu{
        order:3;
        flex-basis:100%;
        display:none;
        justify-content:flex-start;
        flex-wrap:wrap;
        padding:12px;
        border:1px solid var(--border);
        border-radius:20px;
        background:rgba(7,17,31,.94);
      }
      .nav-menu.is-open{display:flex}
      .nav-actions{margin-left:auto}
      .hero{padding-top:72px}
      .topic-wall{margin-top:34px}
      .section{padding:82px 0}
      .feature-split,.faq-wrap{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:768px){
      :root{--nav-h:66px}
      .grid-container{padding-left:18px;padding-right:18px}
      .brand{font-size:16px}
      .brand-mark{width:32px;height:32px;border-radius:11px}
      .nav-actions{display:none}
      .nav-menu{gap:6px}
      .nav-menu a{width:100%;justify-content:space-between}
      .hero{min-height:auto;padding:50px 0 58px}
      .hero h1{font-size:38px;letter-spacing:-.02em}
      .hero p.lead{font-size:16px}
      .hero-actions .btn{width:100%}
      .mini-topic-grid{grid-template-columns:1fr}
      .poster-main{min-height:310px;padding:22px}
      .poster-content{min-height:260px}
      .poster-main h2{font-size:26px}
      .section,.section-tight{padding:64px 0}
      .section-head{display:block}
      .section-title h2{font-size:30px}
      .stage-row{grid-template-columns:1fr;gap:10px}
      .stage-note{text-align:left}
      .topic-matrix{grid-template-columns:1fr}
      .match-row{grid-template-columns:1fr;gap:10px}
      .match-teams{justify-content:flex-start;flex-wrap:wrap}
      .match-brief{text-align:left}
      .guide-grid{grid-template-columns:1fr}
      .cta{padding:30px 22px}
      .cta-inner{display:block}
      .cta h2{font-size:28px}
      .cta-actions{margin-top:22px}
      .cta-actions .btn{width:100%}
      .footer-grid{grid-template-columns:1fr;gap:26px}
    }
    @media (max-width:520px){
      .hero h1{font-size:33px}
      .section-title h2{font-size:27px}
      .match-row,.stage-board,.topic-card,.guide-card,.article-body{padding:18px}
      .article-cover,.article-cover img{min-height:220px;height:220px}
      .poster-meta{display:grid}
      .hero-points{display:grid}
    }
