/* roulang page: index */
:root {
      --bg: #070816;
      --bg-soft: #0d1024;
      --panel: rgba(14, 18, 41, 0.82);
      --panel-2: rgba(20, 24, 54, 0.92);
      --line: rgba(255,255,255,0.10);
      --line-strong: rgba(255,255,255,0.18);
      --text: #eef2ff;
      --muted: #a5b0d6;
      --muted-2: #7c86b4;
      --pink: #ff4fd8;
      --cyan: #53e8ff;
      --violet: #7c6cff;
      --green: #2ee6a8;
      --shadow: 0 18px 60px rgba(0,0,0,.45);
      --radius: 18px;
    }
    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, "PingFang SC", "Microsoft YaHei", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 20% 20%, rgba(255,79,216,.15), transparent 22%),
        radial-gradient(circle at 80% 10%, rgba(83,232,255,.12), transparent 18%),
        radial-gradient(circle at 80% 80%, rgba(124,108,255,.12), transparent 20%),
        linear-gradient(180deg, #050611 0%, #080a18 45%, #050611 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
      background-size: 38px 38px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.9), rgba(0,0,0,.35));
      opacity: .35;
    }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    .container { width: min(1200px, calc(100% - 32px)); margin: 0 auto; }
    .glass {
      background: linear-gradient(180deg, rgba(18,22,48,.92), rgba(11,14,31,.88));
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }
    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(5,6,17,.72);
      backdrop-filter: blur(20px);
    }
    .nav-link {
      position: relative;
      color: var(--muted);
      font-size: 14px;
      padding: 10px 12px;
      border-radius: 999px;
      transition: .25s ease;
    }
    .nav-link:hover, .nav-link.active, .nav-link:focus-visible {
      color: white;
      background: rgba(255,255,255,.07);
      outline: none;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
    }
    .brand-mark {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      letter-spacing: .04em;
    }
    .brand-dot {
      width: 12px; height: 12px; border-radius: 999px;
      background: linear-gradient(135deg, var(--pink), var(--cyan));
      box-shadow: 0 0 18px rgba(255,79,216,.55);
    }
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 12px;
      color: #f3f7ff;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
    }
    .badge.hot { background: rgba(255,79,216,.16); border-color: rgba(255,79,216,.26); }
    .badge.cyan { background: rgba(83,232,255,.12); border-color: rgba(83,232,255,.22); }
    .hero {
      position: relative;
      padding: 42px 0 22px;
    }
    .hero-panel {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.08);
      background:
        linear-gradient(135deg, rgba(124,108,255,.22), rgba(255,79,216,.12) 48%, rgba(83,232,255,.09)),
        linear-gradient(180deg, rgba(12,16,34,.96), rgba(8,10,22,.92));
      box-shadow: 0 24px 80px rgba(0,0,0,.5);
    }
    .hero-panel::after {
      content: '';
      position: absolute;
      inset: -30% -10% auto auto;
      width: 320px;
      height: 320px;
      background: radial-gradient(circle, rgba(83,232,255,.18), transparent 62%);
      filter: blur(10px);
      pointer-events: none;
    }
    .hero-title {
      font-size: clamp(34px, 5vw, 64px);
      line-height: .95;
      font-weight: 900;
      letter-spacing: -.04em;
    }
    .hero-copy { color: var(--muted); line-height: 1.85; }
    .btn-primary, .btn-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 20px;
      border-radius: 16px;
      font-weight: 700;
      transition: .25s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }
    .btn-primary {
      color: #0a0b12;
      background: linear-gradient(135deg, var(--cyan), var(--pink));
      box-shadow: 0 14px 30px rgba(83,232,255,.18);
    }
    .btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); }
    .btn-secondary {
      color: var(--text);
      background: rgba(255,255,255,.05);
      border-color: rgba(255,255,255,.12);
    }
    .btn-secondary:hover { transform: translateY(-1px); background: rgba(255,255,255,.08); }
    .section {
      padding: 20px 0 4px;
    }
    .section-title {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: -.02em;
    }
    .section-desc {
      color: var(--muted);
      line-height: 1.8;
      margin-top: 10px;
      max-width: 760px;
    }
    .card {
      border-radius: var(--radius);
      background: linear-gradient(180deg, rgba(21,25,48,.92), rgba(12,15,33,.92));
      border: 1px solid rgba(255,255,255,.08);
      box-shadow: 0 10px 30px rgba(0,0,0,.25);
      transition: .28s ease;
    }
    .card:hover {
      transform: translateY(-3px);
      border-color: rgba(83,232,255,.25);
      box-shadow: 0 16px 36px rgba(0,0,0,.32);
    }
    .mini-kpi {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 16px;
      padding: 14px 16px;
    }
    .progress {
      height: 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.08);
      overflow: hidden;
    }
    .progress > span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--violet), var(--pink));
      width: 68%;
      box-shadow: 0 0 20px rgba(255,79,216,.28);
    }
    .timeline-item {
      position: relative;
      padding-left: 22px;
    }
    .timeline-item::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      width: 10px; height: 10px; border-radius: 999px;
      background: linear-gradient(135deg, var(--cyan), var(--pink));
      box-shadow: 0 0 16px rgba(83,232,255,.35);
    }
    .timeline-item::after {
      content: '';
      position: absolute;
      left: 4px;
      top: 20px;
      bottom: -12px;
      width: 1px;
      background: rgba(255,255,255,.08);
    }
    .timeline-item:last-child::after { display: none; }
    .faq-item {
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .faq-btn {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      text-align: left;
      padding: 18px 0;
      background: none;
      border: 0;
      color: var(--text);
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
    }
    .faq-content {
      max-height: 0;
      overflow: hidden;
      color: var(--muted);
      line-height: 1.85;
      transition: max-height .3s ease;
    }
    .faq-item.open .faq-content { max-height: 180px; padding-bottom: 18px; }
    .faq-arrow { transition: transform .25s ease; color: var(--cyan); }
    .faq-item.open .faq-arrow { transform: rotate(180deg); }
    .ticker {
      overflow: hidden;
      white-space: nowrap;
      border-top: 1px solid rgba(255,255,255,.08);
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.03);
    }
    .ticker span {
      display: inline-block;
      padding-left: 100%;
      animation: ticker 18s linear infinite;
      color: #dbe6ff;
    }
    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }
    .footer {
      margin-top: 28px;
      padding: 28px 0 36px;
      border-top: 1px solid rgba(255,255,255,.08);
      color: var(--muted);
    }
    .input-glow {
      width: 100%;
      border: 1px solid rgba(255,255,255,.10);
      background: rgba(255,255,255,.04);
      color: var(--text);
      padding: 14px 16px;
      border-radius: 14px;
      outline: none;
    }
    .input-glow:focus {
      border-color: rgba(83,232,255,.38);
      box-shadow: 0 0 0 4px rgba(83,232,255,.08);
    }
    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.04);
      color: var(--muted);
      font-size: 13px;
    }
    .scrollbar-hide::-webkit-scrollbar { display: none; }
    .scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
    @media (max-width: 1024px) {
      .hero { padding-top: 28px; }
    }
    @media (max-width: 768px) {
      .container { width: min(100% - 20px, 1200px); }
      .hero-title { font-size: 36px; }
      .section { padding-top: 14px; }
    }
    @media (max-width: 520px) {
      .btn-primary, .btn-secondary { width: 100%; }
      .hero-panel { border-radius: 22px; }
    }

/* roulang page: category1 */
:root{
      --bg:#070611;
      --bg2:#110a22;
      --panel:rgba(18,15,36,.78);
      --panel2:rgba(31,22,55,.74);
      --text:#f7f4ff;
      --muted:#a8a2bd;
      --soft:#d7cff4;
      --line:rgba(255,255,255,.12);
      --line2:rgba(255,255,255,.2);
      --pink:#ff3fa4;
      --violet:#8b5cf6;
      --cyan:#21f5ff;
      --amber:#ffd166;
      --green:#68f0a8;
      --radius:18px;
      --radius-lg:28px;
      --shadow:0 24px 80px rgba(0,0,0,.42);
      --glow:0 0 30px rgba(255,63,164,.22),0 0 46px rgba(33,245,255,.12);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      color:var(--text);
      font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei",Arial,sans-serif;
      line-height:1.65;
      background:
        radial-gradient(circle at 18% 5%,rgba(255,63,164,.23),transparent 34%),
        radial-gradient(circle at 86% 15%,rgba(33,245,255,.14),transparent 32%),
        radial-gradient(circle at 50% 70%,rgba(139,92,246,.16),transparent 42%),
        linear-gradient(180deg,var(--bg),#0b0718 45%,#05040a);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.38;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
      background-size:34px 34px;
      mask-image:linear-gradient(to bottom,black,transparent 82%);
      z-index:-2;
    }
    body:after{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.18;
      background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(/%23n)' opacity='.32'/%3E%3C/svg%3E");
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    button,a,input{transition:all .22s ease}
    button{font:inherit}
    .container{width:min(1180px,calc(100% - 36px));margin:0 auto}
    .topbar{
      position:sticky;
      top:0;
      z-index:50;
      background:linear-gradient(180deg,rgba(7,6,17,.94),rgba(7,6,17,.76));
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--line);
      box-shadow:0 10px 40px rgba(0,0,0,.28);
    }
    .brand-mark{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      letter-spacing:.02em;
      white-space:nowrap;
    }
    .brand-dot{
      width:15px;
      height:15px;
      border-radius:999px;
      background:conic-gradient(from 180deg,var(--cyan),var(--pink),var(--violet),var(--cyan));
      box-shadow:0 0 22px rgba(255,63,164,.7),0 0 28px rgba(33,245,255,.35);
      flex:none;
    }
    .nav-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:9px 14px;
      border-radius:999px;
      color:#c8c1dc;
      border:1px solid transparent;
      font-size:14px;
      font-weight:700;
    }
    .nav-link:hover,.nav-link:focus{
      color:#fff;
      background:rgba(255,255,255,.07);
      border-color:var(--line2);
      outline:none;
    }
    .nav-link.active{
      color:#fff;
      background:linear-gradient(135deg,rgba(255,63,164,.2),rgba(33,245,255,.13));
      border-color:rgba(255,255,255,.24);
      box-shadow:var(--glow);
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      height:34px;
      padding:0 11px;
      border-radius:999px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.06);
      color:#eee9ff;
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .badge i{font-style:normal;font-size:10px}
    .badge.cyan{border-color:rgba(33,245,255,.32);color:#c9fbff}
    .badge.hot{border-color:rgba(255,63,164,.33);color:#ffd4eb}
    .btn-primary,.btn-secondary,.btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      font-weight:900;
      border:1px solid transparent;
      cursor:pointer;
      white-space:nowrap;
    }
    .btn-primary{
      color:#fff;
      background:linear-gradient(135deg,var(--pink),var(--violet) 55%,var(--cyan));
      box-shadow:0 14px 32px rgba(255,63,164,.28),inset 0 1px 0 rgba(255,255,255,.35);
    }
    .btn-primary:hover,.btn-primary:focus{
      filter:brightness(1.1);
      transform:translateY(-1px);
      box-shadow:0 18px 48px rgba(255,63,164,.36),0 0 28px rgba(33,245,255,.15);
      outline:none;
    }
    .btn-secondary{
      color:#f5f0ff;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.18);
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      border-color:rgba(33,245,255,.48);
      color:#fff;
      background:rgba(33,245,255,.08);
      outline:none;
    }
    .btn-ghost{
      color:#c9c2db;
      border-color:var(--line);
      background:rgba(255,255,255,.04);
    }
    .btn-ghost:hover{color:#fff;border-color:rgba(255,63,164,.45)}
    .ticker{
      height:34px;
      display:flex;
      align-items:center;
      border:1px solid rgba(255,255,255,.1);
      background:linear-gradient(90deg,rgba(255,63,164,.1),rgba(33,245,255,.06),rgba(139,92,246,.1));
      color:#d7d0eb;
      font-size:13px;
      white-space:nowrap;
    }
    .ticker span{display:inline-block;padding-left:100%;animation:ticker 26s linear infinite}
    @keyframes ticker{to{transform:translateX(-100%)}}
    .page-hero{
      position:relative;
      min-height:520px;
      display:flex;
      align-items:end;
      padding:92px 0 50px;
      overflow:hidden;
      border-bottom:1px solid var(--line);
    }
    .page-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(180deg,rgba(7,6,17,.25),rgba(7,6,17,.92)),
        radial-gradient(circle at 70% 24%,rgba(255,63,164,.32),transparent 26%),
        radial-gradient(circle at 34% 14%,rgba(33,245,255,.18),transparent 28%),
        linear-gradient(120deg,#080610,#1a0c2f 45%,#061520);
    }
    .page-hero:after{
      content:"";
      position:absolute;
      inset:0;
      background:
        repeating-linear-gradient(90deg,rgba(255,255,255,.08) 0 1px,transparent 1px 76px),
        repeating-linear-gradient(0deg,rgba(255,255,255,.045) 0 1px,transparent 1px 64px);
      opacity:.24;
      transform:skewY(-2deg) scale(1.1);
    }
    .hero-video-line{
      position:absolute;
      inset:auto 8% 18% 8%;
      height:2px;
      background:linear-gradient(90deg,transparent,var(--cyan),var(--pink),transparent);
      box-shadow:0 0 30px rgba(33,245,255,.5);
      opacity:.8;
    }
    .hero-content{position:relative;z-index:2}
    .breadcrumb{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      color:#bdb5d2;
      font-size:14px;
      margin-bottom:18px;
    }
    .breadcrumb a:hover{color:#fff}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border-radius:999px;
      border:1px solid rgba(33,245,255,.28);
      background:rgba(33,245,255,.08);
      color:#c8fbff;
      font-size:13px;
      font-weight:900;
    }
    h1{
      max-width:900px;
      margin:18px 0 16px;
      font-size:clamp(34px,6vw,68px);
      line-height:1.02;
      letter-spacing:-.04em;
      font-weight:950;
    }
    .lead{
      max-width:790px;
      color:#d5cee8;
      font-size:clamp(16px,2vw,20px);
      line-height:1.85;
    }
    .play-orb{
      width:78px;
      height:78px;
      border-radius:999px;
      display:grid;
      place-items:center;
      background:radial-gradient(circle at 32% 25%,#fff,rgba(255,63,164,.9) 36%,rgba(139,92,246,.82));
      box-shadow:0 0 0 10px rgba(255,255,255,.07),0 0 48px rgba(255,63,164,.45);
      border:1px solid rgba(255,255,255,.45);
    }
    .play-orb span{
      width:0;
      height:0;
      border-top:13px solid transparent;
      border-bottom:13px solid transparent;
      border-left:19px solid #13081e;
      margin-left:5px;
    }
    .section{padding:76px 0}
    .section-tight{padding:54px 0}
    .section-title{
      font-size:clamp(26px,3vw,42px);
      line-height:1.15;
      font-weight:950;
      letter-spacing:-.03em;
    }
    .section-desc{color:var(--muted);max-width:760px;margin-top:12px}
    .panel{
      position:relative;
      border:1px solid var(--line);
      background:linear-gradient(180deg,var(--panel),rgba(10,8,24,.72));
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .panel:before,.card:before,.sidebar-card:before{
      content:"";
      position:absolute;
      inset:0;
      border-radius:inherit;
      padding:1px;
      background:linear-gradient(135deg,rgba(255,63,164,.45),rgba(33,245,255,.2),rgba(255,255,255,.06));
      -webkit-mask:linear-gradient(#000 0 0) content-box,linear-gradient(#000 0 0);
      -webkit-mask-composite:xor;
      mask-composite:exclude;
      pointer-events:none;
      opacity:.65;
    }
    .filter-row{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:14px;
      border-radius:22px;
      background:rgba(255,255,255,.045);
      border:1px solid var(--line);
    }
    .filter-chip,.chip{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:8px 12px;
      font-size:13px;
      font-weight:800;
      color:#d8d1e9;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.1);
    }
    .filter-chip.active{
      color:#fff;
      border-color:rgba(255,63,164,.48);
      background:linear-gradient(135deg,rgba(255,63,164,.18),rgba(33,245,255,.08));
      box-shadow:0 0 24px rgba(255,63,164,.16);
    }
    .filter-chip:hover,.chip:hover{
      color:#fff;
      border-color:rgba(33,245,255,.42);
      transform:translateY(-1px);
    }
    .content-card{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:22px;
      padding:24px;
      border-radius:22px;
      background:linear-gradient(135deg,rgba(255,255,255,.075),rgba(255,255,255,.032));
      border:1px solid rgba(255,255,255,.12);
      position:relative;
      overflow:hidden;
    }
    .content-card:hover{
      transform:translateY(-3px);
      border-color:rgba(33,245,255,.34);
      box-shadow:0 20px 56px rgba(0,0,0,.32),0 0 28px rgba(33,245,255,.12);
    }
    .content-card.featured{
      padding:30px;
      background:
        radial-gradient(circle at 82% 8%,rgba(255,63,164,.22),transparent 34%),
        linear-gradient(135deg,rgba(45,27,75,.92),rgba(15,14,34,.86));
      border-color:rgba(255,63,164,.27);
    }
    .content-title{
      font-size:clamp(20px,2.2vw,30px);
      font-weight:950;
      line-height:1.25;
      letter-spacing:-.02em;
    }
    .content-summary{color:#bdb6cf;margin-top:10px;max-width:760px}
    .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
      margin-top:16px;
      align-items:center;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:5px 9px;
      border-radius:999px;
      background:rgba(139,92,246,.13);
      color:#ded4ff;
      border:1px solid rgba(139,92,246,.25);
      font-size:12px;
      font-weight:800;
    }
    .tag.hot{background:rgba(255,63,164,.13);border-color:rgba(255,63,164,.28);color:#ffd4ea}
    .tag.cyan{background:rgba(33,245,255,.09);border-color:rgba(33,245,255,.24);color:#ccfbff}
    .status-time{font-size:13px;color:#8f89a4}
    .sidebar-card,.card{
      position:relative;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:linear-gradient(180deg,rgba(255,255,255,.07),rgba(255,255,255,.035));
      box-shadow:0 16px 46px rgba(0,0,0,.24);
    }
    .sidebar-card{padding:20px}
    .card{padding:22px}
    .stat-number{
      font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
      font-size:34px;
      font-weight:950;
      line-height:1;
      background:linear-gradient(135deg,#fff,var(--cyan),var(--pink));
      -webkit-background-clip:text;
      background-clip:text;
      color:transparent;
    }
    .progress{
      height:10px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
      border:1px solid rgba(255,255,255,.08);
    }
    .progress span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--pink),var(--violet),var(--cyan));
      box-shadow:0 0 18px rgba(33,245,255,.32);
    }
    .timeline{
      position:relative;
      padding-left:22px;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:6px;
      top:8px;
      bottom:8px;
      width:2px;
      background:linear-gradient(var(--pink),var(--cyan));
      opacity:.5;
    }
    .timeline-item{position:relative;padding-bottom:22px}
    .timeline-item:before{
      content:"";
      position:absolute;
      left:-21px;
      top:7px;
      width:12px;
      height:12px;
      border-radius:999px;
      background:var(--cyan);
      box-shadow:0 0 18px rgba(33,245,255,.7);
    }
    .mini-list{display:grid;gap:10px}
    .mini-item{
      display:flex;
      justify-content:space-between;
      gap:14px;
      padding:12px;
      border-radius:14px;
      background:rgba(255,255,255,.045);
      border:1px solid rgba(255,255,255,.08);
      color:#dcd5ef;
      font-size:14px;
    }
    .mini-item:hover{border-color:rgba(255,63,164,.32);background:rgba(255,63,164,.07)}
    .faq-item{
      border:1px solid rgba(255,255,255,.1);
      border-radius:18px;
      background:rgba(255,255,255,.045);
      overflow:hidden;
    }
    .faq-q{
      width:100%;
      padding:18px 20px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      color:#fff;
      text-align:left;
      font-weight:900;
      background:transparent;
      border:0;
      cursor:pointer;
    }
    .faq-q span:last-child{color:var(--cyan);font-size:20px}
    .faq-a{
      display:none;
      padding:0 20px 18px;
      color:#bdb6cf;
    }
    .faq-item.open{
      border-color:rgba(33,245,255,.28);
      background:linear-gradient(135deg,rgba(33,245,255,.08),rgba(255,63,164,.05));
    }
    .faq-item.open .faq-a{display:block}
    .faq-item.open .faq-q span:last-child{transform:rotate(45deg)}
    .cta-banner{
      position:relative;
      overflow:hidden;
      border-radius:32px;
      padding:42px;
      background:
        radial-gradient(circle at 78% 10%,rgba(33,245,255,.22),transparent 34%),
        radial-gradient(circle at 20% 80%,rgba(255,63,164,.24),transparent 34%),
        linear-gradient(135deg,rgba(35,20,66,.94),rgba(10,9,22,.94));
      border:1px solid rgba(255,255,255,.14);
      box-shadow:var(--shadow),var(--glow);
    }
    .footer{
      padding:52px 0 32px;
      color:#a9a2b9;
      background:linear-gradient(180deg,rgba(7,6,17,.3),rgba(3,3,8,.96));
      border-top:1px solid var(--line);
    }
    @media (max-width:1024px){
      .page-hero{min-height:480px;padding-top:76px}
      .content-card{grid-template-columns:1fr}
    }
    @media (max-width:768px){
      .container{width:min(100% - 24px,1180px)}
      .topbar .container{padding-top:14px;padding-bottom:14px}
      nav{
        overflow-x:auto;
        max-width:100%;
        padding-bottom:2px;
      }
      .page-hero{min-height:auto;padding:62px 0 38px}
      .section{padding:56px 0}
      .section-tight{padding:40px 0}
      .play-orb{width:62px;height:62px}
      .content-card,.content-card.featured{padding:20px}
      .cta-banner{padding:28px 22px;border-radius:24px}
    }
    @media (max-width:520px){
      .badge.hot{display:none!important}
      .btn-primary{padding-left:14px!important;padding-right:14px!important}
      .ticker{border-radius:16px;height:32px}
      .filter-row{overflow-x:auto;flex-wrap:nowrap}
      .filter-chip{flex:none}
      h1{letter-spacing:-.03em}
    }
