/* roulang page: index */
:root{
      --bg:#0b0f14;
      --bg-soft:#10151c;
      --bg-panel:#131922;
      --bg-panel-2:#171f2a;
      --line:#243041;
      --line-2:#334257;
      --text:#edf4fb;
      --muted:#9aa8b7;
      --muted-2:#7f8a98;
      --accent:#18f0c4;
      --accent-2:#6df7ff;
      --accent-3:#ff6d8e;
      --warn:#ffaf45;
      --good:#69ff93;
      --shadow:0 18px 40px rgba(0,0,0,.34);
      --shadow-soft:0 10px 24px rgba(0,0,0,.24);
      --radius:20px;
      --radius-sm:14px;
      --radius-xs:10px;
      --container:1240px;
      --header-h:78px;
      --space:clamp(16px,2vw,24px);
      --space-lg:clamp(24px,3.2vw,40px);
      --transition:.24s cubic-bezier(.2,.7,.2,1);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",system-ui,-apple-system,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left, rgba(24,240,196,.12), transparent 28%),
        radial-gradient(circle at top right, rgba(109,247,255,.09), transparent 24%),
        linear-gradient(180deg, #091017 0%, #0b0f14 28%, #0a0d12 100%);
      min-height:100vh;
      line-height:1.65;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.2) 80%, transparent);
      opacity:.35;
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(24,240,196,.25);color:#fff}
    ::-webkit-scrollbar{width:10px;height:10px}
    ::-webkit-scrollbar-thumb{background:linear-gradient(180deg, rgba(24,240,196,.55), rgba(109,247,255,.55));border-radius:999px}
    ::-webkit-scrollbar-track{background:#070a0f}

    .container{
      width:min(var(--container), calc(100% - 32px));
      margin-inline:auto;
    }

    .topbar{
      position:relative;
      z-index:12;
      background:linear-gradient(90deg, rgba(24,240,196,.12), rgba(109,247,255,.06), rgba(255,109,142,.08));
      border-bottom:1px solid rgba(255,255,255,.06);
      color:#dfe9f3;
      font-size:13px;
      backdrop-filter:blur(12px);
    }
    .topbar-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      min-height:38px;
      padding:8px 0;
      flex-wrap:wrap;
    }
    .topbar .chips{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
    }
    .mini-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border:1px solid rgba(255,255,255,.09);
      border-radius:999px;
      background:rgba(255,255,255,.03);
      color:#f1f6fb;
      white-space:nowrap;
    }
    .mini-chip strong{color:var(--accent)}
    .mini-link{
      color:var(--accent-2);
      text-decoration:none;
      font-weight:600;
      transition:color var(--transition);
    }
    .mini-link:hover{color:#fff}

    header.site-header{
      position:sticky;
      top:0;
      z-index:60;
      background:rgba(9,13,18,.76);
      backdrop-filter:blur(16px);
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .header-inner{
      display:flex;
      align-items:center;
      gap:18px;
      min-height:var(--header-h);
      padding:14px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:220px;
      flex-shrink:0;
    }
    .brand-mark{
      width:44px;
      height:44px;
      border-radius:14px;
      background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,.82), rgba(255,255,255,.12) 28%, transparent 29%),
        linear-gradient(145deg, rgba(24,240,196,.95), rgba(109,247,255,.82) 52%, rgba(255,109,142,.82));
      box-shadow:0 12px 28px rgba(24,240,196,.18);
      position:relative;
      overflow:hidden;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:10px;
      border:1px solid rgba(255,255,255,.65);
      border-radius:10px;
      opacity:.65;
    }
    .brand-text{
      display:flex;
      flex-direction:column;
      gap:2px;
      min-width:0;
    }
    .brand-text strong{
      font-size:16px;
      letter-spacing:.2px;
      line-height:1.15;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .brand-text span{
      font-size:12px;
      color:var(--muted);
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .nav-wrap{
      display:flex;
      align-items:center;
      gap:16px;
      flex:1;
      min-width:0;
    }
    .site-nav{
      display:flex;
      align-items:center;
      gap:8px;
      flex-wrap:wrap;
    }
    .site-nav a{
      position:relative;
      padding:11px 14px;
      border-radius:12px;
      color:#d8e4ef;
      font-size:14px;
      border:1px solid transparent;
      transition:transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition), box-shadow var(--transition);
    }
    .site-nav a::after{
      content:"";
      position:absolute;
      left:14px;
      right:14px;
      bottom:7px;
      height:2px;
      border-radius:999px;
      background:linear-gradient(90deg, rgba(24,240,196,.0), rgba(24,240,196,.9), rgba(109,247,255,.8));
      transform:scaleX(0);
      transform-origin:center;
      transition:transform var(--transition);
    }
    .site-nav a:hover,
    .site-nav a:focus-visible{
      color:#fff;
      border-color:rgba(24,240,196,.35);
      background:rgba(255,255,255,.03);
      box-shadow:0 10px 20px rgba(0,0,0,.15);
      transform:translateY(-1px);
      outline:none;
    }
    .site-nav a:hover::after,
    .site-nav a:focus-visible::after,
    .site-nav a.active::after{
      transform:scaleX(1);
    }
    .site-nav a.active{
      color:#fff;
      border-color:rgba(24,240,196,.38);
      background:linear-gradient(180deg, rgba(24,240,196,.12), rgba(255,255,255,.02));
      box-shadow:0 12px 28px rgba(24,240,196,.09);
    }

    .header-actions{
      display:flex;
      align-items:center;
      gap:10px;
      margin-left:auto;
      flex-shrink:0;
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:8px;
      min-width:280px;
      padding:9px 12px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:14px;
      background:rgba(255,255,255,.03);
      transition:border-color var(--transition), box-shadow var(--transition), background var(--transition);
    }
    .search-box:focus-within{
      border-color:rgba(24,240,196,.55);
      background:rgba(255,255,255,.045);
      box-shadow:0 0 0 4px rgba(24,240,196,.08);
    }
    .search-box input{
      width:100%;
      border:none;
      outline:none;
      background:transparent;
      color:var(--text);
      font-size:14px;
    }
    .search-box input::placeholder{color:#8793a1}
    .search-box button{
      border:none;
      background:linear-gradient(135deg, rgba(24,240,196,.88), rgba(109,247,255,.74));
      color:#00151a;
      font-weight:700;
      padding:8px 14px;
      border-radius:12px;
      transition:transform var(--transition), filter var(--transition);
      white-space:nowrap;
    }
    .search-box button:hover{transform:translateY(-1px);filter:brightness(1.06)}
    .search-box button:focus-visible{outline:3px solid rgba(24,240,196,.35);outline-offset:2px}

    .header-btns{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      padding:11px 16px;
      border-radius:14px;
      border:1px solid transparent;
      font-size:14px;
      font-weight:700;
      transition:transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition), opacity var(--transition);
      white-space:nowrap;
      line-height:1;
    }
    .btn:hover{transform:translateY(-1px)}
    .btn:focus-visible{outline:3px solid rgba(24,240,196,.28);outline-offset:2px}
    .btn-primary{
      color:#04161a;
      background:linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow:0 14px 28px rgba(24,240,196,.14);
    }
    .btn-primary:hover{box-shadow:0 18px 34px rgba(24,240,196,.18)}
    .btn-secondary{
      color:#dce7f2;
      border-color:rgba(255,255,255,.12);
      background:rgba(255,255,255,.03);
    }
    .btn-secondary:hover{
      background:rgba(255,255,255,.06);
      border-color:rgba(24,240,196,.34);
    }
    .btn-ghost{
      color:#dce7f2;
      border-color:rgba(255,255,255,.09);
      background:transparent;
    }
    .btn-ghost:hover{
      background:rgba(255,255,255,.04);
      border-color:rgba(255,255,255,.18);
    }
    .menu-toggle{
      display:none;
      align-items:center;
      justify-content:center;
      width:46px;
      height:46px;
      border-radius:14px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.03);
      color:#fff;
      transition:background var(--transition), border-color var(--transition), transform var(--transition);
    }
    .menu-toggle:hover{transform:translateY(-1px);border-color:rgba(24,240,196,.35);background:rgba(255,255,255,.06)}
    .menu-toggle:focus-visible{outline:3px solid rgba(24,240,196,.28);outline-offset:2px}

    .hero{
      position:relative;
      padding:28px 0 20px;
    }
    .hero-shell{
      position:relative;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
      border-radius:28px;
      background:
        linear-gradient(135deg, rgba(7,10,14,.72), rgba(7,10,14,.4)),
        url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
      box-shadow:var(--shadow);
    }
    .hero-shell::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 10% 10%, rgba(24,240,196,.22), transparent 22%),
        radial-gradient(circle at 80% 22%, rgba(255,109,142,.16), transparent 26%),
        linear-gradient(180deg, rgba(5,8,12,.18), rgba(5,8,12,.68));
      pointer-events:none;
    }
    .hero-content{
      position:relative;
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:24px;
      padding:clamp(26px,4vw,48px);
      min-height:690px;
      align-items:stretch;
    }
    .hero-copy{
      display:flex;
      flex-direction:column;
      justify-content:space-between;
      gap:22px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      width:fit-content;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(24,240,196,.22);
      background:rgba(24,240,196,.08);
      color:#bffef2;
      font-size:13px;
      letter-spacing:.2px;
    }
    .eyebrow .dot{
      width:8px;height:8px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 6px rgba(24,240,196,.12);
    }
    .hero h1{
      margin:14px 0 14px;
      font-size:clamp(32px,4.2vw,58px);
      line-height:1.08;
      letter-spacing:-.03em;
      max-width:10.4em;
    }
    .hero p{
      margin:0;
      max-width:700px;
      color:#d4deea;
      font-size:clamp(15px,1.38vw,18px);
    }
    .hero-actions{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin-top:8px;
    }
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      margin-top:auto;
    }
    .stat-card{
      padding:16px 16px 15px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.09);
      background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
      backdrop-filter:blur(8px);
      box-shadow:var(--shadow-soft);
      min-height:100px;
    }
    .stat-card strong{
      display:block;
      font-size:28px;
      line-height:1;
      letter-spacing:-.03em;
      color:#fff;
      margin-bottom:8px;
    }
    .stat-card span{
      display:block;
      color:var(--muted);
      font-size:13px;
    }
    .stat-card .tag{
      display:inline-flex;
      align-items:center;
      margin-top:10px;
      font-size:12px;
      color:#cffef6;
      padding:5px 8px;
      border-radius:999px;
      background:rgba(24,240,196,.08);
      border:1px solid rgba(24,240,196,.16);
    }

    .hero-side{
      display:grid;
      gap:14px;
      align-content:start;
    }
    .hero-preview{
      overflow:hidden;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.09);
      background:rgba(12,16,22,.6);
      box-shadow:var(--shadow-soft);
      min-height:262px;
    }
    .hero-preview .img-wrap{
      position:relative;
      aspect-ratio:16/10;
      overflow:hidden;
    }
    .hero-preview img{
      width:100%;
      height:100%;
      object-fit:cover;
      filter:saturate(1.08) contrast(1.05);
      transform:scale(1.02);
    }
    .preview-overlay{
      position:absolute;
      inset:auto 16px 16px 16px;
      padding:12px 14px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(6,8,12,.26), rgba(6,8,12,.78));
      border:1px solid rgba(255,255,255,.1);
      backdrop-filter:blur(10px);
    }
    .preview-overlay strong{
      display:block;
      font-size:17px;
      margin-bottom:4px;
    }
    .preview-overlay p{
      margin:0;
      font-size:13px;
      color:#d8e4ef;
    }
    .hero-board{
      display:grid;
      gap:12px;
    }
    .board-card{
      border-radius:20px;
      border:1px solid rgba(255,255,255,.08);
      background:rgba(11,16,22,.72);
      box-shadow:var(--shadow-soft);
      padding:16px;
    }
    .board-card h3{
      margin:0 0 12px;
      font-size:16px;
      display:flex;
      align-items:center;
      gap:10px;
    }
    .board-card h3::before{
      content:"";
      width:10px;height:10px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(24,240,196,.12);
    }
    .board-list{
      display:grid;
      gap:10px;
    }
    .board-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 14px;
      border-radius:16px;
      background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
      border:1px solid rgba(255,255,255,.06);
    }
    .board-item .left{
      min-width:0;
    }
    .board-item .left strong{
      display:block;
      font-size:14px;
      margin-bottom:3px;
    }
    .board-item .left span{
      font-size:12px;
      color:var(--muted);
    }
    .board-item .right{
      text-align:right;
      flex-shrink:0;
    }
    .board-item .right strong{
      display:block;
      color:#fff;
      font-size:16px;
      line-height:1.05;
    }
    .board-item .right span{
      display:block;
      font-size:12px;
      color:#86ffd6;
    }
    .signal-row{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:6px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:#e8f2fb;
      font-size:12px;
      white-space:nowrap;
    }
    .pill strong{color:var(--accent)}
    .pill.warn strong{color:var(--warn)}
    .pill.hot strong{color:var(--accent-3)}

    .ticker{
      margin-top:14px;
      padding:0 0 12px;
    }
    .ticker-inner{
      overflow:auto;
      scrollbar-width:none;
      -ms-overflow-style:none;
    }
    .ticker-inner::-webkit-scrollbar{display:none}
    .ticker-track{
      display:flex;
      gap:10px;
      min-width:max-content;
    }

    main{padding:12px 0 0}
    section{
      padding:26px 0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:18px;
      margin-bottom:18px;
      flex-wrap:wrap;
    }
    .section-head h2{
      margin:0;
      font-size:clamp(22px,2.2vw,32px);
      line-height:1.15;
      letter-spacing:-.02em;
    }
    .section-head p{
      margin:0;
      color:var(--muted);
      max-width:720px;
      font-size:14px;
    }
    .section-link{
      color:var(--accent-2);
      font-size:14px;
      font-weight:700;
      transition:color var(--transition);
    }
    .section-link:hover{color:#fff}

    .spotlight-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:16px;
    }
    .spotlight-main,
    .spotlight-side{
      display:grid;
      gap:16px;
    }
    .spot-card{
      overflow:hidden;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.02));
      box-shadow:var(--shadow-soft);
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .spot-card:hover{
      transform:translateY(-3px);
      border-color:rgba(24,240,196,.22);
      box-shadow:0 18px 34px rgba(0,0,0,.28);
    }
    .spot-cover{
      position:relative;
      aspect-ratio:16/9;
      overflow:hidden;
    }
    .spot-cover img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform var(--transition), filter var(--transition);
    }
    .spot-card:hover .spot-cover img{
      transform:scale(1.04);
      filter:saturate(1.12);
    }
    .spot-badge{
      position:absolute;
      left:16px;
      top:16px;
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 10px;
      border-radius:999px;
      background:rgba(4,8,12,.72);
      border:1px solid rgba(255,255,255,.12);
      color:#fff;
      font-size:12px;
      backdrop-filter:blur(8px);
    }
    .spot-badge i{
      width:7px;height:7px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(24,240,196,.14);
      display:inline-block;
    }
    .spot-body{
      padding:18px 18px 20px;
    }
    .spot-body h3{
      margin:0 0 8px;
      font-size:20px;
      line-height:1.25;
    }
    .spot-body p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:14px;
    }
    .meta-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      flex-wrap:wrap;
    }
    .meta-tags{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.04);
      border:1px solid rgba(255,255,255,.08);
      color:#dce8f5;
      font-size:12px;
    }
    .tag.accent{
      background:rgba(24,240,196,.08);
      border-color:rgba(24,240,196,.18);
      color:#c7fff2;
    }
    .tag.warn{
      background:rgba(255,175,69,.08);
      border-color:rgba(255,175,69,.18);
      color:#ffe0b5;
    }
    .tag.hot{
      background:rgba(255,109,142,.08);
      border-color:rgba(255,109,142,.18);
      color:#ffd1dc;
    }

    .side-mini{
      padding:18px;
      border-radius:22px;
      background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.022));
      border:1px solid rgba(255,255,255,.08);
      box-shadow:var(--shadow-soft);
      display:grid;
      gap:12px;
    }
    .side-mini h3{
      margin:0;
      font-size:18px;
    }
    .mini-list{
      display:grid;
      gap:10px;
    }
    .mini-list .row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.035);
      border:1px solid rgba(255,255,255,.07);
    }
    .mini-list .row strong{
      font-size:14px;
    }
    .mini-list .row span{
      color:var(--muted);
      font-size:12px;
    }
    .calendar{
      display:grid;
      gap:8px;
    }
    .calendar-item{
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:10px 12px;
      border-radius:14px;
      background:rgba(255,255,255,.035);
      border:1px solid rgba(255,255,255,.07);
    }
    .calendar-time{
      flex-shrink:0;
      min-width:54px;
      padding:6px 8px;
      border-radius:10px;
      background:rgba(24,240,196,.1);
      color:#d3fff6;
      font-size:12px;
      text-align:center;
      border:1px solid rgba(24,240,196,.16);
    }
    .calendar-item div{
      min-width:0;
    }
    .calendar-item strong{
      display:block;
      font-size:14px;
      margin-bottom:2px;
    }
    .calendar-item p{
      margin:0;
      font-size:12px;
      color:var(--muted);
    }

    .match-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:16px;
      align-items:start;
    }
    .match-panel,
    .panel-card{
      padding:18px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.02));
      box-shadow:var(--shadow-soft);
    }
    .match-list{
      display:grid;
      gap:12px;
    }
    .match-row{
      display:grid;
      grid-template-columns:1fr auto;
      gap:14px;
      align-items:center;
      padding:14px 14px;
      border-radius:18px;
      background:rgba(255,255,255,.035);
      border:1px solid rgba(255,255,255,.07);
      transition:transform var(--transition), border-color var(--transition), background var(--transition);
    }
    .match-row:hover{
      transform:translateY(-2px);
      border-color:rgba(24,240,196,.2);
      background:rgba(255,255,255,.05);
    }
    .match-title{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      margin-bottom:8px;
    }
    .match-title strong{
      font-size:16px;
    }
    .match-title .live{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:5px 8px;
      border-radius:999px;
      background:rgba(255,109,142,.1);
      border:1px solid rgba(255,109,142,.18);
      color:#ffd7df;
      font-size:12px;
    }
    .match-title .live::before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:var(--accent-3);
      box-shadow:0 0 0 5px rgba(255,109,142,.12);
    }
    .match-row p{
      margin:0 0 10px;
      color:var(--muted);
      font-size:14px;
    }
    .progress{
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      overflow:hidden;
      border:1px solid rgba(255,255,255,.05);
    }
    .progress > span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg, var(--accent), var(--accent-2));
    }
    .score-box{
      min-width:110px;
      text-align:right;
    }
    .score-box strong{
      display:block;
      font-size:26px;
      letter-spacing:-.03em;
      line-height:1;
    }
    .score-box span{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-size:12px;
    }
    .schedule-card{
      display:grid;
      gap:12px;
    }
    .schedule-card .head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
    }
    .schedule-card .head h3{margin:0;font-size:18px}
    .schedule-card .head .chip{
      padding:6px 10px;
      border-radius:999px;
      background:rgba(24,240,196,.08);
      color:#cbfff4;
      border:1px solid rgba(24,240,196,.18);
      font-size:12px;
    }

    .team-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .team-card{
      overflow:hidden;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.02));
      box-shadow:var(--shadow-soft);
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .team-card:hover{
      transform:translateY(-3px);
      border-color:rgba(109,247,255,.22);
      box-shadow:0 18px 32px rgba(0,0,0,.28);
    }
    .team-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:16px 16px 0;
    }
    .team-head strong{
      font-size:17px;
    }
    .team-head .rank{
      font-size:12px;
      color:#0b171c;
      background:linear-gradient(135deg, var(--accent), var(--accent-2));
      padding:6px 9px;
      border-radius:999px;
      font-weight:800;
    }
    .team-cover{
      padding:14px 14px 0;
    }
    .team-cover img{
      width:100%;
      aspect-ratio:4/3;
      object-fit:cover;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.08);
    }
    .team-body{
      padding:14px 16px 16px;
    }
    .team-body p{
      margin:0 0 12px;
      color:var(--muted);
      font-size:13px;
      min-height:44px;
    }
    .team-metrics{
      display:grid;
      gap:10px;
    }
    .metric-line{
      display:grid;
      grid-template-columns:80px 1fr auto;
      gap:10px;
      align-items:center;
      font-size:12px;
    }
    .metric-line span:first-child{color:#dce8f5}
    .metric-line .bar{
      position:relative;
      height:7px;
      border-radius:999px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.05);
      overflow:hidden;
    }
    .metric-line .bar i{
      position:absolute;
      inset:0 auto 0 0;
      border-radius:inherit;
      background:linear-gradient(90deg, rgba(24,240,196,.95), rgba(109,247,255,.9));
    }
    .metric-line strong{
      color:#fff;
      font-size:12px;
      min-width:34px;
      text-align:right;
    }

    .entry-grid{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:16px;
    }
    .entry-card{
      position:relative;
      overflow:hidden;
      padding:20px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(180deg, rgba(255,255,255,.048), rgba(255,255,255,.02)),
        radial-gradient(circle at top right, rgba(24,240,196,.08), transparent 34%);
      box-shadow:var(--shadow-soft);
      min-height:220px;
    }
    .entry-card h3{
      margin:0 0 10px;
      font-size:18px;
    }
    .entry-card p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:14px;
    }
    .entry-card .cta-row{
      margin-top:auto;
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .entry-mark{
      position:absolute;
      right:-20px;
      top:-20px;
      width:120px;
      height:120px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(24,240,196,.18), rgba(24,240,196,0) 68%);
      filter:blur(4px);
      pointer-events:none;
    }

    .articles-grid{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:16px;
    }
    .article-card{
      overflow:hidden;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.08);
      background:linear-gradient(180deg, rgba(255,255,255,.042), rgba(255,255,255,.02));
      box-shadow:var(--shadow-soft);
      transition:transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    }
    .article-card:hover{
      transform:translateY(-3px);
      border-color:rgba(24,240,196,.22);
      box-shadow:0 18px 32px rgba(0,0,0,.28);
    }
    .article-card .cover{
      aspect-ratio:16/10;
      overflow:hidden;
    }
    .article-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform var(--transition);
    }
    .article-card:hover img{transform:scale(1.04)}
    .article-body{
      padding:16px;
    }
    .article-body h3{
      margin:0 0 8px;
      font-size:17px;
      line-height:1.32;
      min-height:45px;
    }
    .article-body p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:13px;
      min-height:64px;
    }
    .article-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:8px;
      color:var(--muted);
      font-size:12px;
    }
    .article-meta strong{color:#d9e8f4;font-weight:600}

    .trust-strip{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:12px;
      padding:18px;
      border:1px solid rgba(255,255,255,.08);
      border-radius:22px;
      background:linear-gradient(90deg, rgba(24,240,196,.07), rgba(255,255,255,.025), rgba(255,109,142,.06));
      box-shadow:var(--shadow-soft);
    }
    .trust-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:8px 12px;
      border-right:1px solid rgba(255,255,255,.08);
    }
    .trust-item:last-child{border-right:none}
    .trust-icon{
      display:grid;
      place-items:center;
      width:36px;
      height:36px;
      flex-shrink:0;
      border-radius:12px;
      color:#07161a;
      background:linear-gradient(135deg,var(--accent),var(--accent-2));
      font-weight:900;
    }
    .trust-item strong{
      display:block;
      font-size:14px;
      margin-bottom:3px;
    }
    .trust-item span{
      display:block;
      color:var(--muted);
      font-size:12px;
    }

    .faq-layout{
      display:grid;
      grid-template-columns:.75fr 1.25fr;
      gap:18px;
      align-items:start;
    }
    .faq-intro{
      position:relative;
      overflow:hidden;
      min-height:300px;
      padding:26px;
      border-radius:24px;
      border:1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(145deg, rgba(7,12,17,.84), rgba(7,12,17,.56)),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      box-shadow:var(--shadow-soft);
    }
    .faq-intro::after{
      content:"";
      position:absolute;
      inset:auto -40px -70px auto;
      width:220px;
      height:220px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(24,240,196,.2), transparent 68%);
    }
    .faq-intro h2{
      position:relative;
      z-index:1;
      margin:0 0 12px;
      font-size:28px;
      line-height:1.2;
    }
    .faq-intro p{
      position:relative;
      z-index:1;
      margin:0;
      color:#c8d5e2;
      font-size:14px;
    }
    .faq-list{
      display:grid;
      gap:10px;
    }
    .faq-item{
      border:1px solid rgba(255,255,255,.08);
      border-radius:18px;
      background:rgba(255,255,255,.035);
      overflow:hidden;
      transition:border-color var(--transition), background var(--transition);
    }
    .faq-item[open]{
      border-color:rgba(24,240,196,.25);
      background:rgba(24,240,196,.045);
    }
    .faq-item summary{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:17px 18px;
      list-style:none;
      cursor:pointer;
      color:#eef6fd;
      font-weight:700;
      font-size:15px;
    }
    .faq-item summary::-webkit-details-marker{display:none}
    .faq-item summary::after{
      content:"+";
      display:grid;
      place-items:center;
      width:24px;
      height:24px;
      flex-shrink:0;
      border-radius:8px;
      color:var(--accent);
      border:1px solid rgba(24,240,196,.2);
      transition:transform var(--transition), background var(--transition);
    }
    .faq-item[open] summary::after{
      content:"−";
      background:rgba(24,240,196,.1);
    }
    .faq-answer{
      padding:0 18px 18px;
      color:var(--muted);
      font-size:14px;
      border-top:1px solid rgba(255,255,255,.06);
    }
    .faq-answer p{margin:14px 0 0}

    .cta-band{
      position:relative;
      overflow:hidden;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
      padding:28px 32px;
      border-radius:26px;
      border:1px solid rgba(24,240,196,.22);
      background:
        linear-gradient(100deg, rgba(24,240,196,.14), rgba(109,247,255,.06) 48%, rgba(255,109,142,.11)),
        rgba(255,255,255,.035);
      box-shadow:var(--shadow);
    }
    .cta-band::before{
      content:"";
      position:absolute;
      width:300px;
      height:300px;
      right:12%;
      top:-180px;
      border-radius:50%;
      background:radial-gradient(circle, rgba(109,247,255,.17), transparent 68%);
      pointer-events:none;
    }
    .cta-copy{position:relative;z-index:1}
    .cta-copy h2{
      margin:0 0 8px;
      font-size:clamp(23px,2.5vw,34px);
      line-height:1.15;
    }
    .cta-copy p{
      margin:0;
      color:#cbd9e5;
      font-size:14px;
    }
    .cta-band .cta-actions{
      position:relative;
      z-index:1;
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      flex-shrink:0;
    }

    footer.site-footer{
      margin-top:38px;
      padding:42px 0 22px;
      border-top:1px solid rgba(255,255,255,.07);
      background:rgba(5,8,12,.5);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .75fr .75fr 1fr;
      gap:28px;
      padding-bottom:30px;
    }
    .footer-brand{
      max-width:390px;
    }
    .footer-brand .brand{margin-bottom:16px}
    .footer-brand p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.8;
    }
    .footer-col h3{
      margin:3px 0 14px;
      font-size:15px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      width:max-content;
      color:var(--muted);
      font-size:13px;
      transition:color var(--transition), transform var(--transition);
    }
    .footer-links a:hover{
      color:var(--accent);
      transform:translateX(3px);
    }
    .footer-note{
      padding:18px 0 0;
      border-top:1px solid rgba(255,255,255,.07);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      color:#7f8c99;
      font-size:12px;
    }
    .footer-note span:last-child{color:#9eabb8}
    .risk-note{
      margin-top:12px;
      padding:11px 13px;
      border-radius:12px;
      border:1px solid rgba(255,175,69,.15);
      background:rgba(255,175,69,.05);
      color:#d8c09b;
      font-size:12px;
      line-height:1.6;
    }

    @media (max-width:1280px){
      .brand{min-width:205px}
      .site-nav a{padding-inline:10px}
      .search-box{min-width:230px}
      .hero-content{min-height:630px}
    }
    @media (max-width:1100px){
      .header-inner{gap:12px}
      .brand{min-width:190px}
      .brand-text strong{font-size:15px}
      .site-nav{gap:3px}
      .site-nav a{font-size:13px;padding:10px 9px}
      .header-actions .btn-ghost{display:none}
      .search-box{min-width:190px}
      .hero-content{grid-template-columns:1fr .88fr}
      .team-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .articles-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width:900px){
      .header-inner{min-height:70px}
      .menu-toggle{display:inline-flex;margin-left:auto}
      .header-actions{margin-left:0}
      .nav-wrap{
        position:absolute;
        top:100%;
        left:16px;
        right:16px;
        display:none;
        padding:12px;
        border:1px solid rgba(255,255,255,.1);
        border-radius:18px;
        background:rgba(8,12,17,.96);
        box-shadow:0 18px 38px rgba(0,0,0,.4);
      }
      .nav-wrap.open{display:block}
      .site-nav{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
      }
      .site-nav a{padding:13px 12px}
      .header-actions{
        display:none;
      }
      .hero-content{
        grid-template-columns:1fr;
        min-height:0;
      }
      .hero-copy{gap:28px}
      .hero-side{grid-template-columns:1fr 1fr}
      .spotlight-grid,
      .match-grid,
      .faq-layout{grid-template-columns:1fr}
      .entry-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .trust-strip{grid-template-columns:repeat(2,minmax(0,1fr))}
      .trust-item:nth-child(2){border-right:none}
      .trust-item:nth-child(-n+2){border-bottom:1px solid rgba(255,255,255,.08);padding-bottom:16px}
      .trust-item:nth-child(n+3){padding-top:16px}
      .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    }
    @media (max-width:768px){
      .container{width:min(var(--container),calc(100% - 24px))}
      .topbar-inner{align-items:flex-start}
      .topbar .chips{gap:6px}
      .topbar .mini-chip:nth-child(3){display:none}
      .brand{min-width:0}
      .brand-mark{width:40px;height:40px;border-radius:12px}
      .brand-text strong{max-width:190px;font-size:14px}
      .brand-text span{font-size:11px}
      .hero{padding-top:16px}
      .hero-shell{border-radius:22px}
      .hero-content{padding:24px 20px}
      .hero h1{font-size:clamp(30px,8vw,46px)}
      .hero-stats{grid-template-columns:1fr 1fr}
      .hero-stats .stat-card:last-child{grid-column:1/-1}
      .hero-side{grid-template-columns:1fr}
      .section-head{align-items:flex-start}
      .team-grid,
      .articles-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
      .cta-band{align-items:flex-start;flex-direction:column;padding:24px}
      .cta-band .cta-actions{width:100%}
      .cta-band .btn{flex:1}
    }
    @media (max-width:520px){
      .container{width:calc(100% - 20px)}
      .topbar-inner{font-size:12px}
      .topbar .mini-chip{padding:5px 8px}
      .topbar .mini-chip:nth-child(2){display:none}
      .brand-text strong{max-width:150px}
      .nav-wrap{left:10px;right:10px}
      .site-nav{grid-template-columns:1fr}
      .hero-content{padding:22px 16px}
      .hero h1{font-size:34px}
      .hero-actions{display:grid;grid-template-columns:1fr}
      .hero-actions .btn{width:100%}
      .hero-stats{grid-template-columns:1fr}
      .hero-stats .stat-card:last-child{grid-column:auto}
      .spotlight-grid{gap:12px}
      .spot-card,
      .side-mini,
      .match-panel,
      .panel-card,
      .entry-card,
      .faq-intro,
      .cta-band{border-radius:19px}
      .spot-body{padding:16px}
      .match-row{grid-template-columns:1fr}
      .score-box{text-align:left;display:flex;align-items:baseline;gap:8px}
      .score-box span{margin-top:0}
      .team-grid,
      .articles-grid,
      .entry-grid,
      .trust-strip{grid-template-columns:1fr}
      .trust-item{border-right:none!important;border-bottom:1px solid rgba(255,255,255,.08);padding:10px 4px 14px!important}
      .trust-item:last-child{border-bottom:none;padding-bottom:5px!important}
      .footer-grid{grid-template-columns:1fr;gap:22px}
      .footer-note{align-items:flex-start;flex-direction:column}
      .cta-band .cta-actions{display:grid;grid-template-columns:1fr}
      .cta-band .btn{width:100%}
      .search-box{display:none}
    }

/* roulang page: category1 */
:root{
  --bg:#090d12;
  --bg2:#0e131a;
  --panel:#131923;
  --panel2:#0f151d;
  --line:rgba(255,255,255,.08);
  --line2:rgba(255,255,255,.12);
  --text:#eef3f9;
  --muted:#96a3b7;
  --muted2:#6f7b8f;
  --primary:#00e7c4;
  --primary2:#00bca1;
  --accent:#ff7a45;
  --danger:#ff4d6d;
  --good:#41d18a;
  --shadow:0 20px 50px rgba(0,0,0,.38);
  --shadow2:0 12px 26px rgba(0,0,0,.26);
  --radius:20px;
  --radius-sm:14px;
  --radius-xs:10px;
  --container:1260px;
  --gap:24px;
  --trans:.22s ease;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(circle at top left, rgba(0,231,196,.10), transparent 30%),
    radial-gradient(circle at 80% 10%, rgba(255,122,69,.09), transparent 24%),
    linear-gradient(180deg, #091015 0%, #0b1016 42%, #070b10 100%);
  line-height:1.7;
  min-height:100vh;
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px, 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), rgba(0,0,0,.2) 50%, transparent 90%);
  opacity:.5;
  z-index:-1;
}
img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
button,input,select,textarea{font:inherit}
button{cursor:pointer}
.container{
  width:min(var(--container), calc(100% - 32px));
  margin:0 auto;
}
.top-strip{
  background:linear-gradient(90deg, rgba(0,231,196,.18), rgba(255,122,69,.12));
  border-bottom:1px solid rgba(255,255,255,.08);
  color:#dfe9f3;
  font-size:13px;
}
.top-strip .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:8px 0;
  flex-wrap:wrap;
}
.top-strip .strip-left,
.top-strip .strip-right{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}
.status-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 10px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  color:#f3f7fb;
}
.status-pill b{
  color:var(--primary);
  font-weight:700;
}
.site-header{
  position:sticky;
  top:0;
  z-index:60;
  backdrop-filter:blur(14px);
  background:linear-gradient(180deg, rgba(9,13,18,.92), rgba(9,13,18,.76));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.header-row{
  display:flex;
  align-items:center;
  gap:18px;
  padding:16px 0;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.brand-mark{
  width:42px;
  height:42px;
  border-radius:14px;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,.92), rgba(255,255,255,.2) 18%, transparent 19%),
    linear-gradient(135deg, var(--primary) 0%, #1ff7a8 46%, #1d9fff 100%);
  box-shadow:0 10px 28px rgba(0,231,196,.22);
  position:relative;
  flex:none;
}
.brand-mark::after{
  content:"";
  position:absolute;
  inset:7px;
  border:1px solid rgba(255,255,255,.3);
  border-radius:11px;
}
.brand-text{
  display:flex;
  flex-direction:column;
  gap:1px;
  min-width:0;
}
.brand-text strong{
  display:block;
  font-size:18px;
  letter-spacing:.2px;
  line-height:1.2;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.brand-text span{
  color:var(--muted);
  font-size:12px;
  letter-spacing:.2px;
}
.site-nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex:1;
  overflow:auto;
  scrollbar-width:none;
}
.site-nav::-webkit-scrollbar{display:none}
.site-nav a{
  position:relative;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  color:#dbe3ee;
  border:1px solid transparent;
  border-radius:999px;
  white-space:nowrap;
  transition:transform var(--trans), border-color var(--trans), background var(--trans), color var(--trans), box-shadow var(--trans);
}
.site-nav a:hover,
.site-nav a:focus-visible{
  outline:none;
  color:#fff;
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.12);
  box-shadow:0 0 0 4px rgba(0,231,196,.08);
  transform:translateY(-1px);
}
.site-nav a.active{
  color:#041312;
  background:linear-gradient(135deg, var(--primary) 0%, #63f7d7 100%);
  border-color:transparent;
  box-shadow:0 14px 28px rgba(0,231,196,.2);
  font-weight:700;
}
.site-nav a.active::after{
  content:"";
  position:absolute;
  left:16px;
  right:16px;
  bottom:6px;
  height:2px;
  border-radius:999px;
  background:rgba(4,19,18,.48);
}
.header-tools{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.search-form{
  display:flex;
  align-items:center;
  gap:8px;
  padding:7px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  background:rgba(255,255,255,.04);
  min-width:250px;
}
.search-form input{
  width:100%;
  min-width:140px;
  border:none;
  background:transparent;
  color:var(--text);
  padding:4px 8px;
  outline:none;
}
.search-form input::placeholder{color:var(--muted2)}
.search-form:focus-within{
  border-color:rgba(0,231,196,.36);
  box-shadow:0 0 0 4px rgba(0,231,196,.08);
}
.tool-btn,
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:11px 16px;
  border:1px solid transparent;
  transition:transform var(--trans), box-shadow var(--trans), background var(--trans), border-color var(--trans), color var(--trans), opacity var(--trans);
  white-space:nowrap;
  font-weight:600;
}
.tool-btn:hover,
.btn:hover{
  transform:translateY(-1px);
}
.tool-btn:focus-visible,
.btn:focus-visible,
.chip:focus-visible,
summary:focus-visible,
input:focus-visible{
  outline:none;
  box-shadow:0 0 0 4px rgba(0,231,196,.14);
}
.tool-btn.primary,
.btn.primary{
  color:#031413;
  background:linear-gradient(135deg, var(--primary) 0%, #63f7d7 100%);
  box-shadow:0 14px 28px rgba(0,231,196,.18);
}
.tool-btn.primary:hover,
.btn.primary:hover{
  box-shadow:0 18px 36px rgba(0,231,196,.24);
}
.tool-btn.ghost,
.btn.ghost{
  color:#eef3f9;
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.12);
}
.tool-btn.ghost:hover,
.btn.ghost:hover{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.18);
}
main{
  padding-bottom:36px;
}
.hero{
  position:relative;
  margin-top:18px;
  padding:30px 0 16px;
}
.hero-shell{
  position:relative;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  border-radius:28px;
  background:
    linear-gradient(135deg, rgba(8,13,18,.76), rgba(8,13,18,.3)),
    url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
  box-shadow:var(--shadow);
}
.hero-shell::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(0,0,0,.18), rgba(0,0,0,.48)),
    radial-gradient(circle at 70% 25%, rgba(0,231,196,.20), transparent 28%),
    radial-gradient(circle at 30% 70%, rgba(255,122,69,.14), transparent 24%);
}
.hero-inner{
  position:relative;
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:28px;
  padding:34px;
}
.breadcrumb{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px;
  color:#dbe5ef;
  font-size:13px;
  margin-bottom:14px;
}
.breadcrumb span{
  color:rgba(255,255,255,.42);
}
.kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(0,231,196,.24);
  background:rgba(0,231,196,.08);
  color:#bffbf0;
  font-size:13px;
  letter-spacing:.2px;
  margin-bottom:14px;
}
.hero h1{
  margin:0;
  font-size:clamp(32px, 4vw, 56px);
  line-height:1.1;
  letter-spacing:-.02em;
  text-wrap:balance;
  max-width:12em;
}
.hero p{
  margin:16px 0 0;
  max-width:56ch;
  color:#dde5ef;
  font-size:16px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.hero-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.tag{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:7px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  color:#f5f7fa;
  font-size:13px;
}
.tag.green{border-color:rgba(0,231,196,.22); background:rgba(0,231,196,.08); color:#d8fff8}
.tag.orange{border-color:rgba(255,122,69,.22); background:rgba(255,122,69,.08); color:#ffe7dc}
.tag.red{border-color:rgba(255,77,109,.22); background:rgba(255,77,109,.08); color:#ffe0e8}
.hero-aside{
  display:grid;
  gap:14px;
}
.stat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.stat-card{
  padding:16px 14px;
  border-radius:18px;
  background:rgba(11,15,20,.68);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow2);
}
.stat-card .num{
  display:block;
  font-size:26px;
  font-weight:800;
  line-height:1;
  margin-bottom:8px;
  letter-spacing:-.03em;
}
.stat-card .label{
  color:var(--muted);
  font-size:13px;
}
.quick-panel{
  padding:18px;
  border-radius:22px;
  background:rgba(11,15,20,.72);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow2);
}
.quick-panel h2{
  margin:0 0 10px;
  font-size:18px;
}
.quick-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.quick-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  padding:12px 12px 12px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.quick-list li:first-child{border-top:none; padding-top:0}
.quick-list .bullet{
  width:10px;
  height:10px;
  border-radius:50%;
  margin-top:7px;
  background:linear-gradient(135deg, var(--primary), #7fffe8);
  box-shadow:0 0 0 5px rgba(0,231,196,.09);
  flex:none;
}
.quick-list strong{
  display:block;
  font-size:14px;
  color:#f6f9fc;
}
.quick-list span{
  display:block;
  color:var(--muted);
  font-size:13px;
}
.section{
  padding:18px 0 0;
}
.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:16px;
  margin:18px 0 18px;
}
.section-head h2{
  margin:0;
  font-size:26px;
  line-height:1.2;
  letter-spacing:-.01em;
}
.section-head p{
  margin:0;
  color:var(--muted);
  max-width:60ch;
  font-size:14px;
}
.section-head .meta-line{
  color:var(--muted2);
  font-size:13px;
  white-space:nowrap;
}
.focus-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
}
.focus-card{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:var(--panel);
  box-shadow:var(--shadow2);
}
.focus-card.featured{
  min-height:100%;
}
.focus-media{
  position:relative;
  aspect-ratio:16/9;
  overflow:hidden;
}
.focus-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.focus-card:hover .focus-media img,
.topic-card:hover .card-media img,
.entry-card:hover .card-media img{
  transform:scale(1.04);
}
.focus-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(4,8,11,.08), rgba(4,8,11,.76)),
    radial-gradient(circle at 20% 18%, rgba(0,231,196,.22), transparent 28%);
}
.focus-body{
  position:absolute;
  inset:auto 0 0 0;
  padding:22px;
}
.card-badges,
.badge-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:12px;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
}
.badge.primary{
  background:rgba(0,231,196,.12);
  border-color:rgba(0,231,196,.22);
  color:#d6fff8;
}
.badge.warn{
  background:rgba(255,122,69,.10);
  border-color:rgba(255,122,69,.24);
  color:#ffe7da;
}
.badge.hot{
  background:rgba(255,77,109,.11);
  border-color:rgba(255,77,109,.22);
  color:#ffe2e8;
}
.focus-body h3,
.entry-content h3,
.topic-copy h3,
.side-card h3{
  margin:0 0 10px;
  line-height:1.25;
}
.focus-body h3{
  font-size:28px;
  max-width:12em;
}
.focus-body p{
  margin:0;
  color:#e4ebf5;
  max-width:52ch;
}
.mini-stack{
  display:grid;
  gap:18px;
}
.mini-card{
  overflow:hidden;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015)), var(--panel);
  box-shadow:var(--shadow2);
}
.mini-card .focus-media{aspect-ratio: 16/10}
.mini-card .focus-body{position:relative; inset:auto; padding:18px}
.mini-card h3{font-size:20px}
.mini-card p{color:var(--muted); margin:8px 0 0}
.mini-card .card-foot{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:14px;
  color:var(--muted);
  font-size:13px;
}
.mini-card .link-arrow{
  color:var(--primary);
  font-weight:700;
}
.panel-band{
  margin-top:20px;
  border-radius:24px;
  padding:18px;
  background:linear-gradient(135deg, rgba(0,231,196,.08), rgba(255,122,69,.06));
  border:1px solid rgba(255,255,255,.08);
}
.panel-band .band-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:14px;
}
.band-item{
  padding:14px;
  border-radius:18px;
  background:rgba(10,14,19,.58);
  border:1px solid rgba(255,255,255,.08);
}
.band-item span{
  display:block;
  color:var(--muted);
  font-size:12px;
}
.band-item strong{
  display:block;
  margin-top:4px;
  font-size:18px;
  letter-spacing:-.02em;
}
.two-col{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) 330px;
  gap:18px;
  align-items:start;
}
.toolbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:18px;
  padding:14px 16px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.chip-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:9px 13px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.03);
  color:#dfe7f0;
  transition:background var(--trans), border-color var(--trans), transform var(--trans), color var(--trans);
}
.chip:hover{
  transform:translateY(-1px);
  border-color:rgba(0,231,196,.28);
  color:#fff;
}
.chip.active{
  background:linear-gradient(135deg, rgba(0,231,196,.22), rgba(99,247,215,.14));
  border-color:rgba(0,231,196,.26);
  color:#eafffb;
  box-shadow:0 12px 26px rgba(0,231,196,.08);
}
.sort-bar{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:14px;
}
.sort-bar a{
  color:#e9eef5;
  padding:6px 10px;
  border-radius:10px;
  border:1px solid transparent;
}
.sort-bar a.active,
.sort-bar a:hover{
  border-color:rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.entry-list{
  display:grid;
  gap:16px;
}
.entry-card{
  display:grid;
  grid-template-columns:220px minmax(0,1fr);
  gap:16px;
  align-items:stretch;
  padding:14px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--shadow2);
  transition:transform var(--trans), border-color var(--trans), box-shadow var(--trans);
}
.entry-card:hover{
  transform:translateY(-3px);
  border-color:rgba(0,231,196,.18);
  box-shadow:0 18px 38px rgba(0,0,0,.34);
}
.card-media{
  position:relative;
  overflow:hidden;
  border-radius:18px;
  aspect-ratio: 1.35/1;
  background:var(--panel2);
}
.card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.media-flag{
  position:absolute;
  left:12px;
  top:12px;
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(9,13,18,.74);
  color:#fff;
  border:1px solid rgba(255,255,255,.14);
  font-size:12px;
  backdrop-filter:blur(8px);
}
.entry-content{
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:12px;
  min-width:0;
}
.entry-content h3{
  font-size:22px;
}
.entry-content p{
  margin:0;
  color:var(--muted);
}
.entry-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted2);
  font-size:13px;
}
.entry-meta .left{
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.entry-meta .dot{
  width:5px;
  height:5px;
  border-radius:50%;
  background:rgba(255,255,255,.22);
}
.entry-meta strong{
  color:#fff;
}
.entry-card.featured{
  grid-template-columns:280px minmax(0,1fr);
  border-color:rgba(0,231,196,.16);
  background:
    linear-gradient(135deg, rgba(0,231,196,.06), rgba(255,255,255,.02));
}
.entry-card.featured .card-media{aspect-ratio: 1/1}
.entry-card.featured .entry-content h3{
  font-size:26px;
}
.sidebar{
  display:grid;
  gap:16px;
}
.side-card{
  padding:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  box-shadow:var(--shadow2);
}
.side-card h3{font-size:18px}
.side-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.side-links{
  list-style:none;
  padding:0;
  margin:14px 0 0;
  display:grid;
  gap:10px;
}
.side-links li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.side-links li:first-child{border-top:none; padding-top:0}
.side-links span{
  color:var(--muted);
  font-size:13px;
}
.side-links strong{
  display:block;
  font-size:14px;
}
.timeline{
  display:grid;
  gap:10px;
  margin-top:14px;
}
.timeline-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:10px 0;
  border-top:1px solid rgba(255,255,255,.06);
}
.timeline-item:first-child{border-top:none; padding-top:0}
.timeline-time{
  flex:none;
  min-width:58px;
  padding:6px 10px;
  border-radius:10px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#f5f7fa;
  font-size:12px;
  text-align:center;
}
.timeline-text{
  color:var(--muted);
  font-size:14px;
}
.timeline-text b{color:#fff}
.link-set{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}
.link-set .btn{
  padding:10px 14px;
  font-size:14px;
}
.data-lines{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.data-line{
  display:grid;
  gap:6px;
}
.data-line .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:13px;
  color:var(--muted);
}
.progress{
  width:100%;
  height:8px;
  border-radius:999px;
  overflow:hidden;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.06);
}
.progress span{
  display:block;
  height:100%;
  border-radius:inherit;
  background:linear-gradient(90deg, var(--primary), #7fffe8);
}
.progress.orange span{background:linear-gradient(90deg, var(--accent), #ffb184)}
.progress.red span{background:linear-gradient(90deg, var(--danger), #ff8fa4)}
.faq-section{
  margin-top:8px;
}
.faq-wrap{
  display:grid;
  gap:14px;
}
.faq-item{
  border-radius:20px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  overflow:hidden;
}
.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding:18px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-weight:700;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";
  flex:none;
  width:30px;
  height:30px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:#fff;
  transition:transform var(--trans), background var(--trans);
}
.faq-item[open] summary::after{
  content:"–";
  transform:rotate(180deg);
  background:rgba(0,231,196,.12);
}
.faq-item .answer{
  padding:0 20px 18px;
  color:var(--muted);
}
.cta-section{
  margin-top:18px;
}
.cta-box{
  position:relative;
  overflow:hidden;
  padding:28px;
  border-radius:28px;
  border:1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(135deg, rgba(8,12,16,.88), rgba(8,12,16,.62)),
    url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
  box-shadow:var(--shadow);
}
.cta-box::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,231,196,.12), rgba(255,122,69,.08));
}
.cta-inner{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.cta-text h2{
  margin:0;
  font-size:30px;
  line-height:1.2;
}
.cta-text p{
  margin:10px 0 0;
  color:#dce5ef;
  max-width:64ch;
}
.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.site-footer{
  margin-top:20px;
  padding:32px 0 26px;
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border-top:1px solid rgba(255,255,255,.08);
}
.footer-grid{
  display:grid;
  grid-template-columns:1.35fr .8fr .8fr .8fr;
  gap:20px;
}
.footer-brand p{
  margin:14px 0 0;
  color:var(--muted);
  max-width:42ch;
}
.risk-note{
  margin-top:14px;
  padding:14px 15px;
  border-radius:16px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:#cfd8e5;
  font-size:13px;
}
.footer-col h3{
  margin:4px 0 14px;
  font-size:16px;
}
.footer-links{
  display:grid;
  gap:10px;
}
.footer-links a{
  color:var(--muted);
  transition:color var(--trans), transform var(--trans);
}
.footer-links a:hover,
.footer-links a:focus-visible{
  color:#fff;
  transform:translateX(2px);
  outline:none;
}
.footer-note{
  margin-top:24px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted2);
  font-size:13px;
}
.section-divider{
  height:1px;
  margin:18px 0 0;
  background:linear-gradient(90deg, transparent, rgba(255,255,255,.08), transparent);
}
::selection{
  background:rgba(0,231,196,.24);
  color:#fff;
}
@media (max-width: 1180px){
  .header-row{flex-wrap:wrap}
  .site-nav{order:3; width:100%; padding-top:2px}
  .header-tools{margin-left:auto}
  .hero-inner{grid-template-columns:1fr}
  .focus-grid,
  .two-col,
  .footer-grid{
    grid-template-columns:1fr;
  }
  .panel-band .band-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 920px){
  .entry-card,
  .entry-card.featured{
    grid-template-columns:1fr;
  }
  .entry-card.featured .card-media{
    aspect-ratio:16/9;
  }
  .stat-grid{
    grid-template-columns:repeat(2,1fr);
  }
}
@media (max-width: 768px){
  .top-strip .container{
    padding:10px 0;
  }
  .search-form{
    width:100%;
    min-width:0;
  }
  .header-tools{
    width:100%;
  }
  .tool-btn{
    flex:1;
  }
  .hero{
    padding-top:12px;
  }
  .hero-inner,
  .cta-box{
    padding:20px;
  }
  .hero h1{
    max-width:none;
  }
  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .panel-band .band-grid{
    grid-template-columns:1fr;
  }
  .cta-inner{
    align-items:flex-start;
  }
}
@media (max-width: 520px){
  .container{
    width:min(var(--container), calc(100% - 20px));
  }
  .brand-text strong{
    font-size:16px;
  }
  .site-nav a{
    padding:9px 12px;
    font-size:14px;
  }
  .hero h1{
    font-size:28px;
  }
  .hero p,
  .cta-text p{
    font-size:15px;
  }
  .stat-grid{
    grid-template-columns:1fr;
  }
  .entry-content h3{
    font-size:20px;
  }
  .cta-text h2{
    font-size:24px;
  }
}
@media (max-width: 420px){
  .top-strip{
    font-size:12px;
  }
  .status-pill{
    padding:4px 9px;
  }
  .badge,.tag,.chip{
    padding:6px 10px;
  }
}
