/* roulang page: index */
:root {
      --bg: #07111f;
      --bg-2: #0b1728;
      --bg-3: #101c2e;
      --panel: rgba(255, 255, 255, .075);
      --panel-strong: rgba(255, 255, 255, .11);
      --panel-soft: rgba(255, 255, 255, .045);
      --text: #d7e2f0;
      --title: #f8fbff;
      --muted: #8ea3bb;
      --line: rgba(173, 218, 255, .18);
      --line-strong: rgba(34, 211, 238, .42);
      --cyan: #22d3ee;
      --blue: #38bdf8;
      --green: #22c55e;
      --yellow: #facc15;
      --gold: #f59e0b;
      --danger: #fb7185;
      --shadow: 0 22px 80px rgba(0, 0, 0, .34);
      --shadow-cyan: 0 18px 48px rgba(34, 211, 238, .16);
      --radius-xl: 22px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 10px;
      --container: 1220px;
      --header-height: 132px;
      --ease: 220ms ease-out;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      background: var(--bg);
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 4%, rgba(34, 211, 238, .14), transparent 34%),
        radial-gradient(circle at 80% 18%, rgba(34, 197, 94, .12), transparent 31%),
        linear-gradient(180deg, #07111f 0%, #091525 46%, #0b1728 100%);
      line-height: 1.75;
      font-size: 16px;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 78%);
      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);
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input,
    select,
    textarea {
      width: 100%;
      color: var(--title);
      background: rgba(4, 12, 24, .72);
      border: 1px solid rgba(173, 218, 255, .2);
      border-radius: 14px;
      outline: none;
      padding: 13px 14px;
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    textarea {
      min-height: 112px;
      resize: vertical;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(142, 163, 187, .82);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 4px rgba(34, 211, 238, .14);
      background: rgba(4, 12, 24, .9);
    }

    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    textarea:focus-visible,
    select:focus-visible,
    summary:focus-visible {
      outline: 3px solid rgba(34, 211, 238, .56);
      outline-offset: 3px;
    }

    .container {
      width: min(var(--container), calc(100% - 40px));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(7, 17, 31, .78);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(173, 218, 255, .14);
      box-shadow: 0 16px 42px rgba(0, 0, 0, .22);
    }

    .brand-row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 22px;
      padding: 16px 0 12px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 13px;
      display: grid;
      place-items: center;
      color: #04101d;
      font-weight: 900;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 0 28px rgba(34, 211, 238, .26);
      flex: 0 0 auto;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.18;
      min-width: 0;
    }

    .brand-name {
      color: var(--title);
      font-size: 21px;
      font-weight: 850;
      white-space: nowrap;
    }

    .brand-kicker {
      color: var(--muted);
      font-size: 13px;
      margin-top: 3px;
    }

    .top-search {
      max-width: 420px;
      justify-self: center;
      width: 100%;
      position: relative;
    }

    .top-search input {
      padding-left: 42px;
      height: 44px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .065);
    }

    .top-search::before {
      content: "⌕";
      position: absolute;
      left: 17px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--cyan);
      font-size: 20px;
      z-index: 1;
    }

    .header-actions {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .focus-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 40px;
      padding: 0 14px;
      border-radius: 999px;
      color: var(--title);
      background: rgba(250, 204, 21, .1);
      border: 1px solid rgba(250, 204, 21, .28);
      font-size: 14px;
      white-space: nowrap;
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      color: var(--title);
      background: rgba(255, 255, 255, .08);
      border: 1px solid var(--line);
    }

    .menu-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      margin: 4px auto;
      border-radius: 4px;
      background: currentColor;
    }

    .channel-row {
      border-top: 1px solid rgba(173, 218, 255, .1);
      padding: 10px 0 12px;
    }

    .channel-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(34, 211, 238, .42) transparent;
    }

    .channel-nav a {
      position: relative;
      flex: 0 0 auto;
      padding: 9px 14px;
      border-radius: 999px;
      color: #b8c8da;
      font-size: 14px;
      border: 1px solid transparent;
    }

    .channel-nav a:hover {
      color: var(--cyan);
      background: rgba(34, 211, 238, .08);
      border-color: rgba(34, 211, 238, .18);
    }

    .channel-nav a.active {
      color: #06111f;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      font-weight: 760;
      box-shadow: 0 10px 30px rgba(34, 211, 238, .18);
    }

    .hero {
      position: relative;
      padding: 74px 0 42px;
      isolation: isolate;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -2;
      background:
        linear-gradient(90deg, rgba(7, 17, 31, .94) 0%, rgba(7, 17, 31, .78) 52%, rgba(7, 17, 31, .96) 100%),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
      opacity: .88;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 120px;
      z-index: -1;
      background: linear-gradient(to bottom, transparent, var(--bg));
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.38fr) minmax(360px, .92fr);
      gap: 38px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 7px 12px;
      border-radius: 999px;
      color: #dffaff;
      background: rgba(34, 211, 238, .11);
      border: 1px solid rgba(34, 211, 238, .26);
      box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
      font-size: 14px;
      font-weight: 650;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 4px rgba(34, 197, 94, .16);
    }

    h1,
    h2,
    h3 {
      color: var(--title);
      margin: 0;
      line-height: 1.16;
    }

    h1 {
      max-width: 820px;
      margin-top: 22px;
      font-size: clamp(38px, 4.3vw, 56px);
      letter-spacing: 0;
    }

    h2 {
      font-size: clamp(28px, 3vw, 36px);
      letter-spacing: 0;
    }

    h3 {
      font-size: 21px;
      letter-spacing: 0;
    }

    p {
      margin: 0;
    }

    .hero-lead {
      max-width: 760px;
      margin-top: 20px;
      color: #d9e8f7;
      font-size: 17px;
      line-height: 1.85;
    }

    .hero-support {
      max-width: 710px;
      margin-top: 10px;
      color: var(--muted);
      font-size: 15.5px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 13px;
      margin-top: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 760;
      color: var(--title);
      white-space: nowrap;
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
    }

    .btn-primary {
      color: #04111f;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 16px 38px rgba(34, 211, 238, .22);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 54px rgba(34, 211, 238, .3);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, .08);
      border-color: rgba(173, 218, 255, .22);
      color: #e9f6ff;
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(34, 211, 238, .52);
      box-shadow: 0 18px 44px rgba(34, 211, 238, .12);
    }

    .btn:active,
    .card:active {
      transform: translateY(0);
    }

    .hero-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 36px;
      max-width: 760px;
    }

    .meta-tile {
      min-height: 92px;
      padding: 16px;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(173, 218, 255, .16);
      backdrop-filter: blur(16px);
    }

    .meta-number {
      color: var(--title);
      font-size: 28px;
      font-weight: 850;
      line-height: 1;
    }

    .meta-label {
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
    }

    .score-panel {
      padding: 22px;
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.065)),
        rgba(7, 17, 31, .62);
      border: 1px solid rgba(173, 218, 255, .2);
      box-shadow: var(--shadow), var(--shadow-cyan);
      backdrop-filter: blur(20px);
    }

    .score-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 14px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(173, 218, 255, .14);
    }

    .score-head strong {
      display: block;
      color: var(--title);
      font-size: 20px;
    }

    .score-head span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 3px;
    }

    .live-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 10px;
      border-radius: 999px;
      color: #fff9d8;
      background: rgba(250, 204, 21, .13);
      border: 1px solid rgba(250, 204, 21, .28);
      font-size: 12px;
      white-space: nowrap;
      font-weight: 700;
    }

    .match-list {
      display: grid;
      gap: 12px;
      margin-top: 16px;
    }

    .match-row {
      display: grid;
      grid-template-columns: minmax(78px, .75fr) minmax(0, 1.6fr) auto;
      align-items: center;
      gap: 12px;
      padding: 13px;
      border-radius: 17px;
      background: rgba(4, 12, 24, .44);
      border: 1px solid rgba(173, 218, 255, .13);
      transition: border-color var(--ease), background var(--ease), transform var(--ease);
    }

    .match-row:hover {
      border-color: rgba(34, 211, 238, .38);
      background: rgba(255, 255, 255, .08);
      transform: translateY(-1px);
    }

    .league {
      color: var(--cyan);
      font-size: 12px;
      font-weight: 760;
    }

    .teams {
      color: var(--title);
      font-weight: 750;
      font-size: 14.5px;
      min-width: 0;
    }

    .time {
      color: var(--muted);
      font-size: 12px;
      margin-top: 2px;
    }

    .score {
      min-width: 74px;
      text-align: right;
      color: var(--title);
      font-weight: 850;
      font-size: 16px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 25px;
      padding: 4px 9px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 760;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .badge-blue {
      color: #dffaff;
      background: rgba(56, 189, 248, .12);
      border-color: rgba(56, 189, 248, .25);
    }

    .badge-green {
      color: #dcffe9;
      background: rgba(34, 197, 94, .12);
      border-color: rgba(34, 197, 94, .24);
    }

    .badge-yellow {
      color: #fff8ce;
      background: rgba(250, 204, 21, .13);
      border-color: rgba(250, 204, 21, .28);
    }

    .badge-red {
      color: #ffe4ea;
      background: rgba(251, 113, 133, .13);
      border-color: rgba(251, 113, 133, .26);
    }

    main {
      position: relative;
    }

    .section {
      padding: 86px 0;
    }

    .section-tight {
      padding: 62px 0;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 30px;
    }

    .section-title {
      max-width: 720px;
    }

    .section-title p {
      margin-top: 12px;
      color: var(--muted);
      max-width: 650px;
    }

    .section-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--cyan);
      font-weight: 760;
      white-space: nowrap;
    }

    .section-link:hover {
      color: #e2fbff;
      transform: translateX(2px);
    }

    .card {
      border-radius: var(--radius-xl);
      background: var(--panel);
      border: 1px solid var(--line);
      box-shadow: 0 18px 50px rgba(0,0,0,.18);
      backdrop-filter: blur(18px);
      transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease), background var(--ease);
    }

    .card:hover {
      border-color: rgba(34, 211, 238, .36);
      box-shadow: var(--shadow-cyan);
      background: rgba(255,255,255,.09);
      transform: translateY(-2px);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1.25fr repeat(2, 1fr);
      gap: 18px;
    }

    .feature-card {
      min-height: 230px;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }

    .feature-card.large {
      grid-row: span 2;
      min-height: 478px;
      background:
        linear-gradient(180deg, rgba(34, 211, 238, .13), rgba(255,255,255,.06)),
        url("/assets/images/coverpic/cover-1.webp") center/cover no-repeat;
    }

    .feature-card.large::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7,17,31,.22), rgba(7,17,31,.86));
      z-index: 0;
    }

    .feature-card > * {
      position: relative;
      z-index: 1;
    }

    .icon-badge {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: #06111f;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      font-weight: 900;
      box-shadow: 0 14px 30px rgba(34, 211, 238, .18);
      margin-bottom: 18px;
    }

    .feature-card h3 {
      margin-bottom: 11px;
    }

    .feature-card p {
      color: #aec0d4;
      font-size: 15px;
    }

    .feature-card.large p {
      color: #d6e8f8;
    }

    .channel-cards {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 22px;
    }

    .channel-card {
      padding: 18px;
      border-radius: 18px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(173,218,255,.16);
    }

    .channel-card strong {
      display: block;
      color: var(--title);
      margin: 10px 0 6px;
      font-size: 17px;
    }

    .channel-card span {
      color: var(--muted);
      font-size: 14px;
    }

    .magazine-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
      gap: 22px;
    }

    .cover-story {
      min-height: 510px;
      display: flex;
      align-items: flex-end;
      padding: 28px;
      border-radius: 26px;
      overflow: hidden;
      position: relative;
      background: url("/assets/images/coverpic/cover-3.webp") center/cover no-repeat;
      border: 1px solid rgba(173, 218, 255, .2);
      box-shadow: var(--shadow);
    }

    .cover-story::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7,17,31,.12) 0%, rgba(7,17,31,.88) 75%);
    }

    .cover-story-content {
      position: relative;
      z-index: 1;
      max-width: 640px;
    }

    .cover-story h3 {
      font-size: 30px;
      margin: 14px 0 12px;
    }

    .cover-story p {
      color: #d5e5f4;
    }

    .story-list {
      display: grid;
      gap: 14px;
    }

    .story-item {
      display: grid;
      grid-template-columns: 112px 1fr;
      gap: 14px;
      padding: 13px;
      min-height: 118px;
      border-radius: 19px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(173,218,255,.16);
      transition: border-color var(--ease), transform var(--ease), background var(--ease);
    }

    .story-item:hover {
      border-color: rgba(34,211,238,.35);
      background: rgba(255,255,255,.09);
      transform: translateY(-2px);
    }

    .story-item img {
      width: 112px;
      height: 92px;
      border-radius: 14px;
      object-fit: cover;
    }

    .story-item h3 {
      font-size: 17px;
      margin: 7px 0 5px;
    }

    .story-item p {
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.62;
    }

    .scenario-grid {
      columns: 3 280px;
      column-gap: 18px;
    }

    .scenario-card {
      break-inside: avoid;
      padding: 22px;
      margin: 0 0 18px;
      min-height: 260px;
    }

    .scenario-card:nth-child(2),
    .scenario-card:nth-child(5) {
      min-height: 320px;
    }

    .scenario-card .badge {
      margin-bottom: 14px;
    }

    .scenario-card h3 {
      margin-bottom: 12px;
    }

    .scenario-card p {
      color: #b5c5d7;
      font-size: 15px;
    }

    .module-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 18px;
    }

    .module-list span {
      padding: 6px 9px;
      border-radius: 999px;
      color: #dff7ff;
      background: rgba(34,211,238,.09);
      border: 1px solid rgba(34,211,238,.17);
      font-size: 12px;
    }

    .compare-panel {
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid rgba(173,218,255,.18);
      background: rgba(255,255,255,.065);
      backdrop-filter: blur(18px);
    }

    .compare-row {
      display: grid;
      grid-template-columns: 190px repeat(3, 1fr);
      border-bottom: 1px solid rgba(173,218,255,.12);
    }

    .compare-row:last-child {
      border-bottom: 0;
    }

    .compare-cell {
      padding: 18px;
      border-right: 1px solid rgba(173,218,255,.12);
      min-height: 76px;
    }

    .compare-cell:last-child {
      border-right: 0;
    }

    .compare-cell.head {
      color: var(--title);
      font-weight: 820;
      background: rgba(34,211,238,.08);
    }

    .compare-cell strong {
      color: var(--title);
      display: block;
      margin-bottom: 4px;
    }

    .compare-cell span,
    .compare-cell p {
      color: var(--muted);
      font-size: 14px;
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .review-card {
      padding: 20px;
      min-height: 246px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .review-name {
      color: var(--title);
      font-weight: 800;
    }

    .review-tag {
      color: var(--muted);
      font-size: 13px;
      margin-top: 2px;
    }

    .rating {
      color: var(--yellow);
      font-weight: 850;
      white-space: nowrap;
      font-size: 14px;
    }

    .review-card p {
      color: #c2d2e3;
      font-size: 14.5px;
      line-height: 1.72;
    }

    .review-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 16px;
      color: var(--muted);
      font-size: 12px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    details.faq-item {
      border-radius: 18px;
      background: rgba(255,255,255,.065);
      border: 1px solid rgba(173,218,255,.16);
      overflow: hidden;
      transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
    }

    details.faq-item[open] {
      border-color: rgba(34,211,238,.4);
      background: rgba(255,255,255,.09);
      box-shadow: 0 16px 42px rgba(34,211,238,.1);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 20px;
      color: var(--title);
      font-weight: 780;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      color: #06111f;
      background: var(--cyan);
      font-weight: 900;
      line-height: 1;
    }

    .faq-item[open] summary::after {
      content: "−";
    }

    .faq-item p {
      padding: 0 20px 20px;
      color: #b7c9da;
      font-size: 15px;
    }

    .cta-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      padding: 34px;
      background:
        linear-gradient(120deg, rgba(34,211,238,.15), rgba(34,197,94,.11) 48%, rgba(250,204,21,.1)),
        rgba(255,255,255,.065);
      border: 1px solid rgba(173,218,255,.2);
      box-shadow: var(--shadow);
    }

    .cta-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background: url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      opacity: .16;
      mix-blend-mode: screen;
    }

    .cta-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(420px, .78fr);
      gap: 30px;
      align-items: start;
    }

    .cta-copy p {
      margin-top: 13px;
      color: #d2e2f2;
      max-width: 620px;
    }

    .contact-list {
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .contact-list li {
      list-style: none;
      display: flex;
      gap: 10px;
      color: #c7d8e8;
    }

    .contact-list li::before {
      content: "✓";
      color: var(--green);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .contact-form {
      display: grid;
      gap: 14px;
      padding: 20px;
      border-radius: 22px;
      background: rgba(4, 12, 24, .56);
      border: 1px solid rgba(173,218,255,.16);
      backdrop-filter: blur(16px);
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field label {
      display: block;
      color: #dcecff;
      font-size: 13px;
      font-weight: 720;
      margin: 0 0 7px;
    }

    .site-footer {
      margin-top: 28px;
      background: rgba(4, 12, 24, .84);
      border-top: 1px solid rgba(173,218,255,.14);
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.35fr repeat(3, 1fr);
      gap: 28px;
      padding: 48px 0 34px;
    }

    .footer-brand {
      max-width: 390px;
    }

    .footer-brand .brand {
      margin-bottom: 14px;
    }

    .footer-brand p,
    .footer-col p {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-col h3 {
      font-size: 16px;
      margin-bottom: 13px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: #b6c7d9;
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--cyan);
      transform: translateX(2px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(173,218,255,.12);
      padding: 20px 0 24px;
      text-align: center;
      color: #9fb2c7;
      font-size: 13px;
    }

    .footer-bottom a {
      color: #c5d7e8;
      margin: 0 7px;
    }

    .footer-bottom a:hover {
      color: var(--cyan);
    }

    @media (max-width: 1100px) {
      .brand-row {
        grid-template-columns: auto 1fr auto;
      }

      .top-search {
        justify-self: stretch;
      }

      .focus-pill {
        display: none;
      }

      .hero-grid,
      .magazine-grid,
      .cta-grid {
        grid-template-columns: 1fr;
      }

      .score-panel {
        max-width: 720px;
      }

      .feature-grid {
        grid-template-columns: 1fr 1fr;
      }

      .feature-card.large {
        grid-column: 1 / -1;
        min-height: 360px;
      }

      .channel-cards,
      .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .compare-row {
        grid-template-columns: 150px repeat(3, 1fr);
      }
    }

    @media (max-width: 820px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .site-header {
        position: sticky;
      }

      .brand-row {
        grid-template-columns: 1fr auto;
        gap: 12px;
      }

      .top-search,
      .header-actions {
        display: none;
      }

      .menu-toggle {
        display: inline-block;
      }

      .channel-row {
        display: none;
        padding-top: 0;
      }

      .site-header.menu-open .channel-row {
        display: block;
      }

      .channel-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding-top: 10px;
        overflow: visible;
      }

      .channel-nav a {
        text-align: center;
        border-color: rgba(173,218,255,.14);
        background: rgba(255,255,255,.055);
      }

      .hero {
        padding: 52px 0 34px;
      }

      h1 {
        font-size: clamp(30px, 8vw, 38px);
      }

      .hero-meta {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 58px 0;
      }

      .section-tight {
        padding: 44px 0;
      }

      .section-head {
        display: block;
      }

      .section-link {
        margin-top: 14px;
      }

      .match-row {
        grid-template-columns: 1fr;
        gap: 8px;
      }

      .score {
        text-align: left;
      }

      .feature-grid,
      .channel-cards,
      .review-grid,
      .faq-grid,
      .form-row,
      .footer-main {
        grid-template-columns: 1fr;
      }

      .cover-story {
        min-height: 420px;
      }

      .story-item {
        grid-template-columns: 96px 1fr;
      }

      .story-item img {
        width: 96px;
        height: 88px;
      }

      .compare-panel {
        overflow-x: auto;
      }

      .compare-row {
        min-width: 760px;
      }

      .cta-wrap {
        padding: 24px;
        border-radius: 24px;
      }

      .cta-grid {
        gap: 22px;
      }
    }

    @media (max-width: 520px) {
      body {
        font-size: 15px;
      }

      .brand-name {
        font-size: 18px;
      }

      .brand-kicker {
        display: none;
      }

      .brand-mark {
        width: 38px;
        height: 38px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        white-space: normal;
        text-align: center;
      }

      .score-panel {
        padding: 16px;
        border-radius: 22px;
      }

      .score-head {
        display: block;
      }

      .live-chip {
        margin-top: 10px;
      }

      .feature-card,
      .scenario-card,
      .review-card {
        padding: 18px;
      }

      .feature-card.large {
        min-height: 320px;
      }

      .cover-story {
        padding: 20px;
        min-height: 370px;
      }

      .cover-story h3 {
        font-size: 24px;
      }

      .story-item {
        grid-template-columns: 1fr;
      }

      .story-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
      }

      .channel-nav {
        grid-template-columns: 1fr;
      }

      .footer-bottom a {
        display: inline-block;
        margin: 4px 6px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
      }
    }

/* roulang page: category1 */
:root {
      --bg: #07111f;
      --bg-2: #0b1728;
      --bg-3: #101c2e;
      --panel: rgba(255, 255, 255, 0.075);
      --panel-strong: rgba(255, 255, 255, 0.11);
      --line: rgba(190, 224, 255, 0.16);
      --line-strong: rgba(34, 211, 238, 0.42);
      --text: #d7e2f0;
      --muted: #8ea3bb;
      --heading: #f8fbff;
      --cyan: #22d3ee;
      --cyan-2: #38bdf8;
      --green: #22c55e;
      --yellow: #facc15;
      --orange: #f59e0b;
      --rose: #fb7185;
      --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
      --glow: 0 0 32px rgba(34, 211, 238, 0.22);
      --radius-xl: 22px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --container: 1220px;
      --ease: 220ms ease-out;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 8%, rgba(34, 211, 238, 0.13), transparent 31%),
        radial-gradient(circle at 76% 14%, rgba(34, 197, 94, 0.1), transparent 28%),
        linear-gradient(180deg, var(--bg), var(--bg-2) 46%, #08101d 100%);
      line-height: 1.75;
      min-height: 100vh;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.75), transparent 72%);
      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);
    }

    img {
      display: block;
      width: 100%;
      height: auto;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    input,
    select,
    textarea {
      color: var(--heading);
      background: rgba(5, 14, 27, 0.78);
      border: 1px solid var(--line);
      border-radius: 14px;
      outline: none;
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.14);
      background: rgba(8, 20, 37, 0.94);
    }

    :focus-visible {
      outline: 3px solid rgba(34, 211, 238, 0.55);
      outline-offset: 3px;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(7, 17, 31, 0.82);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(20px);
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
    }

    .brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 76px;
      gap: 24px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 16px;
      color: #04111e;
      font-weight: 900;
      font-size: 22px;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 0 28px rgba(34, 211, 238, 0.32);
    }

    .brand-text {
      display: grid;
      gap: 2px;
      min-width: 0;
    }

    .brand-name {
      color: var(--heading);
      font-weight: 850;
      font-size: 20px;
      line-height: 1.2;
    }

    .brand-kicker {
      color: var(--muted);
      font-size: 12px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .header-tools {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
      flex: 1;
    }

    .search-box {
      position: relative;
      width: min(340px, 100%);
    }

    .search-box input {
      width: 100%;
      height: 42px;
      padding: 0 42px 0 16px;
      border-radius: 999px;
    }

    .search-box span {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--cyan);
      font-size: 15px;
    }

    .focus-chip {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      padding: 0 14px;
      border: 1px solid rgba(250, 204, 21, 0.28);
      border-radius: 999px;
      color: #fff6c7;
      background: rgba(250, 204, 21, 0.08);
      font-size: 13px;
      white-space: nowrap;
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      color: var(--heading);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--line);
    }

    .menu-toggle:hover {
      border-color: var(--line-strong);
      box-shadow: var(--glow);
    }

    .channel-row {
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .channel-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      min-height: 54px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .channel-nav::-webkit-scrollbar {
      display: none;
    }

    .channel-nav a {
      position: relative;
      flex: 0 0 auto;
      padding: 9px 15px;
      border-radius: 999px;
      color: #b9c8d8;
      font-size: 14px;
      border: 1px solid transparent;
    }

    .channel-nav a:hover {
      color: var(--cyan);
      background: rgba(34, 211, 238, 0.07);
      border-color: rgba(34, 211, 238, 0.2);
    }

    .channel-nav a.active {
      color: #05131f;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 0 26px rgba(34, 211, 238, 0.24);
      font-weight: 800;
    }

    .section {
      padding: 86px 0;
    }

    .section.tight {
      padding-top: 56px;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 28px;
    }

    .section-title {
      margin: 0;
      color: var(--heading);
      font-size: clamp(28px, 3vw, 36px);
      line-height: 1.18;
    }

    .section-note {
      max-width: 560px;
      margin: 10px 0 0;
      color: var(--muted);
      font-size: 16px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
      padding: 7px 12px;
      border: 1px solid rgba(34, 211, 238, 0.28);
      border-radius: 999px;
      color: #baf4ff;
      background: rgba(34, 211, 238, 0.08);
      font-size: 13px;
      font-weight: 700;
    }

    .hero {
      position: relative;
      padding: 70px 0 44px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.95), rgba(7, 17, 31, 0.72) 52%, rgba(7, 17, 31, 0.9)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
      opacity: 0.86;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 110px;
      background: linear-gradient(to bottom, transparent, var(--bg-2));
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 0.58fr 0.42fr;
      gap: 38px;
      align-items: center;
    }

    .hero h1 {
      margin: 0;
      max-width: 780px;
      color: var(--heading);
      font-size: clamp(42px, 4.4vw, 56px);
      line-height: 1.14;
    }

    .hero-subtitle {
      max-width: 760px;
      margin: 22px 0 0;
      color: #dbe8f6;
      font-size: 17px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .btn-primary {
      color: #04111e;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 0 30px rgba(34, 211, 238, 0.25);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 42px rgba(34, 211, 238, 0.34);
    }

    .btn-secondary {
      color: var(--heading);
      background: rgba(255, 255, 255, 0.07);
      border-color: var(--line);
      backdrop-filter: blur(14px);
    }

    .btn-secondary:hover {
      border-color: var(--line-strong);
      color: var(--cyan);
      transform: translateY(-2px);
      box-shadow: var(--glow);
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 34px;
    }

    .metric {
      min-height: 92px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(16px);
    }

    .metric strong {
      display: block;
      color: var(--heading);
      font-size: 24px;
      line-height: 1.1;
    }

    .metric span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
    }

    .score-panel {
      border: 1px solid rgba(34, 211, 238, 0.24);
      border-radius: 26px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055));
      box-shadow: var(--shadow), var(--glow);
      backdrop-filter: blur(22px);
      overflow: hidden;
    }

    .panel-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 20px 20px 14px;
      border-bottom: 1px solid var(--line);
    }

    .panel-title {
      color: var(--heading);
      font-weight: 850;
      font-size: 18px;
    }

    .panel-date {
      color: var(--muted);
      font-size: 13px;
    }

    .match-list {
      display: grid;
      gap: 10px;
      padding: 16px;
    }

    .match-card {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      min-height: 82px;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 18px;
      background: rgba(5, 14, 27, 0.54);
      transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .match-card:hover {
      transform: translateY(-2px);
      border-color: rgba(34, 211, 238, 0.38);
      background: rgba(8, 21, 39, 0.76);
      box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    }

    .match-league {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 12px;
      margin-bottom: 6px;
    }

    .teams {
      color: var(--heading);
      font-weight: 800;
      line-height: 1.4;
    }

    .score {
      min-width: 72px;
      text-align: center;
      color: var(--heading);
      font-weight: 900;
      font-size: 20px;
      font-variant-numeric: tabular-nums;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 24px;
      padding: 0 9px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .badge-blue {
      color: #cbe9ff;
      background: rgba(56, 189, 248, 0.12);
      border-color: rgba(56, 189, 248, 0.28);
    }

    .badge-live {
      color: #ffe2e8;
      background: rgba(251, 113, 133, 0.13);
      border-color: rgba(251, 113, 133, 0.34);
    }

    .badge-done {
      color: #d7ffe7;
      background: rgba(34, 197, 94, 0.12);
      border-color: rgba(34, 197, 94, 0.28);
    }

    .badge-focus {
      color: #fff5b3;
      background: rgba(250, 204, 21, 0.12);
      border-color: rgba(250, 204, 21, 0.32);
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      padding: 16px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--panel);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
    }

    .date-tabs,
    .league-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .filter-btn {
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      color: #b9c8d8;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(255, 255, 255, 0.09);
      transition: all var(--ease);
    }

    .filter-btn:hover,
    .filter-btn.active {
      color: #04111e;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      border-color: transparent;
      box-shadow: 0 0 22px rgba(34, 211, 238, 0.2);
    }

    .filter-spacer {
      flex: 1;
    }

    .select-control {
      min-height: 38px;
      padding: 0 38px 0 14px;
      appearance: none;
      color: var(--text);
      background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
      background-position: calc(100% - 18px) 16px, calc(100% - 12px) 16px;
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }

    .scoreboard-layout {
      display: grid;
      grid-template-columns: 1.45fr 0.75fr;
      gap: 24px;
      align-items: start;
    }

    .schedule-board {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: rgba(255, 255, 255, 0.065);
      backdrop-filter: blur(18px);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .board-head,
    .schedule-row {
      display: grid;
      grid-template-columns: 1.05fr 1.5fr 0.55fr 0.72fr;
      gap: 14px;
      align-items: center;
    }

    .board-head {
      padding: 15px 18px;
      color: #a9bfd4;
      font-size: 13px;
      font-weight: 800;
      background: rgba(255, 255, 255, 0.055);
      border-bottom: 1px solid var(--line);
    }

    .schedule-row {
      min-height: 86px;
      padding: 16px 18px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.075);
      transition: background var(--ease), border-color var(--ease);
    }

    .schedule-row:last-child {
      border-bottom: 0;
    }

    .schedule-row:hover {
      background: rgba(34, 211, 238, 0.055);
    }

    .league-name {
      color: var(--heading);
      font-weight: 850;
    }

    .league-meta,
    .time-text,
    .row-note {
      color: var(--muted);
      font-size: 13px;
    }

    .team-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--heading);
      font-weight: 850;
    }

    .vs {
      color: var(--cyan);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0;
    }

    .score-text {
      color: var(--heading);
      font-size: 22px;
      font-weight: 900;
      text-align: right;
      font-variant-numeric: tabular-nums;
    }

    .side-stack {
      display: grid;
      gap: 18px;
    }

    .feature-card,
    .glass-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--panel);
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 52px rgba(0, 0, 0, 0.2);
      overflow: hidden;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .feature-card:hover,
    .glass-card:hover {
      transform: translateY(-2px);
      border-color: rgba(34, 211, 238, 0.34);
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28), var(--glow);
    }

    .feature-image {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
    }

    .feature-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(7, 17, 31, 0.84), transparent 58%);
    }

    .feature-body {
      padding: 20px;
    }

    .feature-body h3,
    .glass-card h3 {
      margin: 0 0 10px;
      color: var(--heading);
      font-size: 21px;
      line-height: 1.28;
    }

    .feature-body p,
    .glass-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .quick-list {
      display: grid;
      gap: 10px;
      padding: 18px;
    }

    .quick-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .quick-item:last-child {
      border-bottom: 0;
    }

    .quick-item strong {
      color: var(--heading);
      font-size: 15px;
    }

    .quick-item span {
      color: var(--muted);
      font-size: 13px;
    }

    .scene-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .scene-card {
      min-height: 230px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255,255,255,0.095), rgba(255,255,255,0.05));
      backdrop-filter: blur(16px);
    }

    .scene-card:nth-child(1) {
      grid-column: span 2;
      background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(255,255,255,0.05)),
        rgba(255,255,255,0.06);
    }

    .scene-card h3 {
      margin: 14px 0 10px;
      color: var(--heading);
      font-size: 21px;
    }

    .scene-card p {
      margin: 0;
      color: var(--muted);
    }

    .icon-pill {
      width: 46px;
      height: 46px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: #04111e;
      background: linear-gradient(135deg, var(--cyan), var(--yellow));
      font-weight: 900;
      box-shadow: 0 0 26px rgba(34, 211, 238, 0.2);
    }

    .process {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 26px;
      align-items: stretch;
    }

    .process-visual {
      min-height: 440px;
      border-radius: 28px;
      border: 1px solid var(--line);
      background:
        linear-gradient(180deg, rgba(7, 17, 31, 0.2), rgba(7, 17, 31, 0.86)),
        url("/assets/images/coverpic/cover-3.webp") center/cover no-repeat;
      box-shadow: var(--shadow);
      overflow: hidden;
      position: relative;
    }

    .process-visual .overlay-card {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      padding: 20px;
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 20px;
      background: rgba(7, 17, 31, 0.72);
      backdrop-filter: blur(18px);
    }

    .overlay-card h3 {
      margin: 0 0 8px;
      color: var(--heading);
      font-size: 22px;
    }

    .overlay-card p {
      margin: 0;
      color: var(--text);
      font-size: 15px;
    }

    .steps {
      display: grid;
      gap: 14px;
    }

    .step {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
      padding: 20px;
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: var(--panel);
      backdrop-filter: blur(16px);
    }

    .step-num {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #03101c;
      background: var(--cyan);
      font-weight: 900;
    }

    .step h3 {
      margin: 0 0 6px;
      color: var(--heading);
      font-size: 19px;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.06);
      backdrop-filter: blur(16px);
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 66px;
      padding: 18px 20px;
      color: var(--heading);
      background: transparent;
      text-align: left;
      font-weight: 850;
    }

    .faq-question span:last-child {
      color: var(--cyan);
      font-size: 22px;
      line-height: 1;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
    }

    .faq-item.open {
      border-color: rgba(34, 211, 238, 0.38);
      box-shadow: var(--glow);
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 28px;
      padding: 32px;
      border: 1px solid rgba(34, 211, 238, 0.24);
      border-radius: 30px;
      background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.14), rgba(34, 197, 94, 0.08)),
        rgba(255, 255, 255, 0.07);
      backdrop-filter: blur(20px);
      box-shadow: var(--shadow), var(--glow);
    }

    .cta-copy h2 {
      margin: 0;
      color: var(--heading);
      font-size: clamp(28px, 3vw, 36px);
      line-height: 1.2;
    }

    .cta-copy p {
      margin: 14px 0 0;
      color: var(--text);
    }

    .contact-points {
      display: grid;
      gap: 10px;
      margin-top: 22px;
    }

    .contact-points div {
      display: flex;
      gap: 10px;
      color: #cfe0ef;
    }

    .contact-points b {
      color: var(--yellow);
    }

    .contact-form {
      display: grid;
      gap: 14px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field label {
      color: var(--heading);
      font-size: 13px;
      font-weight: 800;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      padding: 12px 14px;
    }

    .field textarea {
      min-height: 112px;
      resize: vertical;
    }

    .field-full {
      grid-column: 1 / -1;
    }

    .site-footer {
      padding: 64px 0 30px;
      background: #050d18;
      border-top: 1px solid var(--line);
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.35fr repeat(3, 0.7fr);
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .footer-brand p {
      margin: 18px 0 0;
      color: var(--muted);
      max-width: 430px;
      font-size: 14px;
    }

    .footer-col h3 {
      margin: 0 0 14px;
      color: var(--heading);
      font-size: 16px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--cyan);
      transform: translateX(2px);
    }

    .footer-bottom {
      display: grid;
      gap: 8px;
      justify-items: center;
      padding-top: 24px;
      color: #8ea3bb;
      text-align: center;
      font-size: 13px;
    }

    .footer-bottom a {
      color: #b9c8d8;
    }

    .footer-bottom a:hover {
      color: var(--cyan);
    }

    @media (max-width: 1024px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      .hero-grid,
      .scoreboard-layout,
      .process,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 54px;
      }

      .scene-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-main {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .brand-row {
        min-height: 68px;
      }

      .header-tools {
        flex: 0 0 auto;
      }

      .search-box,
      .focus-chip {
        display: none;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .channel-row {
        display: none;
      }

      .site-header.menu-open .channel-row {
        display: block;
      }

      .channel-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 14px 0 18px;
      }

      .channel-nav a {
        text-align: center;
        white-space: normal;
      }

      .section {
        padding: 58px 0;
      }

      .section-head {
        display: block;
      }

      .hero h1 {
        font-size: 34px;
      }

      .hero-subtitle {
        font-size: 16px;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .filter-bar {
        align-items: stretch;
      }

      .filter-spacer {
        display: none;
      }

      .select-control {
        width: 100%;
      }

      .board-head {
        display: none;
      }

      .schedule-row {
        grid-template-columns: 1fr;
        gap: 10px;
        align-items: start;
      }

      .score-text {
        text-align: left;
      }

      .scene-grid,
      .faq-grid,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .scene-card:nth-child(1) {
        grid-column: auto;
      }

      .process-visual {
        min-height: 360px;
      }

      .footer-main {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .brand-mark {
        width: 40px;
        height: 40px;
      }

      .brand-name {
        font-size: 18px;
      }

      .brand-kicker {
        max-width: 210px;
      }

      .hero {
        padding-top: 42px;
      }

      .hero h1 {
        font-size: 29px;
      }

      .hero-actions,
      .btn {
        width: 100%;
      }

      .match-card {
        grid-template-columns: 1fr;
      }

      .score {
        text-align: left;
      }

      .team-line {
        display: grid;
        justify-content: start;
      }

      .cta-panel {
        padding: 22px;
        border-radius: 22px;
      }

      .process-visual .overlay-card {
        left: 14px;
        right: 14px;
        bottom: 14px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition: none !important;
      }
    }

/* roulang page: category2 */
:root {
      --bg: #07111f;
      --bg-2: #0b1728;
      --bg-3: #101c2e;
      --panel: rgba(255, 255, 255, 0.075);
      --panel-strong: rgba(255, 255, 255, 0.11);
      --line: rgba(190, 226, 255, 0.16);
      --line-strong: rgba(34, 211, 238, 0.42);
      --text: #d7e2f0;
      --title: #f8fbff;
      --muted: #8ea3bb;
      --cyan: #22d3ee;
      --blue: #38bdf8;
      --green: #22c55e;
      --yellow: #facc15;
      --orange: #f59e0b;
      --rose: #fb7185;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
      --glow: 0 0 0 1px rgba(34, 211, 238, 0.22), 0 18px 60px rgba(34, 211, 238, 0.15);
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --container: 1220px;
      --ease: 220ms ease-out;
    }

    * {
      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 CJK SC", Arial, sans-serif;
      line-height: 1.75;
      background:
        radial-gradient(circle at 18% 12%, rgba(34, 211, 238, 0.14), transparent 34%),
        radial-gradient(circle at 80% 6%, rgba(34, 197, 94, 0.12), transparent 30%),
        linear-gradient(180deg, #07111f 0%, #0b1728 42%, #07111f 100%);
      min-height: 100vh;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), transparent 70%);
      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);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    :focus-visible {
      outline: 3px solid rgba(34, 211, 238, 0.42);
      outline-offset: 3px;
      border-radius: 12px;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      border-bottom: 1px solid var(--line);
      background: rgba(7, 17, 31, 0.84);
      backdrop-filter: blur(20px);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
    }

    .brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 16px 0 12px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      color: #04121f;
      font-weight: 900;
      font-size: 22px;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 12px 34px rgba(34, 211, 238, 0.28);
      flex: 0 0 auto;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      min-width: 0;
    }

    .brand-name {
      color: var(--title);
      font-size: 20px;
      font-weight: 800;
      line-height: 1.25;
      white-space: nowrap;
    }

    .brand-kicker {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
      white-space: nowrap;
    }

    .header-tools {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .search-box {
      width: 300px;
      height: 42px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.06);
      color: var(--muted);
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .search-box:focus-within {
      border-color: var(--line-strong);
      box-shadow: var(--glow);
      background: rgba(255, 255, 255, 0.09);
    }

    .search-box input {
      width: 100%;
      border: 0;
      outline: 0;
      color: var(--title);
      background: transparent;
    }

    .search-box input::placeholder {
      color: #7890a8;
    }

    .quick-link {
      height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
      border-radius: 999px;
      border: 1px solid rgba(250, 204, 21, 0.35);
      color: var(--yellow);
      background: rgba(250, 204, 21, 0.08);
      font-weight: 700;
      white-space: nowrap;
    }

    .quick-link:hover {
      transform: translateY(-1px);
      border-color: rgba(250, 204, 21, 0.72);
      box-shadow: 0 14px 34px rgba(250, 204, 21, 0.13);
    }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.07);
      color: var(--title);
    }

    .channel-wrap {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .channel-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 11px 0 13px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .channel-nav::-webkit-scrollbar {
      display: none;
    }

    .channel-nav a {
      position: relative;
      flex: 0 0 auto;
      padding: 8px 14px;
      color: #b9c9dc;
      font-size: 14px;
      font-weight: 700;
      border: 1px solid transparent;
      border-radius: 999px;
      background: transparent;
    }

    .channel-nav a:hover,
    .channel-nav a.active {
      color: var(--title);
      border-color: rgba(34, 211, 238, 0.36);
      background: rgba(34, 211, 238, 0.09);
      box-shadow: inset 0 -1px 0 rgba(34, 211, 238, 0.22);
    }

    .channel-nav a.active::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: -13px;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--cyan), var(--green));
      box-shadow: 0 0 18px rgba(34, 211, 238, 0.6);
    }

    .section {
      padding: 86px 0;
    }

    .hero {
      position: relative;
      padding: 78px 0 70px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.64)),
        url("/assets/images/backpic/back-2.webp") center / cover no-repeat;
      opacity: 0.9;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 160px;
      background: linear-gradient(180deg, transparent, var(--bg));
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.56fr) minmax(360px, 0.44fr);
      gap: 38px;
      align-items: center;
    }

    .eyebrow,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 30px;
      padding: 5px 11px;
      border-radius: 999px;
      border: 1px solid rgba(34, 211, 238, 0.32);
      color: #bff4ff;
      background: rgba(34, 211, 238, 0.08);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 16px rgba(34, 197, 94, 0.9);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 740px;
      margin-bottom: 20px;
      color: var(--title);
      font-size: 50px;
      line-height: 1.14;
      letter-spacing: 0;
    }

    h2 {
      margin-bottom: 14px;
      color: var(--title);
      font-size: 34px;
      line-height: 1.22;
      letter-spacing: 0;
    }

    h3 {
      color: var(--title);
      font-size: 21px;
      line-height: 1.35;
    }

    .lead {
      max-width: 710px;
      color: #c9d8e8;
      font-size: 17px;
      margin-bottom: 18px;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 0 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      color: var(--title);
      font-weight: 800;
      white-space: nowrap;
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease);
    }

    .btn-primary {
      color: #03101d;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 18px 48px rgba(34, 211, 238, 0.22);
    }

    .btn-secondary {
      border-color: rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.07);
      color: #dff6ff;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 55px rgba(34, 211, 238, 0.2);
    }

    .btn:active {
      transform: translateY(0);
    }

    .hero-panel,
    .glass-card,
    .standing-card,
    .team-card,
    .faq-item,
    .cta-panel {
      border: 1px solid var(--line);
      background: var(--panel);
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
    }

    .hero-panel {
      border-radius: var(--radius-lg);
      padding: 22px;
    }

    .panel-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .panel-title {
      color: var(--title);
      font-weight: 900;
      font-size: 18px;
    }

    .panel-sub {
      color: var(--muted);
      font-size: 13px;
    }

    .league-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .league-tabs a,
    .filter-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 36px;
      padding: 7px 13px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      background: rgba(255, 255, 255, 0.055);
      color: #c8d8e8;
      font-size: 13px;
      font-weight: 800;
    }

    .league-tabs a:hover,
    .league-tabs a.active,
    .filter-pill.active {
      color: #04121f;
      border-color: transparent;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 12px 30px rgba(34, 211, 238, 0.18);
    }

    .mini-scoreboard {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .mini-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.055);
    }

    .mini-row strong {
      color: var(--title);
      display: block;
      line-height: 1.35;
    }

    .mini-row span {
      color: var(--muted);
      font-size: 13px;
    }

    .rank-chip {
      display: inline-grid;
      place-items: center;
      min-width: 42px;
      height: 32px;
      padding: 0 10px;
      border-radius: 999px;
      color: #04121f;
      background: var(--yellow);
      font-weight: 900;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-head p {
      max-width: 650px;
      margin-bottom: 0;
      color: var(--muted);
    }

    .tabs-bar {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: none;
    }

    .tabs-bar::-webkit-scrollbar {
      display: none;
    }

    .league-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .league-card {
      position: relative;
      min-height: 190px;
      overflow: hidden;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: var(--panel);
      box-shadow: var(--shadow);
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .league-card:hover {
      transform: translateY(-3px);
      border-color: var(--line-strong);
      box-shadow: var(--glow);
    }

    .league-card img {
      width: 100%;
      height: 112px;
      object-fit: cover;
      opacity: 0.82;
    }

    .league-card-body {
      padding: 16px;
    }

    .league-card h3 {
      margin-bottom: 8px;
      font-size: 19px;
    }

    .league-card p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.65;
    }

    .standings-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
      gap: 24px;
      align-items: start;
    }

    .standing-card,
    .team-card,
    .glass-card {
      border-radius: var(--radius-lg);
      padding: 22px;
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease);
    }

    .standing-card:hover,
    .team-card:hover,
    .glass-card:hover,
    .faq-item:hover {
      border-color: rgba(34, 211, 238, 0.3);
      box-shadow: var(--glow);
    }

    .table-scroll {
      overflow-x: auto;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .standings-table {
      width: 100%;
      min-width: 760px;
      border-collapse: collapse;
      background: rgba(4, 14, 26, 0.42);
    }

    .standings-table th,
    .standings-table td {
      padding: 14px 16px;
      text-align: left;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      white-space: nowrap;
    }

    .standings-table th {
      color: #a9bed4;
      font-size: 13px;
      font-weight: 800;
      background: rgba(255, 255, 255, 0.055);
    }

    .standings-table td {
      color: #dbe8f6;
      font-size: 14px;
    }

    .standings-table tr:last-child td {
      border-bottom: 0;
    }

    .club {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--title);
    }

    .club-dot {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: inline-grid;
      place-items: center;
      color: #06111e;
      font-size: 12px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--cyan), var(--green));
    }

    .trend {
      display: inline-flex;
      gap: 4px;
    }

    .trend i {
      width: 18px;
      height: 18px;
      display: inline-grid;
      place-items: center;
      border-radius: 6px;
      color: #06111e;
      font-size: 11px;
      font-style: normal;
      font-weight: 900;
      background: #64748b;
    }

    .trend .win {
      background: var(--green);
    }

    .trend .draw {
      background: var(--yellow);
    }

    .trend .lose {
      background: var(--rose);
    }

    .team-list {
      display: grid;
      gap: 14px;
    }

    .team-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border-radius: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.052);
    }

    .team-item b {
      color: var(--title);
      display: block;
    }

    .team-item span {
      color: var(--muted);
      font-size: 13px;
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      min-height: 26px;
      padding: 4px 9px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .status-hot {
      color: #04121f;
      background: var(--yellow);
    }

    .status-up {
      color: #04121f;
      background: var(--green);
    }

    .status-watch {
      color: #c9f7ff;
      background: rgba(34, 211, 238, 0.14);
      border: 1px solid rgba(34, 211, 238, 0.28);
    }

    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .metric-card {
      min-height: 190px;
      position: relative;
      overflow: hidden;
    }

    .metric-number {
      color: var(--title);
      font-size: 36px;
      font-weight: 900;
      line-height: 1;
      margin: 18px 0 10px;
    }

    .metric-card p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .bar {
      height: 9px;
      margin-top: 18px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
    }

    .bar span {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--green));
    }

    .insight-grid {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 24px;
      align-items: stretch;
    }

    .image-panel {
      min-height: 420px;
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .image-panel img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      filter: saturate(1.05) contrast(1.05);
    }

    .image-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7, 17, 31, 0.08), rgba(7, 17, 31, 0.76));
    }

    .image-caption {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      z-index: 2;
    }

    .image-caption h3 {
      margin-bottom: 8px;
    }

    .image-caption p {
      margin-bottom: 0;
      color: #cfdeec;
    }

    .insight-list {
      display: grid;
      gap: 16px;
    }

    .insight-item {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      padding: 18px;
      border-radius: 18px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      background: rgba(255, 255, 255, 0.055);
    }

    .insight-num {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      color: #04121f;
      font-weight: 900;
      background: linear-gradient(135deg, var(--cyan), var(--green));
    }

    .insight-item h3 {
      margin-bottom: 6px;
      font-size: 19px;
    }

    .insight-item p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .content-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .content-card {
      overflow: hidden;
      padding: 0;
    }

    .content-card img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .content-card-body {
      padding: 18px;
    }

    .content-card h3 {
      margin-bottom: 8px;
    }

    .content-card p {
      margin-bottom: 16px;
      color: var(--muted);
      font-size: 15px;
    }

    .card-link {
      color: #c9f7ff;
      font-weight: 900;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .card-link:hover {
      color: var(--yellow);
    }

    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .faq-item {
      border-radius: var(--radius-lg);
      padding: 20px;
    }

    .faq-item h3 {
      margin-bottom: 10px;
      font-size: 19px;
    }

    .faq-item p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1fr 0.92fr;
      gap: 28px;
      align-items: start;
      border-radius: 28px;
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.12), rgba(34, 197, 94, 0.08)),
        rgba(255, 255, 255, 0.07);
    }

    .contact-form {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .form-field {
      display: grid;
      gap: 7px;
    }

    .form-field.full {
      grid-column: 1 / -1;
    }

    .form-field label {
      color: #c8d9e9;
      font-size: 13px;
      font-weight: 800;
    }

    .form-field input,
    .form-field textarea {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 14px;
      padding: 12px 13px;
      color: var(--title);
      background: rgba(4, 14, 26, 0.58);
      outline: 0;
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .form-field textarea {
      min-height: 104px;
      resize: vertical;
    }

    .form-field input:focus,
    .form-field textarea:focus {
      border-color: var(--line-strong);
      box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
      background: rgba(4, 14, 26, 0.74);
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
      color: #71879f;
    }

    .submit-btn {
      grid-column: 1 / -1;
      border: 0;
    }

    .site-footer {
      border-top: 1px solid var(--line);
      background: rgba(4, 12, 24, 0.96);
      padding: 54px 0 28px;
    }

    .footer-main {
      display: grid;
      grid-template-columns: minmax(260px, 1.35fr) repeat(3, 1fr);
      gap: 28px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    }

    .footer-brand p {
      max-width: 380px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    .footer-col h3 {
      margin-bottom: 14px;
      font-size: 16px;
    }

    .footer-links {
      display: grid;
      gap: 8px;
    }

    .footer-links a {
      color: var(--muted);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--cyan);
      transform: translateX(2px);
    }

    .footer-bottom {
      display: grid;
      gap: 8px;
      padding-top: 24px;
      color: #8da1b8;
      text-align: center;
      font-size: 13px;
    }

    .footer-bottom a {
      color: #b8c8d9;
    }

    .footer-bottom a:hover {
      color: var(--cyan);
    }

    @media (max-width: 1024px) {
      .search-box {
        width: 240px;
      }

      .hero-grid,
      .standings-layout,
      .insight-grid,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .league-grid,
      .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .content-grid,
      .footer-main {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-brand {
        grid-column: 1 / -1;
      }

      h1 {
        font-size: 40px;
      }
    }

    @media (max-width: 768px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .brand-row {
        align-items: flex-start;
      }

      .header-tools {
        display: none;
        position: absolute;
        left: 14px;
        right: 14px;
        top: 76px;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 18px;
        background: rgba(7, 17, 31, 0.97);
        box-shadow: var(--shadow);
        flex-direction: column;
        align-items: stretch;
      }

      .site-header.open .header-tools {
        display: flex;
      }

      .search-box {
        width: 100%;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .brand-kicker {
        white-space: normal;
      }

      .channel-nav {
        padding-top: 10px;
      }

      .channel-nav a {
        font-size: 13px;
      }

      .section {
        padding: 58px 0;
      }

      .hero {
        padding: 52px 0 50px;
      }

      h1 {
        font-size: 32px;
      }

      h2 {
        font-size: 28px;
      }

      .lead {
        font-size: 16px;
      }

      .section-head {
        display: grid;
        align-items: start;
      }

      .faq-grid,
      .content-grid {
        grid-template-columns: 1fr;
      }

      .cta-panel {
        padding: 24px;
      }

      .footer-main {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 13px;
      }

      .brand-name {
        font-size: 18px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .league-grid,
      .metrics-grid {
        grid-template-columns: 1fr;
      }

      .contact-form {
        grid-template-columns: 1fr;
      }

      .mini-row,
      .team-item {
        grid-template-columns: 1fr;
      }

      .hero-panel,
      .standing-card,
      .team-card,
      .glass-card,
      .faq-item {
        padding: 18px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
      }
    }

/* roulang page: category3 */
:root{
      --bg:#07111f;
      --bg-2:#0b1728;
      --bg-3:#101c2e;
      --card:rgba(255,255,255,.075);
      --card-strong:rgba(255,255,255,.11);
      --text:#d7e2f0;
      --title:#f8fbff;
      --muted:#8ea3bb;
      --line:rgba(210,234,255,.16);
      --line-strong:rgba(34,211,238,.35);
      --cyan:#22d3ee;
      --blue:#38bdf8;
      --green:#22c55e;
      --yellow:#facc15;
      --orange:#f59e0b;
      --pink:#fb7185;
      --shadow:0 22px 70px rgba(0,0,0,.34);
      --glow:0 0 0 1px rgba(34,211,238,.18),0 18px 45px rgba(34,211,238,.12);
      --radius:22px;
      --radius-sm:16px;
      --max:1220px;
      --ease:180ms ease-out;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 50% -10%,rgba(34,211,238,.13),transparent 32%),
        radial-gradient(circle at 15% 16%,rgba(34,197,94,.1),transparent 24%),
        linear-gradient(180deg,var(--bg),var(--bg-2) 45%,#08101d);
      line-height:1.75;
      min-height:100vh;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      background:
        linear-gradient(rgba(255,255,255,.025) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.025) 1px,transparent 1px);
      background-size:48px 48px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.5),transparent 70%);
      z-index:-1;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit;color:inherit}
    button{cursor:pointer}
    .container{width:min(var(--max),calc(100% - 40px));margin:0 auto}
    .section{padding:86px 0}
    .section-tight{padding:58px 0}
    .eyebrow{
      display:inline-flex;align-items:center;gap:8px;
      padding:7px 12px;border:1px solid var(--line);
      border-radius:999px;background:rgba(255,255,255,.06);
      color:#c9f7ff;font-size:13px;font-weight:700;
      box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
    }
    .dot{width:8px;height:8px;border-radius:50%;background:var(--green);box-shadow:0 0 14px rgba(34,197,94,.7)}
    h1,h2,h3,p{margin-top:0}
    h1{font-size:52px;line-height:1.14;color:var(--title);letter-spacing:.2px;margin-bottom:18px}
    h2{font-size:34px;line-height:1.22;color:var(--title);margin-bottom:14px}
    h3{font-size:21px;line-height:1.35;color:var(--title);margin-bottom:10px}
    p{margin-bottom:0}
    .lead{font-size:17px;color:#c6d6e8;max-width:760px}
    .muted{color:var(--muted)}
    .site-header{
      position:sticky;top:0;z-index:50;
      background:rgba(7,17,31,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(210,234,255,.12);
      box-shadow:0 12px 38px rgba(0,0,0,.22);
    }
    .brand-row{display:flex;align-items:center;justify-content:space-between;gap:22px;padding:16px 0 12px}
    .brand{display:inline-flex;align-items:center;gap:12px;min-width:0}
    .brand-mark{
      width:42px;height:42px;border-radius:14px;
      display:grid;place-items:center;
      font-size:22px;font-weight:900;color:#05202a;
      background:linear-gradient(135deg,var(--cyan),var(--green));
      box-shadow:0 0 28px rgba(34,211,238,.24);
      flex:0 0 auto;
    }
    .brand-text{display:flex;flex-direction:column;line-height:1.25;min-width:0}
    .brand-name{font-size:19px;font-weight:900;color:var(--title);white-space:nowrap}
    .brand-kicker{font-size:12px;color:var(--muted);white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
    .header-tools{display:flex;align-items:center;gap:12px}
    .search-box{
      width:270px;height:42px;border:1px solid var(--line);border-radius:999px;
      display:flex;align-items:center;gap:8px;padding:0 14px;
      background:rgba(255,255,255,.055);color:var(--muted);
    }
    .search-box input{width:100%;border:0;outline:0;background:transparent;color:var(--text)}
    .search-box input::placeholder{color:#73889f}
    .focus-pill{
      border:1px solid rgba(250,204,21,.32);
      color:#fff3b0;background:rgba(250,204,21,.08);
      border-radius:999px;padding:9px 14px;font-size:13px;font-weight:700;
      white-space:nowrap;
    }
    .menu-toggle{
      display:none;width:44px;height:44px;border-radius:14px;
      border:1px solid var(--line);background:rgba(255,255,255,.06);
    }
    .menu-toggle:hover,.menu-toggle:focus-visible{border-color:var(--line-strong);box-shadow:var(--glow);outline:0}
    .menu-lines,.menu-lines::before,.menu-lines::after{
      display:block;width:18px;height:2px;background:#d9f7ff;border-radius:2px;margin:auto;content:"";
    }
    .menu-lines::before{transform:translateY(-6px)}
    .menu-lines::after{transform:translateY(4px)}
    .channel-wrap{border-top:1px solid rgba(210,234,255,.09)}
    .channel-nav{display:flex;align-items:center;gap:8px;overflow-x:auto;padding:11px 0 13px;scrollbar-width:none}
    .channel-nav::-webkit-scrollbar{display:none}
    .channel-nav a{
      position:relative;white-space:nowrap;
      padding:9px 14px;border-radius:999px;
      color:#b7c7d9;font-size:14px;font-weight:750;
      transition:color var(--ease),background var(--ease),box-shadow var(--ease),transform var(--ease);
    }
    .channel-nav a:hover,.channel-nav a:focus-visible{
      color:#e8fbff;background:rgba(34,211,238,.08);outline:0;
    }
    .channel-nav a.active{
      color:#062432;background:linear-gradient(135deg,var(--cyan),#77f5ff);
      box-shadow:0 10px 30px rgba(34,211,238,.22);
    }
    .hero{
      position:relative;overflow:hidden;
      padding:78px 0 52px;
      border-bottom:1px solid rgba(210,234,255,.1);
    }
    .hero::before{
      content:"";position:absolute;inset:0;
      background:
        linear-gradient(90deg,rgba(7,17,31,.88),rgba(7,17,31,.55),rgba(7,17,31,.9)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      opacity:.9;z-index:-2;
    }
    .hero::after{
      content:"";position:absolute;left:0;right:0;bottom:0;height:160px;
      background:linear-gradient(to top,var(--bg-2),transparent);z-index:-1;
    }
    .hero-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:38px;align-items:center}
    .hero-copy{padding:26px 0}
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;gap:9px;
      min-height:48px;padding:0 20px;border-radius:999px;
      border:1px solid transparent;font-weight:850;
      transition:transform var(--ease),box-shadow var(--ease),border-color var(--ease),background var(--ease);
    }
    .btn-primary{
      color:#041c27;background:linear-gradient(135deg,var(--cyan),var(--green));
      box-shadow:0 16px 36px rgba(34,211,238,.24);
    }
    .btn-secondary{background:rgba(255,255,255,.07);border-color:var(--line);color:#eaf8ff}
    .btn:hover,.btn:focus-visible{transform:translateY(-2px);outline:0}
    .btn-primary:hover,.btn-primary:focus-visible{box-shadow:0 20px 48px rgba(34,211,238,.32)}
    .btn-secondary:hover,.btn-secondary:focus-visible{border-color:var(--line-strong);box-shadow:var(--glow)}
    .btn:active{transform:translateY(0)}
    .feature-panel{
      border:1px solid var(--line);border-radius:28px;background:rgba(6,18,32,.58);
      backdrop-filter:blur(18px);box-shadow:var(--shadow);overflow:hidden;
    }
    .panel-image{position:relative;aspect-ratio:16/10;overflow:hidden}
    .panel-image img{width:100%;height:100%;object-fit:cover;filter:saturate(1.05) contrast(1.08)}
    .panel-image::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(6,18,32,.9),rgba(6,18,32,.05))}
    .score-ribbon{
      position:absolute;left:18px;right:18px;bottom:18px;z-index:2;
      display:grid;grid-template-columns:1fr auto 1fr;gap:12px;align-items:center;
      padding:14px;border-radius:18px;background:rgba(5,16,28,.74);
      border:1px solid rgba(255,255,255,.16);backdrop-filter:blur(12px);
    }
    .team{text-align:center;font-weight:900;color:var(--title)}
    .score-box{font-size:24px;font-weight:950;color:#061b24;background:linear-gradient(135deg,var(--yellow),#fff5a8);border-radius:14px;padding:5px 12px}
    .panel-body{padding:22px}
    .panel-meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:12px}
    .badge{
      display:inline-flex;align-items:center;gap:6px;
      padding:5px 10px;border-radius:999px;font-size:12px;font-weight:800;
      border:1px solid var(--line);background:rgba(255,255,255,.06);color:#d8efff;
    }
    .badge.hot{border-color:rgba(250,204,21,.35);background:rgba(250,204,21,.11);color:#fff2a7}
    .badge.green{border-color:rgba(34,197,94,.35);background:rgba(34,197,94,.11);color:#b7ffd2}
    .badge.blue{border-color:rgba(56,189,248,.35);background:rgba(56,189,248,.1);color:#c7f2ff}
    .section-head{display:flex;align-items:end;justify-content:space-between;gap:24px;margin-bottom:30px}
    .section-head .lead{max-width:620px}
    .topic-grid{display:grid;grid-template-columns:1.2fr .8fr .8fr;gap:18px}
    .topic-card{
      position:relative;overflow:hidden;min-height:286px;
      border:1px solid var(--line);border-radius:var(--radius);
      background:var(--card);box-shadow:0 16px 45px rgba(0,0,0,.18);
      transition:transform var(--ease),border-color var(--ease),box-shadow var(--ease);
    }
    .topic-card:hover{transform:translateY(-3px);border-color:var(--line-strong);box-shadow:var(--glow)}
    .topic-card img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;opacity:.72}
    .topic-card::after{content:"";position:absolute;inset:0;background:linear-gradient(to top,rgba(6,16,29,.95),rgba(6,16,29,.35))}
    .topic-content{position:absolute;inset:auto 0 0 0;padding:22px;z-index:2}
    .topic-card.large{grid-row:span 2;min-height:590px}
    .topic-card.large h3{font-size:28px}
    .meta-line{display:flex;gap:10px;flex-wrap:wrap;color:#a9bed4;font-size:13px;margin-top:10px}
    .timeline-wrap{
      border:1px solid var(--line);border-radius:28px;background:rgba(255,255,255,.055);
      backdrop-filter:blur(16px);padding:28px;box-shadow:var(--shadow);
    }
    .timeline{display:grid;gap:16px;position:relative}
    .time-item{
      display:grid;grid-template-columns:110px 1fr auto;gap:18px;align-items:center;
      padding:16px;border:1px solid rgba(210,234,255,.12);border-radius:18px;
      background:rgba(6,18,32,.55);
    }
    .time-date{font-weight:900;color:#dffbff}
    .match-title{font-weight:900;color:var(--title)}
    .match-desc{font-size:14px;color:var(--muted)}
    .status{
      padding:6px 10px;border-radius:999px;font-size:12px;font-weight:900;white-space:nowrap;
      background:rgba(56,189,248,.12);color:#c6f4ff;border:1px solid rgba(56,189,248,.28);
    }
    .status.focus{background:rgba(250,204,21,.12);border-color:rgba(250,204,21,.32);color:#fff2a0}
    .status.done{background:rgba(34,197,94,.11);border-color:rgba(34,197,94,.28);color:#bdffd6}
    .insight-layout{display:grid;grid-template-columns:.92fr 1.08fr;gap:22px;align-items:stretch}
    .image-card{
      overflow:hidden;border-radius:28px;border:1px solid var(--line);
      background:var(--card);box-shadow:var(--shadow);min-height:420px;position:relative;
    }
    .image-card img{width:100%;height:100%;object-fit:cover}
    .image-caption{
      position:absolute;left:20px;right:20px;bottom:20px;
      padding:18px;border-radius:18px;background:rgba(5,16,28,.72);
      border:1px solid rgba(255,255,255,.16);backdrop-filter:blur(14px);
    }
    .look-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    .glass-card{
      border:1px solid var(--line);border-radius:var(--radius);
      background:var(--card);backdrop-filter:blur(16px);
      padding:22px;box-shadow:0 16px 46px rgba(0,0,0,.16);
      transition:transform var(--ease),border-color var(--ease),box-shadow var(--ease);
    }
    .glass-card:hover{transform:translateY(-2px);border-color:var(--line-strong);box-shadow:var(--glow)}
    .stat-row{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:16px;padding-top:16px;border-top:1px solid rgba(210,234,255,.12)}
    .stat-num{font-size:28px;font-weight:950;color:var(--cyan)}
    .team-list{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
    .team-card{
      border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.055);
      padding:18px;min-height:160px;position:relative;overflow:hidden;
    }
    .team-card::before{content:"";position:absolute;left:0;top:0;width:4px;height:100%;background:linear-gradient(var(--cyan),var(--green))}
    .team-card strong{display:block;color:var(--title);font-size:18px;margin-bottom:8px}
    .progress{height:8px;border-radius:999px;background:rgba(255,255,255,.1);overflow:hidden;margin-top:14px}
    .progress span{display:block;height:100%;border-radius:999px;background:linear-gradient(90deg,var(--green),var(--cyan))}
    .faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}
    .faq-item{
      border:1px solid var(--line);border-radius:20px;background:rgba(255,255,255,.055);
      overflow:hidden;
    }
    .faq-question{
      width:100%;border:0;background:transparent;color:var(--title);
      display:flex;justify-content:space-between;gap:16px;text-align:left;
      padding:18px 20px;font-weight:900;
    }
    .faq-question span:last-child{color:var(--cyan)}
    .faq-answer{display:none;padding:0 20px 20px;color:#bcd0e4;font-size:15px}
    .faq-item.open{border-color:var(--line-strong);box-shadow:var(--glow)}
    .faq-item.open .faq-answer{display:block}
    .cta-band{
      position:relative;overflow:hidden;border:1px solid var(--line);border-radius:30px;
      background:
        linear-gradient(120deg,rgba(34,211,238,.14),rgba(34,197,94,.08),rgba(250,204,21,.07)),
        rgba(255,255,255,.06);
      padding:34px;box-shadow:var(--shadow);
    }
    .cta-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:28px;align-items:start}
    .contact-form{display:grid;grid-template-columns:1fr 1fr;gap:14px}
    .field{display:flex;flex-direction:column;gap:7px}
    .field.full{grid-column:1/-1}
    .field label{font-size:13px;font-weight:800;color:#c9d9e9}
    .field input,.field textarea,.field select{
      width:100%;border:1px solid var(--line);border-radius:16px;
      background:rgba(6,18,32,.62);padding:13px 14px;outline:0;
      color:var(--text);transition:border-color var(--ease),box-shadow var(--ease);
    }
    .field textarea{min-height:108px;resize:vertical}
    .field input::placeholder,.field textarea::placeholder{color:#70859c}
    .field input:focus,.field textarea:focus,.field select:focus{border-color:var(--cyan);box-shadow:0 0 0 4px rgba(34,211,238,.12)}
    .site-footer{
      border-top:1px solid rgba(210,234,255,.12);
      background:linear-gradient(180deg,rgba(6,14,26,.9),#050b14);
      padding:58px 0 28px;
    }
    .footer-main{display:grid;grid-template-columns:1.5fr .85fr .85fr .85fr;gap:32px;margin-bottom:34px}
    .footer-brand p{color:var(--muted);margin-top:16px;max-width:420px}
    .footer-col h3{font-size:16px;margin-bottom:12px}
    .footer-links{display:grid;gap:9px}
    .footer-links a,.footer-bottom a{color:#9fb2c8;transition:color var(--ease)}
    .footer-links a:hover,.footer-bottom a:hover,.footer-links a:focus-visible,.footer-bottom a:focus-visible{color:var(--cyan);outline:0}
    .footer-bottom{
      border-top:1px solid rgba(210,234,255,.1);
      padding-top:22px;text-align:center;color:#8fa4ba;font-size:13px;
      display:grid;gap:8px;
    }
    @media (max-width:1024px){
      h1{font-size:40px}.hero-grid,.insight-layout,.cta-grid{grid-template-columns:1fr}
      .topic-grid{grid-template-columns:1fr 1fr}.topic-card.large{grid-column:1/-1;min-height:420px;grid-row:auto}
      .team-list{grid-template-columns:1fr 1fr}.footer-main{grid-template-columns:1fr 1fr}
      .search-box{width:220px}
    }
    @media (max-width:768px){
      .container{width:min(100% - 28px,var(--max))}
      .section{padding:58px 0}.hero{padding:56px 0 34px}
      h1{font-size:32px}h2{font-size:28px}
      .brand-row{align-items:flex-start}.header-tools{display:none}
      .menu-toggle{display:grid;margin-left:auto}
      .channel-wrap{display:none}.site-header.open .channel-wrap{display:block}
      .site-header.open .channel-nav{display:grid;grid-template-columns:1fr 1fr;gap:9px;padding-bottom:16px}
      .channel-nav a{background:rgba(255,255,255,.055);border:1px solid rgba(210,234,255,.11)}
      .hero-actions{flex-direction:column}.btn{width:100%}
      .topic-grid,.faq-grid,.look-grid{grid-template-columns:1fr}
      .time-item{grid-template-columns:1fr;gap:8px}
      .status{width:max-content}
      .contact-form{grid-template-columns:1fr}
      .footer-main{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .brand-kicker{max-width:210px}
      .score-ribbon{grid-template-columns:1fr;gap:8px;text-align:center}
      .topic-card,.topic-card.large{min-height:330px}
      .team-list{grid-template-columns:1fr}
      .cta-band{padding:22px}
      .section-head{display:block}
    }
    @media (prefers-reduced-motion:reduce){
      *,*::before,*::after{scroll-behavior:auto!important;transition:none!important}
    }

/* roulang page: category4 */
:root {
      --bg: #07111f;
      --bg-2: #0b1728;
      --bg-3: #101c2e;
      --panel: rgba(255, 255, 255, 0.075);
      --panel-strong: rgba(255, 255, 255, 0.12);
      --text: #d7e2f0;
      --heading: #f8fbff;
      --muted: #8ea3bb;
      --line: rgba(214, 232, 255, 0.16);
      --line-strong: rgba(34, 211, 238, 0.45);
      --cyan: #22d3ee;
      --sky: #38bdf8;
      --green: #22c55e;
      --yellow: #facc15;
      --orange: #f59e0b;
      --rose: #fb7185;
      --radius-xl: 22px;
      --radius-lg: 18px;
      --radius-md: 14px;
      --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
      --shadow-cyan: 0 18px 54px rgba(34, 211, 238, 0.18);
      --container: 1200px;
      --ease: 220ms ease-out;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      background:
        radial-gradient(circle at 18% 8%, rgba(34, 211, 238, 0.16), transparent 30%),
        radial-gradient(circle at 78% 14%, rgba(34, 197, 94, 0.12), transparent 32%),
        linear-gradient(180deg, #07111f 0%, #0b1728 42%, #07111f 100%);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
      font-size: 16px;
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
    }

    :focus-visible {
      outline: 3px solid rgba(34, 211, 238, 0.65);
      outline-offset: 3px;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(7, 17, 31, 0.82);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(18px);
      box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
    }

    .brand-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 18px 0 14px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
    }

    .brand-mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 14px;
      color: #05111e;
      font-weight: 900;
      font-size: 22px;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 14px 32px rgba(34, 211, 238, 0.28);
    }

    .brand-text {
      display: grid;
      gap: 2px;
      min-width: 0;
    }

    .brand-name {
      color: var(--heading);
      font-size: 20px;
      font-weight: 800;
      line-height: 1.2;
      white-space: nowrap;
    }

    .brand-kicker {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
    }

    .top-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 380px;
      justify-content: flex-end;
    }

    .search-box {
      position: relative;
      flex: 1;
      max-width: 300px;
    }

    .search-box input {
      width: 100%;
      height: 42px;
      padding: 0 42px 0 16px;
      border-radius: 999px;
      border: 1px solid var(--line);
      color: var(--heading);
      background: rgba(255, 255, 255, 0.07);
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .search-box input::placeholder {
      color: #7890aa;
    }

    .search-box input:focus {
      border-color: var(--cyan);
      box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
      background: rgba(255, 255, 255, 0.1);
      outline: none;
    }

    .search-box span {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--cyan);
      font-size: 14px;
    }

    .focus-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      height: 42px;
      padding: 0 16px;
      border: 1px solid rgba(250, 204, 21, 0.38);
      border-radius: 999px;
      color: var(--yellow);
      background: rgba(250, 204, 21, 0.09);
      font-size: 14px;
      white-space: nowrap;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      color: var(--heading);
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid var(--line);
    }

    .channel-wrap {
      border-top: 1px solid rgba(214, 232, 255, 0.08);
    }

    .channel-nav {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 0 14px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .channel-nav::-webkit-scrollbar {
      display: none;
    }

    .channel-nav a {
      position: relative;
      flex: 0 0 auto;
      padding: 9px 14px;
      border-radius: 999px;
      color: #b6c7da;
      border: 1px solid transparent;
      font-size: 14px;
      line-height: 1.2;
      transition: color var(--ease), border-color var(--ease), background var(--ease), box-shadow var(--ease);
    }

    .channel-nav a:hover {
      color: var(--cyan);
      border-color: rgba(34, 211, 238, 0.28);
      background: rgba(34, 211, 238, 0.08);
    }

    .channel-nav a.active {
      color: #04111d;
      font-weight: 800;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 12px 30px rgba(34, 211, 238, 0.22);
    }

    .hero {
      position: relative;
      padding: 76px 0 58px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(7, 17, 31, 0.92), rgba(7, 17, 31, 0.66)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      opacity: 0.72;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 160px;
      background: linear-gradient(180deg, transparent, var(--bg));
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
      gap: 38px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--cyan);
      background: rgba(34, 211, 238, 0.1);
      border: 1px solid rgba(34, 211, 238, 0.26);
      font-size: 14px;
      font-weight: 700;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      box-shadow: 0 0 14px rgba(34, 197, 94, 0.9);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      max-width: 800px;
      margin: 18px 0 18px;
      color: var(--heading);
      font-size: 52px;
      line-height: 1.14;
      letter-spacing: 0;
    }

    .hero-lead {
      max-width: 720px;
      color: #c9d8e8;
      font-size: 17px;
      line-height: 1.85;
      margin-bottom: 26px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 18px;
      border-radius: 999px;
      font-weight: 800;
      line-height: 1.2;
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease), background var(--ease), color var(--ease);
    }

    .btn-primary {
      color: #03111c;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 18px 44px rgba(34, 211, 238, 0.24);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 58px rgba(34, 211, 238, 0.34);
    }

    .btn-secondary {
      color: var(--heading);
      border: 1px solid rgba(214, 232, 255, 0.2);
      background: rgba(255, 255, 255, 0.07);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(34, 211, 238, 0.52);
      background: rgba(34, 211, 238, 0.1);
      box-shadow: var(--shadow-cyan);
    }

    .btn:active {
      transform: translateY(0);
    }

    .quick-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 11px;
      border-radius: 999px;
      color: #bcd0e4;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid var(--line);
      font-size: 13px;
    }

    .dashboard-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.055));
      box-shadow: var(--shadow);
      backdrop-filter: blur(20px);
      overflow: hidden;
    }

    .dashboard-top {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 16px;
      padding: 22px;
      border-bottom: 1px solid var(--line);
    }

    .dashboard-top h2 {
      color: var(--heading);
      font-size: 22px;
      line-height: 1.25;
      margin-bottom: 6px;
    }

    .dashboard-top p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 0;
    }

    .score-chip {
      display: grid;
      place-items: center;
      min-width: 72px;
      height: 48px;
      border-radius: 14px;
      color: #03111c;
      font-size: 20px;
      font-weight: 900;
      background: linear-gradient(135deg, var(--yellow), var(--orange));
      box-shadow: 0 14px 34px rgba(250, 204, 21, 0.22);
    }

    .metric-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      padding: 18px;
    }

    .metric {
      padding: 16px;
      border-radius: 16px;
      background: rgba(7, 17, 31, 0.58);
      border: 1px solid rgba(214, 232, 255, 0.12);
    }

    .metric span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 8px;
    }

    .metric strong {
      color: var(--heading);
      font-size: 24px;
      line-height: 1.1;
    }

    .metric em {
      display: block;
      margin-top: 8px;
      color: var(--green);
      font-style: normal;
      font-size: 13px;
    }

    .trend-list {
      padding: 0 18px 20px;
      display: grid;
      gap: 12px;
    }

    .trend-item {
      display: grid;
      grid-template-columns: 82px minmax(0, 1fr) 52px;
      gap: 12px;
      align-items: center;
      padding: 12px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.055);
      border: 1px solid rgba(214, 232, 255, 0.1);
    }

    .trend-item b {
      color: var(--heading);
      font-size: 14px;
    }

    .bar {
      height: 9px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.1);
      overflow: hidden;
    }

    .bar i {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--green));
    }

    .trend-item span {
      color: var(--cyan);
      font-size: 13px;
      font-weight: 800;
      text-align: right;
    }

    main {
      position: relative;
      z-index: 1;
    }

    .section {
      padding: 86px 0;
    }

    .section.alt {
      background: linear-gradient(180deg, rgba(16, 28, 46, 0.42), rgba(7, 17, 31, 0));
      border-top: 1px solid rgba(214, 232, 255, 0.06);
      border-bottom: 1px solid rgba(214, 232, 255, 0.06);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 30px;
    }

    .section-title {
      max-width: 760px;
    }

    .section-title h2 {
      color: var(--heading);
      font-size: 34px;
      line-height: 1.22;
      margin-bottom: 10px;
    }

    .section-title p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .section-note {
      color: var(--yellow);
      font-weight: 800;
      white-space: nowrap;
    }

    .kpi-grid {
      display: grid;
      grid-template-columns: 1.2fr repeat(3, 1fr);
      gap: 18px;
    }

    .glass-card {
      position: relative;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      background: var(--panel);
      box-shadow: 0 16px 46px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(16px);
      transition: transform var(--ease), border-color var(--ease), box-shadow var(--ease), background var(--ease);
      overflow: hidden;
    }

    .glass-card:hover {
      transform: translateY(-3px);
      border-color: rgba(34, 211, 238, 0.38);
      background: rgba(255, 255, 255, 0.095);
      box-shadow: 0 22px 56px rgba(34, 211, 238, 0.12);
    }

    .kpi-card {
      padding: 22px;
      min-height: 190px;
    }

    .kpi-card.featured {
      min-height: 260px;
      background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(34, 197, 94, 0.08)),
        var(--panel);
    }

    .kpi-label {
      display: inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      color: var(--cyan);
      background: rgba(34, 211, 238, 0.1);
      border: 1px solid rgba(34, 211, 238, 0.22);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .kpi-card strong {
      display: block;
      color: var(--heading);
      font-size: 32px;
      line-height: 1;
      margin-bottom: 12px;
    }

    .kpi-card h3 {
      color: var(--heading);
      font-size: 21px;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .kpi-card p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .match-panel {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .match-visual {
      min-height: 420px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(180deg, rgba(7,17,31,0.16), rgba(7,17,31,0.82)),
        url("/assets/images/coverpic/cover-7.webp") center/cover no-repeat;
      border: 1px solid var(--line);
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      padding: 26px;
      box-shadow: var(--shadow);
    }

    .visual-caption {
      max-width: 420px;
      padding: 18px;
      border-radius: 18px;
      border: 1px solid rgba(214, 232, 255, 0.16);
      background: rgba(7, 17, 31, 0.62);
      backdrop-filter: blur(16px);
    }

    .visual-caption h3 {
      color: var(--heading);
      font-size: 24px;
      line-height: 1.3;
      margin-bottom: 8px;
    }

    .visual-caption p {
      color: #c7d7e7;
      margin-bottom: 0;
    }

    .match-list {
      display: grid;
      gap: 14px;
    }

    .match-item {
      padding: 18px;
      border-radius: 18px;
      background: var(--panel);
      border: 1px solid var(--line);
      transition: border-color var(--ease), background var(--ease), transform var(--ease);
    }

    .match-item:hover {
      transform: translateY(-2px);
      border-color: rgba(34, 211, 238, 0.34);
      background: rgba(255, 255, 255, 0.095);
    }

    .match-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      border: 1px solid var(--line);
      color: #bad0e5;
      background: rgba(255, 255, 255, 0.06);
      white-space: nowrap;
    }

    .badge.hot {
      color: #fff1a3;
      background: rgba(250, 204, 21, 0.12);
      border-color: rgba(250, 204, 21, 0.36);
    }

    .badge.live {
      color: #ffd4db;
      background: rgba(251, 113, 133, 0.12);
      border-color: rgba(251, 113, 133, 0.36);
    }

    .badge.done {
      color: #c9f7d8;
      background: rgba(34, 197, 94, 0.12);
      border-color: rgba(34, 197, 94, 0.32);
    }

    .match-time {
      color: var(--muted);
      font-size: 13px;
    }

    .teams {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: var(--heading);
      font-weight: 850;
      line-height: 1.35;
      margin-bottom: 12px;
    }

    .vs {
      color: var(--cyan);
      font-size: 13px;
      font-weight: 900;
    }

    .match-item p {
      color: var(--muted);
      margin-bottom: 0;
      font-size: 14px;
    }

    .state-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .team-card {
      padding: 20px;
    }

    .team-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 18px;
    }

    .team-head h3 {
      color: var(--heading);
      margin-bottom: 3px;
      font-size: 21px;
    }

    .team-head span {
      color: var(--muted);
      font-size: 13px;
    }

    .form-dots {
      display: flex;
      gap: 5px;
      margin-top: 3px;
    }

    .form-dots i {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
    }

    .form-dots i.win {
      background: var(--green);
    }

    .form-dots i.draw {
      background: var(--yellow);
    }

    .form-dots i.loss {
      background: var(--rose);
    }

    .state-row {
      display: grid;
      grid-template-columns: 88px minmax(0, 1fr) 42px;
      gap: 10px;
      align-items: center;
      margin-top: 12px;
      color: var(--muted);
      font-size: 13px;
    }

    .state-row strong {
      color: var(--heading);
      font-size: 13px;
      text-align: right;
    }

    .column-grid {
      display: grid;
      grid-template-columns: 0.85fr 1.15fr;
      gap: 24px;
      align-items: start;
    }

    .image-card {
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid var(--line);
      background: var(--panel);
      box-shadow: var(--shadow);
    }

    .image-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .image-card .image-body {
      padding: 22px;
    }

    .image-card h3 {
      color: var(--heading);
      font-size: 24px;
      margin-bottom: 8px;
    }

    .image-card p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .article-stack {
      display: grid;
      gap: 14px;
    }

    .article-row {
      display: grid;
      grid-template-columns: 112px minmax(0, 1fr);
      gap: 16px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.065);
      transition: transform var(--ease), border-color var(--ease), background var(--ease);
    }

    .article-row:hover {
      transform: translateY(-2px);
      border-color: rgba(34, 211, 238, 0.34);
      background: rgba(255, 255, 255, 0.095);
    }

    .article-row img {
      width: 112px;
      height: 86px;
      border-radius: 14px;
      object-fit: cover;
    }

    .article-row h3 {
      color: var(--heading);
      font-size: 18px;
      line-height: 1.4;
      margin: 5px 0 6px;
    }

    .article-row p {
      color: var(--muted);
      font-size: 14px;
      margin-bottom: 0;
    }

    .process {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      counter-reset: step;
    }

    .process-card {
      counter-increment: step;
      padding: 22px;
      min-height: 220px;
    }

    .process-card::before {
      content: "0" counter(step);
      display: inline-grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border-radius: 14px;
      color: #03111c;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      font-weight: 900;
      margin-bottom: 18px;
    }

    .process-card h3 {
      color: var(--heading);
      font-size: 20px;
      margin-bottom: 10px;
    }

    .process-card p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--panel);
      overflow: hidden;
      transition: border-color var(--ease), background var(--ease);
    }

    .faq-item[open] {
      border-color: rgba(34, 211, 238, 0.42);
      background: rgba(255, 255, 255, 0.095);
    }

    .faq-item summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 22px;
      color: var(--heading);
      font-weight: 850;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary::after {
      content: "+";
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      border-radius: 999px;
      color: var(--cyan);
      background: rgba(34, 211, 238, 0.1);
      border: 1px solid rgba(34, 211, 238, 0.2);
      transition: transform var(--ease);
    }

    .faq-item[open] summary::after {
      content: "−";
      transform: rotate(180deg);
    }

    .faq-item p {
      padding: 0 22px 20px;
      color: var(--muted);
      margin-bottom: 0;
    }

    .cta-panel {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 30px;
      padding: 30px;
      border-radius: 28px;
      border: 1px solid rgba(34, 211, 238, 0.26);
      background:
        linear-gradient(135deg, rgba(34, 211, 238, 0.16), rgba(34, 197, 94, 0.08)),
        rgba(255, 255, 255, 0.07);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
    }

    .cta-copy h2 {
      color: var(--heading);
      font-size: 32px;
      line-height: 1.25;
      margin-bottom: 12px;
    }

    .cta-copy p {
      color: #c6d7e7;
      margin-bottom: 20px;
    }

    .contact-points {
      display: grid;
      gap: 10px;
      color: var(--muted);
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .contact-points li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
    }

    .contact-points li::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
      margin-top: 10px;
      box-shadow: 0 0 14px rgba(34, 197, 94, 0.7);
      flex: 0 0 auto;
    }

    .contact-form {
      display: grid;
      gap: 14px;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .field label {
      display: block;
      color: #c6d7e7;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 7px;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      border: 1px solid rgba(214, 232, 255, 0.16);
      border-radius: 14px;
      color: var(--heading);
      background: rgba(7, 17, 31, 0.66);
      padding: 12px 14px;
      transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
    }

    .field textarea {
      min-height: 118px;
      resize: vertical;
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: #70869e;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      outline: none;
      border-color: var(--cyan);
      background: rgba(7, 17, 31, 0.86);
      box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.12);
    }

    .site-footer {
      padding: 70px 0 30px;
      background: #050d18;
      border-top: 1px solid var(--line);
    }

    .footer-main {
      display: grid;
      grid-template-columns: 1.35fr repeat(3, 1fr);
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(214, 232, 255, 0.12);
    }

    .footer-brand p {
      color: var(--muted);
      margin: 18px 0 0;
      max-width: 420px;
    }

    .footer-col h3 {
      color: var(--heading);
      font-size: 16px;
      margin: 0 0 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: var(--muted);
      transition: color var(--ease), transform var(--ease);
    }

    .footer-links a:hover {
      color: var(--cyan);
      transform: translateX(2px);
    }

    .footer-bottom {
      display: grid;
      justify-items: center;
      gap: 8px;
      padding-top: 24px;
      color: #7e93ab;
      font-size: 13px;
      text-align: center;
    }

    .footer-bottom a {
      color: #a9bbcf;
      transition: color var(--ease);
    }

    .footer-bottom a:hover {
      color: var(--cyan);
    }

    @media (max-width: 1024px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      h1 {
        font-size: 38px;
      }

      .top-actions {
        min-width: 320px;
      }

      .hero-grid,
      .match-panel,
      .column-grid,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .state-grid,
      .process {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .footer-main {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .brand-row {
        padding: 14px 0;
      }

      .brand-name {
        font-size: 18px;
      }

      .brand-kicker {
        display: none;
      }

      .top-actions {
        display: none;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .channel-wrap {
        display: none;
        padding-bottom: 14px;
      }

      .site-header.is-open .channel-wrap {
        display: block;
      }

      .channel-nav {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }

      .channel-nav a {
        text-align: center;
        white-space: normal;
      }

      .hero {
        padding: 52px 0 38px;
      }

      h1 {
        font-size: 31px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .section {
        padding: 58px 0;
      }

      .section-head {
        display: block;
      }

      .section-title h2,
      .cta-copy h2 {
        font-size: 28px;
      }

      .section-note {
        display: inline-block;
        margin-top: 12px;
      }

      .metric-grid,
      .kpi-grid,
      .state-grid,
      .process {
        grid-template-columns: 1fr;
      }

      .match-visual {
        min-height: 340px;
        padding: 18px;
      }

      .article-row {
        grid-template-columns: 88px minmax(0, 1fr);
      }

      .article-row img {
        width: 88px;
        height: 76px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .footer-main {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(100% - 24px, var(--container));
      }

      .brand-mark {
        width: 40px;
        height: 40px;
      }

      .hero-actions,
      .btn {
        width: 100%;
      }

      .btn {
        min-height: 48px;
      }

      .dashboard-top,
      .cta-panel {
        padding: 20px;
      }

      .trend-item {
        grid-template-columns: 1fr;
      }

      .trend-item span {
        text-align: left;
      }

      .teams {
        display: grid;
        justify-items: start;
      }

      .vs {
        padding: 2px 0;
      }

      .article-row {
        grid-template-columns: 1fr;
      }

      .article-row img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        scroll-behavior: auto !important;
        transition: none !important;
      }
    }
