/* roulang page: index */
:root {
      --bg: #07111f;
      --bg-2: #0b1e35;
      --panel: rgba(10, 27, 48, 0.74);
      --panel-strong: rgba(14, 38, 66, 0.9);
      --primary: #7cff6b;
      --cyan: #35d7ff;
      --blue: #123a63;
      --orange: #ff8a3d;
      --purple: #8b5cff;
      --text: #f5faff;
      --muted: #c8d6e5;
      --subtle: #8fa4b8;
      --line: rgba(255, 255, 255, 0.12);
      --line-strong: rgba(124, 255, 107, 0.36);
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
      --glow: 0 0 32px rgba(53, 215, 255, 0.22), 0 0 44px rgba(124, 255, 107, 0.16);
      --radius: 24px;
      --radius-sm: 16px;
      --max: 1240px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      line-height: 1.75;
      background:
        radial-gradient(circle at 18% 8%, rgba(53, 215, 255, 0.18), transparent 31%),
        radial-gradient(circle at 82% 12%, rgba(124, 255, 107, 0.12), transparent 26%),
        linear-gradient(180deg, #07111f 0%, #0b1e35 44%, #07111f 100%);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.85), transparent 78%);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    .container {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      z-index: 50;
      top: 18px;
      left: 0;
      width: 100%;
      transition: top .25s ease, background .25s ease;
    }

    .nav-shell {
      width: min(calc(100% - 40px), var(--max));
      margin: 0 auto;
      min-height: 72px;
      display: flex;
      align-items: center;
      gap: 22px;
      padding: 12px 16px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(7, 17, 31, 0.64);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    }

    .site-header.is-scrolled {
      top: 0;
    }

    .site-header.is-scrolled .nav-shell {
      border-radius: 0 0 22px 22px;
      background: rgba(7, 17, 31, 0.94);
      border-color: rgba(255,255,255,0.16);
    }

    .brand {
      flex: 0 0 auto;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 900;
      letter-spacing: 0;
      font-size: 20px;
      color: var(--text);
    }

    .brand-mark {
      width: 40px;
      height: 28px;
      border: 1px solid rgba(124, 255, 107, 0.42);
      border-radius: 10px;
      position: relative;
      background: linear-gradient(135deg, rgba(124,255,107,.18), rgba(53,215,255,.12));
      box-shadow: 0 0 26px rgba(124, 255, 107, 0.16);
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 16px rgba(124,255,107,.85);
      transform: translateY(-50%);
    }

    .brand-mark::before {
      left: 7px;
    }

    .brand-mark::after {
      right: 7px;
      background: var(--cyan);
      box-shadow: 0 0 16px rgba(53,215,255,.85);
    }

    .desktop-nav {
      flex: 1 1 auto;
      display: flex;
      justify-content: center;
      gap: 4px;
    }

    .desktop-nav a,
    .mobile-panel a {
      position: relative;
      padding: 10px 13px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
      color: var(--text);
      background: rgba(124, 255, 107, 0.12);
    }

    .desktop-nav a.active::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 6px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--cyan));
    }

    .nav-actions {
      flex: 0 0 auto;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-box {
      width: 238px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 9px 13px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--subtle);
      background: rgba(255,255,255,0.06);
    }

    .search-box input {
      width: 100%;
      border: 0;
      outline: 0;
      color: var(--text);
      background: transparent;
      font-size: 13px;
    }

    .search-box input::placeholder {
      color: var(--subtle);
    }

    .search-box:focus-within {
      border-color: rgba(53, 215, 255, 0.7);
      box-shadow: 0 0 0 4px rgba(53, 215, 255, 0.12);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 900;
      line-height: 1;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
    }

    .btn-primary {
      color: #06101e;
      background: linear-gradient(135deg, var(--primary), var(--cyan));
      box-shadow: 0 0 30px rgba(124, 255, 107, 0.22);
    }

    .btn-primary:hover,
    .btn-primary:focus {
      color: #06101e;
      transform: translateY(-2px);
      box-shadow: 0 0 42px rgba(53, 215, 255, 0.3), 0 0 34px rgba(124, 255, 107, 0.22);
    }

    .btn-ghost {
      color: var(--text);
      border-color: rgba(255,255,255,0.16);
      background: rgba(255,255,255,0.07);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      color: var(--text);
      border-color: rgba(53, 215, 255, 0.55);
      background: rgba(53, 215, 255, 0.1);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid var(--line);
      border-radius: 50%;
      color: var(--text);
      background: rgba(255,255,255,0.07);
    }

    .mobile-panel {
      display: none;
      width: min(calc(100% - 40px), var(--max));
      margin: 10px auto 0;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(7, 17, 31, 0.94);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow);
    }

    .mobile-panel.is-open {
      display: block;
    }

    .mobile-panel a {
      display: block;
      margin: 4px 0;
      border: 1px solid transparent;
    }

    .mobile-panel a.active,
    .mobile-panel a:hover {
      border-color: rgba(124, 255, 107, 0.28);
      background: rgba(124, 255, 107, 0.1);
    }

    .mobile-panel .btn {
      width: 100%;
      margin-top: 12px;
    }

    .hero {
      position: relative;
      min-height: 820px;
      padding: 160px 0 96px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(7,17,31,.96), rgba(7,17,31,.72) 48%, rgba(7,17,31,.9)),
        url("/assets/images/backpic/back-1.webp") center / cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 72% 28%, rgba(53, 215, 255, 0.22), transparent 28%),
        radial-gradient(circle at 26% 70%, rgba(124, 255, 107, 0.14), transparent 30%),
        linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.92));
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      opacity: .34;
      background-image:
        linear-gradient(90deg, transparent 0 49%, rgba(124,255,107,.2) 50%, transparent 51% 100%),
        linear-gradient(0deg, transparent 0 49%, rgba(53,215,255,.16) 50%, transparent 51% 100%);
      background-size: 150px 150px;
      transform: perspective(700px) rotateX(58deg) translateY(200px);
      transform-origin: bottom;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      margin-bottom: 20px;
      padding: 7px 13px;
      border: 1px solid rgba(124,255,107,.28);
      border-radius: 999px;
      color: var(--primary);
      background: rgba(124,255,107,.08);
      font-size: 13px;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 16px var(--primary);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin-bottom: 22px;
      font-size: clamp(36px, 5vw, 62px);
      line-height: 1.14;
      letter-spacing: 0;
      font-weight: 950;
    }

    h2 {
      margin-bottom: 14px;
      font-size: clamp(30px, 3.3vw, 42px);
      line-height: 1.22;
      font-weight: 950;
      letter-spacing: 0;
    }

    h3 {
      margin-bottom: 10px;
      font-size: 22px;
      line-height: 1.35;
      font-weight: 900;
      letter-spacing: 0;
    }

    .hero-lead,
    .section-lead {
      color: var(--muted);
      font-size: 18px;
      line-height: 1.86;
    }

    .hero-lead {
      max-width: 660px;
      margin-bottom: 30px;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .stat-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-top: 38px;
    }

    .stat-item {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255,255,255,0.055);
      backdrop-filter: blur(14px);
    }

    .stat-item strong {
      display: block;
      margin-bottom: 4px;
      color: var(--text);
      font-size: 22px;
      line-height: 1.2;
    }

    .stat-item span {
      color: var(--subtle);
      font-size: 13px;
      font-weight: 700;
    }

    .score-console {
      position: relative;
      padding: 24px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 30px;
      background: linear-gradient(180deg, rgba(10,27,48,.82), rgba(8,20,36,.72));
      box-shadow: var(--shadow), var(--glow);
      backdrop-filter: blur(18px);
      overflow: hidden;
    }

    .score-console::before {
      content: "";
      position: absolute;
      top: 0;
      left: 24px;
      right: 24px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--cyan));
      box-shadow: 0 0 24px rgba(53,215,255,.5);
    }

    .console-head {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      margin-bottom: 18px;
      color: var(--subtle);
      font-size: 13px;
      font-weight: 800;
    }

    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
    }

    .live-dot::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 18px var(--primary);
    }

    .match-card {
      padding: 18px;
      margin-bottom: 14px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255,255,255,.06);
    }

    .match-meta {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 12px;
      color: var(--subtle);
      font-size: 13px;
      font-weight: 700;
    }

    .versus {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 14px;
      align-items: center;
    }

    .team {
      font-weight: 900;
      color: var(--text);
    }

    .team:last-child {
      text-align: right;
    }

    .score {
      min-width: 86px;
      padding: 8px 12px;
      border-radius: 14px;
      text-align: center;
      color: var(--primary);
      font-size: 28px;
      font-weight: 950;
      line-height: 1;
      background: rgba(124,255,107,.09);
      border: 1px solid rgba(124,255,107,.22);
    }

    .notice-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 16px;
    }

    .notice-card {
      padding: 16px;
      border-radius: 18px;
      background: rgba(53,215,255,.08);
      border: 1px solid rgba(53,215,255,.16);
    }

    .notice-card b {
      display: block;
      margin-bottom: 3px;
      color: var(--text);
    }

    .notice-card span {
      color: var(--subtle);
      font-size: 13px;
    }

    .section {
      padding: 96px 0;
      position: relative;
    }

    .section-tight {
      padding-top: 72px;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      margin-bottom: 12px;
      color: var(--cyan);
      font-size: 13px;
      font-weight: 900;
    }

    .glass-card,
    .feature-card,
    .topic-card,
    .plan-card,
    .review-card,
    .faq-card,
    .contact-panel,
    .footer-panel {
      border: 1px solid var(--line);
      background: var(--panel);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
    }

    .glass-card,
    .feature-card,
    .plan-card,
    .review-card,
    .faq-card,
    .contact-panel {
      border-radius: var(--radius);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1.25fr .75fr .75fr;
      gap: 18px;
      align-items: stretch;
    }

    .feature-card {
      position: relative;
      min-height: 240px;
      padding: 28px;
      overflow: hidden;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .feature-card.large {
      min-height: 420px;
      grid-row: span 2;
      background:
        linear-gradient(180deg, rgba(10,27,48,.72), rgba(10,27,48,.88)),
        url("/assets/images/coverpic/cover-2.webp") center / cover no-repeat;
    }

    .feature-card.wide {
      grid-column: span 2;
      min-height: 210px;
    }

    .feature-card:hover,
    .plan-card:hover,
    .review-card:hover,
    .topic-card:hover {
      transform: translateY(-4px);
      border-color: rgba(53,215,255,.48);
      box-shadow: var(--shadow), var(--glow);
    }

    .icon-badge {
      width: 46px;
      height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      border-radius: 16px;
      color: #06101e;
      font-weight: 950;
      background: linear-gradient(135deg, var(--primary), var(--cyan));
    }

    .feature-card p,
    .plan-card p,
    .topic-card p,
    .review-card p {
      color: var(--muted);
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 12px;
      color: var(--cyan);
      font-weight: 900;
    }

    .card-link:hover {
      color: var(--primary);
      text-decoration: underline;
      text-underline-offset: 5px;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 22px;
    }

    .mini-data {
      padding: 15px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 16px;
      background: rgba(255,255,255,.06);
    }

    .mini-data b {
      display: block;
      color: var(--primary);
      font-size: 24px;
      line-height: 1.2;
    }

    .mini-data span {
      color: var(--subtle);
      font-size: 13px;
    }

    .topic-masonry {
      columns: 3 280px;
      column-gap: 18px;
    }

    .topic-card {
      display: inline-block;
      width: 100%;
      margin: 0 0 18px;
      border-radius: 26px;
      overflow: hidden;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      break-inside: avoid;
      background: rgba(10, 27, 48, 0.82);
    }

    .topic-image {
      position: relative;
      min-height: 210px;
      background-position: center;
      background-size: cover;
    }

    .topic-card.tall .topic-image {
      min-height: 320px;
    }

    .topic-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7,17,31,.08), rgba(7,17,31,.9));
    }

    .topic-body {
      padding: 22px;
    }

    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 10px;
      border: 1px solid rgba(53,215,255,.24);
      border-radius: 999px;
      color: var(--cyan);
      background: rgba(53,215,255,.08);
      font-size: 12px;
      font-weight: 900;
      line-height: 1;
    }

    .tag.green {
      color: var(--primary);
      border-color: rgba(124,255,107,.28);
      background: rgba(124,255,107,.08);
    }

    .tag.orange {
      color: var(--orange);
      border-color: rgba(255,138,61,.32);
      background: rgba(255,138,61,.08);
    }

    .tag.purple {
      color: #bca7ff;
      border-color: rgba(139,92,255,.35);
      background: rgba(139,92,255,.11);
    }

    .topic-meta,
    .review-meta,
    .footer-bottom {
      color: var(--subtle);
      font-size: 13px;
    }

    .compare-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .plan-card {
      position: relative;
      padding: 26px;
      overflow: hidden;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .plan-card::before {
      content: "";
      position: absolute;
      left: 26px;
      right: 26px;
      top: 0;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--primary), var(--cyan));
      opacity: .68;
    }

    .check-list {
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      padding: 9px 0;
      color: var(--muted);
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .check-list li::before {
      content: "✓";
      flex: 0 0 auto;
      color: var(--primary);
      font-weight: 950;
    }

    .reviews-wrap {
      overflow: hidden;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(250px, 1fr));
      gap: 16px;
    }

    .review-card {
      padding: 22px;
      min-height: 250px;
    }

    .review-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: start;
      margin-bottom: 12px;
    }

    .reviewer {
      font-weight: 950;
      color: var(--text);
    }

    .rating {
      color: #ffd36b;
      font-weight: 950;
      white-space: nowrap;
    }

    .scenario {
      display: inline-flex;
      margin: 12px 0;
      color: var(--primary);
      font-size: 13px;
      font-weight: 800;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: .9fr 1.4fr;
      gap: 34px;
      align-items: start;
    }

    .faq-card {
      padding: 10px;
    }

    .accordion {
      margin: 0;
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 10px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 18px;
      overflow: hidden;
      background: rgba(255,255,255,.05);
    }

    .accordion-title {
      position: relative;
      padding: 20px 52px 20px 20px;
      border: 0;
      color: var(--text);
      font-size: 16px;
      font-weight: 900;
      line-height: 1.5;
      background: transparent;
    }

    .accordion-title::before {
      right: 20px;
      top: 50%;
      margin-top: -12px;
      color: var(--primary);
      font-size: 24px;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--primary);
      background: rgba(124,255,107,.06);
      outline: none;
    }

    .accordion-content {
      padding: 0 20px 20px;
      border: 0;
      color: var(--muted);
      background: transparent;
    }

    .accordion-item.is-active {
      border-color: rgba(53,215,255,.42);
      box-shadow: inset 0 0 0 1px rgba(53,215,255,.08), 0 0 24px rgba(53,215,255,.08);
    }

    .cta-section {
      padding: 88px 0 110px;
    }

    .contact-panel {
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(10,27,48,.9), rgba(8,20,36,.72)),
        url("/assets/images/backpic/back-2.webp") center / cover no-repeat;
      overflow: hidden;
    }

    .contact-form label {
      margin-bottom: 8px;
      color: var(--muted);
      font-weight: 800;
      font-size: 14px;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      min-height: 50px;
      margin-bottom: 16px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 16px;
      color: var(--text);
      background: rgba(7,17,31,.62);
      box-shadow: none;
    }

    .contact-form textarea {
      min-height: 118px;
      resize: vertical;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: rgba(200,214,229,.62);
    }

    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus {
      border-color: rgba(53,215,255,.75);
      background: rgba(7,17,31,.78);
      box-shadow: 0 0 0 4px rgba(53,215,255,.13);
      outline: none;
    }

    .quick-links {
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .quick-links a {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 14px 16px;
      border: 1px solid rgba(255,255,255,.11);
      border-radius: 16px;
      color: var(--muted);
      background: rgba(255,255,255,.055);
      font-weight: 800;
    }

    .quick-links a:hover {
      color: var(--text);
      border-color: rgba(124,255,107,.35);
      background: rgba(124,255,107,.08);
      transform: translateX(3px);
    }

    .site-footer {
      padding: 70px 0 28px;
      background: #06101e;
      border-top: 1px solid rgba(255,255,255,.1);
    }

    .footer-panel {
      padding: 32px;
      border-radius: 28px;
      background: rgba(12,31,54,.72);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(4, 1fr);
      gap: 28px;
    }

    .footer-title {
      margin-bottom: 12px;
      color: var(--text);
      font-size: 16px;
      font-weight: 950;
    }

    .footer-desc,
    .footer-links a,
    .footer-contact p {
      color: var(--subtle);
      font-size: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a:hover {
      color: var(--primary);
      text-decoration: underline;
      text-underline-offset: 5px;
    }

    .footer-bottom {
      margin-top: 26px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,.1);
      text-align: center;
      line-height: 2;
    }

    .footer-bottom a {
      color: var(--muted);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: var(--cyan);
    }

    :focus-visible {
      outline: 3px solid rgba(53,215,255,.55);
      outline-offset: 3px;
    }

    @media screen and (max-width: 1120px) {
      .desktop-nav {
        display: none;
      }

      .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .nav-shell {
        justify-content: space-between;
      }

      .search-box {
        display: none;
      }

      .feature-grid,
      .compare-grid,
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .feature-card.large,
      .feature-card.wide {
        grid-column: span 1;
        grid-row: auto;
      }

      .faq-layout {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid > div:first-child {
        grid-column: span 2;
      }
    }

    @media screen and (max-width: 768px) {
      .site-header {
        top: 10px;
      }

      .nav-shell,
      .mobile-panel,
      .container {
        width: min(calc(100% - 28px), var(--max));
      }

      .nav-shell {
        min-height: 64px;
        padding: 9px 10px 9px 14px;
      }

      .brand {
        font-size: 18px;
      }

      .brand-mark {
        width: 36px;
        height: 26px;
      }

      .nav-actions .btn-primary {
        display: none;
      }

      .hero {
        min-height: auto;
        padding: 130px 0 62px;
      }

      .hero-actions,
      .cta-actions {
        align-items: stretch;
      }

      .hero-actions .btn,
      .cta-actions .btn {
        width: 100%;
      }

      .stat-strip,
      .notice-row,
      .feature-grid,
      .compare-grid,
      .reviews-grid,
      .mini-grid {
        grid-template-columns: 1fr;
      }

      .score-console {
        margin-top: 28px;
        padding: 20px;
        border-radius: 24px;
      }

      .versus {
        grid-template-columns: 1fr;
        gap: 8px;
        text-align: center;
      }

      .team:last-child {
        text-align: center;
      }

      .score {
        margin: 0 auto;
      }

      .section {
        padding: 62px 0;
      }

      .section-tight {
        padding-top: 54px;
      }

      .topic-masonry {
        columns: 1;
      }

      .topic-card.tall .topic-image,
      .topic-image {
        min-height: 220px;
      }

      .contact-panel,
      .footer-panel {
        padding: 22px;
        border-radius: 22px;
      }

      .footer-grid,
      .footer-grid > div:first-child {
        grid-template-columns: 1fr;
        grid-column: auto;
      }
    }

    @media screen and (max-width: 520px) {
      .container {
        width: min(calc(100% - 24px), var(--max));
      }

      h1 {
        font-size: 34px;
      }

      h2 {
        font-size: 28px;
      }

      .hero-lead,
      .section-lead {
        font-size: 16px;
      }

      .feature-card,
      .plan-card,
      .review-card {
        padding: 22px;
      }

      .accordion-title {
        padding-right: 46px;
      }

      .footer-bottom a {
        display: inline-block;
        margin: 2px 5px;
      }
    }

/* roulang page: category1 */
:root{
      --bg:#07111F;
      --bg-2:#0B1E35;
      --panel:#0d2139;
      --panel-soft:rgba(10,27,48,.72);
      --primary:#7CFF6B;
      --cyan:#35D7FF;
      --grass:#49e26e;
      --text:#F5FAFF;
      --muted:#C8D6E5;
      --weak:#8FA4B8;
      --border:rgba(255,255,255,.12);
      --border-strong:rgba(124,255,107,.35);
      --shadow:0 24px 80px rgba(0,0,0,.32);
      --glow:0 0 30px rgba(124,255,107,.22),0 0 42px rgba(53,215,255,.12);
      --radius:24px;
      --radius-lg:32px;
      --container:1220px;
      --ease:all .25s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 20% 8%,rgba(53,215,255,.16),transparent 34%),
        radial-gradient(circle at 78% 12%,rgba(124,255,107,.12),transparent 30%),
        linear-gradient(180deg,#06101d 0%,#081728 42%,#07111F 100%);
      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,.025) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.9),rgba(0,0,0,.15));
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    input,textarea,select{outline:none}
    .container{width:min(100% - 40px,var(--container));margin-inline:auto}
    .site-header{
      position:fixed;
      left:0;
      right:0;
      top:0;
      z-index:1000;
      padding:14px 20px;
      transition:var(--ease);
    }
    .site-header.is-scrolled{background:rgba(7,17,31,.86);box-shadow:0 14px 40px rgba(0,0,0,.35);backdrop-filter:blur(18px)}
    .nav-shell{
      width:min(100%,1260px);
      margin:auto;
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      padding:0 18px;
      border:1px solid var(--border);
      border-radius:999px;
      background:rgba(7,17,31,.58);
      backdrop-filter:blur(18px);
      box-shadow:0 18px 60px rgba(0,0,0,.28);
    }
    .brand{display:inline-flex;align-items:center;gap:10px;font-weight:800;font-size:21px;letter-spacing:.02em;white-space:nowrap}
    .brand-mark{
      width:34px;height:34px;border-radius:12px;
      background:linear-gradient(135deg,var(--primary),var(--cyan));
      position:relative;
      box-shadow:0 0 22px rgba(124,255,107,.45);
    }
    .brand-mark:before{
      content:"";
      position:absolute;
      inset:8px 5px;
      border-top:2px solid rgba(7,17,31,.75);
      border-bottom:2px solid rgba(7,17,31,.75);
      transform:skewX(-16deg);
    }
    .desktop-nav{display:flex;align-items:center;gap:4px}
    .desktop-nav a,.mobile-panel a:not(.btn){
      padding:10px 14px;
      border-radius:999px;
      color:var(--muted);
      font-size:14px;
      font-weight:650;
      position:relative;
    }
    .desktop-nav a:hover,.desktop-nav a.active{
      color:var(--text);
      background:rgba(124,255,107,.1);
      box-shadow:inset 0 0 0 1px rgba(124,255,107,.18);
    }
    .desktop-nav a.active:after{
      content:"";
      position:absolute;
      left:20px;right:20px;bottom:5px;height:2px;
      border-radius:2px;background:var(--primary);
      box-shadow:0 0 10px rgba(124,255,107,.8);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .search-box{
      display:flex;
      align-items:center;
      gap:8px;
      min-width:245px;
      padding:8px 12px;
      border:1px solid var(--border);
      border-radius:999px;
      background:rgba(255,255,255,.06);
      color:var(--weak);
    }
    .search-box input{
      width:100%;
      border:0;
      background:transparent;
      color:var(--text);
      box-shadow:none;
      height:28px;
      margin:0;
      padding:0;
      font-size:13px;
    }
    .search-box input::placeholder{color:var(--weak)}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:12px 20px;
      border-radius:999px;
      font-weight:800;
      border:1px solid transparent;
      cursor:pointer;
      transition:var(--ease);
      line-height:1.2;
      white-space:nowrap;
    }
    .btn-primary{
      color:#06111f;
      background:linear-gradient(135deg,var(--primary),var(--cyan));
      box-shadow:0 0 22px rgba(124,255,107,.26),0 12px 34px rgba(0,0,0,.28);
    }
    .btn-primary:hover,.btn-primary:focus{color:#06111f;transform:translateY(-2px);box-shadow:0 0 34px rgba(124,255,107,.42),0 16px 44px rgba(0,0,0,.35)}
    .btn-secondary{
      color:var(--text);
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.18);
      backdrop-filter:blur(12px);
    }
    .btn-secondary:hover,.btn-secondary:focus{background:rgba(53,215,255,.12);border-color:rgba(53,215,255,.45);color:var(--text);transform:translateY(-2px)}
    .menu-toggle{
      display:none;
      width:44px;height:44px;border-radius:50%;
      border:1px solid var(--border);
      color:var(--text);
      background:rgba(255,255,255,.08);
      cursor:pointer;
    }
    .menu-toggle:focus{box-shadow:0 0 0 3px rgba(53,215,255,.25)}
    .mobile-panel{
      display:none;
      width:min(100% - 40px,680px);
      margin:10px auto 0;
      padding:16px;
      border:1px solid var(--border);
      border-radius:24px;
      background:rgba(7,17,31,.92);
      backdrop-filter:blur(20px);
      box-shadow:var(--shadow);
    }
    .mobile-panel.is-open{display:grid;gap:8px}
    .hero{
      position:relative;
      min-height:720px;
      padding:154px 0 96px;
      overflow:hidden;
      background:
        linear-gradient(90deg,rgba(7,17,31,.96) 0%,rgba(7,17,31,.68) 55%,rgba(7,17,31,.95) 100%),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 50% 5%,rgba(124,255,107,.16),transparent 26%),
        linear-gradient(115deg,transparent 0 38%,rgba(53,215,255,.1) 39%,transparent 42% 100%);
      pointer-events:none;
    }
    .hero:after{
      content:"";
      position:absolute;
      left:50%;
      bottom:40px;
      width:min(760px,86vw);
      height:260px;
      transform:translateX(-50%) perspective(620px) rotateX(62deg);
      border:2px solid rgba(124,255,107,.18);
      border-radius:44px;
      box-shadow:inset 0 0 42px rgba(124,255,107,.08),0 0 50px rgba(53,215,255,.08);
      pointer-events:none;
    }
    .hero .grid-x{position:relative;z-index:1}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      color:var(--primary);
      background:rgba(124,255,107,.1);
      border:1px solid rgba(124,255,107,.22);
      font-size:13px;
      font-weight:800;
      letter-spacing:.04em;
      margin-bottom:20px;
    }
    .eyebrow:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 12px rgba(124,255,107,.9);
    }
    h1,h2,h3,p{margin-top:0}
    h1{font-size:clamp(38px,5vw,62px);line-height:1.12;margin-bottom:22px;font-weight:900;letter-spacing:-.04em}
    h2{font-size:clamp(30px,3.3vw,42px);line-height:1.2;margin-bottom:16px;font-weight:900;letter-spacing:-.025em}
    h3{font-size:22px;line-height:1.35;margin-bottom:10px;font-weight:850}
    .hero-lead{max-width:690px;color:var(--muted);font-size:18px;margin-bottom:28px}
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:30px}
    .hero-tags{display:flex;gap:10px;flex-wrap:wrap}
    .tag,.badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:7px 11px;
      border-radius:999px;
      color:var(--muted);
      background:rgba(255,255,255,.07);
      border:1px solid var(--border);
      font-size:13px;
      font-weight:750;
    }
    .badge.green{color:var(--primary);border-color:rgba(124,255,107,.28);background:rgba(124,255,107,.09)}
    .badge.cyan{color:var(--cyan);border-color:rgba(53,215,255,.28);background:rgba(53,215,255,.08)}
    .score-console,.glass-card{
      background:var(--panel-soft);
      border:1px solid var(--border);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      backdrop-filter:blur(16px);
      position:relative;
      overflow:hidden;
    }
    .score-console:before,.glass-card:before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 85% 10%,rgba(124,255,107,.14),transparent 28%);
      pointer-events:none;
    }
    .score-console{padding:26px}
    .console-top{display:flex;justify-content:space-between;align-items:center;margin-bottom:20px;position:relative}
    .console-title{font-weight:900;font-size:18px}
    .live-dot{display:flex;align-items:center;gap:7px;color:var(--primary);font-size:13px;font-weight:800}
    .live-dot:before{content:"";width:9px;height:9px;border-radius:50%;background:var(--primary);box-shadow:0 0 14px var(--primary)}
    .match-card{
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.06);
      border:1px solid var(--border);
      margin-bottom:14px;
      transition:var(--ease);
      position:relative;
    }
    .match-card:hover{transform:translateY(-3px);border-color:var(--border-strong);box-shadow:var(--glow)}
    .match-meta{display:flex;justify-content:space-between;gap:10px;color:var(--weak);font-size:13px;margin-bottom:12px}
    .teams{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:12px}
    .team{font-weight:850;font-size:17px}
    .team.right{text-align:right}
    .vs{
      width:44px;height:44px;border-radius:50%;
      display:grid;place-items:center;
      color:#06111f;
      font-weight:900;
      background:linear-gradient(135deg,var(--primary),var(--cyan));
      box-shadow:0 0 18px rgba(124,255,107,.34);
    }
    .section{padding:96px 0;position:relative}
    .section.tight{padding-top:68px}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:34px;
    }
    .section-kicker{color:var(--primary);font-weight:900;font-size:13px;letter-spacing:.08em;margin-bottom:8px}
    .section-title{max-width:760px}
    .section-desc{max-width:560px;color:var(--muted);margin-bottom:0}
    .filter-bar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px;
      border-radius:999px;
      background:rgba(255,255,255,.055);
      border:1px solid var(--border);
      margin-bottom:30px;
      overflow-x:auto;
    }
    .filter-pills{display:flex;gap:10px;white-space:nowrap}
    .filter-pills a{
      padding:9px 14px;border-radius:999px;color:var(--muted);
      border:1px solid rgba(255,255,255,.12);
      background:rgba(7,17,31,.35);
      font-weight:750;font-size:14px;
    }
    .filter-pills a.active,.filter-pills a:hover{color:#06111f;background:var(--primary);border-color:var(--primary)}
    .timeline{
      position:relative;
      padding:26px;
    }
    .timeline:after{
      content:"";
      position:absolute;
      left:41px;top:88px;bottom:30px;width:2px;
      background:linear-gradient(to bottom,var(--primary),rgba(53,215,255,.15));
    }
    .timeline-item{
      position:relative;
      display:grid;
      grid-template-columns:74px 1fr;
      gap:18px;
      padding:18px 0;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .timeline-item:last-child{border-bottom:0}
    .time{
      position:relative;
      z-index:2;
      display:grid;
      place-items:center;
      width:64px;height:64px;
      border-radius:20px;
      color:#06111f;
      background:linear-gradient(135deg,var(--primary),var(--cyan));
      font-weight:900;
      box-shadow:0 0 20px rgba(124,255,107,.28);
      line-height:1.1;
    }
    .time small{display:block;font-size:11px;font-weight:800}
    .fixture-main{display:flex;justify-content:space-between;gap:18px;align-items:flex-start}
    .fixture-title{font-weight:900;font-size:19px;margin-bottom:5px}
    .fixture-note{color:var(--muted);margin:0}
    .status{
      flex:0 0 auto;
      padding:6px 10px;border-radius:999px;
      color:var(--primary);
      background:rgba(124,255,107,.1);
      border:1px solid rgba(124,255,107,.23);
      font-size:12px;font-weight:850;
    }
    .league-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:24px}
    .league-card{min-height:320px;padding:30px}
    .league-card.feature{
      background:
        linear-gradient(180deg,rgba(7,17,31,.22),rgba(7,17,31,.88)),
        url("/assets/images/coverpic/cover-1.webp") center/cover no-repeat;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
    }
    .league-list{display:grid;gap:16px}
    .mini-league{
      padding:20px;border-radius:22px;background:rgba(255,255,255,.055);
      border:1px solid var(--border);
      display:flex;justify-content:space-between;align-items:center;gap:14px;
      transition:var(--ease);
    }
    .mini-league:hover{transform:translateX(4px);border-color:rgba(53,215,255,.35);background:rgba(53,215,255,.08)}
    .league-icon{
      width:46px;height:46px;border-radius:16px;
      display:grid;place-items:center;
      background:rgba(124,255,107,.12);
      border:1px solid rgba(124,255,107,.22);
      font-weight:900;color:var(--primary);
      flex:0 0 auto;
    }
    .feature-layout{display:grid;grid-template-columns:1.45fr .55fr;gap:24px}
    .news-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
    .news-card{
      min-height:255px;
      border-radius:24px;
      overflow:hidden;
      position:relative;
      border:1px solid var(--border);
      box-shadow:0 20px 55px rgba(0,0,0,.24);
      transition:var(--ease);
      background:var(--panel);
    }
    .news-card:hover{transform:translateY(-4px);border-color:rgba(124,255,107,.35);box-shadow:var(--glow)}
    .news-card img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;opacity:.72}
    .news-card .overlay{position:absolute;inset:0;background:linear-gradient(180deg,rgba(7,17,31,.12),rgba(7,17,31,.94))}
    .news-content{position:absolute;inset:auto 0 0;padding:22px}
    .news-content p{color:var(--muted);font-size:14px;margin-bottom:0}
    .side-panel{padding:24px;position:sticky;top:110px}
    .rank-list{display:grid;gap:12px;margin:18px 0 0}
    .rank-item{
      display:grid;grid-template-columns:34px 1fr auto;align-items:center;gap:12px;
      padding:13px;border-radius:18px;background:rgba(255,255,255,.055);
      border:1px solid rgba(255,255,255,.08);
    }
    .rank-no{width:28px;height:28px;border-radius:10px;display:grid;place-items:center;background:rgba(124,255,107,.12);color:var(--primary);font-weight:900}
    .rank-team{font-weight:800}
    .rank-score{color:var(--cyan);font-weight:900}
    .process-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
    .step-card{padding:24px}
    .step-no{font-size:34px;font-weight:950;line-height:1;color:var(--primary);text-shadow:0 0 18px rgba(124,255,107,.25);margin-bottom:16px}
    .step-card p{color:var(--muted);margin-bottom:0}
    .accordion{background:transparent}
    .accordion-item{margin-bottom:14px;border-radius:22px;overflow:hidden;border:1px solid var(--border);background:rgba(10,27,48,.68);backdrop-filter:blur(14px)}
    .accordion-title{
      background:transparent;
      color:var(--text);
      font-size:17px;
      font-weight:850;
      padding:20px 56px 20px 22px;
      border:0;
    }
    .accordion-title:hover,.accordion-title:focus{background:rgba(124,255,107,.08);color:var(--primary)}
    .accordion-title:before{font-size:24px;right:22px;margin-top:-13px;color:var(--primary)}
    .accordion-content{
      background:rgba(7,17,31,.54);
      color:var(--muted);
      border:0;
      padding:0 22px 22px;
      line-height:1.8;
    }
    .cta-panel{
      padding:34px;
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 80% 20%,rgba(124,255,107,.18),transparent 30%),
        linear-gradient(135deg,rgba(10,27,48,.9),rgba(18,58,99,.56));
      border:1px solid rgba(124,255,107,.2);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .cta-panel:after{
      content:"";
      position:absolute;
      right:-80px;bottom:-120px;width:300px;height:300px;border-radius:50%;
      border:40px solid rgba(53,215,255,.06);
    }
    .form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;position:relative;z-index:1}
    .field.full{grid-column:1/-1}
    label{display:block;color:var(--muted);font-weight:750;margin-bottom:8px;font-size:14px}
    input[type="text"],input[type="email"],textarea,select{
      width:100%;
      min-height:50px;
      margin:0;
      padding:12px 14px;
      color:var(--text);
      border-radius:16px;
      border:1px solid var(--border);
      background:rgba(255,255,255,.06);
      box-shadow:none;
      transition:var(--ease);
    }
    textarea{min-height:112px;resize:vertical}
    input:focus,textarea:focus,select:focus{
      border-color:rgba(53,215,255,.65);
      box-shadow:0 0 0 4px rgba(53,215,255,.12),0 0 24px rgba(53,215,255,.18);
      background:rgba(255,255,255,.08);
    }
    .quick-links{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
    .quick-links a{font-size:14px}
    .site-footer{padding:72px 0 34px;background:#050d18;border-top:1px solid rgba(255,255,255,.1)}
    .footer-panel{
      padding:34px;
      border-radius:28px;
      background:rgba(10,27,48,.72);
      border:1px solid var(--border);
      box-shadow:0 24px 70px rgba(0,0,0,.28);
    }
    .footer-grid{display:grid;grid-template-columns:1.35fr .8fr .9fr 1fr .9fr;gap:28px}
    .footer-desc,.footer-contact p{color:var(--weak);margin:14px 0 0;font-size:14px}
    .footer-title{font-weight:900;margin-bottom:12px;color:var(--text)}
    .footer-links{display:grid;gap:8px}
    .footer-links a{color:var(--weak);font-size:14px}
    .footer-links a:hover{color:var(--primary);transform:translateX(3px)}
    .footer-bottom{
      margin-top:30px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.1);
      text-align:center;
      color:rgba(200,214,229,.72);
      font-size:13px;
      display:grid;
      gap:8px;
    }
    .footer-bottom a{color:rgba(200,214,229,.82)}
    .footer-bottom a:hover{color:var(--primary)}
    @media (max-width:1100px){
      .desktop-nav{display:none}
      .search-box{display:none}
      .menu-toggle{display:inline-grid;place-items:center}
      .nav-shell{border-radius:28px}
      .feature-layout,.league-grid{grid-template-columns:1fr}
      .process-grid{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:repeat(2,1fr)}
      .side-panel{position:relative;top:auto}
    }
    @media (max-width:768px){
      .container{width:min(100% - 28px,var(--container))}
      .site-header{padding:10px 12px}
      .nav-shell{min-height:64px;padding:0 12px}
      .brand{font-size:19px}
      .nav-actions .btn-primary{display:none}
      .hero{min-height:auto;padding:126px 0 66px}
      .hero-actions .btn{width:100%}
      .score-console{margin-top:30px}
      .section{padding:66px 0}
      .section-head{display:block}
      .section-desc{margin-top:10px}
      .filter-bar{border-radius:24px;align-items:flex-start;flex-direction:column}
      .timeline{padding:18px}
      .timeline:after{left:32px;top:82px}
      .timeline-item{grid-template-columns:54px 1fr;gap:14px}
      .time{width:52px;height:52px;border-radius:16px;font-size:13px}
      .fixture-main{display:block}
      .status{display:inline-flex;margin-top:10px}
      .news-grid{grid-template-columns:1fr}
      .news-card{min-height:280px}
      .process-grid{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr}
      h1{letter-spacing:-.025em}
    }
    @media (max-width:520px){
      .mobile-panel{width:calc(100% - 24px)}
      .teams{grid-template-columns:1fr;gap:8px;text-align:left}
      .team.right{text-align:left}
      .vs{width:40px;height:32px;border-radius:999px}
      .filter-pills{max-width:100%;overflow:auto;padding-bottom:4px}
      .cta-panel,.footer-panel{padding:24px}
    }

/* roulang page: category2 */
:root{
      --bg:#07111F;
      --bg-2:#0B1E35;
      --bg-3:#123A63;
      --panel:rgba(10,27,48,.74);
      --panel-strong:rgba(9,24,44,.9);
      --text:#F5FAFF;
      --muted:#C8D6E5;
      --subtle:#8FA4B8;
      --line:rgba(255,255,255,.12);
      --line-strong:rgba(255,255,255,.2);
      --green:#7CFF6B;
      --cyan:#35D7FF;
      --orange:#FF8A3D;
      --orange-2:#FFB36B;
      --red:#FF5D62;
      --shadow:0 24px 80px rgba(0,0,0,.32);
      --glow:0 0 34px rgba(255,138,61,.22),0 0 52px rgba(53,215,255,.12);
      --radius:24px;
      --radius-lg:32px;
      --ease:all .25s ease;
      --container:1220px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 18% 8%,rgba(255,138,61,.18),transparent 28%),
        radial-gradient(circle at 78% 4%,rgba(53,215,255,.15),transparent 30%),
        linear-gradient(180deg,#07111F 0%,#09182B 44%,#07111F 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.25;
      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,.8),transparent 72%);
      z-index:-2;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover,a:focus{color:var(--cyan)}
    img{max-width:100%;display:block}
    button,input,select,textarea{font:inherit}
    input,select,textarea{color:var(--text)}
    button{cursor:pointer}
    .container{
      width:min(calc(100% - 40px),var(--container));
      margin:0 auto;
    }
    .site-header{
      position:fixed;
      top:18px;
      left:0;
      right:0;
      z-index:1000;
      transition:var(--ease);
    }
    .site-header.is-scrolled{
      top:0;
      background:rgba(7,17,31,.86);
      border-bottom:1px solid var(--line);
      backdrop-filter:blur(18px);
      box-shadow:0 18px 60px rgba(0,0,0,.32);
    }
    .nav-shell{
      width:min(calc(100% - 32px),1280px);
      margin:0 auto;
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:12px 16px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(7,17,31,.58);
      backdrop-filter:blur(18px);
      box-shadow:0 16px 54px rgba(0,0,0,.24);
    }
    .site-header.is-scrolled .nav-shell{
      border-color:rgba(255,255,255,.16);
      background:rgba(8,22,39,.78);
      box-shadow:none;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      color:var(--text);
      letter-spacing:.02em;
      white-space:nowrap;
      font-size:20px;
    }
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:12px;
      position:relative;
      background:
        linear-gradient(135deg,rgba(124,255,107,.95),rgba(53,215,255,.88)),
        radial-gradient(circle at 70% 30%,#fff,transparent 18%);
      box-shadow:0 0 24px rgba(124,255,107,.35);
    }
    .brand-mark::before,.brand-mark::after{
      content:"";
      position:absolute;
      left:7px;
      right:7px;
      height:2px;
      background:rgba(7,17,31,.76);
      border-radius:4px;
    }
    .brand-mark::before{top:11px}
    .brand-mark::after{bottom:11px}
    .desktop-nav{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:4px;
      flex:1;
    }
    .desktop-nav a,.mobile-panel a:not(.btn){
      color:var(--muted);
      font-size:14px;
      font-weight:700;
      padding:10px 13px;
      border-radius:999px;
      position:relative;
    }
    .desktop-nav a:hover,.desktop-nav a:focus,.mobile-panel a:not(.btn):hover{
      color:var(--text);
      background:rgba(255,255,255,.08);
    }
    .desktop-nav a.active,.mobile-panel a.active{
      color:#07111F;
      background:linear-gradient(135deg,var(--orange),var(--orange-2));
      box-shadow:0 0 22px rgba(255,138,61,.25);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:10px;
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:8px;
      height:42px;
      min-width:250px;
      padding:0 14px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.06);
      color:var(--subtle);
      transition:var(--ease);
    }
    .search-box:focus-within{
      border-color:rgba(53,215,255,.7);
      box-shadow:0 0 0 4px rgba(53,215,255,.1);
    }
    .search-box input{
      width:100%;
      border:0;
      outline:0;
      background:transparent;
      color:var(--text);
      font-size:13px;
      box-shadow:none;
      margin:0;
      height:auto;
      padding:0;
    }
    .search-box input::placeholder{color:#91A7BA}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:13px 22px;
      border-radius:999px;
      font-weight:900;
      line-height:1.1;
      border:1px solid transparent;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-primary{
      color:#07111F;
      background:linear-gradient(135deg,var(--orange),var(--green) 52%,var(--cyan));
      box-shadow:0 0 24px rgba(255,138,61,.22),0 0 38px rgba(53,215,255,.12);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#07111F;
      transform:translateY(-2px);
      box-shadow:0 0 30px rgba(255,138,61,.36),0 0 54px rgba(53,215,255,.18);
    }
    .btn-secondary{
      color:var(--text);
      border-color:rgba(255,255,255,.18);
      background:rgba(255,255,255,.06);
      backdrop-filter:blur(12px);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      color:var(--text);
      border-color:rgba(53,215,255,.55);
      background:rgba(53,215,255,.1);
      transform:translateY(-2px);
    }
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border:1px solid var(--line);
      border-radius:50%;
      color:var(--text);
      background:rgba(255,255,255,.06);
    }
    .menu-toggle:focus{outline:3px solid rgba(53,215,255,.25)}
    .mobile-panel{
      display:none;
      width:min(calc(100% - 32px),680px);
      margin:10px auto 0;
      padding:14px;
      border:1px solid var(--line);
      border-radius:24px;
      background:rgba(7,17,31,.92);
      backdrop-filter:blur(18px);
      box-shadow:var(--shadow);
    }
    .mobile-panel.is-open{display:grid;gap:8px}
    .hero{
      position:relative;
      min-height:760px;
      display:flex;
      align-items:center;
      padding:150px 0 84px;
      overflow:hidden;
      background:
        linear-gradient(90deg,rgba(7,17,31,.96),rgba(7,17,31,.72) 56%,rgba(7,17,31,.92)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 78% 30%,rgba(255,138,61,.22),transparent 28%),
        radial-gradient(circle at 46% 12%,rgba(53,215,255,.16),transparent 30%),
        linear-gradient(180deg,transparent 68%,var(--bg) 100%);
      pointer-events:none;
    }
    .hero::after{
      content:"24 89 102 98 76";
      position:absolute;
      right:-80px;
      top:130px;
      font-weight:1000;
      font-size:132px;
      letter-spacing:.08em;
      color:rgba(255,255,255,.045);
      transform:rotate(-8deg);
      white-space:nowrap;
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:1}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:8px 12px;
      border:1px solid rgba(255,138,61,.35);
      border-radius:999px;
      color:#FFE0C7;
      background:rgba(255,138,61,.1);
      font-size:13px;
      font-weight:900;
      letter-spacing:.04em;
      margin-bottom:18px;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--orange);
      box-shadow:0 0 16px rgba(255,138,61,.8);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(38px,5vw,64px);
      line-height:1.12;
      letter-spacing:-.045em;
      margin-bottom:22px;
      font-weight:1000;
    }
    h2{
      font-size:clamp(30px,3.6vw,44px);
      line-height:1.2;
      letter-spacing:-.03em;
      margin-bottom:14px;
      font-weight:1000;
    }
    h3{
      font-size:22px;
      line-height:1.32;
      margin-bottom:10px;
      font-weight:950;
    }
    .lead{
      color:var(--muted);
      font-size:18px;
      max-width:720px;
      margin-bottom:28px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin:30px 0}
    .hero-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
    .tag,.badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:999px;
      font-size:13px;
      font-weight:800;
      color:var(--muted);
      border:1px solid var(--line);
      background:rgba(255,255,255,.06);
      padding:7px 11px;
    }
    .badge-orange{
      color:#FFE3CE;
      border-color:rgba(255,138,61,.35);
      background:rgba(255,138,61,.12);
    }
    .score-board{
      border:1px solid rgba(255,255,255,.16);
      border-radius:var(--radius-lg);
      background:linear-gradient(180deg,rgba(10,27,48,.86),rgba(8,19,36,.76));
      box-shadow:var(--shadow),var(--glow);
      backdrop-filter:blur(18px);
      padding:24px;
      position:relative;
      overflow:hidden;
    }
    .score-board::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,transparent,rgba(255,138,61,.1),transparent),
        radial-gradient(circle at 88% 18%,rgba(255,138,61,.3),transparent 28%);
      pointer-events:none;
    }
    .board-head,.match-row,.team-line,.metric-row,.news-item,.rank-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      position:relative;
      z-index:1;
    }
    .board-head{
      padding-bottom:16px;
      border-bottom:1px solid var(--line);
      margin-bottom:16px;
    }
    .board-title{font-size:14px;color:var(--subtle);font-weight:900}
    .live-dot{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:#07111F;
      background:var(--orange);
      border-radius:999px;
      padding:5px 10px;
      font-size:12px;
      font-weight:1000;
    }
    .live-dot::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:#07111F;
    }
    .main-score{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:16px;
      padding:18px 0 20px;
    }
    .team{
      display:grid;
      justify-items:center;
      gap:8px;
      text-align:center;
    }
    .team-logo{
      width:54px;
      height:54px;
      border-radius:18px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,rgba(255,138,61,.22),rgba(53,215,255,.14));
      border:1px solid var(--line);
      font-weight:1000;
      color:#FFE5D0;
    }
    .team-name{font-weight:950}
    .score-num{
      display:flex;
      align-items:baseline;
      gap:10px;
      font-size:54px;
      line-height:1;
      font-weight:1000;
      color:var(--text);
      letter-spacing:-.04em;
      text-shadow:0 0 24px rgba(255,138,61,.24);
    }
    .score-num span{
      color:var(--orange);
    }
    .game-meta{
      display:grid;
      gap:8px;
      padding:14px;
      border:1px solid var(--line);
      border-radius:18px;
      background:rgba(255,255,255,.05);
      margin-bottom:16px;
    }
    .progress-track{
      height:9px;
      background:rgba(255,255,255,.08);
      border-radius:999px;
      overflow:hidden;
    }
    .progress-track i{
      display:block;
      width:64%;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--orange),var(--cyan));
      box-shadow:0 0 18px rgba(255,138,61,.4);
    }
    .mini-games{display:grid;gap:10px}
    .match-row{
      padding:12px 14px;
      border:1px solid var(--line);
      border-radius:18px;
      background:rgba(255,255,255,.045);
    }
    .match-row strong{color:var(--text)}
    .match-row small{color:var(--subtle);font-weight:800}
    main{position:relative}
    .section{padding:96px 0}
    .section-tight{padding:76px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:32px;
    }
    .section-head p{
      color:var(--muted);
      max-width:680px;
      margin-bottom:0;
    }
    .glass-card{
      position:relative;
      overflow:hidden;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:var(--panel);
      backdrop-filter:blur(16px);
      box-shadow:0 18px 68px rgba(0,0,0,.22);
      transition:var(--ease);
    }
    .glass-card:hover{
      transform:translateY(-4px);
      border-color:rgba(255,138,61,.42);
      box-shadow:0 24px 80px rgba(0,0,0,.32),0 0 40px rgba(255,138,61,.13);
    }
    .card-pad{padding:26px}
    .score-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
    }
    .focus-card{
      min-height:100%;
      padding:28px;
      background:
        linear-gradient(135deg,rgba(255,138,61,.16),transparent 42%),
        rgba(10,27,48,.76);
    }
    .quarter-strip{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:10px;
      margin:22px 0;
    }
    .quarter{
      padding:14px 10px;
      border:1px solid var(--line);
      border-radius:16px;
      text-align:center;
      background:rgba(255,255,255,.045);
    }
    .quarter b{
      display:block;
      font-size:22px;
      color:#FFE1C8;
      line-height:1.2;
    }
    .quarter span{font-size:12px;color:var(--subtle);font-weight:800}
    .team-line{
      padding:15px 0;
      border-bottom:1px solid var(--line);
    }
    .team-line:last-child{border-bottom:0}
    .team-line .club{
      display:flex;
      align-items:center;
      gap:12px;
      font-weight:900;
    }
    .club-icon{
      width:34px;
      height:34px;
      display:grid;
      place-items:center;
      border-radius:12px;
      background:rgba(255,138,61,.16);
      border:1px solid rgba(255,138,61,.28);
      color:#FFD5B5;
      font-size:13px;
      font-weight:1000;
    }
    .team-line .points{
      font-size:26px;
      font-weight:1000;
      color:var(--orange);
    }
    .horizontal-scroll{
      display:flex;
      gap:18px;
      overflow:auto;
      padding:4px 4px 18px;
      scroll-snap-type:x mandatory;
    }
    .horizontal-scroll::-webkit-scrollbar{height:8px}
    .horizontal-scroll::-webkit-scrollbar-thumb{
      background:rgba(255,138,61,.36);
      border-radius:999px;
    }
    .game-card{
      min-width:310px;
      scroll-snap-align:start;
      padding:22px;
    }
    .game-card .vs{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:12px;
      margin:18px 0;
      text-align:center;
    }
    .game-card .vs b{
      display:block;
      font-size:18px;
    }
    .vs-mark{
      width:44px;
      height:44px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#07111F;
      font-weight:1000;
      background:linear-gradient(135deg,var(--orange),var(--cyan));
      box-shadow:0 0 20px rgba(255,138,61,.22);
    }
    .status{
      color:#07111F;
      background:linear-gradient(135deg,var(--orange),var(--orange-2));
      border-radius:999px;
      padding:5px 10px;
      font-size:12px;
      font-weight:1000;
    }
    .media-card{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:0;
      overflow:hidden;
    }
    .media-img{
      min-height:330px;
      position:relative;
      background:url("/assets/images/coverpic/cover-4.webp") center/cover no-repeat;
    }
    .media-img::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg,transparent,rgba(7,17,31,.3));
    }
    .media-body{
      padding:34px;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .feature-list{
      display:grid;
      gap:14px;
      margin:22px 0 0;
      padding:0;
      list-style:none;
    }
    .feature-list li{
      display:flex;
      gap:12px;
      color:var(--muted);
      padding:12px 0;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .feature-list li:last-child{border-bottom:0}
    .check{
      flex:0 0 auto;
      width:24px;
      height:24px;
      border-radius:50%;
      display:grid;
      place-items:center;
      color:#07111F;
      background:var(--orange);
      font-weight:1000;
      box-shadow:0 0 14px rgba(255,138,61,.32);
    }
    .data-layout{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:22px;
      align-items:stretch;
    }
    .metric-card{padding:24px}
    .metric-value{
      font-size:44px;
      line-height:1;
      font-weight:1000;
      letter-spacing:-.04em;
      color:#FFE0C7;
      margin:12px 0 8px;
    }
    .metric-label{color:var(--subtle);font-weight:800}
    .bar-list{display:grid;gap:14px;margin-top:8px}
    .metric-row{
      padding:14px;
      border:1px solid var(--line);
      border-radius:18px;
      background:rgba(255,255,255,.045);
    }
    .metric-row .bar{
      flex:1;
      height:8px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      overflow:hidden;
      min-width:90px;
    }
    .metric-row .bar i{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--orange),var(--cyan));
    }
    .insight-grid{
      display:grid;
      grid-template-columns:1.15fr .85fr;
      gap:22px;
    }
    .news-list{display:grid;gap:14px}
    .news-item{
      padding:18px;
      border:1px solid var(--line);
      border-radius:20px;
      background:rgba(255,255,255,.045);
    }
    .news-item:hover{
      border-color:rgba(53,215,255,.38);
      background:rgba(53,215,255,.07);
    }
    .news-item h3{font-size:18px;margin:0 0 4px}
    .news-item p{margin:0;color:var(--subtle);font-size:14px;line-height:1.6}
    .thumb-card{
      min-height:430px;
      display:flex;
      align-items:flex-end;
      padding:26px;
      background:
        linear-gradient(180deg,rgba(7,17,31,.08),rgba(7,17,31,.92)),
        url("/assets/images/coverpic/cover-9.webp") center/cover no-repeat;
    }
    .rank-box{padding:26px}
    .rank-list{display:grid;gap:12px;margin-top:18px}
    .rank-item{
      padding:14px;
      border-radius:18px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.045);
    }
    .rank-item .num{
      width:30px;
      height:30px;
      border-radius:10px;
      display:grid;
      place-items:center;
      background:rgba(255,138,61,.16);
      color:#FFD9BF;
      font-weight:1000;
    }
    .rank-item strong{margin-right:auto}
    .rank-item span:last-child{color:var(--orange);font-weight:1000}
    .process{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      counter-reset:step;
    }
    .step-card{
      padding:24px;
      min-height:220px;
    }
    .step-card::before{
      counter-increment:step;
      content:"0" counter(step);
      display:inline-flex;
      margin-bottom:18px;
      color:#07111F;
      background:linear-gradient(135deg,var(--orange),var(--cyan));
      border-radius:999px;
      padding:4px 11px;
      font-size:13px;
      font-weight:1000;
    }
    .faq-wrap{
      max-width:980px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border:1px solid var(--line);
      border-radius:22px;
      overflow:hidden;
      background:rgba(10,27,48,.72);
      backdrop-filter:blur(16px);
      transition:var(--ease);
    }
    .accordion-item.is-active{
      border-color:rgba(255,138,61,.46);
      box-shadow:0 0 34px rgba(255,138,61,.12);
    }
    .accordion-title{
      border:0;
      color:var(--text);
      font-size:17px;
      font-weight:950;
      padding:20px 56px 20px 22px;
      background:transparent;
    }
    .accordion-title:hover,.accordion-title:focus{
      color:#FFE1C8;
      background:rgba(255,138,61,.06);
    }
    .accordion-title::before{
      color:var(--orange);
      font-size:24px;
      right:22px;
      margin-top:-13px;
    }
    .accordion-content{
      border:0;
      color:var(--muted);
      background:rgba(255,255,255,.035);
      padding:0 22px 22px;
      line-height:1.8;
    }
    .cta-panel{
      display:grid;
      grid-template-columns:1fr .85fr;
      gap:28px;
      padding:34px;
      border:1px solid rgba(255,255,255,.16);
      border-radius:var(--radius-lg);
      background:
        radial-gradient(circle at 15% 10%,rgba(255,138,61,.18),transparent 30%),
        radial-gradient(circle at 86% 18%,rgba(53,215,255,.14),transparent 28%),
        rgba(10,27,48,.78);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .field.full{grid-column:1/-1}
    label{
      display:block;
      color:var(--muted);
      font-weight:800;
      font-size:14px;
      margin-bottom:7px;
    }
    input[type="text"],input[type="email"],select,textarea{
      width:100%;
      border:1px solid var(--line);
      border-radius:16px;
      background:rgba(255,255,255,.06);
      padding:13px 14px;
      color:var(--text);
      outline:0;
      box-shadow:none;
      margin:0;
      transition:var(--ease);
    }
    select option{background:#0B1E35;color:var(--text)}
    textarea{min-height:118px;resize:vertical}
    input:focus,select:focus,textarea:focus{
      border-color:rgba(53,215,255,.72);
      box-shadow:0 0 0 4px rgba(53,215,255,.1);
      background:rgba(255,255,255,.08);
    }
    .quick-panel{
      padding:24px;
      border-radius:24px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.045);
    }
    .quick-links{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:10px;
      margin-top:16px;
    }
    .quick-links a{
      padding:12px 14px;
      border:1px solid var(--line);
      border-radius:16px;
      background:rgba(255,255,255,.045);
      color:var(--muted);
      font-weight:800;
    }
    .quick-links a:hover{
      color:var(--text);
      border-color:rgba(255,138,61,.42);
      background:rgba(255,138,61,.08);
    }
    .site-footer{
      padding:70px 0 28px;
      background:#06101D;
      border-top:1px solid var(--line);
    }
    .footer-panel{
      border:1px solid var(--line);
      border-radius:30px;
      background:rgba(255,255,255,.035);
      padding:30px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.35fr .75fr .85fr 1fr .9fr;
      gap:28px;
    }
    .footer-desc,.footer-contact p{
      color:var(--subtle);
      margin:14px 0 0;
      font-size:14px;
      line-height:1.8;
    }
    .footer-title{
      font-weight:1000;
      margin-bottom:14px;
      color:var(--text);
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:var(--subtle);
      font-size:14px;
    }
    .footer-links a:hover{
      color:var(--cyan);
      transform:translateX(3px);
    }
    .footer-bottom{
      margin-top:28px;
      padding-top:22px;
      border-top:1px solid var(--line);
      text-align:center;
      color:#8297AA;
      font-size:13px;
      line-height:2;
    }
    .footer-bottom a{color:#9EB4C7}
    .footer-bottom a:hover{color:var(--cyan)}
    @media (max-width:1180px){
      .desktop-nav a{padding:9px 9px;font-size:13px}
      .search-box{min-width:190px}
      .footer-grid{grid-template-columns:1fr 1fr 1fr}
      .process{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:1024px){
      .desktop-nav,.search-box,.nav-actions>.btn{display:none}
      .menu-toggle{display:block}
      .nav-shell{border-radius:28px}
      .hero{min-height:auto;padding-top:132px}
      .score-grid,.data-layout,.insight-grid,.cta-panel{grid-template-columns:1fr}
      .media-card{grid-template-columns:1fr}
      .media-img{min-height:260px}
      .section{padding:78px 0}
      .section-head{align-items:flex-start;flex-direction:column}
    }
    @media (max-width:768px){
      .container{width:min(calc(100% - 28px),var(--container))}
      .site-header{top:10px}
      .nav-shell{width:calc(100% - 20px);padding:10px 12px;min-height:64px}
      .brand{font-size:18px}
      .brand-mark{width:31px;height:31px}
      .hero{padding:118px 0 62px}
      .hero::after{font-size:72px;right:-160px;top:160px}
      .lead{font-size:16px}
      .hero-actions .btn{width:100%}
      .main-score{grid-template-columns:1fr;gap:12px}
      .score-num{justify-content:center;font-size:46px}
      .quarter-strip{grid-template-columns:repeat(2,1fr)}
      .form-grid,.quick-links{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .footer-panel{padding:24px}
      .process{grid-template-columns:1fr}
      .game-card{min-width:280px}
    }
    @media (max-width:520px){
      h1{font-size:36px}
      h2{font-size:29px}
      .section,.section-tight{padding:58px 0}
      .score-board,.card-pad,.focus-card,.media-body,.rank-box,.cta-panel{padding:20px}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{text-align:left}
      .team-line,.news-item,.metric-row,.rank-item{align-items:flex-start;flex-direction:column}
      .mobile-panel{width:calc(100% - 20px)}
    }

/* roulang page: category3 */
:root {
      --bg: #07111f;
      --bg-deep: #050b16;
      --panel: rgba(10, 27, 48, 0.74);
      --panel-strong: rgba(12, 34, 61, 0.9);
      --text: #f5faff;
      --muted: #c8d6e5;
      --subtle: #8fa4b8;
      --line: rgba(255, 255, 255, 0.12);
      --line-bright: rgba(53, 215, 255, 0.42);
      --green: #7cff6b;
      --cyan: #35d7ff;
      --purple: #8b5cff;
      --warm: #ffd166;
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
      --glow: 0 0 34px rgba(53, 215, 255, 0.28), 0 0 46px rgba(139, 92, 255, 0.18);
      --container: 1220px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(139, 92, 255, 0.2), transparent 34%),
        radial-gradient(circle at 86% 14%, rgba(53, 215, 255, 0.14), transparent 30%),
        linear-gradient(180deg, #07111f 0%, #0b1e35 42%, #06101d 100%);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      font-size: 16px;
      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,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 42px 42px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.82), transparent 78%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, border-color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    input,
    textarea,
    select {
      width: 100%;
      color: var(--text);
      background: rgba(7, 17, 31, 0.72);
      border: 1px solid var(--line);
      border-radius: 16px;
      outline: none;
      padding: 13px 15px;
      transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(200, 214, 229, 0.58);
    }

    input:focus,
    textarea:focus,
    select:focus,
    button:focus-visible,
    a:focus-visible {
      outline: 2px solid rgba(53, 215, 255, 0.86);
      outline-offset: 3px;
      box-shadow: 0 0 0 5px rgba(53, 215, 255, 0.1);
    }

    .container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: fixed;
      top: 16px;
      left: 0;
      right: 0;
      z-index: 50;
      transition: top .25s ease, background .25s ease;
    }

    .nav-shell {
      width: min(calc(100% - 40px), 1280px);
      min-height: 72px;
      margin: 0 auto;
      padding: 10px 12px 10px 18px;
      display: flex;
      align-items: center;
      gap: 18px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 999px;
      background: rgba(6, 18, 33, 0.68);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 60px rgba(0,0,0,0.28);
    }

    .site-header.is-solid .nav-shell {
      background: rgba(5, 13, 25, 0.94);
      border-color: rgba(53, 215, 255, 0.22);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
      color: #fff;
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .brand-mark {
      width: 34px;
      height: 26px;
      position: relative;
      border: 1px solid rgba(124, 255, 107, 0.72);
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(124,255,107,0.26), rgba(53,215,255,0.1));
      box-shadow: 0 0 24px rgba(124,255,107,0.24);
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      top: 50%;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      transform: translateY(-50%);
      background: var(--green);
      box-shadow: 0 0 12px rgba(124,255,107,.8);
    }

    .brand-mark::before {
      left: 8px;
    }

    .brand-mark::after {
      right: 8px;
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(53,215,255,.8);
    }

    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: auto;
    }

    .desktop-nav a,
    .mobile-panel a:not(.btn) {
      color: rgba(245, 250, 255, 0.82);
      font-size: 14px;
      font-weight: 650;
      padding: 9px 13px;
      border-radius: 999px;
      white-space: nowrap;
    }

    .desktop-nav a:hover,
    .mobile-panel a:not(.btn):hover {
      color: #fff;
      background: rgba(255,255,255,0.08);
    }

    .desktop-nav a.active,
    .mobile-panel a.active {
      color: #07111f;
      background: linear-gradient(135deg, var(--green), var(--cyan));
      box-shadow: 0 0 18px rgba(53,215,255,0.25);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-box {
      min-width: 242px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,0.055);
      color: var(--subtle);
    }

    .search-box input {
      height: 100%;
      padding: 0;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      font-size: 13px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 800;
      line-height: 1;
      white-space: nowrap;
    }

    .btn-primary {
      color: #06111d;
      background: linear-gradient(135deg, var(--green), var(--cyan));
      box-shadow: 0 0 28px rgba(53,215,255,0.24), inset 0 1px 0 rgba(255,255,255,0.45);
    }

    .btn-primary:hover {
      color: #06111d;
      transform: translateY(-2px);
      box-shadow: 0 0 42px rgba(124,255,107,0.34), 0 0 34px rgba(53,215,255,0.26);
    }

    .btn-ghost {
      color: var(--text);
      border-color: rgba(53,215,255,0.34);
      background: rgba(255,255,255,0.055);
    }

    .btn-ghost:hover {
      color: #fff;
      background: rgba(53,215,255,0.12);
      border-color: rgba(124,255,107,0.45);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      color: var(--text);
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(255,255,255,0.07);
    }

    .mobile-panel {
      display: none;
      width: min(calc(100% - 40px), 1280px);
      margin: 10px auto 0;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(6, 18, 33, 0.96);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
    }

    .mobile-panel.is-open {
      display: grid;
      gap: 10px;
    }

    .hero {
      position: relative;
      min-height: 760px;
      padding: 154px 0 96px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(7,17,31,.94), rgba(7,17,31,.55)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 75% 22%, rgba(139,92,255,0.34), transparent 28%),
        radial-gradient(circle at 58% 65%, rgba(53,215,255,0.18), transparent 30%),
        linear-gradient(180deg, transparent 72%, var(--bg) 100%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 7%;
      right: 7%;
      bottom: 72px;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(53,215,255,0.62), rgba(139,92,255,0.58), transparent);
      box-shadow: 0 0 30px rgba(53,215,255,0.34);
    }

    .hero .container {
      position: relative;
      z-index: 1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 7px 12px;
      color: #dff9ff;
      border: 1px solid rgba(53,215,255,0.32);
      border-radius: 999px;
      background: rgba(53,215,255,0.09);
      font-size: 13px;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--purple);
      box-shadow: 0 0 16px rgba(139,92,255,0.9);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 760px;
      margin: 20px 0 22px;
      font-size: clamp(36px, 5vw, 62px);
      line-height: 1.14;
      font-weight: 900;
      letter-spacing: 0;
    }

    h2 {
      margin-bottom: 18px;
      font-size: clamp(30px, 3.6vw, 42px);
      line-height: 1.2;
      font-weight: 880;
      letter-spacing: 0;
    }

    h3 {
      font-size: 22px;
      line-height: 1.34;
      font-weight: 820;
      letter-spacing: 0;
    }

    .lead {
      max-width: 690px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .hero-tags,
    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 11px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: rgba(245,250,255,0.88);
      background: rgba(255,255,255,0.06);
      font-size: 13px;
      font-weight: 750;
    }

    .tag strong {
      color: var(--green);
    }

    .hero-board {
      position: relative;
      padding: 24px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(12,34,61,0.86), rgba(7,17,31,0.76));
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow), var(--glow);
      overflow: hidden;
    }

    .hero-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(139,92,255,0.16), transparent 34%, rgba(53,215,255,0.12));
      pointer-events: none;
    }

    .board-head,
    .match-head,
    .card-head {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
    }

    .board-title {
      font-size: 18px;
      font-weight: 860;
    }

    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--green);
      font-size: 13px;
      font-weight: 850;
    }

    .live-dot::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 14px rgba(124,255,107,0.86);
    }

    .versus-card {
      position: relative;
      padding: 18px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      background: rgba(255,255,255,0.055);
      margin-bottom: 14px;
    }

    .versus-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 14px;
    }

    .team {
      display: grid;
      gap: 6px;
    }

    .team:last-child {
      text-align: right;
    }

    .team-name {
      font-size: 17px;
      font-weight: 850;
    }

    .team-meta {
      color: var(--subtle);
      font-size: 13px;
    }

    .vs {
      width: 54px;
      height: 54px;
      display: inline-grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      font-size: 17px;
      font-weight: 900;
      background: linear-gradient(135deg, rgba(139,92,255,0.95), rgba(53,215,255,0.82));
      box-shadow: 0 0 26px rgba(139,92,255,0.3);
    }

    .time-line {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 14px;
      color: var(--muted);
      font-size: 13px;
    }

    .section {
      padding: 96px 0;
      position: relative;
    }

    .section.tight {
      padding-top: 54px;
    }

    .section-kicker {
      margin-bottom: 10px;
      color: var(--cyan);
      font-size: 13px;
      font-weight: 850;
    }

    .section-title {
      max-width: 780px;
    }

    .section-desc {
      max-width: 760px;
      color: var(--muted);
      font-size: 17px;
    }

    .glass-card {
      position: relative;
      height: 100%;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--panel);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 60px rgba(0,0,0,0.22);
      overflow: hidden;
      transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease, background .24s ease;
    }

    .glass-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(139,92,255,0.85), rgba(53,215,255,0.82), transparent);
      opacity: .72;
    }

    .glass-card:hover {
      transform: translateY(-4px);
      border-color: var(--line-bright);
      box-shadow: var(--shadow), 0 0 28px rgba(53,215,255,0.16);
      background: rgba(13, 38, 67, 0.78);
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      border-radius: 16px;
      color: #fff;
      font-size: 22px;
      background: linear-gradient(135deg, rgba(139,92,255,0.94), rgba(53,215,255,0.78));
      box-shadow: 0 0 26px rgba(139,92,255,0.22);
    }

    .feature-card p,
    .topic-card p,
    .list-card p,
    .step-card p,
    .replay-panel p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .feature-card .mini-link,
    .mini-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-top: 18px;
      color: var(--cyan);
      font-weight: 800;
    }

    .mini-link:hover {
      color: var(--green);
      text-decoration: underline;
      text-underline-offset: 5px;
    }

    .match-grid {
      margin-top: 34px;
    }

    .match-card {
      padding: 0;
    }

    .match-card .match-cover {
      height: 176px;
      position: relative;
      overflow: hidden;
      border-radius: 22px 22px 0 0;
    }

    .match-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.08) contrast(1.05);
    }

    .match-cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(5,11,22,0.05), rgba(5,11,22,0.82));
    }

    .match-body {
      padding: 22px;
    }

    .score-strip {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 12px;
      margin: 18px 0;
      padding: 14px;
      border-radius: 18px;
      background: rgba(5, 11, 22, 0.38);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .score-strip span {
      font-weight: 850;
    }

    .score-strip .score {
      min-width: 66px;
      text-align: center;
      color: var(--green);
      font-size: 24px;
      line-height: 1;
      text-shadow: 0 0 18px rgba(124,255,107,0.42);
    }

    .side-note {
      padding: 24px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(180deg, rgba(139,92,255,0.16), rgba(53,215,255,0.08)),
        rgba(255,255,255,0.055);
      border: 1px solid rgba(139,92,255,0.28);
    }

    .side-note ul,
    .quick-list,
    .signal-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .side-note li,
    .quick-list li,
    .signal-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 12px 0;
      color: var(--muted);
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .side-note li:last-child,
    .quick-list li:last-child,
    .signal-list li:last-child {
      border-bottom: 0;
    }

    .side-note li::before,
    .quick-list li::before,
    .signal-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 9px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 14px rgba(53,215,255,0.7);
    }

    .topic-grid {
      margin-top: 34px;
    }

    .topic-card {
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      background-size: cover;
      background-position: center;
      border-radius: var(--radius-xl);
      border: 1px solid var(--line);
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow);
    }

    .topic-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(5,11,22,0.05), rgba(5,11,22,0.9)),
        radial-gradient(circle at 80% 20%, rgba(139,92,255,0.24), transparent 32%);
    }

    .topic-card > * {
      position: relative;
      z-index: 1;
    }

    .topic-card:hover {
      transform: translateY(-4px);
      border-color: rgba(53,215,255,0.5);
      box-shadow: var(--shadow), 0 0 30px rgba(139,92,255,0.22);
    }

    .info-list {
      display: grid;
      gap: 16px;
      margin-top: 32px;
    }

    .list-card {
      display: grid;
      grid-template-columns: 150px 1fr auto;
      gap: 18px;
      align-items: center;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(10,27,48,0.68);
      backdrop-filter: blur(14px);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .list-card:hover {
      transform: translateX(4px);
      border-color: rgba(53,215,255,0.4);
      box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    }

    .list-thumb {
      height: 104px;
      border-radius: 18px;
      object-fit: cover;
      width: 100%;
    }

    .list-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 8px;
    }

    .date-pill {
      color: var(--subtle);
      font-size: 13px;
      white-space: nowrap;
    }

    .timeline {
      margin-top: 34px;
      position: relative;
    }

    .step-card {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 18px;
      padding: 22px;
      margin-bottom: 16px;
      border: 1px solid var(--line);
      border-radius: 24px;
      background: rgba(255,255,255,0.055);
    }

    .step-no {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #fff;
      font-weight: 900;
      background: linear-gradient(135deg, var(--purple), var(--cyan));
      box-shadow: 0 0 22px rgba(139,92,255,0.28);
    }

    .replay-panel {
      padding: 32px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(53,215,255,0.26);
      background:
        linear-gradient(135deg, rgba(139,92,255,0.18), rgba(53,215,255,0.1)),
        rgba(10,27,48,0.76);
      box-shadow: var(--shadow);
    }

    .replay-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 24px;
    }

    .metric {
      padding: 18px;
      border-radius: 20px;
      background: rgba(5,11,22,0.34);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .metric strong {
      display: block;
      color: var(--green);
      font-size: 28px;
      line-height: 1.1;
      text-shadow: 0 0 20px rgba(124,255,107,0.28);
    }

    .metric span {
      color: var(--subtle);
      font-size: 13px;
    }

    .accordion {
      margin-top: 32px;
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 14px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(10,27,48,0.68);
      overflow: hidden;
      backdrop-filter: blur(16px);
    }

    .accordion-title {
      padding: 20px 52px 20px 22px;
      color: var(--text);
      border: 0;
      font-size: 17px;
      font-weight: 820;
      background: transparent;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: #fff;
      background: rgba(53,215,255,0.08);
    }

    .accordion-title::before {
      color: var(--cyan);
      font-size: 24px;
      margin-top: -14px;
    }

    .accordion-content {
      padding: 0 22px 22px;
      color: var(--muted);
      border: 0;
      background: transparent;
    }

    .accordion-item.is-active {
      border-color: rgba(53,215,255,0.45);
      box-shadow: 0 0 28px rgba(53,215,255,0.12);
    }

    .cta-section {
      padding: 92px 0;
    }

    .cta-panel {
      padding: 34px;
      border: 1px solid rgba(53,215,255,0.28);
      border-radius: 32px;
      background:
        linear-gradient(135deg, rgba(124,255,107,0.12), rgba(139,92,255,0.18), rgba(53,215,255,0.1)),
        rgba(10,27,48,0.78);
      box-shadow: var(--shadow), var(--glow);
      overflow: hidden;
    }

    .form-grid {
      display: grid;
      gap: 14px;
    }

    .field label {
      display: block;
      margin-bottom: 8px;
      color: rgba(245,250,255,0.9);
      font-size: 14px;
      font-weight: 780;
    }

    .hint {
      margin-top: 14px;
      color: var(--subtle);
      font-size: 13px;
    }

    .site-footer {
      padding: 72px 0 34px;
      background: #050b16;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .footer-panel {
      padding: 34px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 30px;
      background: linear-gradient(180deg, rgba(11,30,53,0.78), rgba(5,11,22,0.84));
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .8fr .9fr 1fr .9fr;
      gap: 28px;
    }

    .footer-desc,
    .footer-contact p {
      color: var(--subtle);
      margin: 14px 0 0;
      font-size: 14px;
    }

    .footer-title {
      color: var(--text);
      font-size: 15px;
      font-weight: 850;
      margin-bottom: 12px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a,
    .footer-bottom a {
      color: var(--subtle);
      font-size: 14px;
    }

    .footer-links a:hover,
    .footer-bottom a:hover {
      color: var(--cyan);
      text-decoration: underline;
      text-underline-offset: 5px;
    }

    .footer-bottom {
      margin-top: 30px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.1);
      color: var(--subtle);
      text-align: center;
      font-size: 13px;
      line-height: 2;
    }

    @media screen and (max-width: 1180px) {
      .search-box {
        display: none;
      }

      .desktop-nav a {
        padding-inline: 10px;
      }

      .footer-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media screen and (max-width: 1023px) {
      .desktop-nav,
      .nav-actions > .btn {
        display: none;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-shell {
        justify-content: space-between;
      }

      .hero {
        min-height: auto;
        padding: 132px 0 78px;
      }

      .section {
        padding: 78px 0;
      }

      .list-card {
        grid-template-columns: 124px 1fr;
      }

      .list-card .date-pill {
        grid-column: 2;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media screen and (max-width: 767px) {
      .container,
      .nav-shell,
      .mobile-panel {
        width: min(calc(100% - 28px), var(--container));
      }

      .site-header {
        top: 10px;
      }

      .nav-shell {
        min-height: 64px;
        border-radius: 22px;
      }

      .brand {
        font-size: 18px;
      }

      .hero {
        padding: 116px 0 62px;
      }

      .lead {
        font-size: 16px;
      }

      .hero-board {
        margin-top: 28px;
        padding: 18px;
      }

      .versus-row,
      .score-strip {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .team:last-child {
        text-align: center;
      }

      .vs {
        margin: 0 auto;
      }

      .section {
        padding: 62px 0;
      }

      .glass-card,
      .cta-panel,
      .footer-panel {
        padding: 22px;
      }

      .list-card {
        grid-template-columns: 1fr;
      }

      .list-card .date-pill {
        grid-column: auto;
      }

      .list-thumb {
        height: 178px;
      }

      .replay-metrics {
        grid-template-columns: 1fr;
      }

      .step-card {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media screen and (max-width: 520px) {
      .hero-actions,
      .tag-row,
      .hero-tags {
        display: grid;
      }

      .btn {
        width: 100%;
      }

      .brand-mark {
        width: 30px;
      }

      h1 {
        font-size: 35px;
      }

      h2 {
        font-size: 29px;
      }

      .topic-card {
        min-height: 230px;
      }
    }

/* roulang page: category4 */
:root {
      --bg: #07111f;
      --bg-2: #0b1e35;
      --panel: rgba(10, 27, 48, 0.74);
      --panel-strong: rgba(11, 30, 53, 0.92);
      --text: #f5faff;
      --muted: #c8d6e5;
      --soft: #8fa4b8;
      --line: rgba(255, 255, 255, 0.12);
      --line-strong: rgba(53, 215, 255, 0.38);
      --green: #7cff6b;
      --cyan: #35d7ff;
      --news: #dceeff;
      --warning: #ffd166;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
      --glow: 0 0 30px rgba(53, 215, 255, 0.22);
      --radius: 24px;
      --radius-sm: 16px;
      --container: 1220px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 12%, rgba(53, 215, 255, 0.18), transparent 30%),
        radial-gradient(circle at 82% 16%, rgba(124, 255, 107, 0.11), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #0a1728 46%, #07111f 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.38;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
      background-size: 52px 52px;
      mask-image: linear-gradient(to bottom, black, transparent 82%);
      z-index: -1;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), border-color var(--ease), background var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    a:hover,
    a:focus {
      color: var(--cyan);
      outline: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible,
    a:focus-visible {
      outline: 2px solid var(--cyan);
      outline-offset: 3px;
    }

    .container {
      width: min(100% - 32px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: fixed;
      top: 18px;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 18px;
    }

    .nav-shell {
      width: min(100%, 1240px);
      min-height: 72px;
      margin: 0 auto;
      padding: 12px 14px 12px 18px;
      display: flex;
      align-items: center;
      gap: 22px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(7, 17, 31, 0.72);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
    }

    .site-header.is-scrolled .nav-shell {
      background: rgba(7, 17, 31, 0.94);
      border-color: rgba(53, 215, 255, 0.22);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: max-content;
      font-size: 20px;
      font-weight: 800;
      color: var(--text);
      letter-spacing: 0;
    }

    .brand:hover {
      color: var(--text);
    }

    .brand-mark {
      width: 34px;
      height: 24px;
      border-radius: 9px;
      position: relative;
      display: inline-block;
      background: linear-gradient(135deg, rgba(124, 255, 107, 0.95), rgba(53, 215, 255, 0.78));
      box-shadow: 0 0 22px rgba(124, 255, 107, 0.34);
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      background: rgba(7, 17, 31, 0.74);
      border-radius: 999px;
    }

    .brand-mark::before {
      width: 18px;
      height: 3px;
      top: 7px;
      left: 8px;
    }

    .brand-mark::after {
      width: 8px;
      height: 8px;
      right: -3px;
      top: -3px;
      background: var(--green);
      box-shadow: 0 0 18px rgba(124, 255, 107, 0.8);
    }

    .desktop-nav {
      flex: 1;
      display: flex;
      justify-content: center;
      gap: 4px;
    }

    .desktop-nav a,
    .mobile-panel a:not(.btn) {
      position: relative;
      padding: 10px 13px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .desktop-nav a:hover,
    .desktop-nav a.active {
      color: var(--text);
      background: rgba(255, 255, 255, 0.08);
    }

    .desktop-nav a.active::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 5px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--green), var(--cyan));
      box-shadow: 0 0 12px rgba(124, 255, 107, 0.5);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .search-box {
      width: 245px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--soft);
    }

    .search-box input {
      width: 100%;
      min-width: 0;
      border: 0;
      background: transparent;
      color: var(--text);
      box-shadow: none;
      height: auto;
      margin: 0;
      padding: 0;
    }

    .search-box input::placeholder {
      color: var(--soft);
    }

    .search-box:focus-within {
      border-color: var(--cyan);
      box-shadow: 0 0 0 4px rgba(53, 215, 255, 0.12);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      cursor: pointer;
      line-height: 1;
      text-align: center;
      white-space: nowrap;
    }

    .btn-primary {
      color: #06111f;
      background: linear-gradient(135deg, var(--green), var(--cyan));
      box-shadow: 0 0 22px rgba(53, 215, 255, 0.22), 0 12px 30px rgba(124, 255, 107, 0.14);
    }

    .btn-primary:hover {
      color: #06111f;
      transform: translateY(-2px);
      box-shadow: 0 0 34px rgba(53, 215, 255, 0.38), 0 18px 42px rgba(124, 255, 107, 0.2);
    }

    .btn-secondary {
      color: var(--text);
      background: rgba(255, 255, 255, 0.07);
      border-color: rgba(255, 255, 255, 0.18);
    }

    .btn-secondary:hover {
      color: var(--text);
      background: rgba(53, 215, 255, 0.12);
      border-color: var(--line-strong);
      transform: translateY(-2px);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--line);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      color: var(--text);
      cursor: pointer;
    }

    .mobile-panel {
      display: none;
      width: min(100% - 36px, 520px);
      margin: 10px auto 0;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 22px;
      background: rgba(7, 17, 31, 0.96);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
    }

    .mobile-panel.is-open {
      display: grid;
      gap: 8px;
    }

    .mobile-panel a:not(.btn) {
      display: block;
      border-radius: 14px;
    }

    .mobile-panel a.active {
      color: var(--text);
      background: rgba(124, 255, 107, 0.12);
    }

    .hero {
      position: relative;
      min-height: 720px;
      padding: 164px 0 88px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.96) 0%, rgba(7, 17, 31, 0.76) 50%, rgba(7, 17, 31, 0.94) 100%),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 72% 28%, rgba(220, 238, 255, 0.22), transparent 30%),
        linear-gradient(115deg, transparent 0%, rgba(53, 215, 255, 0.1) 48%, transparent 65%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 140px;
      background: linear-gradient(to bottom, transparent, var(--bg));
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.72fr);
      gap: 34px;
      align-items: end;
    }

    .eyebrow,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      width: fit-content;
      padding: 7px 12px;
      border: 1px solid rgba(53, 215, 255, 0.28);
      border-radius: 999px;
      background: rgba(53, 215, 255, 0.08);
      color: #dff8ff;
      font-size: 13px;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 14px rgba(124, 255, 107, 0.8);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin: 22px 0 18px;
      font-size: clamp(36px, 5vw, 62px);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: 0;
      color: var(--text);
    }

    .hero-lead {
      max-width: 760px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.85;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .hero-tags span,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 8px 11px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid var(--line);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .headline-panel {
      border: 1px solid rgba(220, 238, 255, 0.2);
      border-radius: 30px;
      background: rgba(10, 27, 48, 0.76);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .headline-image {
      position: relative;
      min-height: 250px;
      background: url("/assets/images/coverpic/cover-8.webp") center/cover no-repeat;
    }

    .headline-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7, 17, 31, 0.94), rgba(7, 17, 31, 0.2));
    }

    .headline-copy {
      position: relative;
      margin-top: -118px;
      padding: 0 26px 28px;
      z-index: 1;
    }

    .headline-copy h2 {
      font-size: 28px;
      line-height: 1.25;
      margin: 14px 0 10px;
    }

    .headline-copy p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      color: var(--soft);
      font-size: 13px;
      font-weight: 700;
    }

    .section {
      padding: 92px 0;
      position: relative;
    }

    .section-tight {
      padding-top: 56px;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 34px;
    }

    .section-kicker {
      color: var(--cyan);
      font-weight: 900;
      margin-bottom: 8px;
      font-size: 14px;
    }

    .section h2 {
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.22;
      margin-bottom: 10px;
      font-weight: 900;
      letter-spacing: 0;
    }

    .section-desc {
      max-width: 720px;
      color: var(--muted);
      font-size: 17px;
      margin-bottom: 0;
    }

    .glass-card,
    .news-card,
    .sidebar-card,
    .editor-card,
    .ranking-card,
    .contact-panel {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--panel);
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .glass-card:hover,
    .news-card:hover,
    .editor-card:hover,
    .ranking-card:hover {
      transform: translateY(-4px);
      border-color: rgba(53, 215, 255, 0.36);
      box-shadow: var(--shadow), var(--glow);
    }

    .magazine-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(310px, 0.72fr);
      gap: 26px;
      align-items: start;
    }

    .lead-story {
      min-height: 520px;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(to top, rgba(7, 17, 31, 0.96), rgba(7, 17, 31, 0.18)),
        url("/assets/images/coverpic/cover-6.webp") center/cover no-repeat;
      padding: 34px;
      display: flex;
      flex-direction: column;
      justify-content: end;
    }

    .lead-story h2 {
      max-width: 760px;
      font-size: clamp(30px, 4vw, 48px);
      margin: 16px 0 14px;
    }

    .lead-story p {
      max-width: 720px;
      color: var(--muted);
      font-size: 17px;
    }

    .story-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 10px;
    }

    .side-stack {
      display: grid;
      gap: 18px;
    }

    .sidebar-card {
      padding: 22px;
    }

    .sidebar-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 18px;
      font-weight: 900;
    }

    .trend-list,
    .quick-list,
    .topic-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .trend-list li,
    .quick-list a,
    .topic-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 13px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.045);
      color: var(--muted);
    }

    .trend-list li:hover,
    .quick-list a:hover {
      border-color: rgba(53, 215, 255, 0.25);
      background: rgba(53, 215, 255, 0.08);
      color: var(--text);
    }

    .rank {
      flex: 0 0 30px;
      height: 30px;
      display: inline-grid;
      place-items: center;
      border-radius: 10px;
      background: rgba(220, 238, 255, 0.1);
      color: var(--news);
      font-weight: 900;
    }

    .two-column-news {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 22px;
    }

    .news-card {
      overflow: hidden;
    }

    .news-card.featured {
      grid-row: span 2;
    }

    .news-thumb {
      min-height: 210px;
      background: linear-gradient(to top, rgba(7, 17, 31, 0.5), transparent), var(--img) center/cover no-repeat;
    }

    .news-card.featured .news-thumb {
      min-height: 330px;
    }

    .news-body {
      padding: 24px;
    }

    .news-body h3 {
      font-size: 24px;
      line-height: 1.35;
      margin: 12px 0 10px;
      font-weight: 900;
    }

    .news-body p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .inline-link {
      color: #dff8ff;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .inline-link:hover {
      color: var(--green);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .editor-grid {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 26px;
      align-items: stretch;
    }

    .editor-card {
      padding: 30px;
      position: relative;
      overflow: hidden;
    }

    .editor-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 3px;
      background: linear-gradient(90deg, var(--news), var(--cyan), var(--green));
      opacity: 0.9;
    }

    .editor-card h3 {
      font-size: 28px;
      line-height: 1.28;
      margin: 16px 0 12px;
    }

    .editor-card p {
      color: var(--muted);
    }

    .editor-list {
      display: grid;
      gap: 16px;
    }

    .mini-article {
      display: grid;
      grid-template-columns: 128px minmax(0, 1fr);
      gap: 16px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.045);
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .mini-article:hover {
      transform: translateX(4px);
      border-color: rgba(53, 215, 255, 0.3);
      background: rgba(53, 215, 255, 0.08);
    }

    .mini-article img {
      width: 128px;
      height: 96px;
      object-fit: cover;
      border-radius: 14px;
      border: 1px solid var(--line);
    }

    .mini-article h3 {
      font-size: 19px;
      line-height: 1.38;
      margin: 8px 0 6px;
    }

    .mini-article p {
      color: var(--soft);
      font-size: 14px;
      line-height: 1.65;
      margin: 0;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tag-cloud a {
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.055);
      color: var(--muted);
      font-weight: 800;
      font-size: 14px;
    }

    .tag-cloud a:hover {
      color: #06111f;
      background: linear-gradient(135deg, var(--news), var(--cyan));
      border-color: transparent;
      transform: translateY(-2px);
    }

    .ranking-wrap {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
      align-items: start;
    }

    .ranking-card {
      padding: 26px;
    }

    .hot-row {
      display: grid;
      grid-template-columns: 44px minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .hot-row:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .hot-num {
      height: 38px;
      width: 38px;
      display: grid;
      place-items: center;
      border-radius: 13px;
      color: #06111f;
      background: linear-gradient(135deg, var(--news), var(--cyan));
      font-weight: 950;
    }

    .hot-row h3 {
      margin: 0 0 3px;
      font-size: 18px;
      line-height: 1.35;
    }

    .hot-row p {
      margin: 0;
      color: var(--soft);
      font-size: 14px;
    }

    .heat {
      color: var(--green);
      font-weight: 900;
      font-size: 14px;
      white-space: nowrap;
    }

    .timeline {
      position: relative;
      display: grid;
      gap: 14px;
      margin-top: 18px;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 15px;
      top: 10px;
      bottom: 10px;
      width: 2px;
      background: linear-gradient(var(--cyan), var(--green));
      opacity: 0.55;
    }

    .time-item {
      position: relative;
      padding-left: 46px;
      color: var(--muted);
    }

    .time-item::before {
      content: "";
      position: absolute;
      left: 8px;
      top: 8px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: var(--bg);
      border: 3px solid var(--cyan);
      box-shadow: 0 0 16px rgba(53, 215, 255, 0.42);
    }

    .time-item strong {
      display: block;
      color: var(--text);
      margin-bottom: 2px;
    }

    .accordion {
      background: transparent;
      border: 0;
    }

    .accordion-item {
      margin-bottom: 14px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(10, 27, 48, 0.78);
      overflow: hidden;
      box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
    }

    .accordion-title {
      padding: 20px 56px 20px 22px;
      color: var(--text);
      font-size: 17px;
      font-weight: 900;
      border: 0;
      background: transparent;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      color: var(--green);
      background: rgba(53, 215, 255, 0.06);
    }

    .accordion-title::before {
      right: 22px;
      color: var(--cyan);
      font-size: 22px;
      margin-top: -12px;
    }

    .accordion-content {
      padding: 0 22px 22px;
      border: 0;
      background: transparent;
      color: var(--muted);
      line-height: 1.8;
    }

    .is-active > .accordion-title {
      border-bottom: 1px solid rgba(53, 215, 255, 0.18);
      box-shadow: inset 0 0 0 1px rgba(53, 215, 255, 0.1);
    }

    .contact-panel {
      padding: 34px;
      overflow: hidden;
      position: relative;
      background:
        linear-gradient(135deg, rgba(10, 27, 48, 0.9), rgba(11, 30, 53, 0.72)),
        url("/assets/images/coverpic/cover-10.webp") center/cover no-repeat;
    }

    .contact-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 85% 10%, rgba(124, 255, 107, 0.18), transparent 34%);
      pointer-events: none;
    }

    .contact-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 30px;
      align-items: start;
    }

    .contact-panel h2 {
      font-size: clamp(30px, 4vw, 44px);
      margin-bottom: 14px;
    }

    .contact-panel p {
      color: var(--muted);
    }

    .entry-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 24px;
    }

    .entry-list a {
      padding: 14px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.06);
      color: var(--text);
      font-weight: 800;
    }

    .entry-list a:hover {
      border-color: rgba(124, 255, 107, 0.36);
      background: rgba(124, 255, 107, 0.1);
      transform: translateY(-2px);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: var(--muted);
      font-weight: 800;
      font-size: 14px;
    }

    input,
    textarea,
    select {
      width: 100%;
      margin: 0;
      border: 1px solid var(--line);
      border-radius: 16px;
      background: rgba(7, 17, 31, 0.66);
      color: var(--text);
      padding: 13px 14px;
      min-height: 48px;
      box-shadow: none;
    }

    textarea {
      min-height: 126px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: var(--soft);
    }

    input:focus,
    textarea:focus,
    select:focus {
      border-color: var(--cyan);
      background: rgba(7, 17, 31, 0.82);
      box-shadow: 0 0 0 4px rgba(53, 215, 255, 0.12);
      outline: none;
    }

    .site-footer {
      padding: 80px 0 34px;
      background: linear-gradient(180deg, rgba(7, 17, 31, 0), #050c16 20%, #050c16 100%);
    }

    .footer-panel {
      border: 1px solid var(--line);
      border-radius: 30px;
      background: rgba(10, 27, 48, 0.78);
      box-shadow: var(--shadow);
      padding: 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr 0.85fr 1fr 0.9fr;
      gap: 26px;
      padding-bottom: 28px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-desc,
    .footer-contact p {
      color: var(--muted);
      margin: 14px 0 0;
      font-size: 14px;
    }

    .footer-title {
      color: var(--text);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--green);
      transform: translateX(3px);
    }

    .footer-bottom {
      padding-top: 24px;
      text-align: center;
      color: var(--soft);
      font-size: 13px;
      line-height: 2;
    }

    .footer-bottom a {
      color: var(--muted);
    }

    .footer-bottom a:hover {
      color: var(--cyan);
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    @media (max-width: 1180px) {
      .search-box {
        display: none;
      }

      .desktop-nav {
        gap: 0;
      }

      .desktop-nav a {
        padding-inline: 10px;
      }

      .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 1023px) {
      .desktop-nav,
      .nav-actions > .btn-primary {
        display: none;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-shell {
        justify-content: space-between;
      }

      .hero {
        min-height: auto;
        padding-top: 134px;
      }

      .hero-content,
      .magazine-grid,
      .editor-grid,
      .ranking-wrap,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .headline-panel {
        max-width: 640px;
      }

      .section {
        padding: 76px 0;
      }

      .section-head {
        display: block;
      }

      .two-column-news {
        grid-template-columns: 1fr;
      }

      .news-card.featured {
        grid-row: auto;
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .site-header {
        top: 10px;
        padding: 0 10px;
      }

      .nav-shell {
        min-height: 62px;
        border-radius: 22px;
      }

      .brand {
        font-size: 18px;
      }

      .hero {
        padding: 118px 0 62px;
      }

      .hero-lead,
      .section-desc {
        font-size: 16px;
      }

      .hero-actions,
      .story-actions {
        display: grid;
        grid-template-columns: 1fr;
      }

      .btn {
        width: 100%;
      }

      .headline-image {
        min-height: 210px;
      }

      .headline-copy {
        padding: 0 20px 22px;
      }

      .headline-copy h2 {
        font-size: 23px;
      }

      .lead-story {
        min-height: 480px;
        padding: 24px;
      }

      .news-body {
        padding: 20px;
      }

      .mini-article {
        grid-template-columns: 1fr;
      }

      .mini-article img {
        width: 100%;
        height: 170px;
      }

      .hot-row {
        grid-template-columns: 38px minmax(0, 1fr);
      }

      .heat {
        grid-column: 2;
      }

      .entry-list,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .contact-panel,
      .footer-panel {
        padding: 22px;
        border-radius: 22px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

/* roulang page: category5 */
:root{
      --bg:#07111F;
      --bg-2:#0B1E35;
      --panel:#0A1B30;
      --panel-2:#102A48;
      --primary:#7CFF6B;
      --cyan:#35D7FF;
      --blue:#123A63;
      --text:#F5FAFF;
      --muted:#C8D6E5;
      --weak:#8FA4B8;
      --border:rgba(255,255,255,.12);
      --border-strong:rgba(53,215,255,.36);
      --shadow:0 24px 80px rgba(0,0,0,.34);
      --glow:0 0 34px rgba(53,215,255,.28),0 0 54px rgba(124,255,107,.14);
      --radius-sm:14px;
      --radius:22px;
      --radius-lg:30px;
      --space:clamp(64px,8vw,112px);
      --font:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",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% 10%,rgba(53,215,255,.18),transparent 32%),
        radial-gradient(circle at 82% 4%,rgba(124,255,107,.12),transparent 30%),
        linear-gradient(180deg,#07111F 0%,#08182B 42%,#06101D 100%);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.26;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);
      background-size:44px 44px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.95),rgba(0,0,0,.2));
      z-index:-1;
    }
    a{color:inherit;text-decoration:none;transition:color .22s ease,background .22s ease,border-color .22s ease,transform .22s ease,box-shadow .22s ease}
    img{max-width:100%;height:auto;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(124,255,107,.28);color:#fff}
    .container{width:min(100% - 40px,1240px);margin-inline:auto}
    .section{padding:var(--space) 0;position:relative}
    .section-tight{padding:clamp(48px,6vw,82px) 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(124,255,107,.25);
      border-radius:999px;
      background:rgba(124,255,107,.08);
      color:#CFFFC8;
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
    }
    .eyebrow:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 16px rgba(124,255,107,.8);
    }
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:end;
      gap:28px;
      margin-bottom:34px;
    }
    .section-title{max-width:780px}
    h1,h2,h3,h4,p{margin-top:0}
    h1{
      font-size:clamp(36px,5.4vw,62px);
      line-height:1.12;
      letter-spacing:-.05em;
      margin-bottom:22px;
    }
    h2{
      font-size:clamp(30px,4vw,42px);
      line-height:1.2;
      letter-spacing:-.035em;
      margin:14px 0 14px;
    }
    h3{
      font-size:clamp(21px,2vw,27px);
      line-height:1.28;
      letter-spacing:-.02em;
      margin-bottom:12px;
    }
    p{color:var(--muted);font-size:16px}
    .lead{font-size:clamp(17px,1.6vw,19px);color:#D6E7F5;max-width:760px}
    .muted{color:var(--weak)}
    .site-header{
      position:fixed;
      top:14px;
      left:0;
      right:0;
      z-index:1000;
      transition:top .25s ease,background .25s ease,box-shadow .25s ease;
      padding:0 16px;
    }
    .site-header.is-scrolled{top:0}
    .nav-shell{
      width:min(100%,1240px);
      margin:0 auto;
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:12px 14px 12px 18px;
      border:1px solid var(--border);
      border-radius:24px;
      background:rgba(7,17,31,.68);
      backdrop-filter:blur(20px);
      box-shadow:0 18px 60px rgba(0,0,0,.32);
    }
    .site-header.is-scrolled .nav-shell{
      border-radius:0 0 24px 24px;
      background:rgba(7,17,31,.92);
      border-color:rgba(53,215,255,.18);
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-weight:900;
      font-size:20px;
      white-space:nowrap;
      letter-spacing:-.02em;
    }
    .brand:hover{color:#E9FFF0}
    .brand-mark{
      width:35px;
      height:28px;
      border-radius:10px;
      position:relative;
      background:linear-gradient(135deg,rgba(124,255,107,.95),rgba(53,215,255,.9));
      box-shadow:0 0 26px rgba(53,215,255,.45);
    }
    .brand-mark:before,.brand-mark:after{
      content:"";
      position:absolute;
      background:#07111F;
      border-radius:999px;
    }
    .brand-mark:before{left:7px;right:7px;top:8px;height:3px}
    .brand-mark:after{width:6px;height:6px;right:6px;bottom:6px;box-shadow:-14px 0 0 #07111F}
    .desktop-nav{display:flex;align-items:center;gap:5px}
    .desktop-nav a,.mobile-panel a:not(.btn){
      color:#D7E6F3;
      font-weight:700;
      font-size:14px;
      padding:10px 13px;
      border-radius:999px;
      position:relative;
    }
    .desktop-nav a:hover,.mobile-panel a:not(.btn):hover{
      color:#fff;
      background:rgba(255,255,255,.08);
    }
    .desktop-nav a.active,.mobile-panel a.active{
      color:#07111F;
      background:linear-gradient(135deg,var(--primary),var(--cyan));
      box-shadow:0 0 22px rgba(53,215,255,.25);
    }
    .nav-actions{display:flex;align-items:center;gap:10px}
    .search-box{
      width:245px;
      height:42px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 12px;
      border:1px solid var(--border);
      border-radius:999px;
      background:rgba(255,255,255,.06);
      color:var(--weak);
    }
    .search-box input{
      width:100%;
      min-width:0;
      border:0;
      outline:0;
      background:transparent;
      color:#fff;
      font-size:13px;
    }
    .search-box input::placeholder{color:#8FA4B8}
    .search-box:focus-within{
      border-color:rgba(53,215,255,.72);
      box-shadow:0 0 0 4px rgba(53,215,255,.12);
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:0 22px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:900;
      line-height:1;
      white-space:nowrap;
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease,background .22s ease,color .22s ease;
    }
    .btn-primary{
      color:#06101D;
      background:linear-gradient(135deg,var(--primary),var(--cyan));
      box-shadow:0 14px 36px rgba(53,215,255,.22),0 0 24px rgba(124,255,107,.16);
    }
    .btn-primary:hover,.btn-primary:focus{
      color:#06101D;
      transform:translateY(-2px);
      box-shadow:0 18px 44px rgba(53,215,255,.35),0 0 34px rgba(124,255,107,.28);
    }
    .btn-secondary{
      color:#EAF7FF;
      background:rgba(255,255,255,.06);
      border-color:rgba(255,255,255,.16);
      backdrop-filter:blur(12px);
    }
    .btn-secondary:hover,.btn-secondary:focus{
      color:#fff;
      border-color:rgba(53,215,255,.6);
      background:rgba(53,215,255,.1);
      transform:translateY(-2px);
    }
    .btn-small{min-height:40px;padding:0 16px;font-size:14px}
    .menu-toggle{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid var(--border);
      color:#fff;
      background:rgba(255,255,255,.07);
    }
    .menu-toggle:hover,.menu-toggle:focus{border-color:rgba(53,215,255,.55);box-shadow:0 0 0 4px rgba(53,215,255,.12)}
    .mobile-panel{
      display:none;
      width:min(100% - 32px,1240px);
      margin:8px auto 0;
      padding:14px;
      border:1px solid var(--border);
      border-radius:22px;
      background:rgba(7,17,31,.94);
      backdrop-filter:blur(20px);
      box-shadow:var(--shadow);
    }
    .mobile-panel.is-open{display:grid;gap:8px}
    .hero{
      min-height:760px;
      display:flex;
      align-items:center;
      padding:138px 0 78px;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(90deg,rgba(7,17,31,.96),rgba(7,17,31,.72) 48%,rgba(7,17,31,.82)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 72% 34%,rgba(53,215,255,.24),transparent 26%),
        radial-gradient(circle at 18% 78%,rgba(124,255,107,.12),transparent 25%),
        linear-gradient(120deg,transparent 0 48%,rgba(53,215,255,.09) 49%,transparent 51%);
      pointer-events:none;
    }
    .hero:after{
      content:"";
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      height:170px;
      background:linear-gradient(to top,var(--bg),transparent);
    }
    .hero .container{position:relative;z-index:1}
    .hero-grid{
      display:grid;
      grid-template-columns:minmax(0,1.02fr) minmax(360px,.78fr);
      gap:34px;
      align-items:center;
    }
    .hero-title span{
      color:transparent;
      background:linear-gradient(135deg,#fff 12%,var(--primary),var(--cyan));
      -webkit-background-clip:text;
      background-clip:text;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin:30px 0 26px}
    .hero-tags{display:flex;flex-wrap:wrap;gap:10px}
    .chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 12px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:999px;
      background:rgba(255,255,255,.06);
      color:#D8EAF8;
      font-size:13px;
      font-weight:700;
      backdrop-filter:blur(10px);
    }
    .chip b{color:var(--primary)}
    .glass-card{
      position:relative;
      border:1px solid var(--border);
      border-radius:var(--radius);
      background:rgba(10,27,48,.72);
      backdrop-filter:blur(16px);
      box-shadow:var(--shadow);
      overflow:hidden;
      transition:transform .25s ease,border-color .25s ease,box-shadow .25s ease;
    }
    .glass-card:hover{
      transform:translateY(-4px);
      border-color:rgba(53,215,255,.38);
      box-shadow:var(--shadow),var(--glow);
    }
    .glass-card:before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 90% 0,rgba(53,215,255,.16),transparent 30%),
                 radial-gradient(circle at 0 100%,rgba(124,255,107,.1),transparent 24%);
      pointer-events:none;
    }
    .data-console{padding:26px}
    .console-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
      margin-bottom:22px;
      position:relative;
      z-index:1;
    }
    .live-dot{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:#DFFFE1;
      font-size:13px;
      font-weight:800;
    }
    .live-dot:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 18px rgba(124,255,107,.95);
    }
    .console-number{
      font-size:56px;
      line-height:1;
      font-weight:950;
      letter-spacing:-.08em;
      color:transparent;
      background:linear-gradient(135deg,var(--primary),var(--cyan));
      -webkit-background-clip:text;
      background-clip:text;
    }
    .mini-chart{
      height:118px;
      border:1px solid rgba(255,255,255,.1);
      border-radius:18px;
      background:
        linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px),
        linear-gradient(180deg,rgba(53,215,255,.08),rgba(124,255,107,.03));
      background-size:28px 28px,28px 28px,100% 100%;
      position:relative;
      overflow:hidden;
      margin-bottom:18px;
      z-index:1;
    }
    .mini-chart svg{width:100%;height:100%;display:block}
    .console-list{display:grid;gap:12px;position:relative;z-index:1}
    .console-row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:13px 14px;
      border:1px solid rgba(255,255,255,.1);
      border-radius:16px;
      background:rgba(255,255,255,.055);
    }
    .console-row strong{font-size:15px}
    .console-row span{color:var(--weak);font-size:13px}
    .score-pill{
      padding:4px 10px;
      border-radius:999px;
      color:#07111F;
      background:linear-gradient(135deg,var(--primary),var(--cyan));
      font-weight:900;
      font-size:13px;
      white-space:nowrap;
    }
    .metric-grid{
      display:grid;
      grid-template-columns:1.18fr .82fr .82fr;
      gap:20px;
    }
    .metric-card{
      min-height:220px;
      padding:28px;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .metric-card.wide{
      grid-row:span 2;
      min-height:462px;
    }
    .metric-icon{
      width:44px;
      height:44px;
      border-radius:15px;
      display:grid;
      place-items:center;
      background:rgba(53,215,255,.1);
      border:1px solid rgba(53,215,255,.22);
      color:var(--cyan);
      font-weight:950;
      box-shadow:inset 0 0 22px rgba(53,215,255,.12);
    }
    .metric-value{
      font-size:clamp(36px,4vw,54px);
      line-height:1;
      letter-spacing:-.06em;
      font-weight:950;
      color:#fff;
      margin:18px 0 8px;
    }
    .metric-value small{
      font-size:18px;
      color:var(--primary);
      letter-spacing:0;
    }
    .metric-card h3{margin-top:18px}
    .metric-card .line{
      height:8px;
      border-radius:999px;
      background:linear-gradient(90deg,var(--primary),var(--cyan),rgba(255,255,255,.08));
      margin-top:20px;
      box-shadow:0 0 18px rgba(53,215,255,.26);
    }
    .rank-layout{
      display:grid;
      grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
      gap:24px;
      align-items:stretch;
    }
    .rank-board{padding:28px}
    .rank-tabs{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:18px 0 22px;
    }
    .rank-tabs span{
      color:#D8EBF8;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.05);
      border-radius:999px;
      padding:7px 11px;
      font-size:13px;
      font-weight:800;
    }
    .rank-tabs span.active{
      color:#06101D;
      background:linear-gradient(135deg,var(--primary),var(--cyan));
      border-color:transparent;
    }
    .rank-list{display:grid;gap:12px;position:relative;z-index:1}
    .rank-item{
      display:grid;
      grid-template-columns:42px 1fr auto;
      align-items:center;
      gap:14px;
      padding:15px;
      border-radius:18px;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.055);
      transition:transform .22s ease,border-color .22s ease,background .22s ease;
    }
    .rank-item:hover{
      transform:translateX(3px);
      border-color:rgba(124,255,107,.32);
      background:rgba(124,255,107,.07);
    }
    .rank-no{
      width:36px;
      height:36px;
      border-radius:12px;
      display:grid;
      place-items:center;
      color:#07111F;
      font-weight:950;
      background:linear-gradient(135deg,var(--primary),var(--cyan));
    }
    .rank-name strong{display:block;color:#fff}
    .rank-name span{font-size:13px;color:var(--weak)}
    .rank-score{text-align:right;font-weight:950;color:#fff}
    .rank-score small{display:block;color:var(--weak);font-size:12px;font-weight:700}
    .visual-card{
      min-height:100%;
      background:
        linear-gradient(180deg,rgba(7,17,31,.12),rgba(7,17,31,.85)),
        url("/assets/images/coverpic/cover-8.webp") center/cover no-repeat;
      border-radius:var(--radius-lg);
      border:1px solid rgba(255,255,255,.12);
      box-shadow:var(--shadow);
      padding:32px;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      position:relative;
      overflow:hidden;
    }
    .visual-card:before{
      content:"";
      position:absolute;
      inset:18px;
      border:1px solid rgba(53,215,255,.18);
      border-radius:22px;
      pointer-events:none;
    }
    .visual-card .content{position:relative;z-index:1;max-width:540px}
    .trend-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:22px;
    }
    .trend-feature{
      min-height:480px;
      padding:32px;
      background:
        linear-gradient(180deg,rgba(7,17,31,.18),rgba(7,17,31,.9)),
        url("/assets/images/coverpic/cover-11.webp") center/cover no-repeat;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
    }
    .trend-stack{display:grid;gap:18px}
    .trend-card{
      padding:24px;
      display:grid;
      grid-template-columns:72px 1fr;
      gap:18px;
      align-items:start;
    }
    .trend-date{
      width:72px;
      height:72px;
      border-radius:20px;
      display:grid;
      place-items:center;
      text-align:center;
      background:rgba(53,215,255,.1);
      border:1px solid rgba(53,215,255,.2);
      color:#fff;
      font-weight:900;
      line-height:1.15;
    }
    .trend-date small{display:block;color:var(--primary);font-size:12px}
    .compare-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .compare-card{
      padding:26px;
      min-height:330px;
      display:flex;
      flex-direction:column;
    }
    .compare-card.featured{
      border-color:rgba(124,255,107,.36);
      box-shadow:var(--shadow),0 0 36px rgba(124,255,107,.12);
    }
    .compare-card ul{
      list-style:none;
      padding:0;
      margin:18px 0 24px;
      display:grid;
      gap:12px;
    }
    .compare-card li{
      color:var(--muted);
      position:relative;
      padding-left:24px;
      font-size:15px;
    }
    .compare-card li:before{
      content:"✓";
      position:absolute;
      left:0;
      top:0;
      color:var(--primary);
      font-weight:950;
    }
    .compare-card .btn{margin-top:auto}
    .flow-wrap{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .flow-step{
      padding:25px;
      position:relative;
    }
    .flow-step:after{
      content:"";
      position:absolute;
      top:42px;
      right:-18px;
      width:18px;
      height:1px;
      background:linear-gradient(90deg,var(--cyan),transparent);
    }
    .flow-step:last-child:after{display:none}
    .step-no{
      width:42px;
      height:42px;
      border-radius:14px;
      display:grid;
      place-items:center;
      color:#07111F;
      background:linear-gradient(135deg,var(--primary),var(--cyan));
      font-weight:950;
      margin-bottom:18px;
    }
    .faq-wrap{
      max-width:960px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border:1px solid var(--border);
      border-radius:20px;
      background:rgba(10,27,48,.72);
      backdrop-filter:blur(14px);
      overflow:hidden;
      box-shadow:0 16px 46px rgba(0,0,0,.18);
    }
    .accordion-title{
      border:0!important;
      color:#fff!important;
      background:transparent!important;
      font-size:17px;
      font-weight:900;
      padding:22px 56px 22px 24px;
      line-height:1.45;
    }
    .accordion-title:before{
      color:var(--primary);
      font-size:24px;
      right:22px;
      margin-top:-14px;
    }
    .accordion-title:hover,.accordion-title:focus{
      color:#EFFFF2!important;
      background:rgba(53,215,255,.06)!important;
      outline:0;
    }
    .accordion-content{
      border:0!important;
      background:rgba(255,255,255,.035)!important;
      color:var(--muted);
      padding:0 24px 22px;
      line-height:1.8;
    }
    .is-active>.accordion-title{
      box-shadow:inset 0 0 0 1px rgba(53,215,255,.18);
    }
    .cta-panel{
      display:grid;
      grid-template-columns:1fr .86fr;
      gap:24px;
      padding:34px;
      align-items:stretch;
    }
    .contact-form{
      display:grid;
      gap:14px;
      position:relative;
      z-index:1;
    }
    .form-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .field label{
      display:block;
      color:#E9F4FF;
      font-weight:800;
      font-size:14px;
      margin-bottom:8px;
    }
    .field input,.field textarea,.field select{
      width:100%;
      color:#fff;
      border:1px solid rgba(255,255,255,.13);
      border-radius:16px;
      background:rgba(255,255,255,.06);
      box-shadow:none;
      margin:0;
      padding:13px 14px;
      min-height:50px;
      outline:0;
      transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .field textarea{min-height:116px;resize:vertical}
    .field input::placeholder,.field textarea::placeholder{color:#8297AA}
    .field input:focus,.field textarea:focus,.field select:focus{
      border-color:rgba(53,215,255,.78);
      background:rgba(53,215,255,.06);
      box-shadow:0 0 0 4px rgba(53,215,255,.12);
    }
    .quick-list{
      position:relative;
      z-index:1;
      display:grid;
      gap:12px;
      margin-top:22px;
    }
    .quick-list a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:14px 16px;
      border-radius:16px;
      color:#E6F5FF;
      border:1px solid rgba(255,255,255,.1);
      background:rgba(255,255,255,.05);
      font-weight:800;
    }
    .quick-list a:hover{
      border-color:rgba(124,255,107,.34);
      background:rgba(124,255,107,.08);
      transform:translateX(4px);
    }
    .quick-list a span{color:var(--cyan)}
    .site-footer{
      padding:42px 0 28px;
      background:linear-gradient(180deg,rgba(6,16,29,.72),#040A12);
      border-top:1px solid rgba(255,255,255,.1);
    }
    .footer-panel{
      border:1px solid rgba(255,255,255,.1);
      border-radius:28px;
      background:rgba(10,27,48,.56);
      backdrop-filter:blur(12px);
      padding:32px;
      box-shadow:0 18px 70px rgba(0,0,0,.25);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .75fr .75fr 1fr .85fr;
      gap:28px;
      align-items:start;
    }
    .footer-desc{
      margin:18px 0 0;
      color:var(--weak);
      font-size:14px;
      line-height:1.8;
    }
    .footer-title{
      color:#fff;
      font-weight:950;
      margin-bottom:13px;
    }
    .footer-links{
      display:grid;
      gap:8px;
    }
    .footer-links a,.footer-contact p{
      color:var(--weak);
      font-size:14px;
      margin:0;
    }
    .footer-links a:hover{
      color:var(--cyan);
      transform:translateX(3px);
    }
    .footer-bottom{
      margin-top:30px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.1);
      text-align:center;
      color:#7F93A7;
      font-size:13px;
      line-height:1.9;
    }
    .footer-bottom a{color:#9FB4C7}
    .footer-bottom a:hover{color:var(--cyan)}
    @media (max-width:1180px){
      .desktop-nav{gap:1px}
      .desktop-nav a{padding:9px 9px;font-size:13px}
      .search-box{width:205px}
      .compare-grid{grid-template-columns:repeat(2,1fr)}
      .footer-grid{grid-template-columns:1.3fr 1fr 1fr;gap:26px}
    }
    @media (max-width:1024px){
      .desktop-nav,.search-box,.nav-actions>.btn{display:none}
      .menu-toggle{display:inline-grid;place-items:center}
      .hero{min-height:auto;padding:128px 0 66px}
      .hero-grid,.rank-layout,.trend-grid,.cta-panel{grid-template-columns:1fr}
      .metric-grid{grid-template-columns:repeat(2,1fr)}
      .metric-card.wide{grid-row:auto;grid-column:span 2;min-height:360px}
      .flow-wrap{grid-template-columns:repeat(2,1fr)}
      .flow-step:after{display:none}
      .section-head{display:block}
    }
    @media (max-width:768px){
      .container{width:min(100% - 28px,1240px)}
      .site-header{top:10px;padding:0 10px}
      .nav-shell{min-height:64px;border-radius:20px;padding:10px 12px}
      .brand{font-size:18px}
      .brand-mark{width:32px;height:26px}
      .hero{padding:112px 0 54px}
      .hero-actions{align-items:stretch}
      .hero-actions .btn{width:100%}
      .data-console{padding:20px}
      .console-number{font-size:46px}
      .metric-grid,.compare-grid,.flow-wrap{grid-template-columns:1fr}
      .metric-card.wide{grid-column:auto}
      .trend-card{grid-template-columns:1fr}
      .trend-date{width:66px;height:66px}
      .form-row{grid-template-columns:1fr}
      .footer-grid{grid-template-columns:1fr 1fr}
      .footer-panel{padding:24px}
    }
    @media (max-width:520px){
      .section{padding:58px 0}
      h1{font-size:36px}
      h2{font-size:29px}
      .mobile-panel{width:calc(100% - 20px)}
      .hero-tags{gap:8px}
      .chip{font-size:12px}
      .rank-item{grid-template-columns:36px 1fr;align-items:start}
      .rank-score{grid-column:2;text-align:left}
      .visual-card,.trend-feature{min-height:390px;padding:24px}
      .cta-panel{padding:22px}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{font-size:12px}
    }
