/* roulang page: index */
:root {
      --deep: #061A2F;
      --deep-2: #09243e;
      --blue: #0B4D8C;
      --cyan: #20E6FF;
      --green: #2DD36F;
      --orange: #FFB545;
      --text: #F5FAFF;
      --muted: #C9D7E8;
      --soft: #8EA6BF;
      --line: rgba(255,255,255,.13);
      --panel: rgba(255,255,255,.09);
      --panel-2: rgba(255,255,255,.14);
      --shadow: 0 22px 70px rgba(0,0,0,.34);
      --radius-lg: 28px;
      --radius-md: 22px;
      --radius-sm: 14px;
      --container: 1200px;
      --ease: all .28s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 16% 8%, rgba(32,230,255,.18), transparent 30%),
        radial-gradient(circle at 86% 14%, rgba(45,211,111,.14), transparent 28%),
        linear-gradient(145deg, #061A2F 0%, #071f37 42%, #03111f 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 54px 54px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.15));
      pointer-events: none;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    input:focus,
    textarea:focus,
    select:focus,
    button:focus-visible,
    a:focus-visible {
      outline: 3px solid rgba(32,230,255,.36);
      outline-offset: 3px;
    }

    .container {
      max-width: var(--container);
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: var(--ease);
    }

    .navbar {
      min-height: 78px;
      padding: 14px 0;
      background: rgba(5,20,38,.56);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(18px);
      box-shadow: 0 12px 38px rgba(0,0,0,.22);
    }

    .site-header.is-scrolled .navbar {
      min-height: 68px;
      background: rgba(4,18,33,.92);
      box-shadow: 0 18px 46px rgba(0,0,0,.38);
    }

    .navbar-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--text) !important;
      font-weight: 800;
      letter-spacing: 0;
      white-space: normal;
      max-width: 280px;
      line-height: 1.25;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      color: #041425;
      font-weight: 900;
      background:
        radial-gradient(circle at 35% 32%, #fff 0 7%, transparent 8%),
        linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 0 26px rgba(32,230,255,.38);
    }

    .navbar-toggler {
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 14px;
      padding: 10px 12px;
      background: rgba(255,255,255,.08);
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 4px rgba(32,230,255,.18);
    }

    .navbar-toggler-icon {
      filter: invert(1) brightness(1.8);
    }

    .navbar-nav {
      gap: 4px;
      align-items: center;
    }

    .nav-link {
      position: relative;
      color: rgba(245,250,255,.78) !important;
      font-size: 15px;
      font-weight: 600;
      padding: 10px 12px !important;
      border-radius: 999px;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 5px;
      height: 2px;
      border-radius: 999px;
      background: var(--cyan);
      transform: scaleX(0);
      transform-origin: center;
      transition: var(--ease);
      box-shadow: 0 0 14px rgba(32,230,255,.8);
    }

    .nav-link:hover,
    .nav-link.active {
      color: #fff !important;
      background: rgba(32,230,255,.08);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      transform: scaleX(1);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 18px;
    }

    .search-box {
      display: flex;
      align-items: center;
      gap: 8px;
      width: 190px;
      min-height: 42px;
      padding: 0 14px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 999px;
      background: rgba(255,255,255,.07);
    }

    .search-box input {
      width: 100%;
      min-width: 0;
      color: var(--text);
      border: 0;
      outline: 0;
      background: transparent;
      font-size: 14px;
    }

    .search-box input::placeholder {
      color: rgba(201,215,232,.62);
    }

    .btn-glow,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border-radius: 999px;
      padding: 13px 22px;
      min-height: 48px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: var(--ease);
      white-space: nowrap;
    }

    .btn-glow {
      color: #031421;
      background: linear-gradient(135deg, var(--cyan), #41f4d1 48%, var(--blue));
      box-shadow: 0 14px 34px rgba(32,230,255,.24);
    }

    .btn-glow:hover {
      color: #031421;
      transform: translateY(-3px);
      box-shadow: 0 18px 46px rgba(32,230,255,.36);
      filter: saturate(1.12);
    }

    .btn-ghost {
      color: var(--text);
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.22);
    }

    .btn-ghost:hover {
      color: #fff;
      background: rgba(32,230,255,.12);
      border-color: rgba(32,230,255,.52);
      transform: translateY(-3px);
    }

    .hero {
      position: relative;
      min-height: 760px;
      padding: 148px 0 86px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(6,26,47,.94), rgba(6,26,47,.78)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
    }

    .hero::before {
      content: "2:1 0:0 3:2 1:1";
      position: absolute;
      right: -40px;
      top: 120px;
      color: rgba(32,230,255,.08);
      font-size: 116px;
      font-weight: 900;
      line-height: 1;
      transform: rotate(-8deg);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -10% -28% -10%;
      height: 310px;
      background:
        radial-gradient(ellipse at center, rgba(45,211,111,.18), transparent 62%),
        linear-gradient(90deg, transparent, rgba(32,230,255,.14), transparent);
      border-top: 1px solid rgba(45,211,111,.28);
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 14px;
      color: var(--cyan);
      font-size: 13px;
      font-weight: 800;
      border: 1px solid rgba(32,230,255,.24);
      border-radius: 999px;
      background: rgba(32,230,255,.09);
      margin-bottom: 20px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 16px rgba(45,211,111,.75);
    }

    h1,
    h2,
    h3,
    h4,
    p {
      margin-top: 0;
    }

    h1 {
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.12;
      font-weight: 850;
      letter-spacing: 0;
      margin-bottom: 22px;
    }

    h2 {
      font-size: clamp(28px, 3.6vw, 42px);
      line-height: 1.18;
      font-weight: 830;
      letter-spacing: 0;
      margin-bottom: 14px;
    }

    h3 {
      font-size: 23px;
      line-height: 1.35;
      font-weight: 800;
      letter-spacing: 0;
    }

    .lead {
      color: var(--muted);
      font-size: 18px;
      line-height: 1.9;
      max-width: 680px;
      margin-bottom: 28px;
    }

    .hero-cta {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 28px 0 26px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .trust-pill,
    .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 11px;
      border-radius: 999px;
      color: rgba(245,250,255,.9);
      font-size: 13px;
      font-weight: 700;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
    }

    .tag.green {
      color: #d9ffe8;
      background: rgba(45,211,111,.12);
      border-color: rgba(45,211,111,.26);
    }

    .tag.orange {
      color: #ffe5ad;
      background: rgba(255,181,69,.13);
      border-color: rgba(255,181,69,.28);
    }

    .tag.cyan {
      color: #d7fbff;
      background: rgba(32,230,255,.12);
      border-color: rgba(32,230,255,.28);
    }

    .score-dashboard {
      position: relative;
      padding: 22px;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: var(--radius-lg);
      background: linear-gradient(150deg, rgba(255,255,255,.14), rgba(255,255,255,.06));
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .score-dashboard::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 24px 24px;
      opacity: .55;
      pointer-events: none;
    }

    .dashboard-head,
    .match-card,
    .mini-rank {
      position: relative;
      z-index: 1;
    }

    .dashboard-head {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      margin-bottom: 16px;
    }

    .dashboard-head strong {
      font-size: 18px;
    }

    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--green);
      font-size: 13px;
      font-weight: 800;
    }

    .live-dot::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 18px rgba(45,211,111,.85);
    }

    .match-card {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 12px;
      align-items: center;
      padding: 16px;
      margin-top: 12px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 20px;
      background: rgba(4,17,31,.48);
      transition: var(--ease);
    }

    .match-card:hover {
      transform: translateY(-4px);
      border-color: rgba(32,230,255,.42);
      box-shadow: 0 16px 40px rgba(32,230,255,.12);
    }

    .team {
      color: var(--muted);
      font-size: 15px;
      font-weight: 700;
    }

    .team.right {
      text-align: right;
    }

    .score {
      min-width: 86px;
      color: var(--cyan);
      font-size: 30px;
      line-height: 1;
      text-align: center;
      font-weight: 900;
      text-shadow: 0 0 18px rgba(32,230,255,.48);
    }

    .status {
      display: inline-flex;
      justify-self: center;
      margin-top: 8px;
      grid-column: 1 / 4;
      padding: 5px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      color: #062014;
      background: var(--green);
    }

    .status.pending {
      color: #261600;
      background: var(--orange);
    }

    .status.finished {
      color: var(--muted);
      background: rgba(142,166,191,.16);
      border: 1px solid rgba(142,166,191,.24);
    }

    .mini-rank {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 16px;
    }

    .mini-rank div {
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.1);
    }

    .mini-rank b {
      display: block;
      color: var(--cyan);
      font-size: 24px;
      line-height: 1.1;
    }

    .mini-rank span {
      color: var(--soft);
      font-size: 13px;
    }

    main {
      position: relative;
      z-index: 2;
    }

    .section {
      padding: 96px 0;
    }

    .section-tight {
      padding: 72px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-kicker {
      color: var(--cyan);
      font-size: 14px;
      font-weight: 850;
      margin-bottom: 10px;
    }

    .section-text {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.85;
      margin-bottom: 0;
    }

    .glass-card {
      height: 100%;
      padding: 24px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: linear-gradient(150deg, var(--panel-2), rgba(255,255,255,.055));
      backdrop-filter: blur(18px);
      box-shadow: 0 18px 60px rgba(0,0,0,.22);
      transition: var(--ease);
      overflow: hidden;
    }

    .glass-card:hover {
      transform: translateY(-6px);
      border-color: rgba(32,230,255,.45);
      box-shadow: 0 26px 70px rgba(0,0,0,.28), 0 0 28px rgba(32,230,255,.12);
    }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 22px;
    }

    .feature-card {
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .feature-card.large {
      grid-column: span 6;
      min-height: 330px;
      background:
        linear-gradient(150deg, rgba(32,230,255,.14), rgba(255,255,255,.07)),
        radial-gradient(circle at 85% 16%, rgba(45,211,111,.24), transparent 34%);
    }

    .feature-card.small {
      grid-column: span 3;
    }

    .feature-icon {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      color: #041425;
      font-size: 22px;
      font-weight: 900;
      border-radius: 16px;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 12px 30px rgba(32,230,255,.18);
      margin-bottom: 18px;
    }

    .feature-card p,
    .scenario-card p,
    .path-card p,
    .review-card p {
      color: var(--muted);
      margin-bottom: 18px;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--cyan);
      font-weight: 850;
    }

    .card-link:hover {
      color: #fff;
      transform: translateX(4px);
    }

    .visual-band {
      background:
        linear-gradient(180deg, rgba(11,77,140,.16), rgba(6,26,47,.08)),
        url("/assets/images/backpic/back-2.webp") center/cover fixed;
      position: relative;
    }

    .visual-band::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(3,15,28,.72);
      pointer-events: none;
    }

    .visual-band .container {
      position: relative;
      z-index: 1;
    }

    .masonry {
      columns: 3 280px;
      column-gap: 22px;
    }

    .scenario-card {
      break-inside: avoid;
      margin: 0 0 22px;
      padding: 0;
    }

    .scenario-image {
      position: relative;
      height: 170px;
      border-radius: 22px 22px 0 0;
      overflow: hidden;
    }

    .scenario-card.tall .scenario-image {
      height: 240px;
    }

    .scenario-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--ease);
    }

    .scenario-card:hover img {
      transform: scale(1.06);
    }

    .scenario-body {
      padding: 22px;
    }

    .path-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .path-card {
      position: relative;
      padding-top: 26px;
    }

    .path-num {
      position: absolute;
      top: 18px;
      right: 20px;
      color: rgba(32,230,255,.14);
      font-size: 44px;
      line-height: 1;
      font-weight: 900;
    }

    .path-list {
      display: grid;
      gap: 10px;
      margin: 18px 0 22px;
      padding: 0;
      list-style: none;
    }

    .path-list li {
      display: flex;
      gap: 9px;
      color: var(--muted);
      font-size: 15px;
    }

    .path-list li::before {
      content: "";
      width: 7px;
      height: 7px;
      flex: 0 0 auto;
      margin-top: 10px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 12px rgba(45,211,111,.7);
    }

    .data-strip {
      padding: 30px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(135deg, rgba(32,230,255,.12), rgba(45,211,111,.08)),
        rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: var(--shadow);
    }

    .data-item {
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .data-item:last-child {
      border-bottom: 0;
    }

    .data-label {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--muted);
      font-weight: 700;
      margin-bottom: 8px;
    }

    .progress {
      height: 9px;
      border-radius: 999px;
      background: rgba(255,255,255,.1);
      overflow: hidden;
    }

    .progress-bar {
      background: linear-gradient(90deg, var(--green), var(--cyan));
      border-radius: 999px;
    }

    .review-zone {
      overflow: hidden;
    }

    .review-track {
      display: grid;
      grid-auto-flow: column;
      grid-auto-columns: minmax(310px, 390px);
      gap: 18px;
      overflow-x: auto;
      padding: 8px 4px 18px;
      scrollbar-color: rgba(32,230,255,.45) rgba(255,255,255,.08);
    }

    .review-card {
      min-height: 260px;
    }

    .review-top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: flex-start;
      margin-bottom: 14px;
    }

    .avatar {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #031421;
      font-weight: 900;
      background: linear-gradient(135deg, var(--orange), var(--cyan));
    }

    .review-name {
      display: flex;
      gap: 11px;
      align-items: center;
    }

    .review-name b {
      display: block;
      line-height: 1.25;
    }

    .review-name span {
      display: block;
      color: var(--soft);
      font-size: 13px;
      line-height: 1.45;
    }

    .stars {
      color: var(--orange);
      font-size: 14px;
      white-space: nowrap;
    }

    .review-meta {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--soft);
      font-size: 13px;
      border-top: 1px solid rgba(255,255,255,.1);
      padding-top: 14px;
      margin-top: 16px;
    }

    .faq-wrap {
      max-width: 920px;
      margin: 0 auto;
    }

    .accordion {
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      color: var(--text);
      border: 1px solid rgba(255,255,255,.13) !important;
      border-radius: 20px !important;
      background: rgba(255,255,255,.07) !important;
      overflow: hidden;
      backdrop-filter: blur(18px);
    }

    .accordion-button {
      color: var(--text) !important;
      background: transparent !important;
      box-shadow: none !important;
      padding: 20px 22px;
      font-weight: 800;
      line-height: 1.55;
    }

    .accordion-button::after {
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background-color: rgba(32,230,255,.14);
      background-position: center;
      filter: invert(1);
    }

    .accordion-button:not(.collapsed) {
      color: var(--cyan) !important;
    }

    .accordion-body {
      color: var(--muted);
      padding: 0 22px 22px;
      line-height: 1.85;
    }

    .cta-panel {
      position: relative;
      padding: 44px;
      border-radius: 32px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.16);
      background:
        linear-gradient(135deg, rgba(32,230,255,.16), rgba(45,211,111,.08)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      box-shadow: var(--shadow);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(3,15,28,.74);
      pointer-events: none;
    }

    .cta-panel > * {
      position: relative;
      z-index: 1;
    }

    .contact-form {
      padding: 24px;
      border-radius: 24px;
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.14);
      backdrop-filter: blur(18px);
    }

    .form-label {
      color: var(--muted);
      font-weight: 750;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .form-control,
    .form-select {
      color: var(--text);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 14px;
      background-color: rgba(6,26,47,.64);
      padding: 13px 14px;
    }

    .form-control::placeholder {
      color: rgba(201,215,232,.52);
    }

    .form-control:focus,
    .form-select:focus {
      color: var(--text);
      border-color: rgba(32,230,255,.7);
      background-color: rgba(6,26,47,.78);
      box-shadow: 0 0 0 4px rgba(32,230,255,.12);
    }

    .form-select option {
      color: #071b31;
    }

    .site-footer {
      padding: 70px 0 28px;
      background: #041425;
      border-top: 1px solid rgba(255,255,255,.1);
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 850;
      margin-bottom: 14px;
    }

    .footer-text {
      color: var(--muted);
      max-width: 390px;
      margin-bottom: 18px;
    }

    .footer-title {
      color: #fff;
      font-size: 16px;
      font-weight: 850;
      margin-bottom: 15px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .footer-links a,
    .record-links a {
      color: var(--soft);
    }

    .footer-links a:hover,
    .record-links a:hover {
      color: var(--cyan);
    }

    .footer-contact {
      color: var(--muted);
      display: grid;
      gap: 8px;
    }

    .footer-bottom {
      margin-top: 44px;
      padding-top: 24px;
      color: var(--soft);
      text-align: center;
      border-top: 1px solid rgba(255,255,255,.1);
      font-size: 14px;
    }

    .record-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px 14px;
      margin-top: 10px;
    }

    @media (max-width: 1199.98px) {
      .nav-actions {
        margin-left: 8px;
      }

      .search-box {
        display: none;
      }

      .feature-card.small {
        grid-column: span 4;
      }

      .path-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 991.98px) {
      .navbar-collapse {
        margin-top: 14px;
        padding: 16px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 22px;
        background: rgba(5,20,38,.94);
        box-shadow: var(--shadow);
      }

      .navbar-nav {
        align-items: stretch;
      }

      .nav-link {
        padding: 12px 14px !important;
      }

      .nav-actions {
        margin: 14px 0 0;
        align-items: stretch;
      }

      .nav-actions .btn-glow {
        width: 100%;
      }

      .hero {
        min-height: auto;
        padding-top: 126px;
      }

      .score-dashboard {
        margin-top: 32px;
      }

      .section {
        padding: 76px 0;
      }

      .feature-card.large,
      .feature-card.small {
        grid-column: span 6;
      }
    }

    @media (max-width: 767.98px) {
      .navbar {
        min-height: 70px;
      }

      .navbar-brand {
        max-width: 230px;
        font-size: 16px;
      }

      .logo-mark {
        width: 38px;
        height: 38px;
      }

      .hero {
        padding: 112px 0 62px;
      }

      .lead {
        font-size: 16px;
      }

      .hero-cta {
        flex-direction: column;
      }

      .hero-cta .btn-glow,
      .hero-cta .btn-ghost {
        width: 100%;
      }

      .match-card {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .team.right {
        text-align: center;
      }

      .status {
        grid-column: auto;
      }

      .mini-rank {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 62px 0;
      }

      .feature-grid,
      .path-grid {
        grid-template-columns: 1fr;
      }

      .feature-card.large,
      .feature-card.small {
        grid-column: auto;
        min-height: auto;
      }

      .masonry {
        columns: 1;
      }

      .review-track {
        grid-auto-columns: minmax(280px, 88vw);
      }

      .cta-panel {
        padding: 28px;
        border-radius: 24px;
      }
    }

    @media (max-width: 575.98px) {
      h1 {
        font-size: 34px;
      }

      h2 {
        font-size: 28px;
      }

      .glass-card {
        padding: 20px;
        border-radius: 20px;
      }

      .dashboard-head,
      .review-top,
      .data-label {
        align-items: flex-start;
        flex-direction: column;
      }

      .btn-glow,
      .btn-ghost {
        padding-left: 18px;
        padding-right: 18px;
      }

      .record-links {
        flex-direction: column;
        align-items: center;
      }
    }

/* roulang page: category2 */
:root {
      --night: #061a2f;
      --night-2: #08233f;
      --blue: #0b4d8c;
      --cyan: #20e6ff;
      --green: #2dd36f;
      --orange: #ffb545;
      --text: #f5faff;
      --muted: #c9d7e8;
      --soft: #8ea6bf;
      --line: rgba(255,255,255,.14);
      --glass: rgba(255,255,255,.09);
      --glass-strong: rgba(255,255,255,.14);
      --shadow: 0 22px 70px rgba(0,0,0,.32);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --container: 1200px;
      --ease: all .25s ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(32,230,255,.18), transparent 28%),
        radial-gradient(circle at 84% 20%, rgba(45,211,111,.12), transparent 30%),
        linear-gradient(180deg, #061a2f 0%, #071f38 42%, #051525 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,.85), rgba(0,0,0,.18));
      z-index: -2;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--ease);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    input,
    textarea,
    select {
      color: var(--text);
    }

    .container {
      max-width: var(--container);
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(5,20,38,.54);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 14px 42px rgba(0,0,0,.22);
      transition: var(--ease);
    }

    .site-header.is-scrolled {
      background: rgba(4,16,30,.92);
      box-shadow: 0 18px 52px rgba(0,0,0,.38);
    }

    .navbar {
      padding: 14px 0;
    }

    .navbar-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-weight: 800;
      font-size: 19px;
      letter-spacing: 0;
      white-space: nowrap;
    }

    .navbar-brand:hover,
    .navbar-brand:focus {
      color: var(--cyan);
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background:
        radial-gradient(circle at 35% 30%, #ffffff 0 8%, transparent 9%),
        linear-gradient(135deg, var(--green), var(--cyan));
      color: #062033;
      font-weight: 900;
      box-shadow: 0 0 26px rgba(32,230,255,.36);
      flex: 0 0 auto;
    }

    .navbar-nav {
      align-items: center;
      gap: 4px;
    }

    .nav-link {
      color: rgba(245,250,255,.78);
      font-size: 14px;
      font-weight: 650;
      padding: 10px 12px !important;
      border-radius: 999px;
      position: relative;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 4px;
      height: 2px;
      border-radius: 999px;
      background: var(--cyan);
      transform: scaleX(0);
      transform-origin: center;
      transition: var(--ease);
      box-shadow: 0 0 14px rgba(32,230,255,.8);
    }

    .nav-link:hover,
    .nav-link:focus,
    .nav-link.active {
      color: var(--text);
      background: rgba(255,255,255,.08);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      transform: scaleX(1);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 18px;
    }

    .search-box {
      height: 42px;
      min-width: 190px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 13px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 999px;
      background: rgba(255,255,255,.075);
      color: var(--soft);
      transition: var(--ease);
    }

    .search-box:focus-within {
      border-color: rgba(32,230,255,.65);
      box-shadow: 0 0 0 4px rgba(32,230,255,.12);
    }

    .search-box input {
      width: 128px;
      border: 0;
      outline: 0;
      background: transparent;
      color: var(--text);
      font-size: 14px;
    }

    .search-box input::placeholder {
      color: rgba(201,215,232,.68);
    }

    .btn-glow,
    .btn-ghost,
    .btn-line {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      border: 1px solid transparent;
      padding: 13px 22px;
      font-weight: 800;
      line-height: 1.2;
      transition: var(--ease);
      cursor: pointer;
      white-space: nowrap;
    }

    .btn-glow {
      color: #052033;
      background: linear-gradient(135deg, var(--cyan), var(--green) 52%, #60a5fa);
      box-shadow: 0 0 28px rgba(32,230,255,.28);
    }

    .btn-glow:hover,
    .btn-glow:focus {
      color: #031927;
      transform: translateY(-3px);
      box-shadow: 0 0 42px rgba(32,230,255,.45);
      filter: saturate(1.12);
    }

    .btn-ghost {
      color: var(--text);
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.18);
    }

    .btn-ghost:hover,
    .btn-ghost:focus {
      color: var(--cyan);
      border-color: rgba(32,230,255,.62);
      background: rgba(32,230,255,.1);
      transform: translateY(-3px);
    }

    .btn-line {
      color: var(--cyan);
      border-color: rgba(32,230,255,.32);
      background: rgba(32,230,255,.06);
      padding: 10px 16px;
      font-size: 14px;
    }

    .btn-line:hover {
      color: #052033;
      background: var(--cyan);
      box-shadow: 0 12px 26px rgba(32,230,255,.24);
    }

    .navbar-toggler {
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 14px;
      padding: 9px 10px;
      background: rgba(255,255,255,.08);
    }

    .navbar-toggler:focus {
      box-shadow: 0 0 0 4px rgba(32,230,255,.16);
    }

    .navbar-toggler-icon {
      filter: invert(1) brightness(1.8);
    }

    .page-hero {
      position: relative;
      min-height: 720px;
      display: flex;
      align-items: center;
      padding: 150px 0 90px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(6,26,47,.92), rgba(6,26,47,.7) 46%, rgba(6,26,47,.84)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 70% 30%, rgba(32,230,255,.2), transparent 26%),
        linear-gradient(130deg, transparent 0 48%, rgba(45,211,111,.09) 49% 51%, transparent 52% 100%);
      pointer-events: none;
    }

    .page-hero::after {
      content: "21:00  23:30  02:45";
      position: absolute;
      right: 6%;
      bottom: 7%;
      color: rgba(32,230,255,.09);
      font-size: clamp(48px, 8vw, 124px);
      font-weight: 900;
      letter-spacing: 0;
      line-height: 1;
      pointer-events: none;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border: 1px solid rgba(32,230,255,.26);
      border-radius: 999px;
      color: var(--cyan);
      background: rgba(32,230,255,.08);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 20px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 14px rgba(45,211,111,.8);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.12;
      font-weight: 850;
      letter-spacing: 0;
      margin-bottom: 22px;
    }

    .hero-lead {
      color: var(--muted);
      font-size: 18px;
      max-width: 650px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 30px;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.14);
      background: rgba(255,255,255,.07);
      color: var(--muted);
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 650;
    }

    .tag strong {
      color: var(--cyan);
    }

    .schedule-panel {
      border: 1px solid rgba(255,255,255,.16);
      border-radius: var(--radius-xl);
      background: linear-gradient(145deg, rgba(255,255,255,.15), rgba(255,255,255,.07));
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
      padding: 22px;
      position: relative;
      overflow: hidden;
    }

    .schedule-panel::before {
      content: "";
      position: absolute;
      inset: -80px -70px auto auto;
      width: 190px;
      height: 190px;
      border-radius: 50%;
      background: rgba(32,230,255,.18);
      filter: blur(18px);
    }

    .panel-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
      position: relative;
      z-index: 1;
    }

    .panel-title {
      font-size: 20px;
      font-weight: 850;
      margin-bottom: 4px;
    }

    .panel-subtitle {
      color: var(--soft);
      font-size: 14px;
      margin: 0;
    }

    .date-chip {
      color: #08233f;
      background: var(--orange);
      border-radius: 999px;
      padding: 8px 12px;
      font-size: 13px;
      font-weight: 850;
    }

    .mini-calendar {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 9px;
      margin-bottom: 18px;
    }

    .day-cell {
      min-height: 74px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.07);
      padding: 10px;
      transition: var(--ease);
    }

    .day-cell:hover,
    .day-cell.active {
      border-color: rgba(32,230,255,.5);
      background: rgba(32,230,255,.11);
      transform: translateY(-3px);
    }

    .day-cell span {
      display: block;
      color: var(--soft);
      font-size: 12px;
      margin-bottom: 5px;
    }

    .day-cell strong {
      display: block;
      font-size: 20px;
      line-height: 1;
      margin-bottom: 7px;
    }

    .day-cell small {
      color: var(--green);
      font-size: 12px;
      font-weight: 800;
    }

    .next-match {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border-radius: 20px;
      background: rgba(3,12,24,.38);
      border: 1px solid rgba(255,255,255,.12);
      padding: 16px;
    }

    .next-match strong {
      display: block;
      font-size: 18px;
    }

    .next-match span {
      display: block;
      color: var(--soft);
      font-size: 13px;
    }

    .score-time {
      color: var(--cyan);
      font-size: 24px;
      font-weight: 900;
      text-shadow: 0 0 18px rgba(32,230,255,.35);
      white-space: nowrap;
    }

    main {
      position: relative;
      z-index: 1;
    }

    .section {
      padding: 96px 0;
      position: relative;
    }

    .section-tight {
      padding: 72px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-kicker {
      color: var(--cyan);
      font-size: 13px;
      font-weight: 850;
      margin-bottom: 10px;
    }

    .section-title {
      font-size: clamp(28px, 3.6vw, 42px);
      line-height: 1.2;
      font-weight: 850;
      margin-bottom: 14px;
    }

    .section-desc {
      color: var(--muted);
      font-size: 17px;
      margin-bottom: 0;
    }

    .glass-card {
      border: 1px solid var(--line);
      border-radius: var(--radius-xl);
      background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.07));
      backdrop-filter: blur(18px);
      box-shadow: var(--shadow);
      transition: var(--ease);
      overflow: hidden;
    }

    .glass-card:hover {
      transform: translateY(-6px);
      border-color: rgba(32,230,255,.45);
      box-shadow: 0 26px 78px rgba(0,0,0,.36), 0 0 30px rgba(32,230,255,.12);
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      padding: 16px;
      margin-top: -40px;
      position: relative;
      z-index: 4;
    }

    .filter-pill {
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 999px;
      background: rgba(255,255,255,.07);
      color: var(--muted);
      padding: 10px 15px;
      font-weight: 760;
      transition: var(--ease);
    }

    .filter-pill:hover,
    .filter-pill.active {
      background: rgba(32,230,255,.12);
      color: var(--cyan);
      border-color: rgba(32,230,255,.46);
    }

    .date-strip {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
      margin-top: 24px;
    }

    .date-card {
      padding: 18px;
      min-height: 126px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .date-card .week {
      color: var(--soft);
      font-size: 13px;
      font-weight: 700;
    }

    .date-card .date {
      font-size: 30px;
      font-weight: 900;
      line-height: 1;
      color: var(--text);
    }

    .date-card .count {
      color: var(--green);
      font-size: 13px;
      font-weight: 850;
    }

    .date-card.featured {
      background: linear-gradient(145deg, rgba(32,230,255,.18), rgba(45,211,111,.1));
      border-color: rgba(32,230,255,.45);
    }

    .schedule-table-wrap {
      overflow: hidden;
      padding: 0;
    }

    .league-row {
      display: grid;
      grid-template-columns: 140px 1fr 135px 120px;
      gap: 14px;
      align-items: center;
      padding: 20px 22px;
      border-bottom: 1px solid rgba(255,255,255,.1);
      transition: var(--ease);
    }

    .league-row:last-child {
      border-bottom: 0;
    }

    .league-row:hover {
      background: rgba(32,230,255,.07);
    }

    .league-time {
      color: var(--cyan);
      font-size: 21px;
      font-weight: 900;
      line-height: 1.1;
    }

    .league-time small {
      display: block;
      color: var(--soft);
      font-size: 12px;
      font-weight: 650;
      margin-top: 5px;
    }

    .teams {
      display: grid;
      gap: 8px;
    }

    .team-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--text);
      font-weight: 800;
    }

    .team-line span:last-child {
      color: var(--soft);
      font-size: 13px;
      font-weight: 700;
    }

    .league-name {
      color: var(--muted);
      font-size: 14px;
      font-weight: 750;
    }

    .status-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 82px;
      padding: 7px 10px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 850;
      border: 1px solid transparent;
    }

    .status-badge.wait {
      color: var(--cyan);
      background: rgba(32,230,255,.11);
      border-color: rgba(32,230,255,.32);
    }

    .status-badge.done {
      color: var(--green);
      background: rgba(45,211,111,.11);
      border-color: rgba(45,211,111,.32);
    }

    .status-badge.hot {
      color: #071d31;
      background: var(--orange);
    }

    .result-zone {
      background:
        linear-gradient(180deg, rgba(6,26,47,.1), rgba(6,26,47,.88)),
        url("/assets/images/coverpic/cover-4.webp") center/cover no-repeat;
      border-radius: var(--radius-xl);
      overflow: hidden;
      min-height: 420px;
      display: flex;
      align-items: flex-end;
      padding: 28px;
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: var(--shadow);
    }

    .result-zone h3 {
      font-size: 30px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .result-zone p {
      color: var(--muted);
      margin-bottom: 18px;
      max-width: 520px;
    }

    .result-list {
      display: grid;
      gap: 14px;
    }

    .result-item {
      display: grid;
      grid-template-columns: 76px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border-radius: 22px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.075);
      transition: var(--ease);
    }

    .result-item:hover {
      border-color: rgba(45,211,111,.45);
      background: rgba(45,211,111,.08);
      transform: translateX(4px);
    }

    .result-score {
      font-size: 27px;
      font-weight: 950;
      color: var(--cyan);
      text-align: center;
      text-shadow: 0 0 18px rgba(32,230,255,.28);
    }

    .result-teams strong {
      display: block;
      font-size: 17px;
    }

    .result-teams span {
      color: var(--soft);
      font-size: 13px;
    }

    .round {
      color: var(--orange);
      font-size: 13px;
      font-weight: 850;
      white-space: nowrap;
    }

    .team-watch {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 24px;
      align-items: stretch;
    }

    .image-card {
      min-height: 430px;
      background:
        linear-gradient(180deg, rgba(6,26,47,.08), rgba(6,26,47,.9)),
        url("/assets/images/coverpic/cover-7.webp") center/cover no-repeat;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: var(--shadow);
      padding: 28px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
    }

    .image-card h3 {
      font-size: 30px;
      font-weight: 900;
      margin-bottom: 10px;
    }

    .image-card p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .watch-list {
      padding: 24px;
    }

    .watch-item {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding: 17px 0;
      border-bottom: 1px solid rgba(255,255,255,.1);
    }

    .watch-item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .watch-item:first-child {
      padding-top: 0;
    }

    .watch-item strong {
      display: block;
      font-size: 17px;
      margin-bottom: 4px;
    }

    .watch-item span {
      color: var(--soft);
      font-size: 13px;
    }

    .watch-item em {
      color: var(--green);
      font-style: normal;
      font-size: 13px;
      font-weight: 850;
      white-space: nowrap;
    }

    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .process-card {
      padding: 24px;
      min-height: 240px;
      position: relative;
    }

    .step-no {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: #061a2f;
      background: var(--cyan);
      font-weight: 950;
      margin-bottom: 18px;
      box-shadow: 0 0 24px rgba(32,230,255,.35);
    }

    .process-card h3 {
      font-size: 20px;
      font-weight: 850;
      margin-bottom: 10px;
    }

    .process-card p {
      color: var(--muted);
      margin-bottom: 0;
      font-size: 15px;
    }

    .faq-wrap {
      max-width: 940px;
      margin: 0 auto;
    }

    .accordion {
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      color: var(--text);
      background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.065));
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 22px !important;
      overflow: hidden;
      box-shadow: 0 16px 42px rgba(0,0,0,.2);
    }

    .accordion-button {
      color: var(--text);
      background: transparent;
      padding: 20px 22px;
      font-weight: 850;
      box-shadow: none !important;
      line-height: 1.55;
    }

    .accordion-button::after {
      filter: invert(1);
      opacity: .9;
    }

    .accordion-button:not(.collapsed) {
      color: var(--cyan);
      background: rgba(32,230,255,.07);
    }

    .accordion-body {
      color: var(--muted);
      padding: 0 22px 22px;
      line-height: 1.85;
    }

    .cta-band {
      position: relative;
      overflow: hidden;
      border-radius: 34px;
      border: 1px solid rgba(255,255,255,.16);
      background:
        linear-gradient(135deg, rgba(32,230,255,.16), rgba(45,211,111,.09)),
        linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.07));
      box-shadow: var(--shadow);
      padding: 38px;
    }

    .cta-band::after {
      content: "";
      position: absolute;
      right: -70px;
      top: -80px;
      width: 240px;
      height: 240px;
      border-radius: 50%;
      background: rgba(255,181,69,.2);
      filter: blur(20px);
    }

    .cta-band h2 {
      font-size: clamp(27px, 3vw, 40px);
      font-weight: 900;
      margin-bottom: 12px;
    }

    .cta-band p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .subscribe-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .form-control,
    .form-select {
      min-height: 48px;
      color: var(--text);
      background-color: rgba(2,10,20,.34);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 16px;
    }

    .form-control::placeholder {
      color: rgba(201,215,232,.62);
    }

    .form-control:focus,
    .form-select:focus {
      color: var(--text);
      background-color: rgba(2,10,20,.46);
      border-color: rgba(32,230,255,.66);
      box-shadow: 0 0 0 4px rgba(32,230,255,.13);
    }

    .form-select option {
      color: #08233f;
    }

    .form-wide {
      grid-column: 1 / -1;
    }

    .site-footer {
      background: #041424;
      border-top: 1px solid rgba(255,255,255,.12);
      padding: 72px 0 28px;
      position: relative;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .footer-text {
      color: var(--muted);
      max-width: 360px;
      margin-bottom: 16px;
    }

    .footer-contact {
      display: grid;
      gap: 6px;
      color: var(--soft);
      font-size: 14px;
    }

    .footer-title {
      font-size: 16px;
      font-weight: 850;
      margin-bottom: 16px;
      color: var(--text);
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--soft);
      font-size: 14px;
    }

    .footer-links a:hover,
    .footer-links a:focus {
      color: var(--cyan);
      padding-left: 4px;
    }

    .footer-bottom {
      margin-top: 48px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.1);
      text-align: center;
      color: var(--soft);
      font-size: 13px;
      display: grid;
      gap: 8px;
    }

    .record-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
    }

    .record-links a {
      color: var(--muted);
    }

    .record-links a:hover {
      color: var(--cyan);
    }

    @media (max-width: 1199px) {
      .navbar-brand {
        font-size: 17px;
      }

      .nav-link {
        padding: 9px 9px !important;
        font-size: 13px;
      }

      .search-box {
        display: none;
      }

      .date-strip {
        grid-template-columns: repeat(3, 1fr);
      }

      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 991px) {
      .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 22px;
        background: rgba(5,20,38,.94);
        box-shadow: 0 18px 48px rgba(0,0,0,.32);
      }

      .navbar-nav {
        align-items: stretch;
      }

      .nav-link {
        padding: 12px 14px !important;
      }

      .nav-actions {
        margin-left: 0;
        margin-top: 14px;
        flex-direction: column;
        align-items: stretch;
      }

      .search-box {
        display: flex;
        width: 100%;
      }

      .search-box input {
        width: 100%;
      }

      .page-hero {
        min-height: auto;
        padding: 130px 0 72px;
      }

      .schedule-panel {
        margin-top: 34px;
      }

      .league-row {
        grid-template-columns: 105px 1fr;
      }

      .league-name,
      .status-badge {
        justify-self: start;
      }

      .team-watch {
        grid-template-columns: 1fr;
      }

      .image-card {
        min-height: 350px;
      }
    }

    @media (max-width: 767px) {
      .section {
        padding: 64px 0;
      }

      .section-tight {
        padding: 52px 0;
      }

      .page-hero {
        padding-top: 118px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn-glow,
      .hero-actions .btn-ghost,
      .btn-glow,
      .btn-ghost {
        width: 100%;
      }

      .mini-calendar {
        grid-template-columns: repeat(4, 1fr);
      }

      .day-cell {
        min-height: 66px;
        padding: 9px;
      }

      .date-strip,
      .process-grid {
        grid-template-columns: 1fr;
      }

      .filter-bar {
        margin-top: 0;
      }

      .league-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px;
      }

      .team-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
      }

      .result-item {
        grid-template-columns: 1fr;
      }

      .result-score {
        text-align: left;
      }

      .round {
        white-space: normal;
      }

      .cta-band {
        border-radius: 24px;
        padding: 26px;
      }

      .subscribe-form {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .navbar-brand span:last-child {
        max-width: 210px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .logo-mark {
        width: 34px;
        height: 34px;
      }

      .page-hero::after {
        display: none;
      }

      .panel-head,
      .next-match {
        flex-direction: column;
        align-items: flex-start;
      }

      .mini-calendar {
        grid-template-columns: repeat(2, 1fr);
      }

      .section-title {
        font-size: 27px;
      }

      .result-zone,
      .image-card {
        min-height: 310px;
        padding: 22px;
      }

      .footer-bottom {
        font-size: 12px;
      }
    }

/* roulang page: category1 */
:root {
      --bg-deep: #061A2F;
      --bg-navy: #08233f;
      --blue: #0B4D8C;
      --cyan: #20E6FF;
      --green: #2DD36F;
      --orange: #FFB545;
      --text: #F5FAFF;
      --muted: #C9D7E8;
      --subtle: #8EA6BF;
      --line: rgba(255,255,255,.13);
      --glass: rgba(255,255,255,.09);
      --glass-strong: rgba(255,255,255,.14);
      --shadow: 0 22px 70px rgba(0,0,0,.34);
      --shadow-soft: 0 16px 46px rgba(0,0,0,.24);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --container: 1200px;
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(32,230,255,.16), transparent 34%),
        radial-gradient(circle at 88% 18%, rgba(45,211,111,.13), transparent 30%),
        linear-gradient(180deg, #061A2F 0%, #071E37 44%, #061A2F 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -1;
      background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: radial-gradient(circle at top, rgba(0,0,0,.85), transparent 72%);
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, border-color .22s ease, transform .22s ease, background .22s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    input:focus,
    textarea:focus,
    select:focus,
    button:focus-visible,
    a:focus-visible {
      outline: 2px solid rgba(32,230,255,.8);
      outline-offset: 3px;
    }

    .container {
      max-width: var(--container);
    }

    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1030;
      transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .site-header .navbar {
      padding: 14px 0;
      background: rgba(5,20,38,.52);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(255,255,255,.12);
      box-shadow: 0 12px 38px rgba(0,0,0,.22);
    }

    .site-header.is-scrolled .navbar {
      background: rgba(6,26,47,.92);
      box-shadow: 0 14px 46px rgba(0,0,0,.36);
      border-bottom-color: rgba(32,230,255,.16);
    }

    .navbar-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-weight: 800;
      letter-spacing: .2px;
      white-space: nowrap;
    }

    .navbar-brand:hover {
      color: var(--cyan);
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      color: #041827;
      font-weight: 900;
      background:
        radial-gradient(circle at 35% 30%, #fff 0 9%, transparent 10%),
        linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow: 0 0 28px rgba(32,230,255,.42);
      position: relative;
      flex: 0 0 auto;
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      inset: 6px;
      border: 1px solid rgba(6,26,47,.45);
      border-radius: 50%;
    }

    .navbar-nav {
      gap: 2px;
      align-items: center;
    }

    .nav-link {
      color: rgba(245,250,255,.78);
      font-size: 14px;
      font-weight: 650;
      padding: 10px 12px !important;
      border-radius: 999px;
      position: relative;
      white-space: nowrap;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 5px;
      height: 2px;
      border-radius: 999px;
      background: var(--cyan);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .22s ease;
      box-shadow: 0 0 16px rgba(32,230,255,.75);
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--text) !important;
      background: rgba(255,255,255,.08);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      transform: scaleX(1);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-left: 18px;
    }

    .search-box {
      height: 42px;
      min-width: 190px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 13px;
      border: 1px solid rgba(255,255,255,.13);
      border-radius: 999px;
      background: rgba(255,255,255,.07);
      color: var(--subtle);
      transition: border-color .22s ease, background .22s ease, box-shadow .22s ease;
    }

    .search-box:focus-within {
      border-color: rgba(32,230,255,.65);
      background: rgba(32,230,255,.08);
      box-shadow: 0 0 0 4px rgba(32,230,255,.08);
    }

    .search-box input {
      width: 100%;
      min-width: 0;
      border: 0;
      outline: 0;
      color: var(--text);
      background: transparent;
      font-size: 14px;
    }

    .search-box input::placeholder {
      color: rgba(201,215,232,.62);
    }

    .btn-glow,
    .btn-primary-glow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 12px 22px;
      border: 0;
      border-radius: 999px;
      color: #032033;
      font-weight: 800;
      background: linear-gradient(135deg, var(--cyan), var(--green) 58%, #8dffcf);
      box-shadow: 0 12px 32px rgba(32,230,255,.26), inset 0 1px 0 rgba(255,255,255,.55);
      transition: transform .22s ease, box-shadow .22s ease, filter .22s ease;
      white-space: nowrap;
    }

    .btn-glow:hover,
    .btn-primary-glow:hover {
      color: #031c2e;
      transform: translateY(-2px);
      filter: saturate(1.08);
      box-shadow: 0 18px 42px rgba(32,230,255,.36), 0 0 0 1px rgba(255,255,255,.2) inset;
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 12px 22px;
      border-radius: 999px;
      color: var(--text);
      font-weight: 750;
      border: 1px solid rgba(255,255,255,.18);
      background: rgba(255,255,255,.07);
      backdrop-filter: blur(12px);
    }

    .btn-ghost:hover {
      color: var(--cyan);
      border-color: rgba(32,230,255,.55);
      background: rgba(32,230,255,.09);
      transform: translateY(-2px);
    }

    .navbar-toggler {
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 14px;
      background: rgba(255,255,255,.08);
      box-shadow: none !important;
    }

    .navbar-toggler-icon {
      width: 22px;
      height: 22px;
      background-image: linear-gradient(var(--text), var(--text)), linear-gradient(var(--text), var(--text)), linear-gradient(var(--text), var(--text));
      background-size: 22px 2px, 22px 2px, 22px 2px;
      background-position: center 5px, center 10px, center 15px;
      background-repeat: no-repeat;
    }

    .hero {
      position: relative;
      min-height: 720px;
      display: flex;
      align-items: center;
      padding: 150px 0 92px;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(6,26,47,.94), rgba(6,26,47,.74), rgba(6,26,47,.88)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
    }

    .hero::before {
      content: "1 - 0  2 - 2  3 - 1";
      position: absolute;
      top: 18%;
      right: -6%;
      font-size: clamp(74px, 10vw, 154px);
      line-height: 1;
      font-weight: 900;
      color: rgba(32,230,255,.07);
      letter-spacing: -4px;
      white-space: nowrap;
      transform: rotate(-5deg);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 42%;
      background:
        linear-gradient(transparent, rgba(6,26,47,.98)),
        repeating-linear-gradient(90deg, rgba(45,211,111,.18) 0 2px, transparent 2px 13%);
      opacity: .72;
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 13px;
      border: 1px solid rgba(32,230,255,.25);
      border-radius: 999px;
      color: var(--cyan);
      background: rgba(32,230,255,.08);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .6px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 16px rgba(45,211,111,.9);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    .hero-title {
      margin: 22px 0 20px;
      font-size: clamp(34px, 5vw, 58px);
      line-height: 1.12;
      font-weight: 850;
      letter-spacing: -.8px;
    }

    .hero-title .highlight {
      color: var(--cyan);
      text-shadow: 0 0 24px rgba(32,230,255,.34);
    }

    .hero-lead {
      max-width: 650px;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.85;
      margin-bottom: 28px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 7px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.07);
      color: rgba(245,250,255,.83);
      font-size: 13px;
      font-weight: 650;
    }

    .tag i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(32,230,255,.7);
    }

    .live-board {
      position: relative;
      border-radius: var(--radius-xl);
      padding: 22px;
      background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.065));
      border: 1px solid rgba(255,255,255,.14);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      overflow: hidden;
    }

    .live-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 85% 0%, rgba(32,230,255,.24), transparent 35%),
        linear-gradient(135deg, rgba(45,211,111,.14), transparent 34%);
      pointer-events: none;
    }

    .board-head,
    .score-row,
    .board-foot {
      position: relative;
      z-index: 1;
    }

    .board-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .board-head h2 {
      margin: 0;
      font-size: 22px;
      font-weight: 850;
    }

    .pulse-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(255,181,69,.13);
      border: 1px solid rgba(255,181,69,.32);
      color: #ffd28a;
      font-weight: 800;
      font-size: 12px;
      white-space: nowrap;
    }

    .pulse-badge::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 16px rgba(255,181,69,.9);
      animation: pulse 1.7s infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: .8; }
      50% { transform: scale(1.35); opacity: 1; }
    }

    .score-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 14px;
      align-items: center;
      padding: 16px 0;
      border-top: 1px solid rgba(255,255,255,.1);
    }

    .score-row:first-of-type {
      border-top: 0;
    }

    .team {
      min-width: 0;
    }

    .team strong {
      display: block;
      color: var(--text);
      font-size: 16px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .team span {
      color: var(--subtle);
      font-size: 12px;
    }

    .team.away {
      text-align: right;
    }

    .score {
      min-width: 82px;
      text-align: center;
      color: var(--cyan);
      font-size: 28px;
      font-weight: 900;
      letter-spacing: 1px;
      text-shadow: 0 0 20px rgba(32,230,255,.42);
    }

    .status {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 5px 9px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      border: 1px solid transparent;
      white-space: nowrap;
    }

    .status-live {
      color: #071e37;
      background: var(--green);
      box-shadow: 0 0 20px rgba(45,211,111,.22);
    }

    .status-upcoming {
      color: #ffe2ad;
      background: rgba(255,181,69,.12);
      border-color: rgba(255,181,69,.3);
    }

    .status-finished {
      color: #cfe0f3;
      background: rgba(142,166,191,.14);
      border-color: rgba(142,166,191,.24);
    }

    .board-foot {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: 20px;
      padding-top: 18px;
      border-top: 1px solid rgba(255,255,255,.1);
      color: var(--subtle);
      font-size: 13px;
    }

    .section {
      position: relative;
      padding: 92px 0;
    }

    .section-sm {
      padding: 72px 0;
    }

    .section-heading {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      margin-bottom: 12px;
      color: var(--green);
      font-weight: 850;
      font-size: 13px;
      letter-spacing: .8px;
    }

    .section-title {
      font-size: clamp(28px, 3.8vw, 42px);
      line-height: 1.2;
      font-weight: 850;
      margin-bottom: 14px;
      letter-spacing: -.5px;
    }

    .section-desc {
      color: var(--muted);
      font-size: 17px;
      margin-bottom: 0;
    }

    .filter-panel,
    .glass-card,
    .match-group,
    .feature-card,
    .faq-wrap,
    .cta-panel {
      border: 1px solid var(--line);
      background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.065));
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(18px);
    }

    .filter-panel {
      padding: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      justify-content: space-between;
    }

    .filter-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .filter-tab {
      border: 1px solid rgba(255,255,255,.13);
      background: rgba(255,255,255,.07);
      color: var(--muted);
      border-radius: 999px;
      padding: 10px 15px;
      font-weight: 750;
      transition: transform .22s ease, border-color .22s ease, color .22s ease, background .22s ease;
    }

    .filter-tab:hover,
    .filter-tab.active {
      color: #041827;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      border-color: transparent;
      transform: translateY(-2px);
    }

    .filter-date {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--subtle);
      padding: 10px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(6,26,47,.34);
      font-weight: 650;
    }

    .match-grid {
      display: grid;
      gap: 22px;
    }

    .match-group {
      padding: 24px;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
      overflow: hidden;
      position: relative;
    }

    .match-group::before {
      content: "";
      position: absolute;
      top: 0;
      left: 28px;
      right: 28px;
      height: 3px;
      border-radius: 0 0 999px 999px;
      background: linear-gradient(90deg, var(--green), var(--cyan), var(--orange));
      opacity: .75;
    }

    .match-group:hover {
      transform: translateY(-6px);
      border-color: rgba(32,230,255,.42);
      box-shadow: 0 24px 74px rgba(0,0,0,.36), 0 0 26px rgba(32,230,255,.12);
    }

    .group-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
    }

    .group-head h3 {
      margin: 0;
      font-size: 22px;
      font-weight: 850;
    }

    .group-note {
      color: var(--subtle);
      font-size: 13px;
    }

    .timeline-list {
      position: relative;
      display: grid;
      gap: 14px;
    }

    .timeline-list::before {
      content: "";
      position: absolute;
      left: 10px;
      top: 18px;
      bottom: 18px;
      width: 1px;
      background: linear-gradient(var(--cyan), rgba(255,255,255,.06));
    }

    .match-card {
      position: relative;
      margin-left: 28px;
      padding: 16px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 20px;
      background: rgba(6,26,47,.42);
      transition: transform .22s ease, border-color .22s ease, background .22s ease;
    }

    .match-card::before {
      content: "";
      position: absolute;
      left: -24px;
      top: 23px;
      width: 13px;
      height: 13px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 18px rgba(32,230,255,.75);
    }

    .match-card:hover {
      transform: translateX(4px);
      border-color: rgba(45,211,111,.34);
      background: rgba(255,255,255,.08);
    }

    .match-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 14px;
      color: var(--subtle);
      font-size: 13px;
    }

    .league {
      color: var(--text);
      font-weight: 800;
    }

    .match-score {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 16px;
      align-items: center;
    }

    .club {
      display: flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .club.away {
      justify-content: flex-end;
      text-align: right;
    }

    .club-logo {
      width: 34px;
      height: 34px;
      display: inline-grid;
      place-items: center;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(32,230,255,.22), rgba(45,211,111,.2));
      border: 1px solid rgba(255,255,255,.14);
      color: var(--cyan);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .club-name {
      min-width: 0;
      font-weight: 800;
      color: var(--text);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .score-num {
      min-width: 96px;
      text-align: center;
      font-size: 30px;
      font-weight: 900;
      color: var(--cyan);
      text-shadow: 0 0 18px rgba(32,230,255,.35);
    }

    .feature-card {
      height: 100%;
      padding: 24px;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .feature-card:hover {
      transform: translateY(-6px);
      border-color: rgba(32,230,255,.4);
      box-shadow: 0 24px 64px rgba(0,0,0,.34), 0 0 24px rgba(32,230,255,.12);
    }

    .feature-icon {
      width: 52px;
      height: 52px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      color: #041827;
      background: linear-gradient(135deg, var(--cyan), var(--green));
      font-size: 24px;
      font-weight: 900;
      box-shadow: 0 14px 28px rgba(32,230,255,.18);
      margin-bottom: 18px;
    }

    .feature-card h3 {
      font-size: 21px;
      font-weight: 850;
      margin-bottom: 10px;
    }

    .feature-card p {
      color: var(--muted);
      margin-bottom: 18px;
      font-size: 15px;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      color: var(--cyan);
      font-weight: 800;
    }

    .card-link:hover {
      color: var(--green);
      transform: translateX(3px);
    }

    .event-banner {
      position: relative;
      border-radius: 34px;
      overflow: hidden;
      min-height: 410px;
      display: flex;
      align-items: flex-end;
      background:
        linear-gradient(90deg, rgba(6,26,47,.96) 0%, rgba(6,26,47,.72) 52%, rgba(6,26,47,.44) 100%),
        url("/assets/images/coverpic/cover-1.webp") center/cover no-repeat;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,.13);
    }

    .event-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 80% 30%, rgba(32,230,255,.18), transparent 30%),
        linear-gradient(0deg, rgba(6,26,47,.65), transparent 55%);
      pointer-events: none;
    }

    .banner-content {
      position: relative;
      z-index: 1;
      max-width: 680px;
      padding: 42px;
    }

    .banner-content h2 {
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.18;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .banner-content p {
      color: var(--muted);
      font-size: 17px;
      margin-bottom: 22px;
    }

    .banner-stats {
      display: grid;
      grid-template-columns: repeat(3, minmax(0,1fr));
      gap: 14px;
      margin: 24px 0;
    }

    .stat-box {
      padding: 15px;
      border-radius: 18px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.08);
    }

    .stat-box strong {
      display: block;
      color: var(--cyan);
      font-size: 24px;
      line-height: 1.2;
      font-weight: 900;
    }

    .stat-box span {
      color: var(--subtle);
      font-size: 13px;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 18px;
      counter-reset: step;
    }

    .step-card {
      position: relative;
      padding: 24px;
      min-height: 210px;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(255,255,255,.12);
      background: linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.055));
      overflow: hidden;
    }

    .step-card::before {
      counter-increment: step;
      content: "0" counter(step);
      position: absolute;
      right: 18px;
      top: 10px;
      font-size: 54px;
      line-height: 1;
      font-weight: 950;
      color: rgba(32,230,255,.12);
    }

    .step-card h3 {
      position: relative;
      z-index: 1;
      font-size: 20px;
      font-weight: 850;
      margin-bottom: 10px;
    }

    .step-card p {
      position: relative;
      z-index: 1;
      color: var(--muted);
      margin: 0;
      font-size: 15px;
    }

    .faq-wrap {
      padding: 14px;
    }

    .accordion {
      --bs-accordion-bg: transparent;
      --bs-accordion-border-color: transparent;
      --bs-accordion-btn-focus-box-shadow: none;
    }

    .accordion-item {
      margin-bottom: 12px;
      color: var(--text);
      border: 1px solid rgba(255,255,255,.11) !important;
      border-radius: 20px !important;
      background: rgba(6,26,47,.36) !important;
      overflow: hidden;
    }

    .accordion-item:last-child {
      margin-bottom: 0;
    }

    .accordion-button {
      padding: 20px 22px;
      color: var(--text);
      background: transparent;
      font-weight: 850;
      font-size: 16px;
      box-shadow: none !important;
    }

    .accordion-button::after {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background-image: none;
      background-color: rgba(32,230,255,.12);
      border: 1px solid rgba(32,230,255,.24);
      content: "+";
      color: var(--cyan);
      display: grid;
      place-items: center;
      font-weight: 900;
      transform: none;
      text-align: center;
      line-height: 26px;
    }

    .accordion-button:not(.collapsed) {
      color: var(--cyan);
      background: rgba(32,230,255,.06);
    }

    .accordion-button:not(.collapsed)::after {
      content: "−";
      transform: none;
      background-color: rgba(45,211,111,.14);
      border-color: rgba(45,211,111,.3);
      color: var(--green);
    }

    .accordion-body {
      padding: 0 22px 22px;
      color: var(--muted);
      line-height: 1.85;
      font-size: 15px;
    }

    .cta-panel {
      position: relative;
      padding: 42px;
      overflow: hidden;
      background:
        linear-gradient(145deg, rgba(11,77,140,.48), rgba(255,255,255,.07)),
        url("/assets/images/coverpic/cover-7.webp") right center/cover no-repeat;
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(6,26,47,.96), rgba(6,26,47,.76), rgba(6,26,47,.62));
      pointer-events: none;
    }

    .cta-panel > .row {
      position: relative;
      z-index: 1;
    }

    .cta-panel h2 {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.2;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .cta-panel p {
      color: var(--muted);
      font-size: 17px;
      margin-bottom: 22px;
    }

    .form-control,
    .form-select {
      min-height: 50px;
      color: var(--text);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 16px;
      background-color: rgba(6,26,47,.66);
      box-shadow: none !important;
    }

    textarea.form-control {
      min-height: 118px;
      resize: vertical;
    }

    .form-control::placeholder {
      color: rgba(201,215,232,.56);
    }

    .form-control:focus,
    .form-select:focus {
      color: var(--text);
      border-color: rgba(32,230,255,.68);
      background-color: rgba(6,26,47,.78);
      box-shadow: 0 0 0 4px rgba(32,230,255,.1) !important;
    }

    .form-select {
      background-image:
        linear-gradient(45deg, transparent 50%, var(--cyan) 50%),
        linear-gradient(135deg, var(--cyan) 50%, transparent 50%);
      background-position:
        calc(100% - 20px) 22px,
        calc(100% - 14px) 22px;
      background-size: 6px 6px, 6px 6px;
      background-repeat: no-repeat;
    }

    .form-label {
      color: rgba(245,250,255,.86);
      font-weight: 750;
      margin-bottom: 8px;
    }

    .site-footer {
      position: relative;
      padding: 70px 0 30px;
      background:
        radial-gradient(circle at 15% 0%, rgba(32,230,255,.12), transparent 28%),
        linear-gradient(180deg, #061A2F, #041321);
      border-top: 1px solid rgba(255,255,255,.11);
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 16px;
    }

    .footer-text {
      color: var(--muted);
      margin-bottom: 18px;
      max-width: 390px;
    }

    .footer-contact {
      display: grid;
      gap: 8px;
      color: var(--subtle);
      font-size: 14px;
    }

    .footer-title {
      margin-bottom: 16px;
      color: var(--text);
      font-size: 16px;
      font-weight: 850;
    }

    .footer-links {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: var(--subtle);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--cyan);
      padding-left: 4px;
    }

    .footer-bottom {
      margin-top: 44px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.1);
      display: grid;
      place-items: center;
      gap: 8px;
      text-align: center;
      color: rgba(201,215,232,.72);
      font-size: 13px;
    }

    .record-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }

    .record-links a {
      color: rgba(201,215,232,.78);
    }

    .record-links a:hover {
      color: var(--cyan);
    }

    @media (max-width: 1199.98px) {
      .nav-link {
        padding: 10px 9px !important;
        font-size: 13px;
      }

      .search-box {
        min-width: 160px;
      }

      .steps {
        grid-template-columns: repeat(2, minmax(0,1fr));
      }
    }

    @media (max-width: 991.98px) {
      .site-header .navbar {
        padding: 12px 0;
      }

      .navbar-collapse {
        margin-top: 14px;
        padding: 18px;
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 24px;
        background: rgba(6,26,47,.94);
        box-shadow: var(--shadow-soft);
      }

      .navbar-nav {
        align-items: stretch;
        gap: 6px;
      }

      .nav-link {
        padding: 12px 14px !important;
      }

      .nav-actions {
        margin: 14px 0 0;
        align-items: stretch;
        flex-direction: column;
      }

      .search-box {
        width: 100%;
      }

      .btn-glow {
        width: 100%;
      }

      .hero {
        min-height: auto;
        padding-top: 132px;
      }

      .live-board {
        margin-top: 36px;
      }

      .section {
        padding: 76px 0;
      }

      .event-banner {
        min-height: 370px;
      }
    }

    @media (max-width: 767.98px) {
      .hero {
        padding: 122px 0 68px;
      }

      .hero-title {
        font-size: 36px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-actions .btn-primary-glow,
      .hero-actions .btn-ghost {
        width: 100%;
      }

      .board-head,
      .group-head,
      .board-foot {
        flex-direction: column;
        align-items: flex-start;
      }

      .score-row,
      .match-score {
        grid-template-columns: 1fr;
        text-align: left;
      }

      .team.away,
      .club.away {
        justify-content: flex-start;
        text-align: left;
      }

      .score,
      .score-num {
        text-align: left;
        min-width: 0;
      }

      .filter-panel {
        align-items: stretch;
      }

      .filter-tabs,
      .filter-date {
        width: 100%;
      }

      .filter-tab {
        flex: 1 1 auto;
        text-align: center;
      }

      .banner-content {
        padding: 30px;
      }

      .banner-stats,
      .steps {
        grid-template-columns: 1fr;
      }

      .cta-panel {
        padding: 28px;
      }

      .section {
        padding: 64px 0;
      }

      .site-footer {
        padding-top: 58px;
      }
    }

    @media (max-width: 575.98px) {
      .navbar-brand span:last-child {
        font-size: 15px;
      }

      .logo-mark {
        width: 34px;
        height: 34px;
      }

      .hero-title {
        font-size: 32px;
      }

      .tag-row {
        gap: 8px;
      }

      .tag {
        font-size: 12px;
      }

      .live-board,
      .match-group,
      .feature-card,
      .faq-wrap {
        border-radius: 20px;
      }

      .match-group {
        padding: 20px;
      }

      .match-card {
        margin-left: 22px;
      }

      .timeline-list::before {
        left: 8px;
      }

      .match-card::before {
        left: -20px;
      }

      .event-banner {
        border-radius: 24px;
      }

      .accordion-button {
        padding: 18px;
        font-size: 15px;
      }

      .accordion-body {
        padding: 0 18px 18px;
      }

      .record-links {
        gap: 6px;
      }
    }

/* roulang page: category3 */
:root{
      --night:#061A2F;
      --night-2:#08233f;
      --blue:#0B4D8C;
      --cyan:#20E6FF;
      --green:#2DD36F;
      --orange:#FFB545;
      --text:#F5FAFF;
      --muted:#C9D7E8;
      --sub:#8EA6BF;
      --line:rgba(255,255,255,.12);
      --glass:rgba(255,255,255,.09);
      --glass-2:rgba(255,255,255,.14);
      --shadow:0 22px 70px rgba(0,0,0,.34);
      --shadow-soft:0 14px 42px rgba(0,0,0,.24);
      --radius:26px;
      --radius-sm:18px;
      --container:1200px;
      --trans:.24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      background:
        radial-gradient(circle at 15% 8%, rgba(32,230,255,.18), transparent 32%),
        radial-gradient(circle at 82% 20%, rgba(45,211,111,.13), transparent 28%),
        linear-gradient(145deg,#041423 0%, var(--night) 38%, #082844 100%);
      color:var(--muted);
      line-height:1.75;
      overflow-x:hidden;
    }
    body::before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      z-index:-2;
      background:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.75), transparent 78%);
    }
    a{color:inherit;text-decoration:none;transition:color var(--trans),border-color var(--trans),background var(--trans),transform var(--trans)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    input,textarea,select{outline:none}
    .container{max-width:var(--container)}
    .section-pad{padding:96px 0}
    .section-heading{margin-bottom:34px}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border:1px solid rgba(32,230,255,.25);
      border-radius:999px;
      color:var(--cyan);
      background:rgba(32,230,255,.08);
      font-size:13px;
      letter-spacing:.04em;
      margin-bottom:16px;
    }
    .eyebrow::before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:var(--green);
      box-shadow:0 0 16px rgba(45,211,111,.9);
    }
    h1,h2,h3,h4{color:var(--text);font-weight:800;line-height:1.16;margin:0}
    h1{font-size:clamp(34px,5vw,58px);letter-spacing:-.04em}
    h2{font-size:clamp(28px,3.6vw,42px);letter-spacing:-.03em}
    h3{font-size:22px}
    p{margin:0}
    .lead-text{font-size:18px;color:var(--muted);max-width:780px}
    .site-header{
      position:fixed;
      top:0;left:0;right:0;
      z-index:1000;
      transition:background var(--trans),box-shadow var(--trans),border-color var(--trans);
    }
    .site-header .navbar{
      min-height:78px;
      background:rgba(5,20,38,.52);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.12);
      box-shadow:0 12px 38px rgba(0,0,0,.22);
      padding:0;
    }
    .site-header.is-scrolled .navbar{
      background:rgba(4,18,32,.92);
      box-shadow:0 18px 50px rgba(0,0,0,.32);
    }
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:11px;
      color:var(--text)!important;
      font-weight:800;
      letter-spacing:-.02em;
      white-space:nowrap;
    }
    .logo-mark{
      width:38px;height:38px;border-radius:14px;
      display:inline-flex;align-items:center;justify-content:center;
      background:linear-gradient(135deg,var(--cyan),var(--green));
      color:#052033;
      font-weight:900;
      box-shadow:0 0 24px rgba(32,230,255,.4);
    }
    .navbar-nav{align-items:center;gap:2px}
    .nav-link{
      position:relative;
      color:rgba(245,250,255,.78)!important;
      font-size:14px;
      padding:27px 12px!important;
      font-weight:650;
    }
    .nav-link::after{
      content:"";
      position:absolute;
      left:12px;right:12px;bottom:18px;
      height:2px;border-radius:2px;
      background:linear-gradient(90deg,var(--cyan),var(--green));
      transform:scaleX(0);
      transform-origin:left;
      transition:transform var(--trans);
    }
    .nav-link:hover,.nav-link.active{color:var(--text)!important}
    .nav-link:hover::after,.nav-link.active::after{transform:scaleX(1)}
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
      margin-left:18px;
    }
    .search-box{
      height:42px;
      min-width:190px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 12px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:999px;
      background:rgba(255,255,255,.07);
      color:var(--sub);
    }
    .search-box input{
      width:128px;
      border:0;background:transparent;color:var(--text);
      font-size:14px;
    }
    .search-box input::placeholder{color:rgba(201,215,232,.62)}
    .search-box:focus-within{
      border-color:rgba(32,230,255,.65);
      box-shadow:0 0 0 4px rgba(32,230,255,.12);
    }
    .btn-glow,.btn-ghost{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:13px 22px;
      font-weight:800;
      border:1px solid transparent;
      transition:transform var(--trans),box-shadow var(--trans),background var(--trans),border-color var(--trans);
      white-space:nowrap;
    }
    .btn-glow{
      color:#032033;
      background:linear-gradient(135deg,var(--cyan),#38bdf8 52%,var(--green));
      box-shadow:0 0 28px rgba(32,230,255,.25);
    }
    .btn-glow:hover{
      color:#021523;
      transform:translateY(-3px);
      box-shadow:0 0 38px rgba(32,230,255,.42);
    }
    .btn-ghost{
      color:var(--text);
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.18);
    }
    .btn-ghost:hover{
      color:var(--cyan);
      transform:translateY(-3px);
      border-color:rgba(32,230,255,.5);
      background:rgba(32,230,255,.1);
    }
    .navbar-toggler{
      border:1px solid rgba(255,255,255,.18);
      border-radius:14px;
      padding:10px;
      box-shadow:none!important;
    }
    .navbar-toggler-icon{
      filter:invert(1) grayscale(1) brightness(1.7);
    }
    .hero{
      position:relative;
      min-height:760px;
      padding:150px 0 92px;
      overflow:hidden;
      background:
        linear-gradient(90deg,rgba(6,26,47,.94),rgba(6,26,47,.64),rgba(6,26,47,.92)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:auto -15% -30% -15%;
      height:420px;
      background:radial-gradient(ellipse at center,rgba(32,230,255,.16),transparent 66%);
      pointer-events:none;
    }
    .hero::after{
      content:"3 1 0 2 4 2 1 5";
      position:absolute;
      right:4%;
      top:18%;
      color:rgba(32,230,255,.08);
      font-size:86px;
      font-weight:900;
      letter-spacing:.12em;
      transform:rotate(-8deg);
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:1}
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin:26px 0 32px;
    }
    .hero-tag{
      padding:9px 13px;
      border-radius:999px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      color:var(--muted);
      font-size:14px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:14px}
    .rank-board{
      position:relative;
      padding:24px;
      border-radius:32px;
      background:linear-gradient(150deg,rgba(255,255,255,.14),rgba(255,255,255,.06));
      border:1px solid rgba(255,255,255,.16);
      box-shadow:var(--shadow);
      backdrop-filter:blur(20px);
      overflow:hidden;
    }
    .rank-board::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(125deg,rgba(32,230,255,.14),transparent 36%,rgba(45,211,111,.12));
      pointer-events:none;
    }
    .rank-board > *{position:relative;z-index:1}
    .board-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:16px;
      margin-bottom:20px;
    }
    .board-title{font-weight:800;color:var(--text);font-size:20px}
    .board-season{color:var(--sub);font-size:13px}
    .league-tabs{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-bottom:18px;
    }
    .league-tab{
      border:1px solid rgba(255,255,255,.13);
      background:rgba(255,255,255,.07);
      color:var(--muted);
      padding:7px 12px;
      border-radius:999px;
      font-size:13px;
      font-weight:750;
    }
    .league-tab.active{
      color:#042135;
      background:linear-gradient(135deg,var(--cyan),var(--green));
      border-color:transparent;
    }
    .standing-row{
      display:grid;
      grid-template-columns:44px 1fr 60px 80px 86px;
      gap:12px;
      align-items:center;
      padding:14px 12px;
      border-radius:18px;
      background:rgba(0,0,0,.16);
      border:1px solid rgba(255,255,255,.08);
      margin-bottom:10px;
      transition:transform var(--trans),border-color var(--trans),background var(--trans);
    }
    .standing-row:hover{
      transform:translateX(4px);
      border-color:rgba(32,230,255,.35);
      background:rgba(32,230,255,.07);
    }
    .rank-no{
      width:34px;height:34px;
      display:flex;align-items:center;justify-content:center;
      border-radius:12px;
      background:rgba(32,230,255,.13);
      color:var(--cyan);
      font-weight:900;
    }
    .team-name{color:var(--text);font-weight:800}
    .team-form{font-size:13px;color:var(--sub)}
    .points{
      color:var(--cyan);
      font-weight:900;
      font-size:24px;
      text-align:right;
      text-shadow:0 0 18px rgba(32,230,255,.35);
    }
    .trend-up{color:var(--green);font-weight:850;text-align:center}
    .trend-down{color:#ff7b7b;font-weight:850;text-align:center}
    .goal-diff{color:var(--muted);text-align:right;font-weight:750}
    .section-dark{
      position:relative;
      background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.015));
      border-top:1px solid rgba(255,255,255,.08);
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .glass-card{
      height:100%;
      border-radius:var(--radius);
      background:linear-gradient(145deg,var(--glass-2),rgba(255,255,255,.055));
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      backdrop-filter:blur(18px);
      padding:26px;
      transition:transform var(--trans),border-color var(--trans),box-shadow var(--trans);
    }
    .glass-card:hover{
      transform:translateY(-6px);
      border-color:rgba(32,230,255,.42);
      box-shadow:0 24px 70px rgba(0,0,0,.34),0 0 34px rgba(32,230,255,.12);
    }
    .stat-icon{
      width:50px;height:50px;border-radius:18px;
      display:flex;align-items:center;justify-content:center;
      background:rgba(32,230,255,.12);
      border:1px solid rgba(32,230,255,.26);
      color:var(--cyan);
      font-size:22px;
      margin-bottom:18px;
    }
    .data-value{
      font-size:34px;
      line-height:1;
      color:var(--text);
      font-weight:900;
      margin:16px 0 8px;
    }
    .data-note{color:var(--sub);font-size:14px}
    .progress-track{
      height:9px;
      border-radius:999px;
      background:rgba(255,255,255,.09);
      overflow:hidden;
      margin-top:18px;
    }
    .progress-bar-custom{
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--cyan),var(--green));
      box-shadow:0 0 16px rgba(32,230,255,.45);
    }
    .table-panel{
      border-radius:30px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.14);
      background:rgba(255,255,255,.075);
      box-shadow:var(--shadow-soft);
    }
    .table-panel-header{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:18px;
      padding:24px;
      border-bottom:1px solid rgba(255,255,255,.11);
      background:rgba(255,255,255,.05);
    }
    .table-panel-header h3{font-size:24px}
    .nice-table{
      width:100%;
      border-collapse:separate;
      border-spacing:0;
      margin:0;
      color:var(--muted);
    }
    .nice-table th{
      color:var(--sub);
      font-size:13px;
      font-weight:800;
      letter-spacing:.03em;
      padding:15px 18px;
      background:rgba(0,0,0,.18);
      border-bottom:1px solid rgba(255,255,255,.08);
      white-space:nowrap;
    }
    .nice-table td{
      padding:17px 18px;
      border-bottom:1px solid rgba(255,255,255,.075);
      vertical-align:middle;
      white-space:nowrap;
    }
    .nice-table tr:last-child td{border-bottom:0}
    .nice-table tbody tr{transition:background var(--trans)}
    .nice-table tbody tr:hover{background:rgba(32,230,255,.06)}
    .club-cell{
      display:flex;
      align-items:center;
      gap:12px;
      color:var(--text);
      font-weight:850;
    }
    .club-badge{
      width:30px;height:30px;border-radius:11px;
      display:inline-flex;align-items:center;justify-content:center;
      background:linear-gradient(135deg,rgba(32,230,255,.28),rgba(45,211,111,.22));
      border:1px solid rgba(255,255,255,.12);
      color:var(--cyan);
      font-size:13px;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:58px;
      padding:5px 9px;
      border-radius:999px;
      font-size:12px;
      font-weight:850;
      border:1px solid rgba(255,255,255,.12);
    }
    .badge-rise{color:var(--green);background:rgba(45,211,111,.11)}
    .badge-stable{color:var(--cyan);background:rgba(32,230,255,.1)}
    .badge-watch{color:var(--orange);background:rgba(255,181,69,.12)}
    .split-feature{
      border-radius:34px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.14);
      background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.055));
      box-shadow:var(--shadow);
    }
    .feature-image{
      min-height:100%;
      background:
        linear-gradient(135deg,rgba(6,26,47,.2),rgba(6,26,47,.78)),
        url("/assets/images/coverpic/cover-7.webp") center/cover no-repeat;
      position:relative;
    }
    .feature-image::after{
      content:"积分 · 排名 · 走势";
      position:absolute;
      left:24px;
      bottom:24px;
      color:rgba(245,250,255,.9);
      font-weight:900;
      font-size:28px;
      text-shadow:0 10px 28px rgba(0,0,0,.45);
    }
    .feature-body{padding:36px}
    .guide-list{
      display:grid;
      gap:15px;
      margin-top:24px;
    }
    .guide-item{
      display:flex;
      gap:14px;
      padding:16px;
      border-radius:20px;
      background:rgba(0,0,0,.15);
      border:1px solid rgba(255,255,255,.09);
    }
    .guide-num{
      flex:0 0 34px;
      width:34px;height:34px;border-radius:12px;
      display:flex;align-items:center;justify-content:center;
      color:#052033;
      font-weight:900;
      background:linear-gradient(135deg,var(--cyan),var(--green));
    }
    .guide-item strong{display:block;color:var(--text);margin-bottom:3px}
    .timeline{
      position:relative;
      display:grid;
      gap:18px;
      padding-left:22px;
    }
    .timeline::before{
      content:"";
      position:absolute;
      left:6px;top:8px;bottom:8px;
      width:2px;
      background:linear-gradient(var(--cyan),var(--green),rgba(255,255,255,.08));
      border-radius:2px;
    }
    .timeline-card{
      position:relative;
      padding:22px;
      border-radius:24px;
      background:rgba(255,255,255,.075);
      border:1px solid rgba(255,255,255,.11);
      transition:transform var(--trans),border-color var(--trans);
    }
    .timeline-card::before{
      content:"";
      position:absolute;
      left:-22px;top:28px;
      width:13px;height:13px;border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 18px rgba(32,230,255,.7);
    }
    .timeline-card:hover{
      transform:translateY(-4px);
      border-color:rgba(32,230,255,.36);
    }
    .timeline-card h3{font-size:20px;margin-bottom:8px}
    .cta-panel{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      padding:42px;
      background:
        linear-gradient(135deg,rgba(11,77,140,.78),rgba(6,26,47,.94)),
        url("/assets/images/coverpic/cover-10.webp") center/cover no-repeat;
      border:1px solid rgba(32,230,255,.22);
      box-shadow:var(--shadow);
    }
    .cta-panel::before{
      content:"";
      position:absolute;
      width:260px;height:260px;
      right:-70px;top:-80px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(32,230,255,.28),transparent 70%);
    }
    .cta-panel > *{position:relative;z-index:1}
    .form-control,.form-select{
      background:rgba(4,18,32,.58)!important;
      border:1px solid rgba(255,255,255,.14)!important;
      color:var(--text)!important;
      border-radius:16px!important;
      padding:13px 15px!important;
      box-shadow:none!important;
    }
    .form-control::placeholder{color:rgba(201,215,232,.56)}
    .form-control:focus,.form-select:focus{
      border-color:rgba(32,230,255,.7)!important;
      box-shadow:0 0 0 4px rgba(32,230,255,.12)!important;
    }
    .form-select option{background:#071d33;color:#fff}
    .faq-wrap .accordion{display:grid;gap:14px}
    .accordion-item{
      background:linear-gradient(145deg,rgba(255,255,255,.1),rgba(255,255,255,.045))!important;
      border:1px solid rgba(255,255,255,.12)!important;
      border-radius:22px!important;
      overflow:hidden;
      box-shadow:0 12px 36px rgba(0,0,0,.18);
    }
    .accordion-button{
      background:transparent!important;
      color:var(--text)!important;
      font-weight:800;
      padding:22px 24px;
      box-shadow:none!important;
      line-height:1.45;
    }
    .accordion-button::after{
      filter:invert(1);
      opacity:.75;
    }
    .accordion-button:not(.collapsed){
      color:var(--cyan)!important;
      border-bottom:1px solid rgba(255,255,255,.09);
    }
    .accordion-body{
      padding:22px 24px 26px;
      color:var(--muted);
      line-height:1.8;
    }
    .site-footer{
      background:#041424;
      border-top:1px solid rgba(255,255,255,.1);
      padding:70px 0 26px;
      color:var(--muted);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:12px;
      color:var(--text);
      font-weight:900;
      font-size:20px;
      margin-bottom:16px;
    }
    .footer-text{color:var(--sub);max-width:390px;margin-bottom:18px}
    .footer-contact{
      display:grid;
      gap:8px;
      color:rgba(201,215,232,.72);
      font-size:14px;
    }
    .footer-title{
      font-size:17px;
      margin-bottom:16px;
      color:var(--text);
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:rgba(201,215,232,.76);
      font-size:14px;
    }
    .footer-links a:hover{
      color:var(--cyan);
      padding-left:4px;
    }
    .footer-bottom{
      margin-top:46px;
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.1);
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:8px;
      text-align:center;
      color:rgba(201,215,232,.7);
      font-size:13px;
    }
    .record-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:8px;
    }
    .record-links a:hover{color:var(--cyan)}
    @media (max-width:1199px){
      .nav-link{padding-left:8px!important;padding-right:8px!important;font-size:13px}
      .search-box{display:none}
      .standing-row{grid-template-columns:40px 1fr 52px 62px 72px}
    }
    @media (max-width:991px){
      .site-header .navbar{padding:12px 0;min-height:auto}
      .navbar-collapse{
        margin-top:14px;
        padding:16px;
        border:1px solid rgba(255,255,255,.13);
        border-radius:24px;
        background:rgba(5,20,38,.94);
        box-shadow:var(--shadow-soft);
      }
      .navbar-nav{align-items:stretch}
      .nav-link{padding:12px 10px!important;border-radius:14px}
      .nav-link::after{display:none}
      .nav-link.active,.nav-link:hover{background:rgba(32,230,255,.08)}
      .nav-actions{margin-left:0;margin-top:12px;align-items:stretch;flex-direction:column}
      .search-box{display:flex;width:100%}
      .search-box input{width:100%}
      .hero{min-height:auto;padding:132px 0 72px}
      .rank-board{margin-top:36px}
      .feature-image{min-height:320px}
      .section-pad{padding:76px 0}
    }
    @media (max-width:767px){
      h1{font-size:36px}
      .hero{padding-top:118px}
      .hero-actions .btn-glow,.hero-actions .btn-ghost{width:100%}
      .standing-row{
        grid-template-columns:38px 1fr 52px;
        gap:10px;
      }
      .standing-row .trend-up,.standing-row .trend-down,.standing-row .goal-diff{display:none}
      .table-responsive{border-radius:24px}
      .feature-body,.cta-panel{padding:26px}
      .table-panel-header{align-items:flex-start;flex-direction:column}
      .section-pad{padding:62px 0}
      .footer-links{gap:8px}
    }
    @media (max-width:520px){
      .navbar-brand span:last-child{font-size:15px}
      .logo-mark{width:34px;height:34px;border-radius:12px}
      .hero-tags{gap:8px}
      .hero-tag{font-size:13px;padding:7px 10px}
      .rank-board{padding:16px;border-radius:24px}
      .board-head{align-items:flex-start;flex-direction:column}
      .glass-card{padding:22px;border-radius:22px}
      .cta-panel{border-radius:24px}
      .record-links{font-size:12px}
    }

/* roulang page: category4 */
:root{
      --night:#061A2F;
      --night-2:#092640;
      --blue:#0B4D8C;
      --blue-2:#1168B3;
      --cyan:#20E6FF;
      --green:#2DD36F;
      --orange:#FFB545;
      --text:#F5FAFF;
      --muted:#C9D7E8;
      --sub:#8EA6BF;
      --line:rgba(255,255,255,.13);
      --glass:rgba(255,255,255,.09);
      --glass-2:rgba(255,255,255,.135);
      --shadow:0 22px 70px rgba(0,0,0,.34);
      --shadow-soft:0 16px 48px rgba(0,0,0,.24);
      --radius:26px;
      --radius-sm:18px;
      --container:1200px;
      --font:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      line-height:1.75;
      background:
        radial-gradient(circle at 14% 8%, rgba(32,230,255,.14), transparent 32%),
        radial-gradient(circle at 80% 18%, rgba(45,211,111,.12), transparent 28%),
        linear-gradient(145deg,#061A2F 0%,#08213A 44%,#061A2F 100%);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      z-index:-2;
      background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
      background-size:54px 54px;
      mask-image:linear-gradient(to bottom,rgba(0,0,0,.9),rgba(0,0,0,.2));
      pointer-events:none;
    }
    a{color:inherit;text-decoration:none;transition:.25s ease}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(32,230,255,.28);color:#fff}
    .container{max-width:var(--container)}
    .site-header{
      position:fixed;
      top:0;
      left:0;
      right:0;
      z-index:1030;
      background:rgba(5,20,38,.52);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(255,255,255,.12);
      box-shadow:0 12px 38px rgba(0,0,0,.22);
      transition:.28s ease;
    }
    .site-header.is-scrolled{
      background:rgba(6,26,47,.94);
      box-shadow:0 16px 44px rgba(0,0,0,.36);
    }
    .navbar{padding:14px 0}
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff!important;
      font-weight:800;
      letter-spacing:.2px;
      white-space:nowrap;
    }
    .logo-mark{
      width:38px;
      height:38px;
      border-radius:14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#042033;
      font-weight:900;
      background:linear-gradient(135deg,var(--cyan),var(--green));
      box-shadow:0 0 28px rgba(32,230,255,.32);
      position:relative;
      flex:0 0 auto;
    }
    .logo-mark:after{
      content:"";
      position:absolute;
      inset:7px;
      border:1px solid rgba(6,26,47,.35);
      border-radius:50%;
    }
    .navbar-nav{gap:4px;align-items:center}
    .nav-link{
      color:rgba(245,250,255,.78)!important;
      font-size:14px;
      font-weight:650;
      padding:10px 12px!important;
      border-radius:999px;
      position:relative;
    }
    .nav-link:hover,.nav-link:focus{
      color:#fff!important;
      background:rgba(32,230,255,.08);
    }
    .nav-link.active{
      color:var(--cyan)!important;
      background:rgba(32,230,255,.12);
    }
    .nav-link.active:after{
      content:"";
      position:absolute;
      left:50%;
      bottom:3px;
      width:18px;
      height:2px;
      border-radius:999px;
      transform:translateX(-50%);
      background:var(--cyan);
      box-shadow:0 0 12px var(--cyan);
    }
    .nav-actions{
      display:flex;
      gap:12px;
      align-items:center;
      margin-left:16px;
    }
    .search-box{
      height:42px;
      min-width:190px;
      display:flex;
      align-items:center;
      gap:8px;
      padding:0 13px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.07);
      color:var(--sub);
    }
    .search-box input{
      width:130px;
      border:0;
      outline:0;
      background:transparent;
      color:#fff;
      font-size:14px;
    }
    .search-box input::placeholder{color:rgba(201,215,232,.62)}
    .search-box:focus-within{
      border-color:rgba(32,230,255,.55);
      box-shadow:0 0 0 4px rgba(32,230,255,.08);
    }
    .btn-glow,.btn-ghost,.btn-panel{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:13px 22px;
      font-weight:800;
      border:1px solid transparent;
      transition:.25s ease;
      white-space:nowrap;
    }
    .btn-glow{
      color:#032033!important;
      background:linear-gradient(135deg,var(--cyan),var(--green));
      box-shadow:0 14px 34px rgba(32,230,255,.22);
    }
    .btn-glow:hover,.btn-glow:focus{
      transform:translateY(-2px);
      box-shadow:0 18px 48px rgba(32,230,255,.36);
      filter:saturate(1.12);
    }
    .btn-ghost{
      color:#fff;
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.18);
    }
    .btn-ghost:hover,.btn-ghost:focus{
      color:var(--cyan);
      border-color:rgba(32,230,255,.48);
      background:rgba(32,230,255,.1);
      transform:translateY(-2px);
    }
    .btn-panel{
      padding:10px 16px;
      color:#fff;
      background:rgba(11,77,140,.45);
      border-color:rgba(32,230,255,.25);
    }
    .btn-panel:hover{color:#061A2F;background:var(--cyan);transform:translateY(-2px)}
    .navbar-toggler{
      border:1px solid rgba(255,255,255,.18);
      border-radius:14px;
      padding:9px 11px;
      background:rgba(255,255,255,.08);
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(32,230,255,.12)}
    .navbar-toggler-icon{
      filter:invert(1) brightness(1.8);
      width:1.25em;
      height:1.25em;
    }

    main{position:relative}
    .page-hero{
      min-height:720px;
      padding:150px 0 90px;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(110deg,rgba(6,26,47,.96),rgba(6,26,47,.78) 45%,rgba(11,77,140,.48)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
    }
    .page-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 80% 20%, rgba(32,230,255,.22), transparent 26%),
        linear-gradient(90deg,rgba(45,211,111,.08) 1px,transparent 1px),
        linear-gradient(rgba(45,211,111,.08) 1px,transparent 1px);
      background-size:auto,80px 80px,80px 80px;
      opacity:.72;
      pointer-events:none;
    }
    .page-hero:after{
      content:"2026 3:1 1:1 2:0";
      position:absolute;
      right:-80px;
      bottom:40px;
      color:rgba(32,230,255,.06);
      font-size:120px;
      font-weight:900;
      letter-spacing:8px;
      white-space:nowrap;
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:1}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:7px 12px;
      border-radius:999px;
      color:var(--cyan);
      background:rgba(32,230,255,.11);
      border:1px solid rgba(32,230,255,.28);
      font-size:13px;
      font-weight:800;
      letter-spacing:.6px;
      margin-bottom:18px;
    }
    .eyebrow:before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--green);
      box-shadow:0 0 14px var(--green);
    }
    h1,h2,h3,p{margin-top:0}
    .hero-title{
      font-size:clamp(34px,5vw,58px);
      line-height:1.12;
      font-weight:900;
      margin-bottom:20px;
      letter-spacing:-1.6px;
    }
    .hero-title span{
      color:var(--cyan);
      text-shadow:0 0 22px rgba(32,230,255,.24);
    }
    .hero-lead{
      max-width:650px;
      color:var(--muted);
      font-size:18px;
      margin-bottom:28px;
    }
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:32px}
    .hero-tags{display:flex;flex-wrap:wrap;gap:10px}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:7px 11px;
      border-radius:999px;
      color:rgba(245,250,255,.88);
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      font-size:13px;
      font-weight:700;
    }
    .tag.hot{color:#2a1600;background:linear-gradient(135deg,var(--orange),#ffe09b)}
    .tag.green{color:#031f12;background:linear-gradient(135deg,var(--green),#98f4ba)}
    .feature-board{
      position:relative;
      padding:18px;
      border-radius:32px;
      border:1px solid rgba(255,255,255,.16);
      background:linear-gradient(155deg,rgba(255,255,255,.14),rgba(255,255,255,.06));
      backdrop-filter:blur(18px);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .feature-board:before{
      content:"";
      position:absolute;
      width:230px;height:230px;
      right:-70px;top:-70px;
      background:radial-gradient(circle,rgba(32,230,255,.25),transparent 64%);
      pointer-events:none;
    }
    .cover-shell{
      position:relative;
      border-radius:24px;
      overflow:hidden;
      min-height:280px;
      background:#0b2c49;
    }
    .cover-shell img{
      width:100%;
      height:100%;
      min-height:280px;
      object-fit:cover;
      opacity:.72;
      transform:scale(1.02);
    }
    .cover-overlay{
      position:absolute;
      inset:0;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      padding:24px;
      background:linear-gradient(to top,rgba(6,26,47,.96),rgba(6,26,47,.16));
    }
    .match-mini{
      margin-top:16px;
      display:grid;
      gap:12px;
    }
    .match-row{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:12px;
      padding:14px;
      border-radius:18px;
      background:rgba(6,26,47,.72);
      border:1px solid rgba(255,255,255,.12);
    }
    .team{font-weight:800;font-size:14px}
    .team.right{text-align:right}
    .score{
      min-width:66px;
      text-align:center;
      color:var(--cyan);
      font-size:24px;
      font-weight:900;
      text-shadow:0 0 16px rgba(32,230,255,.32);
    }
    .status{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:999px;
      padding:3px 9px;
      font-size:12px;
      font-weight:800;
      border:1px solid rgba(255,255,255,.13);
    }
    .status.live{color:#032112;background:var(--green)}
    .status.focus{color:#251300;background:var(--orange)}
    .status.wait{color:var(--cyan);background:rgba(32,230,255,.12)}

    .section{padding:96px 0;position:relative}
    .section-sm{padding:72px 0}
    .section-head{
      display:flex;
      align-items:end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:34px;
    }
    .section-kicker{
      color:var(--cyan);
      font-weight:900;
      letter-spacing:.8px;
      font-size:13px;
      margin-bottom:8px;
    }
    .section-title{
      font-size:clamp(28px,3.4vw,42px);
      line-height:1.18;
      font-weight:900;
      margin-bottom:0;
      letter-spacing:-.8px;
    }
    .section-desc{
      max-width:520px;
      color:var(--sub);
      margin-bottom:0;
    }
    .topic-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr .9fr;
      gap:22px;
    }
    .topic-card{
      position:relative;
      overflow:hidden;
      min-height:310px;
      border-radius:var(--radius);
      border:1px solid var(--line);
      background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.055));
      box-shadow:var(--shadow-soft);
      transition:.28s ease;
    }
    .topic-card.large{grid-row:span 2;min-height:644px}
    .topic-card:hover{
      transform:translateY(-6px);
      border-color:rgba(32,230,255,.46);
      box-shadow:0 24px 72px rgba(32,230,255,.13),var(--shadow);
    }
    .topic-card img{
      width:100%;
      height:100%;
      position:absolute;
      inset:0;
      object-fit:cover;
      opacity:.62;
      transition:.35s ease;
    }
    .topic-card:hover img{transform:scale(1.06);opacity:.75}
    .topic-card:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(to top,rgba(6,26,47,.98),rgba(6,26,47,.38),rgba(6,26,47,.08));
    }
    .topic-body{
      position:absolute;
      inset:auto 0 0 0;
      z-index:1;
      padding:24px;
    }
    .topic-card.large .topic-body{padding:32px}
    .topic-title{
      font-size:24px;
      line-height:1.25;
      font-weight:900;
      margin:12px 0 10px;
    }
    .topic-card.large .topic-title{font-size:34px}
    .topic-text{color:var(--muted);margin-bottom:16px}
    .topic-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      color:var(--sub);
      font-size:13px;
    }

    .focus-wrap{
      border-radius:34px;
      padding:28px;
      background:
        linear-gradient(135deg,rgba(11,77,140,.62),rgba(6,26,47,.84)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      border:1px solid rgba(255,255,255,.14);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .focus-wrap:before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 18% 20%,rgba(32,230,255,.18),transparent 30%);
      pointer-events:none;
    }
    .focus-wrap > *{position:relative;z-index:1}
    .focus-card{
      height:100%;
      padding:26px;
      border-radius:24px;
      background:rgba(255,255,255,.09);
      border:1px solid rgba(255,255,255,.13);
      backdrop-filter:blur(14px);
    }
    .duel{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      margin:22px 0;
    }
    .club{
      flex:1;
      min-width:0;
      padding:16px;
      border-radius:20px;
      background:rgba(6,26,47,.62);
      border:1px solid rgba(255,255,255,.12);
      text-align:center;
    }
    .club-mark{
      width:48px;height:48px;margin:0 auto 10px;
      display:flex;align-items:center;justify-content:center;
      border-radius:18px;
      color:#052033;
      background:linear-gradient(135deg,var(--cyan),var(--green));
      font-weight:900;
      box-shadow:0 0 24px rgba(32,230,255,.24);
    }
    .vs{
      color:var(--orange);
      font-size:22px;
      font-weight:900;
    }
    .focus-points{
      display:grid;
      gap:12px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .focus-points li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:var(--muted);
      padding:11px 0;
      border-bottom:1px solid rgba(255,255,255,.08);
    }
    .focus-points li:last-child{border-bottom:0}
    .focus-points li:before{
      content:"";
      width:9px;height:9px;
      margin-top:9px;
      border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 13px var(--cyan);
      flex:0 0 auto;
    }

    .guide-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }
    .guide-card{
      padding:24px;
      border-radius:var(--radius);
      background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.055));
      border:1px solid var(--line);
      box-shadow:var(--shadow-soft);
      transition:.28s ease;
      position:relative;
      overflow:hidden;
    }
    .guide-card:before{
      content:"";
      position:absolute;
      width:130px;height:130px;
      right:-50px;top:-50px;
      border-radius:50%;
      background:rgba(32,230,255,.12);
      transition:.28s ease;
    }
    .guide-card:hover{
      transform:translateY(-6px);
      border-color:rgba(32,230,255,.42);
    }
    .guide-card:hover:before{background:rgba(45,211,111,.16)}
    .guide-icon{
      width:52px;height:52px;
      display:flex;align-items:center;justify-content:center;
      border-radius:18px;
      background:rgba(32,230,255,.12);
      border:1px solid rgba(32,230,255,.22);
      color:var(--cyan);
      font-size:24px;
      margin-bottom:18px;
    }
    .guide-card h3{font-size:22px;font-weight:900;margin-bottom:10px}
    .guide-card p{color:var(--muted);margin-bottom:18px}
    .check-list{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .check-list li{
      display:flex;
      gap:9px;
      color:var(--sub);
      font-size:14px;
    }
    .check-list li:before{
      content:"✓";
      color:var(--green);
      font-weight:900;
    }

    .magazine-list{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:22px;
    }
    .mag-item{
      display:grid;
      grid-template-columns:170px 1fr;
      gap:18px;
      padding:16px;
      border-radius:24px;
      background:rgba(255,255,255,.085);
      border:1px solid rgba(255,255,255,.12);
      transition:.28s ease;
      overflow:hidden;
    }
    .mag-item:hover{
      transform:translateY(-5px);
      border-color:rgba(32,230,255,.42);
      background:rgba(255,255,255,.115);
    }
    .mag-img{
      min-height:150px;
      border-radius:18px;
      overflow:hidden;
      background:#0b2c49;
    }
    .mag-img img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:.35s ease;
    }
    .mag-item:hover .mag-img img{transform:scale(1.06)}
    .mag-content{padding:4px 0}
    .mag-content h3{
      font-size:20px;
      line-height:1.36;
      font-weight:900;
      margin:10px 0 8px;
    }
    .mag-content p{color:var(--muted);font-size:15px;margin-bottom:12px}
    .meta-line{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      align-items:center;
      color:var(--sub);
      font-size:13px;
    }

    .path-panel{
      border-radius:34px;
      padding:34px;
      background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.055));
      border:1px solid rgba(255,255,255,.13);
      box-shadow:var(--shadow-soft);
    }
    .path-steps{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      counter-reset:step;
    }
    .path-step{
      position:relative;
      padding:22px;
      border-radius:22px;
      background:rgba(6,26,47,.55);
      border:1px solid rgba(255,255,255,.11);
      min-height:210px;
    }
    .path-step:before{
      counter-increment:step;
      content:"0" counter(step);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:40px;height:40px;
      border-radius:14px;
      color:#032033;
      background:linear-gradient(135deg,var(--cyan),var(--green));
      font-weight:900;
      margin-bottom:16px;
    }
    .path-step h3{font-size:19px;font-weight:900;margin-bottom:8px}
    .path-step p{color:var(--muted);font-size:15px;margin-bottom:0}

    .accordion{display:grid;gap:14px}
    .accordion-item{
      color:var(--text);
      background:rgba(255,255,255,.085);
      border:1px solid rgba(255,255,255,.12)!important;
      border-radius:20px!important;
      overflow:hidden;
      box-shadow:none;
    }
    .accordion-button{
      color:var(--text);
      background:transparent!important;
      box-shadow:none!important;
      font-weight:850;
      padding:20px 22px;
    }
    .accordion-button:not(.collapsed){color:var(--cyan)}
    .accordion-button:focus{box-shadow:0 0 0 4px rgba(32,230,255,.12)!important}
    .accordion-button:after{
      width:28px;
      height:28px;
      border-radius:50%;
      background-color:rgba(32,230,255,.12);
      background-position:center;
      filter:invert(1);
    }
    .accordion-body{
      color:var(--muted);
      padding:0 22px 22px;
      line-height:1.85;
    }

    .cta-band{
      padding:44px;
      border-radius:34px;
      background:
        radial-gradient(circle at 78% 20%,rgba(255,181,69,.18),transparent 28%),
        linear-gradient(135deg,rgba(32,230,255,.14),rgba(45,211,111,.1),rgba(255,255,255,.055));
      border:1px solid rgba(255,255,255,.14);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .cta-band:after{
      content:"";
      position:absolute;
      right:40px;
      bottom:-48px;
      width:210px;height:210px;
      border:1px solid rgba(45,211,111,.24);
      border-radius:50%;
      box-shadow:0 0 0 34px rgba(45,211,111,.045);
    }
    .cta-band h2{font-size:clamp(28px,3.4vw,42px);font-weight:900;line-height:1.18;margin-bottom:14px}
    .cta-band p{color:var(--muted);max-width:700px;margin-bottom:24px}

    .site-footer{
      background:linear-gradient(180deg,rgba(6,26,47,.72),#041321);
      border-top:1px solid rgba(255,255,255,.12);
      padding:70px 0 26px;
      color:var(--muted);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-weight:900;
      font-size:20px;
      margin-bottom:16px;
    }
    .footer-text{color:var(--sub);max-width:360px}
    .footer-contact{
      display:grid;
      gap:8px;
      margin-top:18px;
      font-size:14px;
      color:var(--muted);
    }
    .footer-title{
      color:#fff;
      font-size:16px;
      font-weight:900;
      margin-bottom:16px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:10px;
    }
    .footer-links a{
      color:var(--sub);
      font-size:14px;
    }
    .footer-links a:hover{color:var(--cyan);padding-left:4px}
    .footer-bottom{
      margin-top:46px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.1);
      text-align:center;
      color:rgba(201,215,232,.78);
      font-size:13px;
      display:grid;
      gap:8px;
    }
    .record-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:8px;
    }
    .record-links a:hover{color:var(--cyan)}

    @media (max-width:1199px){
      .nav-actions{margin-left:8px}
      .search-box{display:none}
      .topic-grid{grid-template-columns:1fr 1fr}
      .topic-card.large{grid-row:auto;grid-column:span 2;min-height:460px}
      .path-steps{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991px){
      .navbar-collapse{
        margin-top:14px;
        padding:18px;
        border-radius:24px;
        background:rgba(6,26,47,.96);
        border:1px solid rgba(255,255,255,.12);
      }
      .navbar-nav{align-items:stretch}
      .nav-link{padding:12px 14px!important}
      .nav-link.active:after{display:none}
      .nav-actions{
        margin-left:0;
        margin-top:14px;
        align-items:stretch;
        flex-direction:column;
      }
      .search-box{display:flex;width:100%}
      .search-box input{width:100%}
      .page-hero{padding-top:132px;min-height:auto}
      .feature-board{margin-top:34px}
      .section{padding:76px 0}
      .section-head{align-items:flex-start;flex-direction:column}
      .guide-grid{grid-template-columns:1fr 1fr}
      .magazine-list{grid-template-columns:1fr}
    }
    @media (max-width:767px){
      .hero-actions .btn-glow,.hero-actions .btn-ghost{width:100%}
      .topic-grid{grid-template-columns:1fr}
      .topic-card,.topic-card.large{grid-column:auto;min-height:360px}
      .topic-card.large .topic-title{font-size:28px}
      .guide-grid{grid-template-columns:1fr}
      .path-steps{grid-template-columns:1fr}
      .focus-wrap,.path-panel,.cta-band{padding:22px;border-radius:26px}
      .duel{flex-direction:column}
      .vs{transform:rotate(90deg)}
      .mag-item{grid-template-columns:1fr}
      .mag-img{height:190px}
    }
    @media (max-width:575px){
      .navbar-brand span:last-child{font-size:15px}
      .logo-mark{width:34px;height:34px;border-radius:12px}
      .page-hero{padding:118px 0 64px}
      .hero-lead{font-size:16px}
      .hero-tags{gap:8px}
      .tag{font-size:12px}
      .match-row{grid-template-columns:1fr;gap:4px;text-align:center}
      .team.right{text-align:center}
      .section{padding:62px 0}
      .section-sm{padding:56px 0}
      .topic-body,.topic-card.large .topic-body{padding:20px}
      .footer-bottom{font-size:12px}
    }

/* roulang page: category5 */
:root{
      --night:#061A2F;
      --night-2:#071f3a;
      --blue:#0B4D8C;
      --blue-soft:#1769b3;
      --cyan:#20E6FF;
      --green:#2DD36F;
      --orange:#FFB545;
      --text:#F5FAFF;
      --muted:#C9D7E8;
      --sub:#8EA6BF;
      --line:rgba(255,255,255,.13);
      --glass:rgba(255,255,255,.09);
      --glass-2:rgba(255,255,255,.14);
      --shadow:0 22px 70px rgba(0,0,0,.34);
      --radius:26px;
      --radius-sm:18px;
      --container:1200px;
      --ease:all .28s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",sans-serif;
      color:var(--muted);
      line-height:1.75;
      background:
        radial-gradient(circle at 18% 7%, rgba(32,230,255,.18), transparent 28%),
        radial-gradient(circle at 82% 14%, rgba(45,211,111,.12), transparent 24%),
        linear-gradient(135deg, #041425 0%, var(--night) 42%, #08294a 100%);
      overflow-x:hidden;
    }
    body:before{
      content:"";
      position:fixed;
      inset:0;
      pointer-events:none;
      opacity:.18;
      background-image:
        linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
      background-size:44px 44px;
      mask-image:linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.2));
      z-index:-2;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(32,230,255,.35);color:#fff}
    .container{max-width:var(--container)}
    .section{padding:94px 0;position:relative}
    .section-tight{padding:70px 0}
    .section-head{margin-bottom:34px}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 13px;
      border:1px solid rgba(32,230,255,.28);
      border-radius:999px;
      color:var(--cyan);
      background:rgba(32,230,255,.08);
      font-size:13px;
      letter-spacing:.04em;
      margin-bottom:16px;
    }
    .eyebrow:before{
      content:"";
      width:7px;height:7px;border-radius:999px;background:var(--green);
      box-shadow:0 0 18px rgba(45,211,111,.9);
    }
    h1,h2,h3,h4{color:var(--text);line-height:1.18;margin:0}
    h1{font-size:clamp(34px,5vw,58px);font-weight:800;letter-spacing:-.03em}
    h2{font-size:clamp(28px,3.4vw,42px);font-weight:800;letter-spacing:-.02em}
    h3{font-size:22px;font-weight:750}
    p{margin:0}
    .lead{font-size:18px;color:var(--muted);max-width:760px}
    .site-header{
      position:fixed;
      inset:0 0 auto 0;
      z-index:1000;
      background:rgba(5,20,38,.52);
      border-bottom:1px solid var(--line);
      backdrop-filter:blur(18px);
      box-shadow:0 12px 38px rgba(0,0,0,.22);
      transition:var(--ease);
    }
    .site-header.is-scrolled{
      background:rgba(4,18,34,.92);
      box-shadow:0 16px 50px rgba(0,0,0,.36);
    }
    .navbar{padding:14px 0}
    .navbar-brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:var(--text)!important;
      font-weight:800;
      letter-spacing:-.01em;
      white-space:nowrap;
    }
    .logo-mark{
      width:38px;height:38px;border-radius:14px;
      display:inline-flex;align-items:center;justify-content:center;
      background:
        radial-gradient(circle at 30% 20%, #fff 0 5%, transparent 6%),
        linear-gradient(135deg, var(--green), var(--cyan) 58%, var(--blue));
      color:#05223a;
      font-weight:900;
      box-shadow:0 0 28px rgba(32,230,255,.35);
      flex:0 0 38px;
    }
    .navbar-nav{gap:2px;align-items:center}
    .nav-link{
      color:rgba(245,250,255,.78)!important;
      font-size:14px;
      font-weight:650;
      padding:11px 12px!important;
      border-radius:999px;
      position:relative;
    }
    .nav-link:hover,.nav-link:focus{
      color:var(--cyan)!important;
      background:rgba(32,230,255,.08);
    }
    .nav-link.active{
      color:#062035!important;
      background:linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow:0 0 24px rgba(32,230,255,.22);
    }
    .nav-actions{
      display:flex;
      align-items:center;
      gap:12px;
      margin-left:18px;
    }
    .search-box{
      display:flex;
      align-items:center;
      gap:8px;
      min-width:190px;
      padding:9px 13px;
      border:1px solid var(--line);
      border-radius:999px;
      background:rgba(255,255,255,.07);
      color:var(--sub);
    }
    .search-box input{
      width:135px;
      border:0;
      outline:0;
      background:transparent;
      color:var(--text);
      font-size:14px;
    }
    .search-box input::placeholder{color:rgba(201,215,232,.62)}
    .search-box:focus-within{
      border-color:rgba(32,230,255,.55);
      box-shadow:0 0 0 4px rgba(32,230,255,.1);
    }
    .btn-glow,.btn-ghost,.btn-soft{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      border:1px solid transparent;
      padding:13px 22px;
      font-weight:760;
      transition:var(--ease);
      white-space:nowrap;
    }
    .btn-glow{
      color:#042036;
      background:linear-gradient(135deg, var(--cyan), var(--green));
      box-shadow:0 12px 34px rgba(32,230,255,.24);
    }
    .btn-glow:hover{
      color:#031a2b;
      transform:translateY(-3px);
      box-shadow:0 18px 45px rgba(32,230,255,.38);
      filter:saturate(1.12);
    }
    .btn-ghost{
      color:var(--text);
      background:rgba(255,255,255,.07);
      border-color:rgba(255,255,255,.18);
    }
    .btn-ghost:hover{
      color:var(--cyan);
      border-color:rgba(32,230,255,.55);
      background:rgba(32,230,255,.09);
      transform:translateY(-3px);
    }
    .btn-soft{
      color:var(--cyan);
      background:rgba(32,230,255,.08);
      border-color:rgba(32,230,255,.22);
      padding:10px 16px;
      font-size:14px;
    }
    .btn-soft:hover{background:rgba(32,230,255,.16);color:#fff;border-color:rgba(32,230,255,.5)}
    .navbar-toggler{
      border:1px solid rgba(255,255,255,.18);
      border-radius:14px;
      padding:9px 11px;
      background:rgba(255,255,255,.08);
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(32,230,255,.16)}
    .navbar-toggler-icon{
      filter:invert(1) brightness(2);
      width:1.25em;height:1.25em;
    }

    .hero{
      min-height:720px;
      padding:150px 0 88px;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(90deg, rgba(6,26,47,.96), rgba(6,26,47,.72) 45%, rgba(6,26,47,.92)),
        url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 74% 28%, rgba(32,230,255,.24), transparent 24%),
        linear-gradient(120deg, transparent 0 45%, rgba(45,211,111,.08) 45% 46%, transparent 46% 100%);
      pointer-events:none;
    }
    .hero:after{
      content:"赛前 观察 资讯 看点";
      position:absolute;
      right:-50px;
      bottom:22px;
      color:rgba(255,255,255,.045);
      font-weight:900;
      font-size:92px;
      letter-spacing:.08em;
      white-space:nowrap;
      pointer-events:none;
    }
    .hero .container{position:relative;z-index:2}
    .hero-title span{color:var(--cyan);text-shadow:0 0 30px rgba(32,230,255,.36)}
    .hero-desc{font-size:18px;color:var(--muted);margin-top:20px;max-width:650px}
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
    .trust-row{display:flex;gap:10px;flex-wrap:wrap;margin-top:26px}
    .trust-pill{
      padding:9px 13px;
      border-radius:999px;
      color:rgba(245,250,255,.86);
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.13);
      font-size:13px;
    }
    .insight-board{
      position:relative;
      border:1px solid rgba(255,255,255,.14);
      border-radius:30px;
      background:linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.06));
      backdrop-filter:blur(20px);
      box-shadow:var(--shadow);
      padding:22px;
      overflow:hidden;
    }
    .insight-board:before{
      content:"";
      position:absolute;
      width:220px;height:220px;border-radius:50%;
      right:-80px;top:-80px;
      background:rgba(32,230,255,.18);
      filter:blur(4px);
    }
    .board-top{
      display:flex;justify-content:space-between;align-items:center;gap:14px;
      padding-bottom:18px;border-bottom:1px solid rgba(255,255,255,.12);
      position:relative;
    }
    .board-top strong{color:var(--text);font-size:18px}
    .live-dot{
      display:inline-flex;align-items:center;gap:8px;
      color:var(--green);
      font-size:13px;
      font-weight:700;
    }
    .live-dot:before{
      content:"";
      width:8px;height:8px;border-radius:50%;background:var(--green);
      box-shadow:0 0 16px rgba(45,211,111,.9);
    }
    .focus-match{
      margin-top:18px;
      padding:20px;
      border-radius:24px;
      background:rgba(4,18,34,.52);
      border:1px solid rgba(32,230,255,.18);
      position:relative;
    }
    .match-league{color:var(--sub);font-size:13px;margin-bottom:12px}
    .teams{display:flex;align-items:center;justify-content:space-between;gap:15px}
    .team{font-size:20px;font-weight:800;color:var(--text)}
    .score-mid{
      min-width:92px;text-align:center;
      color:var(--cyan);
      font-size:28px;
      font-weight:900;
      text-shadow:0 0 24px rgba(32,230,255,.48);
    }
    .analysis-list{display:grid;gap:12px;margin-top:16px}
    .analysis-item{
      display:flex;gap:12px;align-items:flex-start;
      padding:13px;
      border:1px solid rgba(255,255,255,.11);
      border-radius:18px;
      background:rgba(255,255,255,.06);
    }
    .analysis-icon{
      width:34px;height:34px;border-radius:12px;
      display:flex;align-items:center;justify-content:center;
      background:rgba(32,230,255,.12);
      color:var(--cyan);
      flex:0 0 34px;
    }
    .analysis-item b{display:block;color:var(--text);font-size:14px}
    .analysis-item span{display:block;color:var(--sub);font-size:13px;line-height:1.55}

    .glass-card{
      height:100%;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:linear-gradient(145deg, var(--glass-2), rgba(255,255,255,.055));
      box-shadow:0 18px 56px rgba(0,0,0,.25);
      backdrop-filter:blur(18px);
      transition:var(--ease);
      overflow:hidden;
    }
    .glass-card:hover{
      transform:translateY(-6px);
      border-color:rgba(32,230,255,.45);
      box-shadow:0 24px 70px rgba(0,0,0,.34), 0 0 30px rgba(32,230,255,.12);
    }
    .feature-strip{
      padding:22px;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .strip-item{
      padding:18px;
      border-radius:22px;
      background:rgba(255,255,255,.065);
      border:1px solid rgba(255,255,255,.12);
    }
    .strip-item .num{font-size:28px;font-weight:900;color:var(--cyan);line-height:1}
    .strip-item strong{display:block;color:var(--text);margin:10px 0 5px}
    .strip-item span{font-size:14px;color:var(--sub);display:block;line-height:1.6}

    .article-card{
      display:flex;
      flex-direction:column;
      height:100%;
    }
    .article-img{
      position:relative;
      height:220px;
      overflow:hidden;
      border-radius:var(--radius) var(--radius) 0 0;
    }
    .article-img img{
      width:100%;height:100%;object-fit:cover;
      transition:transform .45s ease;
    }
    .article-card:hover .article-img img{transform:scale(1.07)}
    .article-img:after{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(to top, rgba(6,26,47,.88), rgba(6,26,47,.05));
    }
    .tag{
      display:inline-flex;align-items:center;gap:6px;
      padding:7px 11px;border-radius:999px;
      background:rgba(32,230,255,.1);
      color:var(--cyan);
      border:1px solid rgba(32,230,255,.22);
      font-size:12px;
      font-weight:750;
    }
    .tag.orange{background:rgba(255,181,69,.12);color:var(--orange);border-color:rgba(255,181,69,.28)}
    .tag.green{background:rgba(45,211,111,.12);color:var(--green);border-color:rgba(45,211,111,.28)}
    .article-tag{
      position:absolute;
      left:18px;bottom:18px;
      z-index:2;
    }
    .article-body{padding:23px}
    .article-title{
      font-size:22px;
      margin-bottom:10px;
    }
    .article-summary{color:var(--muted);font-size:15px;margin-bottom:18px}
    .article-meta{
      display:flex;align-items:center;justify-content:space-between;gap:12px;
      color:var(--sub);
      font-size:13px;
      margin-top:auto;
      padding-top:16px;
      border-top:1px solid rgba(255,255,255,.1);
    }

    .category-panel{
      padding:26px;
      border-radius:28px;
      border:1px solid rgba(255,255,255,.13);
      background:
        linear-gradient(145deg, rgba(11,77,140,.26), rgba(255,255,255,.055));
      height:100%;
      position:relative;
      overflow:hidden;
    }
    .category-panel:after{
      content:"";
      position:absolute;
      right:-40px;bottom:-40px;width:150px;height:150px;border-radius:50%;
      border:28px solid rgba(45,211,111,.08);
    }
    .category-icon{
      width:52px;height:52px;border-radius:18px;
      display:flex;align-items:center;justify-content:center;
      background:linear-gradient(135deg, rgba(32,230,255,.2), rgba(45,211,111,.16));
      color:var(--cyan);
      font-size:24px;
      margin-bottom:18px;
    }
    .category-panel h3{margin-bottom:10px}
    .category-panel p{color:var(--sub);font-size:15px}
    .category-list{
      list-style:none;margin:18px 0 0;padding:0;
      display:grid;gap:9px;
      position:relative;z-index:2;
    }
    .category-list li{
      display:flex;gap:8px;align-items:flex-start;
      color:var(--muted);font-size:14px;
    }
    .category-list li:before{
      content:"";
      width:7px;height:7px;border-radius:50%;
      background:var(--green);
      margin-top:10px;
      box-shadow:0 0 14px rgba(45,211,111,.8);
      flex:0 0 7px;
    }

    .deep-card{
      border-radius:32px;
      overflow:hidden;
      border:1px solid rgba(255,255,255,.13);
      background:linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
      box-shadow:var(--shadow);
    }
    .deep-visual{
      min-height:100%;
      position:relative;
      background:
        linear-gradient(to bottom, rgba(6,26,47,.08), rgba(6,26,47,.84)),
        url('/assets/images/coverpic/cover-11.webp') center/cover no-repeat;
    }
    .deep-visual .floating-score{
      position:absolute;
      left:24px;bottom:24px;right:24px;
      padding:18px;
      border-radius:22px;
      background:rgba(6,26,47,.68);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(14px);
    }
    .floating-score span{color:var(--sub);font-size:13px}
    .floating-score b{display:block;color:var(--cyan);font-size:34px;line-height:1.1}
    .deep-content{padding:38px}
    .insight-points{
      display:grid;
      gap:14px;
      margin-top:24px;
    }
    .point-row{
      display:grid;
      grid-template-columns:46px 1fr;
      gap:14px;
      align-items:start;
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.06);
      border:1px solid rgba(255,255,255,.1);
    }
    .point-index{
      width:46px;height:46px;border-radius:16px;
      display:flex;align-items:center;justify-content:center;
      background:rgba(32,230,255,.11);
      color:var(--cyan);
      font-weight:900;
    }
    .point-row b{color:var(--text);display:block;margin-bottom:4px}
    .point-row span{color:var(--sub);font-size:14px}

    .timeline{
      position:relative;
      display:grid;
      gap:18px;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:18px;top:8px;bottom:8px;width:2px;
      background:linear-gradient(to bottom, var(--cyan), rgba(45,211,111,.3));
    }
    .timeline-item{
      position:relative;
      padding-left:54px;
    }
    .timeline-dot{
      position:absolute;
      left:6px;top:10px;
      width:26px;height:26px;border-radius:50%;
      background:var(--night);
      border:6px solid var(--cyan);
      box-shadow:0 0 24px rgba(32,230,255,.36);
    }
    .timeline-box{
      padding:20px;
      border-radius:22px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(255,255,255,.075);
    }
    .timeline-box time{color:var(--orange);font-weight:800;font-size:13px}
    .timeline-box h3{font-size:19px;margin:8px 0}
    .timeline-box p{color:var(--sub);font-size:15px}

    .subscribe-cta{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      padding:42px;
      border:1px solid rgba(32,230,255,.2);
      background:
        radial-gradient(circle at 80% 20%, rgba(32,230,255,.22), transparent 28%),
        linear-gradient(135deg, rgba(11,77,140,.56), rgba(6,26,47,.86));
      box-shadow:var(--shadow);
    }
    .subscribe-cta:before{
      content:"";
      position:absolute;inset:0;
      background:url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      opacity:.14;
      mix-blend-mode:screen;
    }
    .subscribe-cta > *{position:relative;z-index:2}
    .cta-form{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      margin-top:24px;
    }
    .form-control,.form-select{
      color:var(--text);
      background:rgba(6,26,47,.64);
      border:1px solid rgba(255,255,255,.14);
      border-radius:18px;
      padding:14px 16px;
      box-shadow:none!important;
    }
    textarea.form-control{min-height:116px;resize:vertical}
    .form-control::placeholder{color:rgba(201,215,232,.58)}
    .form-control:focus,.form-select:focus{
      background:rgba(6,26,47,.76);
      color:var(--text);
      border-color:rgba(32,230,255,.62);
      box-shadow:0 0 0 4px rgba(32,230,255,.11)!important;
    }
    .form-select option{background:#061A2F;color:#fff}
    .span-2{grid-column:span 2}

    .faq-wrap .accordion{display:grid;gap:14px}
    .accordion-item{
      border:1px solid rgba(255,255,255,.13)!important;
      background:rgba(255,255,255,.07)!important;
      border-radius:22px!important;
      overflow:hidden;
      backdrop-filter:blur(16px);
    }
    .accordion-button{
      color:var(--text)!important;
      background:transparent!important;
      padding:20px 22px;
      font-weight:800;
      box-shadow:none!important;
      gap:12px;
    }
    .accordion-button:before{
      content:"";
      width:10px;height:10px;border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 18px rgba(32,230,255,.8);
      flex:0 0 10px;
    }
    .accordion-button:after{
      filter:invert(1);
      opacity:.75;
    }
    .accordion-button:not(.collapsed){color:var(--cyan)!important}
    .accordion-body{
      color:var(--muted);
      padding:0 22px 22px 44px;
      line-height:1.8;
    }

    .site-footer{
      background:linear-gradient(180deg, rgba(6,26,47,.96), #03101d);
      border-top:1px solid rgba(255,255,255,.12);
      padding:70px 0 28px;
      position:relative;
    }
    .footer-brand{
      display:flex;align-items:center;gap:10px;
      color:var(--text);
      font-size:20px;
      font-weight:850;
      margin-bottom:16px;
    }
    .footer-text{color:var(--sub);max-width:370px;margin-bottom:18px}
    .footer-contact{display:grid;gap:7px;color:var(--sub);font-size:14px}
    .footer-title{
      font-size:16px;
      color:var(--text);
      margin-bottom:16px;
    }
    .footer-links{
      list-style:none;margin:0;padding:0;
      display:grid;gap:9px;
    }
    .footer-links a{
      color:var(--sub);
      font-size:14px;
    }
    .footer-links a:hover{color:var(--cyan);padding-left:4px}
    .footer-bottom{
      margin-top:42px;
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.1);
      text-align:center;
      color:rgba(201,215,232,.76);
      font-size:13px;
      display:grid;
      gap:8px;
    }
    .record-links{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:8px;
    }
    .record-links a{color:rgba(201,215,232,.82)}
    .record-links a:hover{color:var(--cyan)}

    @media (max-width:1199.98px){
      .navbar-brand span:last-child{font-size:16px}
      .nav-link{padding:10px 9px!important;font-size:13px}
      .search-box{display:none}
      .feature-strip{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991.98px){
      .navbar-collapse{
        margin-top:14px;
        padding:18px;
        border-radius:24px;
        background:rgba(4,18,34,.94);
        border:1px solid rgba(255,255,255,.12);
        box-shadow:0 18px 58px rgba(0,0,0,.38);
      }
      .navbar-nav{align-items:stretch}
      .nav-link{padding:12px 14px!important}
      .nav-actions{margin:16px 0 0;align-items:stretch;flex-direction:column}
      .search-box{display:flex;width:100%}
      .search-box input{width:100%}
      .hero{padding-top:132px;min-height:auto}
      .section{padding:76px 0}
      .deep-visual{min-height:360px}
    }
    @media (max-width:767.98px){
      h1{font-size:34px}
      .hero{padding:120px 0 64px}
      .hero-actions .btn-glow,.hero-actions .btn-ghost{width:100%}
      .section{padding:62px 0}
      .feature-strip{grid-template-columns:1fr;padding:18px}
      .teams{align-items:flex-start;flex-direction:column}
      .score-mid{text-align:left}
      .article-img{height:190px}
      .deep-content{padding:24px}
      .cta-form{grid-template-columns:1fr}
      .span-2{grid-column:auto}
      .subscribe-cta{padding:28px 20px;border-radius:26px}
      .footer-bottom{text-align:center}
    }
    @media (max-width:575.98px){
      .navbar{padding:10px 0}
      .logo-mark{width:34px;height:34px;border-radius:12px;flex-basis:34px}
      .navbar-brand{font-size:15px}
      .hero-desc,.lead{font-size:16px}
      .glass-card,.category-panel{border-radius:22px}
      .article-body{padding:20px}
      .article-title{font-size:20px}
      .point-row{grid-template-columns:1fr}
      .timeline-item{padding-left:46px}
      .record-links{gap:6px}
    }
