/* roulang page: index */
:root {
      --color-primary: #18A058;
      --color-primary-dark: #128447;
      --color-primary-soft: #E8F6EE;
      --color-accent: #FF9F1C;
      --color-teal: #0E7C66;
      --color-text: #151816;
      --color-text-2: #3A403B;
      --color-muted: #737B74;
      --color-bg: #F7F8F3;
      --color-bg-2: #EEF3EA;
      --color-card: #FFFFFF;
      --color-card-soft: #FAFAF6;
      --color-border: #DDE5D7;
      --color-border-dark: rgba(21, 24, 22, .12);
      --color-footer: #101712;
      --shadow-sm: 0 8px 24px rgba(22, 34, 24, .06);
      --shadow-md: 0 18px 50px rgba(22, 34, 24, .08);
      --shadow-lg: 0 24px 70px rgba(22, 34, 24, .12);
      --radius-sm: 14px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --radius-xl: 36px;
      --container: 1220px;
      --transition: .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 CJK SC", sans-serif;
      color: var(--color-text);
      background:
        radial-gradient(circle at 12% 8%, rgba(24, 160, 88, .10), transparent 28%),
        linear-gradient(180deg, #FAFAF6 0%, var(--color-bg) 48%, #FFFFFF 100%);
      line-height: 1.75;
      font-size: 16px;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--transition), background var(--transition), border-color var(--transition), transform var(--transition);
    }

    a:hover,
    a:focus {
      color: var(--color-primary);
      outline: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    input:focus,
    select:focus,
    textarea:focus,
    button:focus,
    a:focus-visible {
      outline: 3px solid rgba(24, 160, 88, .22);
      outline-offset: 3px;
    }

    h1,
    h2,
    h3,
    h4,
    p {
      margin-top: 0;
    }

    h1,
    h2,
    h3 {
      color: var(--color-text);
      letter-spacing: -.035em;
      line-height: 1.14;
    }

    h1 {
      font-weight: 800;
      font-size: clamp(2.55rem, 5vw, 4rem);
      margin-bottom: 22px;
    }

    h2 {
      font-weight: 800;
      font-size: clamp(2rem, 3.4vw, 2.65rem);
      margin-bottom: 16px;
    }

    h3 {
      font-weight: 750;
      font-size: 1.22rem;
      margin-bottom: 12px;
    }

    p {
      color: var(--color-text-2);
      margin-bottom: 0;
    }

    .site-container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .section {
      padding: 88px 0;
      position: relative;
    }

    .section.compact {
      padding: 62px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 28px;
      margin-bottom: 34px;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-primary-dark);
      font-weight: 700;
      font-size: .86rem;
      letter-spacing: .08em;
      margin-bottom: 14px;
    }

    .section-kicker::before {
      content: "";
      width: 26px;
      height: 2px;
      border-radius: 999px;
      background: var(--color-primary);
    }

    .section-summary {
      max-width: 620px;
      color: var(--color-muted);
      font-size: 1.03rem;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(250, 250, 246, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(221, 229, 215, .78);
      transition: box-shadow var(--transition), background var(--transition);
    }

    .site-header.is-scrolled {
      box-shadow: 0 10px 36px rgba(22, 34, 24, .08);
      background: rgba(255, 255, 251, .94);
    }

    .nav-shell {
      min-height: 82px;
      display: grid;
      grid-template-columns: auto minmax(280px, 540px) auto;
      align-items: center;
      gap: 22px;
      padding: 12px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      font-weight: 850;
      color: var(--color-text);
      letter-spacing: -.04em;
      white-space: nowrap;
      font-size: 1.22rem;
    }

    .brand-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background:
        linear-gradient(90deg, transparent 47%, rgba(255,255,255,.6) 48%, rgba(255,255,255,.6) 52%, transparent 53%),
        radial-gradient(circle at 50% 50%, transparent 0 38%, rgba(255,255,255,.82) 39% 41%, transparent 42%),
        linear-gradient(135deg, var(--color-primary), var(--color-teal));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.35), 0 12px 22px rgba(24,160,88,.22);
      flex: 0 0 auto;
      position: relative;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      right: 3px;
      top: 6px;
      background: var(--color-accent);
      border: 2px solid #fff;
    }

    .brand small {
      display: block;
      color: var(--color-muted);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .08em;
      margin-top: -4px;
    }

    .nav-search {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #fff;
      border: 1px solid var(--color-border);
      border-radius: 999px;
      padding: 8px 8px 8px 18px;
      box-shadow: var(--shadow-sm);
      transition: border-color var(--transition), box-shadow var(--transition);
    }

    .nav-search:focus-within {
      border-color: rgba(24, 160, 88, .45);
      box-shadow: 0 12px 34px rgba(24, 160, 88, .12);
    }

    .search-icon {
      color: var(--color-teal);
      font-weight: 900;
      line-height: 1;
    }

    .nav-search input {
      width: 100%;
      border: 0;
      box-shadow: none;
      height: 34px;
      margin: 0;
      padding: 0;
      background: transparent;
      color: var(--color-text);
      font-size: .95rem;
    }

    .nav-search input::placeholder {
      color: #889186;
    }

    .nav-search input:focus {
      outline: none;
      box-shadow: none;
      border: 0;
      background: transparent;
    }

    .search-submit {
      border: 0;
      background: var(--color-primary);
      color: #fff;
      border-radius: 999px;
      padding: 9px 15px;
      font-weight: 750;
      min-width: 70px;
      transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    }

    .search-submit:hover {
      background: var(--color-primary-dark);
      transform: translateY(-1px);
      box-shadow: 0 10px 22px rgba(24, 160, 88, .22);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 1px solid var(--color-border);
      border-radius: 14px;
      background: #fff;
      color: var(--color-text);
      font-weight: 900;
    }

    .nav-links {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .nav-links a {
      color: var(--color-text-2);
      font-size: .92rem;
      font-weight: 700;
      padding: 9px 12px;
      border-radius: 999px;
      white-space: nowrap;
    }

    .nav-links a:hover {
      background: var(--color-primary-soft);
      color: var(--color-primary-dark);
    }

    .nav-links a.active {
      background: var(--color-text);
      color: #fff;
    }

    .hot-keywords {
      border-top: 1px solid rgba(221, 229, 215, .72);
      padding: 10px 0 12px;
    }

    .hot-track {
      display: flex;
      align-items: center;
      gap: 10px;
      overflow-x: auto;
      scrollbar-width: none;
      white-space: nowrap;
    }

    .hot-track::-webkit-scrollbar {
      display: none;
    }

    .hot-label {
      color: var(--color-muted);
      font-size: .84rem;
      font-weight: 700;
      flex: 0 0 auto;
    }

    .hot-track a {
      display: inline-flex;
      align-items: center;
      border: 1px solid rgba(24, 160, 88, .16);
      background: rgba(255,255,255,.7);
      color: var(--color-primary-dark);
      border-radius: 999px;
      padding: 5px 11px;
      font-size: .82rem;
      font-weight: 700;
    }

    .hot-track a:hover {
      background: var(--color-primary);
      color: #fff;
      border-color: var(--color-primary);
    }

    .hero {
      padding: 72px 0 52px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(247,248,243,.88), rgba(247,248,243,.70), rgba(247,248,243,.95)),
        url("/assets/images/backpic/back-1.webp");
      background-size: cover;
      background-position: center;
      opacity: .72;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -160px;
      top: 60px;
      width: 440px;
      height: 440px;
      border: 1px solid rgba(24,160,88,.18);
      border-radius: 50%;
      box-shadow: inset 0 0 0 48px rgba(24,160,88,.035);
      z-index: -1;
    }

    .hero-copy {
      padding: 26px 0;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(255,255,255,.82);
      border: 1px solid rgba(24,160,88,.18);
      box-shadow: var(--shadow-sm);
      color: var(--color-primary-dark);
      font-size: .88rem;
      font-weight: 750;
      margin-bottom: 22px;
    }

    .live-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--color-accent);
      box-shadow: 0 0 0 6px rgba(255, 159, 28, .16);
    }

    .hero-subtitle {
      max-width: 660px;
      color: #3E473F;
      font-size: 1.12rem;
      line-height: 1.86;
      margin-bottom: 30px;
    }

    .hero-actions,
    .cta-actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary,
    .btn-ghost {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 48px;
      padding: 13px 23px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
    }

    .btn-primary {
      background: var(--color-primary);
      color: #fff;
      box-shadow: 0 16px 32px rgba(24,160,88,.22);
    }

    .btn-primary:hover {
      background: var(--color-primary-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 20px 42px rgba(24,160,88,.28);
    }

    .btn-secondary {
      background: #fff;
      color: var(--color-text);
      border-color: rgba(21,24,22,.10);
      box-shadow: var(--shadow-sm);
    }

    .btn-secondary:hover {
      border-color: rgba(24,160,88,.35);
      color: var(--color-primary-dark);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-ghost {
      background: var(--color-primary-soft);
      color: var(--color-primary-dark);
      border-color: rgba(24,160,88,.16);
    }

    .btn-ghost:hover {
      background: #fff;
      color: var(--color-primary-dark);
      border-color: rgba(24,160,88,.38);
      transform: translateY(-2px);
    }

    .hero-panel {
      background: rgba(255,255,255,.88);
      border: 1px solid rgba(221,229,215,.86);
      border-radius: var(--radius-xl);
      padding: 22px;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .hero-panel::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 7px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-teal));
    }

    .scoreboard-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin: 8px 0 18px;
      gap: 16px;
    }

    .scoreboard-title {
      font-weight: 850;
      font-size: 1.18rem;
      letter-spacing: -.02em;
    }

    .scoreboard-time {
      color: var(--color-muted);
      font-size: .84rem;
      font-weight: 700;
    }

    .match-card {
      background: var(--color-card-soft);
      border: 1px solid rgba(21,24,22,.08);
      border-radius: 22px;
      padding: 17px;
      margin-bottom: 14px;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .match-card:hover {
      transform: translateY(-3px);
      border-color: rgba(24,160,88,.28);
      box-shadow: var(--shadow-sm);
    }

    .match-meta {
      display: flex;
      justify-content: space-between;
      color: var(--color-muted);
      font-size: .82rem;
      font-weight: 700;
      margin-bottom: 13px;
    }

    .match-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 10px;
    }

    .team {
      font-weight: 800;
      color: var(--color-text);
    }

    .team.right {
      text-align: right;
    }

    .score-pill {
      min-width: 70px;
      text-align: center;
      border-radius: 999px;
      background: #fff;
      border: 1px solid var(--color-border);
      padding: 6px 10px;
      font-weight: 900;
      color: var(--color-primary-dark);
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 4px 9px;
      font-size: .75rem;
      font-weight: 800;
    }

    .status.live {
      background: rgba(255,159,28,.16);
      color: #B36500;
    }

    .status.waiting {
      background: rgba(24,160,88,.12);
      color: var(--color-primary-dark);
    }

    .status.done {
      background: rgba(115,123,116,.13);
      color: #616A62;
    }

    .mini-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 18px;
    }

    .mini-stat {
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(21,24,22,.08);
      padding: 16px;
    }

    .mini-stat strong {
      display: block;
      font-size: 1.55rem;
      line-height: 1;
      letter-spacing: -.05em;
      color: var(--color-text);
      margin-bottom: 8px;
    }

    .mini-stat span {
      color: var(--color-muted);
      font-weight: 700;
      font-size: .84rem;
    }

    .metrics-strip {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
    }

    .metric-card,
    .feature-card,
    .review-card,
    .faq-card,
    .category-card,
    .news-card,
    .contact-card,
    .comparison-card {
      background: var(--color-card);
      border: 1px solid rgba(21,24,22,.08);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }

    .metric-card:hover,
    .feature-card:hover,
    .review-card:hover,
    .category-card:hover,
    .news-card:hover,
    .contact-card:hover,
    .comparison-card:hover {
      transform: translateY(-4px);
      border-color: rgba(24,160,88,.30);
      box-shadow: var(--shadow-md);
    }

    .metric-card {
      padding: 22px;
      min-height: 156px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .metric-card strong {
      display: block;
      font-size: 2.1rem;
      letter-spacing: -.06em;
      line-height: 1;
      color: var(--color-text);
      margin-bottom: 10px;
    }

    .metric-card p {
      color: var(--color-muted);
      font-size: .93rem;
      line-height: 1.55;
    }

    .trend {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--color-primary-dark);
      font-size: .8rem;
      font-weight: 800;
      margin-top: 15px;
    }

    .trend.orange {
      color: #B36500;
    }

    .progress-line {
      width: 100%;
      height: 5px;
      background: var(--color-bg-2);
      border-radius: 999px;
      overflow: hidden;
      margin-top: 16px;
    }

    .progress-line i {
      display: block;
      height: 100%;
      background: linear-gradient(90deg, var(--color-primary), var(--color-teal));
      border-radius: inherit;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
    }

    .category-card {
      overflow: hidden;
      min-height: 260px;
    }

    .category-image {
      height: 112px;
      position: relative;
      overflow: hidden;
      background: var(--color-bg-2);
    }

    .category-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }

    .category-card:hover img {
      transform: scale(1.06);
    }

    .category-image::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(16,23,18,.22));
    }

    .category-body {
      padding: 18px;
    }

    .category-body p {
      color: var(--color-muted);
      font-size: .92rem;
      line-height: 1.62;
      margin-bottom: 15px;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--color-primary-dark);
      font-weight: 850;
      font-size: .9rem;
    }

    .workbench {
      background: linear-gradient(180deg, #FFFFFF, #F6F9F2);
      border: 1px solid rgba(21,24,22,.08);
      border-radius: 36px;
      box-shadow: var(--shadow-md);
      padding: 24px;
    }

    .feature-main {
      min-height: 100%;
      border-radius: 30px;
      padding: 28px;
      background:
        linear-gradient(135deg, rgba(21,24,22,.92), rgba(14,124,102,.88)),
        url("/assets/images/coverpic/cover-2.webp");
      background-size: cover;
      background-position: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .feature-main::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      right: -80px;
      bottom: -100px;
      border: 1px solid rgba(255,255,255,.20);
      box-shadow: inset 0 0 0 38px rgba(255,255,255,.04);
    }

    .feature-main h3,
    .feature-main p {
      color: #fff;
      position: relative;
      z-index: 1;
    }

    .feature-main p {
      opacity: .84;
      margin-bottom: 24px;
    }

    .feature-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      position: relative;
      z-index: 1;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 6px 10px;
      background: rgba(24,160,88,.10);
      color: var(--color-primary-dark);
      font-size: .78rem;
      font-weight: 800;
      border: 1px solid rgba(24,160,88,.12);
    }

    .feature-main .tag {
      background: rgba(255,255,255,.14);
      color: #fff;
      border-color: rgba(255,255,255,.18);
    }

    .feature-card {
      padding: 22px;
      min-height: 184px;
      margin-bottom: 18px;
    }

    .feature-icon {
      width: 42px;
      height: 42px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: var(--color-primary-soft);
      color: var(--color-primary-dark);
      font-weight: 950;
      margin-bottom: 16px;
    }

    .feature-card p {
      color: var(--color-muted);
      font-size: .94rem;
      line-height: 1.64;
      margin-bottom: 14px;
    }

    .comparison-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .comparison-card {
      padding: 28px;
      position: relative;
      overflow: hidden;
    }

    .comparison-card.strong {
      background: linear-gradient(180deg, #FFFFFF, #F0F9F3);
      border-color: rgba(24,160,88,.22);
    }

    .comparison-card h3 {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
    }

    .comparison-badge {
      border-radius: 999px;
      padding: 5px 10px;
      font-size: .76rem;
      letter-spacing: .06em;
      font-weight: 900;
      background: rgba(115,123,116,.10);
      color: var(--color-muted);
      white-space: nowrap;
    }

    .comparison-card.strong .comparison-badge {
      background: rgba(24,160,88,.14);
      color: var(--color-primary-dark);
    }

    .check-list {
      list-style: none;
      margin: 20px 0 0;
      padding: 0;
      display: grid;
      gap: 13px;
    }

    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      color: var(--color-text-2);
      line-height: 1.62;
    }

    .check-list li::before {
      content: "✓";
      flex: 0 0 24px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background: var(--color-primary-soft);
      color: var(--color-primary-dark);
      font-size: .78rem;
      font-weight: 950;
      margin-top: 2px;
    }

    .comparison-card.muted .check-list li::before {
      content: "•";
      background: rgba(115,123,116,.10);
      color: var(--color-muted);
    }

    .news-section {
      background: var(--color-footer);
      color: #fff;
      overflow: hidden;
    }

    .news-section .section-kicker,
    .news-section h2 {
      color: #fff;
    }

    .news-section .section-summary {
      color: rgba(255,255,255,.66);
    }

    .news-card {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.12);
      box-shadow: none;
      overflow: hidden;
      height: 100%;
    }

    .news-card:hover {
      border-color: rgba(24,160,88,.55);
      box-shadow: 0 22px 52px rgba(0,0,0,.22);
    }

    .news-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
      opacity: .92;
    }

    .news-card-body {
      padding: 20px;
    }

    .news-card h3,
    .news-card p {
      color: #fff;
    }

    .news-card p {
      opacity: .72;
      font-size: .94rem;
      line-height: 1.68;
      margin-bottom: 16px;
    }

    .news-meta {
      display: flex;
      justify-content: space-between;
      color: rgba(255,255,255,.62);
      font-size: .78rem;
      font-weight: 800;
      gap: 12px;
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .review-card {
      padding: 22px;
    }

    .review-card.featured {
      grid-column: span 2;
      background:
        linear-gradient(135deg, rgba(255,255,255,.92), rgba(232,246,238,.88)),
        url("/assets/images/coverpic/cover-3.webp");
      background-size: cover;
      background-position: center;
    }

    .review-head {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: flex-start;
      margin-bottom: 14px;
    }

    .review-name {
      font-weight: 850;
      color: var(--color-text);
    }

    .review-tag {
      color: var(--color-muted);
      font-size: .8rem;
      font-weight: 700;
    }

    .rating {
      color: #B36500;
      background: rgba(255,159,28,.13);
      border-radius: 999px;
      padding: 4px 9px;
      font-weight: 850;
      font-size: .8rem;
      white-space: nowrap;
    }

    .review-text {
      color: var(--color-text-2);
      font-size: .95rem;
      line-height: 1.72;
      margin-bottom: 15px;
    }

    .review-foot {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--color-muted);
      font-size: .78rem;
      font-weight: 750;
      border-top: 1px solid rgba(21,24,22,.08);
      padding-top: 13px;
    }

    .process {
      background: linear-gradient(180deg, #F3F7EF, #FAFAF6);
    }

    .process-line {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      counter-reset: step;
    }

    .process-card {
      position: relative;
      background: #fff;
      border: 1px solid rgba(21,24,22,.08);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      counter-increment: step;
    }

    .process-card::before {
      content: "0" counter(step);
      display: inline-flex;
      width: 42px;
      height: 42px;
      align-items: center;
      justify-content: center;
      border-radius: 16px;
      background: var(--color-text);
      color: #fff;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .process-card p {
      color: var(--color-muted);
      font-size: .94rem;
      line-height: 1.68;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 34px;
      align-items: start;
    }

    .faq-aside {
      position: sticky;
      top: 128px;
      border-radius: var(--radius-xl);
      padding: 30px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(232,246,238,.86)),
        url("/assets/images/coverpic/cover-4.webp");
      background-size: cover;
      background-position: center;
      border: 1px solid rgba(24,160,88,.16);
      box-shadow: var(--shadow-md);
    }

    .accordion {
      background: transparent;
      margin: 0;
    }

    .accordion-item {
      margin-bottom: 12px;
      border: 1px solid rgba(21,24,22,.08);
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      box-shadow: var(--shadow-sm);
    }

    .accordion-title {
      border: 0;
      color: var(--color-text);
      font-weight: 850;
      font-size: 1rem;
      padding: 19px 54px 19px 20px;
      line-height: 1.5;
      transition: color var(--transition), background var(--transition);
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: var(--color-primary-soft);
      color: var(--color-primary-dark);
    }

    .accordion-title::before {
      right: 20px;
      font-size: 1.4rem;
      margin-top: -.8rem;
      color: var(--color-primary);
    }

    .is-active > .accordion-title {
      color: var(--color-primary-dark);
      background: #F4FBF6;
    }

    .accordion-content {
      border: 0;
      border-top: 1px solid rgba(21,24,22,.06);
      padding: 18px 20px 22px;
      color: var(--color-text-2);
      line-height: 1.82;
      background: #fff;
    }

    .cta-section {
      padding: 92px 0;
      background:
        linear-gradient(90deg, rgba(16,23,18,.94), rgba(16,23,18,.78)),
        url("/assets/images/backpic/back-2.webp");
      background-size: cover;
      background-position: center;
      color: #fff;
    }

    .cta-section h2,
    .cta-section p {
      color: #fff;
    }

    .cta-section p {
      opacity: .78;
    }

    .contact-panel {
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.16);
      border-radius: 34px;
      padding: 28px;
      backdrop-filter: blur(8px);
    }

    .contact-card {
      padding: 24px;
      background: rgba(255,255,255,.10);
      border-color: rgba(255,255,255,.14);
      color: #fff;
      box-shadow: none;
      margin-bottom: 16px;
    }

    .contact-card h3,
    .contact-card p {
      color: #fff;
    }

    .contact-card p {
      opacity: .74;
      font-size: .94rem;
    }

    .form-card {
      background: #fff;
      border-radius: 30px;
      padding: 28px;
      box-shadow: var(--shadow-lg);
    }

    .form-card label {
      color: var(--color-text);
      font-weight: 800;
      font-size: .9rem;
      margin-bottom: 8px;
    }

    .form-card input,
    .form-card select,
    .form-card textarea {
      border-radius: 16px;
      border: 1px solid var(--color-border);
      box-shadow: none;
      background: #FAFAF6;
      min-height: 48px;
      margin-bottom: 16px;
      color: var(--color-text);
    }

    .form-card textarea {
      min-height: 126px;
      resize: vertical;
      padding-top: 12px;
    }

    .form-card input:focus,
    .form-card select:focus,
    .form-card textarea:focus {
      border-color: rgba(24,160,88,.55);
      box-shadow: 0 0 0 4px rgba(24,160,88,.10);
      background: #fff;
    }

    .form-note {
      color: var(--color-muted);
      font-size: .82rem;
      line-height: 1.6;
      margin-top: 12px;
    }

    .site-footer {
      background: var(--color-footer);
      color: rgba(255,255,255,.76);
      padding: 66px 0 26px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-weight: 850;
      font-size: 1.18rem;
      margin-bottom: 18px;
    }

    .footer-brand .brand-mark {
      width: 38px;
      height: 38px;
    }

    .footer-desc {
      color: rgba(255,255,255,.66);
      max-width: 410px;
      line-height: 1.8;
    }

    .footer-title {
      color: #fff;
      font-weight: 850;
      margin-bottom: 16px;
      font-size: 1rem;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255,255,255,.66);
      font-weight: 650;
      font-size: .93rem;
    }

    .footer-links a:hover {
      color: #fff;
    }

    .footer-divider {
      border: 0;
      border-top: 1px solid rgba(255,255,255,.10);
      margin: 38px 0 22px;
    }

    .footer-bottom {
      text-align: center;
      color: rgba(255,255,255,.58);
      font-size: .86rem;
      line-height: 1.9;
    }

    .footer-bottom a {
      color: rgba(255,255,255,.72);
      margin: 0 5px;
    }

    .footer-bottom a:hover {
      color: #fff;
    }

    @media (max-width: 1180px) {
      .nav-shell {
        grid-template-columns: auto 1fr auto;
      }

      .nav-links {
        grid-column: 1 / -1;
        justify-content: flex-start;
      }

      .metrics-strip,
      .category-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .review-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 1024px) {
      .section {
        padding: 72px 0;
      }

      .hero {
        padding-top: 54px;
      }

      .comparison-wrap,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .faq-aside {
        position: static;
      }

      .process-line {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(calc(100% - 28px), var(--container));
      }

      .nav-shell {
        grid-template-columns: 1fr auto;
        gap: 12px;
        min-height: auto;
      }

      .brand {
        font-size: 1.08rem;
      }

      .nav-search {
        grid-column: 1 / -1;
        order: 3;
        width: 100%;
      }

      .menu-toggle {
        display: inline-grid;
        place-items: center;
      }

      .nav-links {
        display: none;
        grid-column: 1 / -1;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        border: 1px solid var(--color-border);
        border-radius: 22px;
        padding: 10px;
        box-shadow: var(--shadow-md);
      }

      .nav-links.is-open {
        display: flex;
      }

      .nav-links a {
        border-radius: 14px;
        padding: 11px 13px;
      }

      .hot-keywords {
        padding-top: 8px;
      }

      .hero-copy {
        padding-top: 6px;
      }

      .hero-actions,
      .cta-actions {
        align-items: stretch;
      }

      .btn-primary,
      .btn-secondary,
      .btn-ghost {
        width: 100%;
      }

      .section-head {
        display: block;
      }

      .metrics-strip,
      .category-grid,
      .review-grid,
      .process-line {
        grid-template-columns: 1fr;
      }

      .review-card.featured {
        grid-column: auto;
      }

      .mini-grid {
        grid-template-columns: 1fr;
      }

      .workbench {
        padding: 16px;
        border-radius: 28px;
      }

      .feature-main,
      .form-card,
      .contact-panel {
        border-radius: 24px;
      }
    }

    @media (max-width: 520px) {
      body {
        font-size: 15px;
      }

      h1 {
        font-size: 2.35rem;
      }

      h2 {
        font-size: 1.85rem;
      }

      .section {
        padding: 58px 0;
      }

      .hero {
        padding: 42px 0 34px;
      }

      .search-submit {
        min-width: auto;
        padding-inline: 12px;
      }

      .nav-search {
        padding-left: 14px;
      }

      .match-row {
        grid-template-columns: 1fr;
        text-align: left;
      }

      .team.right {
        text-align: left;
      }

      .score-pill {
        width: fit-content;
      }

      .comparison-card,
      .faq-aside,
      .form-card,
      .contact-panel {
        padding: 22px;
      }

      .footer-bottom a {
        display: inline-block;
      }
    }

/* roulang page: category2 */
:root{
      --color-primary:#18A058;
      --color-primary-dark:#13934B;
      --color-secondary:#0E7C66;
      --color-alert:#FF9F1C;
      --color-text:#151816;
      --color-muted:#667064;
      --color-soft:#F7F8F3;
      --color-soft-2:#EEF3EA;
      --color-white:#FFFFFF;
      --color-border:#DDE5D7;
      --color-footer:#101712;
      --shadow-sm:0 8px 28px rgba(22,34,24,.07);
      --shadow-md:0 18px 50px rgba(22,34,24,.10);
      --shadow-lg:0 26px 70px rgba(22,34,24,.14);
      --radius-sm:14px;
      --radius-md:20px;
      --radius-lg:28px;
      --radius-xl:36px;
      --container:1220px;
      --transition:all .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 CJK SC",sans-serif;
      color:var(--color-text);
      background:linear-gradient(180deg,#FAFAF6 0%,#F7F8F3 44%,#FFFFFF 100%);
      line-height:1.75;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    a:hover,a:focus{color:var(--color-primary)}
    img{max-width:100%;display:block}
    button,input,select,textarea{
      font:inherit;
      outline:none;
    }
    button{cursor:pointer}
    ::selection{background:rgba(24,160,88,.18)}
    :focus-visible{
      outline:3px solid rgba(24,160,88,.28);
      outline-offset:3px;
      border-radius:12px;
    }

    .site-container{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
    }
    .section{
      padding:88px 0;
      position:relative;
    }
    .section.tight{padding:64px 0}
    .section-head{
      display:flex;
      justify-content:space-between;
      align-items:flex-end;
      gap:24px;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(24,160,88,.10);
      color:var(--color-primary-dark);
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
      margin-bottom:14px;
    }
    .section-kicker::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--color-primary);
      box-shadow:0 0 0 5px rgba(24,160,88,.12);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(36px,5vw,58px);
      line-height:1.1;
      letter-spacing:-.04em;
      font-weight:800;
      margin-bottom:22px;
    }
    h2{
      font-size:clamp(28px,3.6vw,42px);
      line-height:1.18;
      letter-spacing:-.03em;
      font-weight:800;
      margin-bottom:14px;
    }
    h3{
      font-size:20px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:10px;
    }
    .lead{
      color:var(--color-muted);
      font-size:17px;
      max-width:720px;
    }
    .muted{color:var(--color-muted)}
    .highlight{color:var(--color-primary-dark)}

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(250,250,246,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(21,24,22,.08);
      transition:var(--transition);
    }
    .site-header.is-scrolled{
      box-shadow:0 10px 30px rgba(22,34,24,.08);
      background:rgba(255,255,255,.94);
    }
    .nav-shell{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto;
      display:grid;
      grid-template-columns:auto minmax(320px,540px) auto;
      align-items:center;
      gap:22px;
      padding:16px 0;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      font-size:22px;
      letter-spacing:-.03em;
      color:var(--color-text);
      white-space:nowrap;
    }
    .brand:hover{color:var(--color-text)}
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:50%;
      display:inline-block;
      background:
        radial-gradient(circle at 50% 50%, transparent 0 35%, rgba(255,255,255,.9) 36% 40%, transparent 41%),
        linear-gradient(135deg,var(--color-primary),#85C86C);
      position:relative;
      box-shadow:inset 0 0 0 2px rgba(255,255,255,.55),0 8px 22px rgba(24,160,88,.25);
    }
    .brand-mark::before,.brand-mark::after{
      content:"";
      position:absolute;
      background:rgba(255,255,255,.75);
      left:8px;
      right:8px;
      height:2px;
      top:16px;
      transform:rotate(32deg);
      border-radius:999px;
    }
    .brand-mark::after{
      transform:rotate(-32deg);
    }
    .nav-search{
      display:flex;
      align-items:center;
      gap:10px;
      background:var(--color-white);
      border:1px solid rgba(21,24,22,.09);
      border-radius:999px;
      padding:8px 9px 8px 16px;
      box-shadow:var(--shadow-sm);
    }
    .nav-search svg{width:18px;height:18px;color:var(--color-muted);flex:none}
    .nav-search input{
      border:0;
      background:transparent;
      width:100%;
      min-width:0;
      color:var(--color-text);
      font-size:14px;
      height:34px;
    }
    .nav-search input::placeholder{color:#8A9487}
    .search-btn{
      border:0;
      border-radius:999px;
      background:var(--color-primary);
      color:#fff;
      padding:8px 15px;
      font-weight:700;
      font-size:13px;
      white-space:nowrap;
      transition:var(--transition);
    }
    .search-btn:hover{
      background:var(--color-primary-dark);
      transform:translateY(-1px);
      box-shadow:0 10px 22px rgba(24,160,88,.24);
    }
    .nav-right{
      display:flex;
      justify-content:flex-end;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .menu-toggle{
      display:none;
      width:42px;
      height:42px;
      border-radius:14px;
      border:1px solid var(--color-border);
      background:#fff;
      align-items:center;
      justify-content:center;
      box-shadow:var(--shadow-sm);
    }
    .menu-toggle span{
      width:18px;
      height:2px;
      border-radius:999px;
      background:var(--color-text);
      position:relative;
      display:block;
    }
    .menu-toggle span::before,.menu-toggle span::after{
      content:"";
      position:absolute;
      width:18px;
      height:2px;
      border-radius:999px;
      background:var(--color-text);
      left:0;
      transition:var(--transition);
    }
    .menu-toggle span::before{top:-6px}
    .menu-toggle span::after{top:6px}
    .menu-toggle.is-open span{background:transparent}
    .menu-toggle.is-open span::before{top:0;transform:rotate(45deg)}
    .menu-toggle.is-open span::after{top:0;transform:rotate(-45deg)}
    .nav-links{
      width:min(var(--container),calc(100% - 40px));
      margin:0 auto 14px;
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      scrollbar-width:none;
      -webkit-overflow-scrolling:touch;
    }
    .nav-links::-webkit-scrollbar{display:none}
    .nav-links a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      flex:0 0 auto;
      padding:9px 15px;
      border-radius:999px;
      color:#3E463F;
      font-size:14px;
      font-weight:700;
      background:rgba(255,255,255,.72);
      border:1px solid rgba(21,24,22,.07);
    }
    .nav-links a:hover{
      color:var(--color-primary-dark);
      border-color:rgba(24,160,88,.28);
      background:#fff;
      transform:translateY(-1px);
    }
    .nav-links a.active{
      color:#fff;
      background:var(--color-text);
      border-color:var(--color-text);
      box-shadow:0 12px 30px rgba(21,24,22,.16);
    }

    .hero{
      padding:58px 0 80px;
      overflow:hidden;
    }
    .hero-card{
      position:relative;
      border-radius:var(--radius-xl);
      overflow:hidden;
      background:
        linear-gradient(105deg,rgba(250,250,246,.97) 0%,rgba(250,250,246,.91) 58%,rgba(250,250,246,.72) 100%),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      border:1px solid rgba(21,24,22,.08);
      box-shadow:var(--shadow-lg);
      padding:46px;
    }
    .hero-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 14% 18%,rgba(24,160,88,.12),transparent 30%),
        radial-gradient(circle at 82% 20%,rgba(255,159,28,.14),transparent 24%),
        linear-gradient(90deg,rgba(24,160,88,.05) 1px,transparent 1px),
        linear-gradient(0deg,rgba(24,160,88,.05) 1px,transparent 1px);
      background-size:auto,auto,46px 46px,46px 46px;
      pointer-events:none;
    }
    .hero-content,.hero-panel{position:relative;z-index:1}
    .hero .lead{font-size:18px;margin-bottom:28px}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin:28px 0 24px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:999px;
      padding:14px 22px;
      border:1px solid transparent;
      font-weight:800;
      line-height:1;
      transition:var(--transition);
      min-height:48px;
    }
    .btn-primary{
      background:var(--color-primary);
      color:#fff;
      box-shadow:0 16px 34px rgba(24,160,88,.24);
    }
    .btn-primary:hover{
      background:var(--color-primary-dark);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 20px 42px rgba(24,160,88,.30);
    }
    .btn-secondary{
      background:#fff;
      color:var(--color-text);
      border-color:rgba(21,24,22,.10);
      box-shadow:var(--shadow-sm);
    }
    .btn-secondary:hover{
      color:var(--color-primary-dark);
      border-color:rgba(24,160,88,.32);
      transform:translateY(-2px);
    }
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .tag,.status-tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:6px 11px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      color:var(--color-secondary);
      background:rgba(14,124,102,.09);
      border:1px solid rgba(14,124,102,.12);
      white-space:nowrap;
    }
    .tag.orange{
      color:#9D5B00;
      background:rgba(255,159,28,.13);
      border-color:rgba(255,159,28,.22);
    }
    .tag.dark{
      color:var(--color-text);
      background:rgba(21,24,22,.06);
      border-color:rgba(21,24,22,.08);
    }
    .quick-filter{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:28px;
      padding:22px;
      box-shadow:var(--shadow-md);
    }
    .quick-filter h2{
      font-size:24px;
      margin-bottom:14px;
      letter-spacing:-.02em;
    }
    .filter-grid{
      display:grid;
      gap:12px;
      margin-bottom:14px;
    }
    .filter-field{
      display:flex;
      align-items:center;
      gap:10px;
      border:1px solid var(--color-border);
      border-radius:17px;
      padding:12px 14px;
      background:#FAFAF6;
      transition:var(--transition);
    }
    .filter-field:focus-within{
      border-color:rgba(24,160,88,.65);
      box-shadow:0 0 0 4px rgba(24,160,88,.10);
      background:#fff;
    }
    .filter-field label{
      min-width:58px;
      margin:0;
      color:var(--color-muted);
      font-size:13px;
      font-weight:800;
    }
    .filter-field input,.filter-field select{
      width:100%;
      border:0;
      background:transparent;
      color:var(--color-text);
      font-weight:700;
      height:30px;
      padding:0;
      box-shadow:none;
      margin:0;
    }
    .filter-note{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-top:16px;
      padding-top:16px;
      border-top:1px dashed var(--color-border);
      color:var(--color-muted);
      font-size:13px;
    }
    .mini-score{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:18px;
    }
    .mini-score div{
      border-radius:16px;
      padding:12px;
      background:var(--color-soft);
      border:1px solid rgba(21,24,22,.06);
    }
    .mini-score strong{
      display:block;
      font-size:20px;
      line-height:1.1;
      color:var(--color-text);
    }
    .mini-score span{
      color:var(--color-muted);
      font-size:12px;
      font-weight:700;
    }

    .league-strip{
      margin-top:-34px;
      position:relative;
      z-index:3;
    }
    .league-card{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:24px;
      box-shadow:var(--shadow-md);
      padding:18px;
      display:flex;
      gap:12px;
      align-items:center;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .league-card::-webkit-scrollbar{display:none}
    .league-pill{
      flex:0 0 auto;
      display:flex;
      align-items:center;
      gap:10px;
      padding:12px 15px;
      border-radius:18px;
      background:var(--color-soft);
      border:1px solid rgba(21,24,22,.06);
      font-weight:800;
      color:var(--color-text);
    }
    .league-pill:hover,.league-pill.active{
      background:rgba(24,160,88,.10);
      border-color:rgba(24,160,88,.28);
      color:var(--color-primary-dark);
      transform:translateY(-2px);
    }
    .league-dot{
      width:10px;
      height:10px;
      border-radius:50%;
      background:var(--color-primary);
      box-shadow:0 0 0 5px rgba(24,160,88,.12);
    }

    .layout-panel{
      display:grid;
      grid-template-columns:310px minmax(0,1fr);
      gap:26px;
      align-items:start;
    }
    .side-filter{
      position:sticky;
      top:140px;
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:var(--radius-lg);
      padding:22px;
      box-shadow:var(--shadow-sm);
    }
    .side-filter h3{margin-bottom:16px}
    .filter-group{
      padding:16px 0;
      border-top:1px solid rgba(21,24,22,.07);
    }
    .filter-group:first-of-type{border-top:0;padding-top:0}
    .filter-title{
      display:flex;
      justify-content:space-between;
      color:var(--color-text);
      font-size:14px;
      font-weight:800;
      margin-bottom:12px;
    }
    .filter-options{
      display:flex;
      flex-wrap:wrap;
      gap:9px;
    }
    .filter-chip{
      border:1px solid rgba(21,24,22,.09);
      background:#FAFAF6;
      border-radius:999px;
      padding:7px 11px;
      color:#4C554E;
      font-size:13px;
      font-weight:700;
      transition:var(--transition);
    }
    .filter-chip:hover,.filter-chip.active{
      border-color:rgba(24,160,88,.34);
      background:rgba(24,160,88,.10);
      color:var(--color-primary-dark);
    }
    .filter-image{
      margin-top:18px;
      border-radius:20px;
      overflow:hidden;
      position:relative;
      min-height:160px;
    }
    .filter-image img{
      width:100%;
      height:190px;
      object-fit:cover;
    }
    .filter-image span{
      position:absolute;
      left:14px;
      right:14px;
      bottom:14px;
      background:rgba(255,255,255,.90);
      backdrop-filter:blur(8px);
      border-radius:14px;
      padding:10px 12px;
      font-size:13px;
      font-weight:800;
      color:var(--color-text);
    }

    .schedule-flow{
      display:grid;
      gap:18px;
    }
    .date-group{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-sm);
      overflow:hidden;
      transition:var(--transition);
    }
    .date-group:hover{
      border-color:rgba(24,160,88,.22);
      box-shadow:var(--shadow-md);
    }
    .date-head{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      padding:18px 22px;
      background:linear-gradient(90deg,#FAFAF6,#F0F5EC);
      border-bottom:1px solid rgba(21,24,22,.07);
    }
    .date-head strong{font-size:18px}
    .date-head span{font-size:13px;color:var(--color-muted);font-weight:700}
    .match-row{
      display:grid;
      grid-template-columns:92px 1fr auto;
      gap:18px;
      align-items:center;
      padding:18px 22px;
      border-bottom:1px solid rgba(21,24,22,.07);
      transition:var(--transition);
    }
    .match-row:last-child{border-bottom:0}
    .match-row:hover{
      background:rgba(24,160,88,.04);
    }
    .match-time{
      display:flex;
      flex-direction:column;
      align-items:flex-start;
      gap:4px;
      font-weight:800;
    }
    .match-time small{
      color:var(--color-muted);
      font-size:12px;
      font-weight:700;
    }
    .teams{
      min-width:0;
    }
    .teams h3{
      font-size:18px;
      margin-bottom:5px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .teams p{
      margin:0;
      color:var(--color-muted);
      font-size:14px;
    }
    .match-actions{
      display:flex;
      align-items:center;
      gap:10px;
      justify-content:flex-end;
      flex-wrap:wrap;
    }
    .status-tag.upcoming{
      color:var(--color-primary-dark);
      background:#fff;
      border-color:rgba(24,160,88,.28);
    }
    .status-tag.hot{
      color:#9D5B00;
      background:rgba(255,159,28,.14);
      border-color:rgba(255,159,28,.26);
    }
    .status-tag.done{
      color:#5F675F;
      background:rgba(21,24,22,.06);
      border-color:rgba(21,24,22,.08);
    }
    .ghost-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      height:34px;
      padding:0 12px;
      border-radius:999px;
      border:1px solid rgba(24,160,88,.26);
      color:var(--color-primary-dark);
      font-size:13px;
      font-weight:800;
      background:#fff;
    }
    .ghost-link:hover{
      background:var(--color-primary);
      color:#fff;
      border-color:var(--color-primary);
    }

    .feature-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:26px;
    }
    .feature-main{
      border-radius:var(--radius-xl);
      overflow:hidden;
      min-height:440px;
      position:relative;
      background:#111;
      box-shadow:var(--shadow-md);
    }
    .feature-main img{
      width:100%;
      height:100%;
      min-height:440px;
      object-fit:cover;
      opacity:.88;
    }
    .feature-overlay{
      position:absolute;
      inset:auto 0 0 0;
      padding:34px;
      color:#fff;
      background:linear-gradient(180deg,transparent,rgba(0,0,0,.78));
    }
    .feature-overlay h2{
      color:#fff;
      margin-bottom:12px;
    }
    .feature-overlay p{
      color:rgba(255,255,255,.84);
      margin-bottom:18px;
      max-width:620px;
    }
    .feature-list{
      display:grid;
      gap:18px;
    }
    .topic-card{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:24px;
      padding:22px;
      box-shadow:var(--shadow-sm);
      transition:var(--transition);
      position:relative;
      overflow:hidden;
    }
    .topic-card::after{
      content:"";
      position:absolute;
      width:90px;
      height:90px;
      border-radius:50%;
      right:-36px;
      top:-36px;
      background:rgba(24,160,88,.08);
    }
    .topic-card:hover{
      transform:translateY(-4px);
      border-color:rgba(24,160,88,.25);
      box-shadow:var(--shadow-md);
    }
    .topic-meta{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      margin-top:18px;
      padding-top:16px;
      border-top:1px dashed var(--color-border);
      color:var(--color-muted);
      font-size:13px;
      font-weight:700;
    }
    .rank-box{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .rank-card{
      padding:22px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      box-shadow:var(--shadow-sm);
      transition:var(--transition);
    }
    .rank-card:hover{
      transform:translateY(-4px);
      border-color:rgba(24,160,88,.25);
      box-shadow:var(--shadow-md);
    }
    .rank-card .num{
      display:flex;
      align-items:baseline;
      gap:8px;
      font-size:34px;
      font-weight:900;
      line-height:1;
      letter-spacing:-.04em;
      margin-bottom:10px;
      color:var(--color-text);
    }
    .rank-card .num small{
      font-size:13px;
      color:var(--color-primary);
      letter-spacing:0;
    }
    .rank-card p{
      margin:0;
      color:var(--color-muted);
      font-size:14px;
    }
    .progress-line{
      height:8px;
      background:var(--color-soft-2);
      border-radius:999px;
      overflow:hidden;
      margin-top:16px;
    }
    .progress-line span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--color-primary),var(--color-alert));
    }

    .steps{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .step-card{
      position:relative;
      padding:24px;
      border-radius:24px;
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      box-shadow:var(--shadow-sm);
      transition:var(--transition);
    }
    .step-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-md);
      border-color:rgba(24,160,88,.25);
    }
    .step-no{
      width:42px;
      height:42px;
      display:flex;
      align-items:center;
      justify-content:center;
      border-radius:16px;
      background:rgba(24,160,88,.11);
      color:var(--color-primary-dark);
      font-weight:900;
      margin-bottom:18px;
    }
    .step-card p{color:var(--color-muted);margin:0;font-size:15px}

    .faq-wrap{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow-md);
      overflow:hidden;
    }
    .accordion{
      margin:0;
      background:transparent;
    }
    .accordion-item{
      border-bottom:1px solid rgba(21,24,22,.08);
    }
    .accordion-item:last-child{border-bottom:0}
    .accordion-title{
      border:0!important;
      color:var(--color-text)!important;
      font-weight:800;
      font-size:17px;
      padding:20px 54px 20px 24px!important;
      background:#fff!important;
      transition:var(--transition);
    }
    .accordion-title:hover,.is-active>.accordion-title{
      color:var(--color-primary-dark)!important;
      background:rgba(24,160,88,.045)!important;
    }
    .accordion-title::before{
      right:24px!important;
      color:var(--color-primary);
      font-size:22px!important;
      margin-top:-13px!important;
    }
    .accordion-content{
      border:0!important;
      padding:0 24px 22px!important;
      color:var(--color-muted);
      line-height:1.85;
      background:rgba(24,160,88,.025)!important;
    }

    .cta-section{
      padding:90px 0;
      background:
        radial-gradient(circle at 20% 18%,rgba(24,160,88,.14),transparent 26%),
        radial-gradient(circle at 84% 78%,rgba(255,159,28,.15),transparent 25%),
        var(--color-soft-2);
    }
    .cta-card{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow-lg);
      padding:34px;
      overflow:hidden;
      position:relative;
    }
    .cta-card::after{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-110px;
      top:-110px;
      border-radius:50%;
      background:rgba(24,160,88,.08);
      pointer-events:none;
    }
    .contact-panel{
      position:relative;
      z-index:1;
      background:var(--color-text);
      color:#fff;
      border-radius:28px;
      padding:30px;
      min-height:100%;
    }
    .contact-panel h2{color:#fff}
    .contact-panel p{color:rgba(255,255,255,.78)}
    .contact-list{
      display:grid;
      gap:14px;
      margin-top:24px;
    }
    .contact-list div{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
    }
    .contact-list strong{display:block;color:#fff;margin-bottom:2px}
    .contact-list span{color:rgba(255,255,255,.72);font-size:14px}
    .form-panel{
      position:relative;
      z-index:1;
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .form-field.full{grid-column:1/-1}
    .form-field label{
      display:block;
      font-size:13px;
      font-weight:800;
      color:var(--color-text);
      margin-bottom:8px;
    }
    .form-field input,.form-field select,.form-field textarea{
      width:100%;
      border:1px solid var(--color-border);
      background:#FAFAF6;
      border-radius:16px;
      padding:13px 14px;
      min-height:48px;
      color:var(--color-text);
      box-shadow:none;
      margin:0;
      transition:var(--transition);
    }
    .form-field textarea{
      resize:vertical;
      min-height:118px;
    }
    .form-field input:focus,.form-field select:focus,.form-field textarea:focus{
      border-color:rgba(24,160,88,.70);
      background:#fff;
      box-shadow:0 0 0 4px rgba(24,160,88,.10);
    }
    .form-tips{
      margin:14px 0 0;
      color:var(--color-muted);
      font-size:13px;
    }

    .site-footer{
      background:var(--color-footer);
      color:rgba(255,255,255,.76);
      padding:64px 0 28px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-size:22px;
      font-weight:900;
      letter-spacing:-.03em;
      margin-bottom:14px;
    }
    .footer-desc{
      max-width:360px;
      color:rgba(255,255,255,.68);
      margin-bottom:0;
    }
    .footer-title{
      color:#fff;
      font-weight:900;
      margin-bottom:14px;
      font-size:15px;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.68);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      padding-left:3px;
    }
    .footer-divider{
      border:0;
      border-top:1px solid rgba(255,255,255,.12);
      margin:36px 0 22px;
    }
    .footer-bottom{
      text-align:center;
      color:rgba(255,255,255,.62);
      font-size:13px;
      line-height:2;
    }
    .footer-bottom a{
      color:rgba(255,255,255,.70);
      margin:0 5px;
    }
    .footer-bottom a:hover{color:#fff}

    @media (max-width:1024px){
      .nav-shell{
        grid-template-columns:auto 1fr auto;
        gap:14px;
      }
      .nav-search{max-width:none}
      .hero-card{padding:34px}
      .layout-panel{grid-template-columns:1fr}
      .side-filter{
        position:relative;
        top:auto;
      }
      .side-filter .filter-group{
        display:block;
      }
      .feature-grid{grid-template-columns:1fr}
      .rank-box{grid-template-columns:repeat(2,1fr)}
      .steps{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:768px){
      .site-container,.nav-shell,.nav-links{width:min(100% - 28px,var(--container))}
      .nav-shell{
        grid-template-columns:1fr auto;
        padding:13px 0 10px;
      }
      .brand{font-size:20px}
      .nav-search{
        grid-column:1/-1;
        order:3;
        width:100%;
      }
      .menu-toggle{display:flex}
      .nav-links{
        max-height:0;
        opacity:0;
        margin-bottom:0;
        padding:0;
        transition:max-height .28s ease,opacity .2s ease,padding .28s ease,margin .28s ease;
      }
      .nav-links.is-open{
        max-height:90px;
        opacity:1;
        padding:2px 0 14px;
        margin-bottom:2px;
      }
      .hero{padding:34px 0 60px}
      .hero-card{padding:28px;border-radius:28px}
      .quick-filter{margin-top:28px}
      .section{padding:64px 0}
      .section-head{
        display:block;
      }
      .lead{font-size:16px}
      .match-row{
        grid-template-columns:1fr;
        gap:10px;
        padding:18px;
      }
      .match-actions{
        justify-content:flex-start;
      }
      .feature-main,.feature-main img{min-height:360px}
      .feature-overlay{padding:26px}
      .form-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      body{font-size:15px}
      h1{font-size:34px}
      h2{font-size:27px}
      .hero-card{padding:22px}
      .hero-actions .btn{width:100%}
      .mini-score{grid-template-columns:1fr}
      .league-card{border-radius:20px}
      .rank-box,.steps{grid-template-columns:1fr}
      .cta-card{padding:22px;border-radius:28px}
      .contact-panel{padding:24px;border-radius:22px}
      .nav-search{padding-left:13px}
      .search-btn{padding:8px 12px}
      .footer-bottom a{display:inline-block}
    }

/* roulang page: category1 */
:root {
      --color-primary: #18A058;
      --color-primary-dark: #13934B;
      --color-secondary: #0E7C66;
      --color-accent: #FF9F1C;
      --color-text: #151816;
      --color-heading: #222520;
      --color-muted: #6D756D;
      --color-soft: #F7F8F3;
      --color-soft-2: #EEF3EA;
      --color-card: #FFFFFF;
      --color-line: #DDE5D7;
      --color-footer: #101712;
      --shadow-card: 0 18px 50px rgba(22, 34, 24, 0.08);
      --shadow-hover: 0 22px 60px rgba(22, 34, 24, 0.13);
      --radius-lg: 28px;
      --radius-md: 22px;
      --radius-sm: 16px;
      --container: 1200px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      margin: 0;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      color: var(--color-text);
      background:
        radial-gradient(circle at 12% 8%, rgba(24, 160, 88, 0.08), transparent 28%),
        linear-gradient(180deg, #FAFAF6 0%, #F7F8F3 52%, #FFFFFF 100%);
      line-height: 1.75;
      font-size: 16px;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), background-color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
    }

    input,
    select,
    textarea {
      width: 100%;
      outline: none;
      border: 1px solid rgba(21, 24, 22, 0.12);
      border-radius: 16px;
      background: #fff;
      color: var(--color-text);
      transition: border-color var(--ease), box-shadow var(--ease), background-color var(--ease);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(24, 160, 88, 0.72);
      box-shadow: 0 0 0 4px rgba(24, 160, 88, 0.12);
    }

    :focus-visible {
      outline: 3px solid rgba(255, 159, 28, 0.55);
      outline-offset: 3px;
    }

    .site-container {
      width: min(calc(100% - 40px), var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(250, 250, 246, 0.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(21, 24, 22, 0.08);
      transition: box-shadow var(--ease), background-color var(--ease);
    }

    .site-header.is-scrolled {
      background: rgba(250, 250, 246, 0.96);
      box-shadow: 0 12px 30px rgba(22, 34, 24, 0.08);
    }

    .topbar {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 22px;
      padding: 14px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      color: var(--color-heading);
      letter-spacing: -0.02em;
      white-space: nowrap;
      font-size: 22px;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: inline-block;
      background:
        linear-gradient(90deg, transparent 46%, rgba(255,255,255,0.8) 47%, rgba(255,255,255,0.8) 53%, transparent 54%),
        radial-gradient(circle at 50% 50%, transparent 42%, rgba(255,255,255,0.82) 43%, rgba(255,255,255,0.82) 48%, transparent 49%),
        linear-gradient(135deg, var(--color-primary), var(--color-secondary));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.45), 0 10px 22px rgba(24, 160, 88, 0.22);
      flex: 0 0 auto;
    }

    .nav-search {
      flex: 1;
      max-width: 520px;
      position: relative;
      margin-left: auto;
    }

    .nav-search input {
      height: 48px;
      padding: 0 118px 0 46px;
      border-radius: 999px;
      background: #fff;
      box-shadow: 0 10px 28px rgba(22, 34, 24, 0.06);
      font-size: 14px;
    }

    .nav-search::before {
      content: "⌕";
      position: absolute;
      left: 18px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--color-secondary);
      font-size: 22px;
      z-index: 1;
      line-height: 1;
    }

    .nav-search button {
      position: absolute;
      right: 6px;
      top: 6px;
      height: 36px;
      padding: 0 18px;
      border-radius: 999px;
      background: var(--color-primary);
      color: #fff;
      font-weight: 700;
      box-shadow: 0 8px 18px rgba(24, 160, 88, 0.22);
    }

    .nav-search button:hover {
      background: var(--color-primary-dark);
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid rgba(21, 24, 22, 0.1);
      color: var(--color-heading);
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 18px rgba(22, 34, 24, 0.06);
    }

    .menu-toggle span,
    .menu-toggle span::before,
    .menu-toggle span::after {
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      display: block;
      position: relative;
      transition: transform var(--ease), opacity var(--ease);
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      position: absolute;
      left: 0;
    }

    .menu-toggle span::before {
      top: -6px;
    }

    .menu-toggle span::after {
      top: 6px;
    }

    .menu-toggle.is-open span {
      transform: rotate(45deg);
    }

    .menu-toggle.is-open span::before {
      transform: translateY(6px) rotate(90deg);
    }

    .menu-toggle.is-open span::after {
      opacity: 0;
    }

    .nav-row {
      border-top: 1px solid rgba(21, 24, 22, 0.06);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 0 14px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .nav-links::-webkit-scrollbar {
      display: none;
    }

    .nav-links a {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 8px 15px;
      border-radius: 999px;
      color: #3E443E;
      font-weight: 700;
      font-size: 14px;
      white-space: nowrap;
      border: 1px solid transparent;
    }

    .nav-links a:hover {
      color: var(--color-primary-dark);
      background: rgba(24, 160, 88, 0.08);
      border-color: rgba(24, 160, 88, 0.14);
    }

    .nav-links a.active {
      color: #fff;
      background: var(--color-primary);
      border-color: var(--color-primary);
      box-shadow: 0 10px 22px rgba(24, 160, 88, 0.22);
    }

    .section {
      padding: 84px 0;
      position: relative;
    }

    .section-tight {
      padding: 56px 0;
    }

    .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-primary-dark);
      font-weight: 800;
      font-size: 13px;
      letter-spacing: 0.08em;
      margin-bottom: 12px;
    }

    .section-kicker::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--color-accent);
      box-shadow: 0 0 0 5px rgba(255, 159, 28, 0.15);
    }

    .section-title {
      margin: 0;
      color: var(--color-heading);
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.16;
      letter-spacing: -0.04em;
      font-weight: 800;
    }

    .section-lead {
      margin: 16px 0 0;
      max-width: 720px;
      color: var(--color-muted);
      font-size: 17px;
    }

    .btn-group {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      min-height: 48px;
      padding: 13px 22px;
      font-weight: 800;
      line-height: 1;
      border: 1px solid transparent;
      transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), color var(--ease), border-color var(--ease);
    }

    .btn-primary {
      background: var(--color-primary);
      color: #fff;
      box-shadow: 0 14px 28px rgba(24, 160, 88, 0.24);
    }

    .btn-primary:hover {
      background: var(--color-primary-dark);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(24, 160, 88, 0.3);
    }

    .btn-secondary {
      background: #fff;
      color: var(--color-heading);
      border-color: rgba(24, 160, 88, 0.22);
      box-shadow: 0 10px 24px rgba(22, 34, 24, 0.06);
    }

    .btn-secondary:hover {
      color: var(--color-primary-dark);
      border-color: rgba(24, 160, 88, 0.38);
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(22, 34, 24, 0.1);
    }

    .badge,
    .status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 6px 10px;
      font-weight: 800;
      font-size: 12px;
      line-height: 1;
      white-space: nowrap;
    }

    .badge {
      color: var(--color-primary-dark);
      background: rgba(24, 160, 88, 0.1);
    }

    .status::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
    }

    .status-live {
      color: #B86700;
      background: rgba(255, 159, 28, 0.16);
    }

    .status-soon {
      color: var(--color-primary-dark);
      background: rgba(24, 160, 88, 0.1);
      border: 1px solid rgba(24, 160, 88, 0.2);
    }

    .status-ended {
      color: #737A73;
      background: rgba(21, 24, 22, 0.07);
    }

    .hero {
      padding: 70px 0 58px;
      overflow: hidden;
    }

    .hero-panel {
      position: relative;
      border-radius: 36px;
      padding: 38px;
      background:
        linear-gradient(90deg, rgba(250, 250, 246, 0.94), rgba(250, 250, 246, 0.82)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      border: 1px solid rgba(21, 24, 22, 0.08);
      box-shadow: var(--shadow-card);
      overflow: hidden;
    }

    .hero-panel::after {
      content: "";
      position: absolute;
      right: -120px;
      top: -100px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      border: 46px solid rgba(24, 160, 88, 0.08);
      pointer-events: none;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--color-muted);
      font-size: 14px;
      font-weight: 700;
    }

    .breadcrumb a {
      color: var(--color-secondary);
    }

    .hero h1 {
      margin: 0;
      max-width: 760px;
      font-size: clamp(36px, 5vw, 60px);
      line-height: 1.1;
      letter-spacing: -0.055em;
      color: var(--color-heading);
      font-weight: 850;
    }

    .hero-text {
      margin-top: 18px;
      max-width: 650px;
      font-size: 18px;
      color: #495149;
    }

    .hero-search-box {
      margin-top: 28px;
      display: flex;
      gap: 10px;
      padding: 8px;
      background: rgba(255,255,255,0.86);
      border: 1px solid rgba(21, 24, 22, 0.1);
      border-radius: 22px;
      max-width: 680px;
      box-shadow: 0 16px 36px rgba(22, 34, 24, 0.08);
    }

    .hero-search-box input {
      min-height: 54px;
      border: 0;
      box-shadow: none;
      background: transparent;
      padding: 0 14px;
      border-radius: 16px;
    }

    .hero-search-box button {
      flex: 0 0 auto;
      min-width: 128px;
      border-radius: 16px;
      background: var(--color-primary);
      color: #fff;
      font-weight: 800;
      padding: 0 18px;
    }

    .hero-search-box button:hover {
      background: var(--color-primary-dark);
      transform: translateY(-1px);
    }

    .hero-tags {
      margin-top: 18px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .summary-board {
      position: relative;
      z-index: 1;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(21, 24, 22, 0.08);
      border-radius: 28px;
      padding: 18px;
      box-shadow: 0 18px 40px rgba(22, 34, 24, 0.1);
    }

    .summary-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 14px;
    }

    .summary-head h2 {
      margin: 0;
      font-size: 20px;
      font-weight: 850;
      color: var(--color-heading);
    }

    .summary-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-bottom: 14px;
    }

    .summary-card {
      border-radius: 20px;
      padding: 15px;
      background: var(--color-soft);
      border: 1px solid rgba(21, 24, 22, 0.06);
    }

    .summary-card strong {
      display: block;
      font-size: 26px;
      line-height: 1;
      color: var(--color-heading);
      letter-spacing: -0.04em;
    }

    .summary-card span {
      display: block;
      margin-top: 8px;
      color: var(--color-muted);
      font-weight: 700;
      font-size: 13px;
    }

    .hot-match {
      padding: 14px;
      border-radius: 18px;
      background: #151816;
      color: #fff;
      overflow: hidden;
      position: relative;
    }

    .hot-match::after {
      content: "";
      position: absolute;
      right: -28px;
      bottom: -30px;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 14px solid rgba(24, 160, 88, 0.3);
    }

    .hot-match small {
      color: rgba(255,255,255,0.62);
      font-weight: 700;
    }

    .hot-match .teams {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      margin-top: 10px;
      font-weight: 850;
      font-size: 16px;
    }

    .hot-match .score {
      color: var(--color-accent);
      font-size: 22px;
      letter-spacing: -0.03em;
    }

    .filter-card {
      background: #fff;
      border: 1px solid rgba(21, 24, 22, 0.08);
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: var(--shadow-card);
      height: 100%;
    }

    .filter-card h2,
    .league-card h3,
    .score-list-card h3,
    .feature-card h3,
    .process-card h3,
    .cta-card h2 {
      margin: 0;
      color: var(--color-heading);
      font-weight: 850;
      letter-spacing: -0.025em;
    }

    .filter-card h2 {
      font-size: 24px;
      margin-bottom: 16px;
    }

    .filter-group {
      display: grid;
      gap: 13px;
    }

    .filter-group label {
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 800;
    }

    .filter-group select,
    .filter-group input {
      min-height: 48px;
      padding: 0 14px;
      margin-top: 6px;
    }

    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 18px;
    }

    .filter-pills a {
      padding: 8px 12px;
      border-radius: 999px;
      border: 1px solid rgba(21, 24, 22, 0.09);
      background: var(--color-soft);
      color: var(--color-muted);
      font-size: 13px;
      font-weight: 800;
    }

    .filter-pills a:hover,
    .filter-pills a.active {
      background: rgba(24, 160, 88, 0.1);
      color: var(--color-primary-dark);
      border-color: rgba(24, 160, 88, 0.24);
    }

    .score-list-card {
      background: #fff;
      border: 1px solid rgba(21, 24, 22, 0.08);
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: var(--shadow-card);
    }

    .score-list-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 18px;
      margin-bottom: 18px;
    }

    .score-list-header h3 {
      font-size: 24px;
    }

    .score-row {
      display: grid;
      grid-template-columns: 110px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 16px 0;
      border-top: 1px solid rgba(21, 24, 22, 0.08);
    }

    .score-row:first-of-type {
      border-top: 0;
      padding-top: 0;
    }

    .match-time {
      color: var(--color-muted);
      font-weight: 800;
      font-size: 13px;
    }

    .team-line {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 12px;
      align-items: center;
      min-width: 0;
    }

    .team {
      display: flex;
      align-items: center;
      gap: 9px;
      min-width: 0;
      font-weight: 850;
      color: var(--color-heading);
    }

    .team:last-child {
      justify-content: flex-end;
      text-align: right;
    }

    .team-dot {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 35% 30%, rgba(255,255,255,0.82), transparent 25%),
        linear-gradient(135deg, rgba(24,160,88,0.9), rgba(14,124,102,0.95));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.4);
      flex: 0 0 auto;
    }

    .score-pill {
      min-width: 72px;
      padding: 7px 12px;
      border-radius: 999px;
      text-align: center;
      font-weight: 900;
      letter-spacing: -0.02em;
      color: var(--color-heading);
      background: var(--color-soft-2);
      border: 1px solid rgba(21, 24, 22, 0.08);
    }

    .score-pill.live {
      color: #fff;
      background: var(--color-accent);
      border-color: var(--color-accent);
      box-shadow: 0 10px 20px rgba(255, 159, 28, 0.18);
    }

    .league-grid {
      margin-top: 28px;
    }

    .league-card {
      position: relative;
      height: 100%;
      padding: 22px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(21, 24, 22, 0.08);
      background: #fff;
      box-shadow: 0 14px 34px rgba(22, 34, 24, 0.06);
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
      overflow: hidden;
    }

    .league-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(24, 160, 88, 0.28);
    }

    .league-card h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .league-card p {
      margin: 0 0 16px;
      color: var(--color-muted);
      font-size: 15px;
    }

    .mini-bars {
      display: flex;
      align-items: end;
      gap: 6px;
      height: 42px;
      margin-top: 12px;
    }

    .mini-bars span {
      width: 16%;
      border-radius: 8px 8px 3px 3px;
      background: linear-gradient(180deg, rgba(24, 160, 88, 0.85), rgba(14, 124, 102, 0.7));
    }

    .mini-bars span:nth-child(1) { height: 44%; }
    .mini-bars span:nth-child(2) { height: 68%; }
    .mini-bars span:nth-child(3) { height: 52%; }
    .mini-bars span:nth-child(4) { height: 88%; }
    .mini-bars span:nth-child(5) { height: 62%; }

    .image-feature {
      border-radius: 34px;
      background: #151816;
      color: #fff;
      overflow: hidden;
      box-shadow: var(--shadow-card);
    }

    .image-feature img {
      width: 100%;
      height: 100%;
      min-height: 360px;
      object-fit: cover;
      opacity: 0.72;
    }

    .image-feature .content {
      padding: 34px;
    }

    .image-feature h2 {
      margin: 0;
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.18;
      font-weight: 850;
      letter-spacing: -0.04em;
    }

    .image-feature p {
      color: rgba(255,255,255,0.76);
      margin: 14px 0 0;
    }

    .feature-list {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .feature-item {
      display: flex;
      gap: 12px;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.1);
    }

    .feature-icon {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: rgba(24, 160, 88, 0.22);
      color: #8BF2B6;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .feature-item strong {
      display: block;
      color: #fff;
    }

    .feature-item span {
      display: block;
      color: rgba(255,255,255,0.68);
      font-size: 14px;
      line-height: 1.6;
      margin-top: 2px;
    }

    .process-card {
      height: 100%;
      border-radius: var(--radius-md);
      background: #fff;
      border: 1px solid rgba(21, 24, 22, 0.08);
      padding: 24px;
      box-shadow: 0 14px 34px rgba(22, 34, 24, 0.06);
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }

    .process-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(24, 160, 88, 0.28);
    }

    .step-num {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(24, 160, 88, 0.1);
      color: var(--color-primary-dark);
      font-weight: 900;
      margin-bottom: 18px;
    }

    .process-card h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .process-card p {
      margin: 0;
      color: var(--color-muted);
    }

    .faq-wrap {
      max-width: 920px;
      margin: 30px auto 0;
    }

    .accordion {
      background: transparent;
    }

    .accordion-item {
      margin-bottom: 14px;
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(21, 24, 22, 0.08);
      box-shadow: 0 12px 30px rgba(22, 34, 24, 0.05);
    }

    .accordion-title {
      border: 0 !important;
      padding: 20px 54px 20px 22px;
      color: var(--color-heading);
      font-size: 17px;
      font-weight: 850;
      line-height: 1.5;
      background: #fff;
    }

    .accordion-title:hover,
    .accordion-title:focus {
      background: var(--color-soft);
      color: var(--color-primary-dark);
    }

    .accordion-title::before {
      color: var(--color-primary-dark);
      font-weight: 900;
      right: 22px;
      margin-top: -0.6rem;
    }

    .accordion-content {
      border: 0 !important;
      border-top: 1px solid rgba(21, 24, 22, 0.08) !important;
      padding: 18px 22px 22px;
      color: var(--color-muted);
      background: #fff;
      line-height: 1.85;
    }

    .cta-panel {
      border-radius: 36px;
      padding: 34px;
      background:
        radial-gradient(circle at 90% 10%, rgba(255, 159, 28, 0.16), transparent 24%),
        linear-gradient(135deg, #101712 0%, #18241C 58%, #103A2B 100%);
      color: #fff;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-card);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      left: -80px;
      bottom: -110px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      border: 38px solid rgba(24, 160, 88, 0.17);
      pointer-events: none;
    }

    .cta-card {
      position: relative;
      z-index: 1;
    }

    .cta-card h2 {
      color: #fff;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.18;
    }

    .cta-card p {
      color: rgba(255,255,255,0.72);
      margin: 16px 0 24px;
      max-width: 620px;
    }

    .cta-points {
      display: grid;
      gap: 12px;
      margin-top: 20px;
    }

    .cta-points li {
      list-style: none;
      display: flex;
      gap: 10px;
      color: rgba(255,255,255,0.8);
    }

    .cta-points li::before {
      content: "✓";
      color: #8BF2B6;
      font-weight: 900;
    }

    .contact-form {
      position: relative;
      z-index: 1;
      background: rgba(255,255,255,0.94);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 28px;
      padding: 24px;
      box-shadow: 0 20px 48px rgba(0,0,0,0.18);
    }

    .contact-form label {
      display: block;
      color: var(--color-heading);
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 12px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
      margin-top: 7px;
      min-height: 48px;
      padding: 0 14px;
    }

    .contact-form textarea {
      min-height: 112px;
      padding-top: 13px;
      resize: vertical;
    }

    .contact-form .btn {
      width: 100%;
      margin-top: 6px;
    }

    .site-footer {
      background: var(--color-footer);
      color: rgba(250, 250, 246, 0.82);
      padding: 64px 0 26px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fff;
      font-size: 22px;
      font-weight: 850;
      margin-bottom: 16px;
    }

    .footer-desc {
      margin: 0;
      max-width: 360px;
      color: rgba(250,250,246,0.62);
      line-height: 1.8;
    }

    .footer-title {
      color: #fff;
      font-weight: 850;
      margin-bottom: 14px;
    }

    .footer-links {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(250,250,246,0.62);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: #8BF2B6;
    }

    .footer-divider {
      border: 0;
      border-top: 1px solid rgba(250,250,246,0.12);
      margin: 34px 0 22px;
    }

    .footer-bottom {
      display: grid;
      gap: 8px;
      justify-items: center;
      text-align: center;
      color: rgba(250,250,246,0.56);
      font-size: 13px;
      line-height: 1.7;
    }

    .footer-bottom a {
      color: rgba(250,250,246,0.72);
      margin: 0 5px;
    }

    .footer-bottom a:hover {
      color: #8BF2B6;
    }

    @media (max-width: 1024px) {
      .topbar {
        flex-wrap: wrap;
      }

      .brand {
        margin-right: auto;
      }

      .nav-search {
        order: 3;
        width: 100%;
        max-width: none;
        flex-basis: 100%;
      }

      .hero-panel {
        padding: 28px;
      }

      .score-row {
        grid-template-columns: 92px 1fr;
      }

      .score-row .status {
        grid-column: 2;
        justify-self: start;
      }
    }

    @media (max-width: 768px) {
      .site-container {
        width: min(calc(100% - 28px), var(--container));
      }

      .menu-toggle {
        display: inline-flex;
      }

      .nav-row {
        display: none;
      }

      .nav-row.is-open {
        display: block;
      }

      .nav-links {
        padding-bottom: 12px;
      }

      .section {
        padding: 58px 0;
      }

      .hero {
        padding: 34px 0 44px;
      }

      .hero-panel {
        border-radius: 28px;
        padding: 22px;
      }

      .hero-search-box {
        flex-direction: column;
        border-radius: 20px;
      }

      .hero-search-box button {
        min-height: 48px;
        width: 100%;
      }

      .summary-board {
        margin-top: 24px;
      }

      .score-list-header {
        display: grid;
      }

      .score-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px 0;
      }

      .score-row .status {
        grid-column: auto;
      }

      .team-line {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 14px;
        border-radius: 18px;
        background: var(--color-soft);
      }

      .team:last-child {
        justify-content: flex-start;
        text-align: left;
      }

      .score-pill {
        width: fit-content;
      }

      .image-feature img {
        min-height: 240px;
      }

      .cta-panel {
        padding: 24px;
        border-radius: 28px;
      }

      .contact-form {
        margin-top: 24px;
      }
    }

    @media (max-width: 520px) {
      .topbar {
        gap: 12px;
      }

      .brand {
        font-size: 19px;
      }

      .brand-mark {
        width: 32px;
        height: 32px;
      }

      .nav-search input {
        height: 46px;
        padding-right: 92px;
        font-size: 13px;
      }

      .nav-search button {
        padding: 0 13px;
        font-size: 13px;
      }

      .hero h1 {
        font-size: 35px;
      }

      .summary-grid {
        grid-template-columns: 1fr;
      }

      .btn-group,
      .btn {
        width: 100%;
      }

      .btn {
        justify-content: center;
      }

      .filter-card,
      .score-list-card,
      .process-card,
      .contact-form {
        padding: 18px;
        border-radius: 22px;
      }

      .footer-bottom a {
        display: inline-block;
        margin-top: 4px;
      }
    }

/* roulang page: category3 */
:root{
      --green:#18A058;
      --green-dark:#13934B;
      --green-soft:#EAF6EE;
      --teal:#0E7C66;
      --orange:#FF9F1C;
      --orange-soft:#FFF2DB;
      --ink:#151816;
      --ink-2:#222520;
      --muted:#657065;
      --weak:#8B958B;
      --bg:#F7F8F3;
      --bg-2:#FAFAF6;
      --line:#DDE5D7;
      --white:#FFFFFF;
      --footer:#101712;
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --shadow:0 18px 50px rgba(22,34,24,.08);
      --shadow-strong:0 24px 70px rgba(22,34,24,.13);
      --ease:all .25s ease;
      --container:1220px;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 4%,rgba(24,160,88,.08),transparent 30%),
        radial-gradient(circle at 92% 10%,rgba(255,159,28,.10),transparent 28%),
        var(--bg);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer}
    :focus-visible{
      outline:3px solid rgba(24,160,88,.28);
      outline-offset:3px;
      border-radius:12px;
    }
    .site-container{
      width:min(calc(100% - 40px),var(--container));
      margin:0 auto;
    }
    .section{
      padding:86px 0;
      position:relative;
    }
    .section.compact{padding:58px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:34px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--green-dark);
      background:var(--green-soft);
      border:1px solid rgba(24,160,88,.16);
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
      font-weight:700;
      letter-spacing:.04em;
      margin-bottom:14px;
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 5px rgba(24,160,88,.12);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(36px,5.2vw,60px);
      line-height:1.08;
      letter-spacing:-.045em;
      font-weight:800;
      margin-bottom:22px;
      color:var(--ink);
    }
    h2{
      font-size:clamp(28px,3.4vw,42px);
      line-height:1.18;
      letter-spacing:-.035em;
      font-weight:800;
      margin-bottom:12px;
      color:var(--ink);
    }
    h3{
      font-size:20px;
      line-height:1.35;
      font-weight:800;
      margin-bottom:8px;
      color:var(--ink-2);
    }
    .lead{
      font-size:17px;
      color:var(--muted);
      max-width:720px;
      line-height:1.85;
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(250,250,246,.88);
      backdrop-filter:saturate(160%) blur(18px);
      border-bottom:1px solid rgba(21,24,22,.08);
      transition:var(--ease);
    }
    .site-header.is-scrolled{
      box-shadow:0 14px 36px rgba(22,34,24,.08);
      background:rgba(250,250,246,.94);
    }
    .nav-shell{
      min-height:82px;
      display:grid;
      grid-template-columns:auto minmax(260px,520px) auto;
      align-items:center;
      gap:20px;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:11px;
      font-weight:850;
      font-size:22px;
      letter-spacing:-.03em;
      white-space:nowrap;
    }
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:50%;
      display:inline-block;
      background:
        linear-gradient(90deg,transparent 46%,rgba(255,255,255,.9) 46% 54%,transparent 54%),
        radial-gradient(circle at 35% 35%,#fff 0 8%,transparent 9%),
        var(--green);
      box-shadow:inset 0 0 0 3px rgba(255,255,255,.36),0 10px 22px rgba(24,160,88,.22);
      position:relative;
      flex:0 0 auto;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:8px;
      border:1.5px solid rgba(255,255,255,.9);
      border-radius:50%;
    }
    .nav-search{
      display:flex;
      align-items:center;
      gap:10px;
      background:var(--white);
      border:1px solid rgba(21,24,22,.09);
      border-radius:999px;
      padding:8px 9px 8px 17px;
      box-shadow:0 12px 35px rgba(22,34,24,.06);
    }
    .search-icon{color:var(--green);font-weight:800;font-size:16px}
    .nav-search input{
      border:0;
      box-shadow:none;
      margin:0;
      height:34px;
      min-width:0;
      background:transparent;
      color:var(--ink);
      font-size:14px;
    }
    .nav-search input:focus{box-shadow:none;border:0;background:transparent}
    .search-submit{
      border:0;
      border-radius:999px;
      background:var(--green);
      color:#fff;
      padding:9px 16px;
      font-size:13px;
      font-weight:800;
      transition:var(--ease);
      white-space:nowrap;
    }
    .search-submit:hover{
      background:var(--green-dark);
      transform:translateY(-1px);
      box-shadow:0 10px 22px rgba(24,160,88,.22);
    }
    .nav-right{
      display:flex;
      align-items:center;
      gap:14px;
      justify-content:flex-end;
      min-width:0;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:8px;
      white-space:nowrap;
    }
    .nav-links a{
      border-radius:999px;
      padding:9px 13px;
      color:#394139;
      font-size:14px;
      font-weight:750;
    }
    .nav-links a:hover{
      color:var(--green-dark);
      background:rgba(24,160,88,.08);
    }
    .nav-links a.active{
      color:#fff;
      background:var(--ink);
      box-shadow:0 10px 24px rgba(21,24,22,.12);
    }
    .menu-toggle{
      display:none;
      width:42px;height:42px;
      border-radius:14px;
      border:1px solid rgba(21,24,22,.10);
      background:#fff;
      color:var(--ink);
      font-weight:900;
      align-items:center;
      justify-content:center;
      transition:var(--ease);
    }
    .menu-toggle:hover{border-color:rgba(24,160,88,.35);color:var(--green-dark)}
    .hero{
      padding:72px 0 66px;
      position:relative;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(247,248,243,.96),rgba(247,248,243,.82)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      opacity:.9;
      z-index:-2;
    }
    .hero::after{
      content:"";
      position:absolute;
      width:520px;height:520px;
      right:-180px;top:20px;
      border:1px solid rgba(24,160,88,.13);
      border-radius:50%;
      box-shadow:inset 0 0 0 28px rgba(24,160,88,.04);
      z-index:-1;
    }
    .hero-card{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(21,24,22,.08);
      border-radius:var(--radius-xl);
      padding:28px;
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,rgba(24,160,88,.08),transparent 42%,rgba(255,159,28,.08));
      pointer-events:none;
    }
    .hero-actions{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      margin-top:28px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      border-radius:999px;
      border:1px solid transparent;
      padding:14px 22px;
      font-size:15px;
      font-weight:850;
      line-height:1;
      transition:var(--ease);
    }
    .btn-primary{
      background:var(--green);
      color:#fff;
      box-shadow:0 15px 32px rgba(24,160,88,.20);
    }
    .btn-primary:hover{
      background:var(--green-dark);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(24,160,88,.25);
    }
    .btn-secondary{
      background:#fff;
      color:var(--ink);
      border-color:rgba(24,160,88,.18);
      box-shadow:0 12px 28px rgba(22,34,24,.06);
    }
    .btn-secondary:hover{
      color:var(--green-dark);
      border-color:rgba(24,160,88,.38);
      transform:translateY(-2px);
    }
    .hero-topics{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:26px;
    }
    .topic-chip,.badge{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border-radius:999px;
      padding:7px 11px;
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      color:#4A554B;
      font-size:13px;
      font-weight:750;
    }
    .topic-chip.hot{background:var(--orange-soft);color:#9A5B00;border-color:rgba(255,159,28,.25)}
    .magazine-visual{
      position:relative;
      min-height:445px;
    }
    .cover-frame{
      border-radius:30px;
      overflow:hidden;
      border:1px solid rgba(21,24,22,.08);
      box-shadow:var(--shadow-strong);
      height:315px;
      position:relative;
    }
    .cover-frame img{
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .cover-frame::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(21,24,22,.05),rgba(21,24,22,.48));
    }
    .cover-caption{
      position:absolute;
      left:24px;
      right:24px;
      bottom:22px;
      z-index:2;
      color:#fff;
    }
    .cover-caption strong{
      display:block;
      font-size:22px;
      line-height:1.3;
      margin-bottom:8px;
    }
    .cover-caption span{font-size:13px;opacity:.88}
    .floating-match{
      position:absolute;
      right:18px;
      bottom:42px;
      width:min(92%,390px);
      background:#fff;
      border:1px solid rgba(21,24,22,.09);
      border-radius:24px;
      padding:20px;
      box-shadow:0 24px 70px rgba(22,34,24,.14);
    }
    .match-meta{
      display:flex;
      justify-content:space-between;
      align-items:center;
      color:var(--muted);
      font-size:13px;
      font-weight:750;
      margin-bottom:15px;
    }
    .status-live{
      color:#A45D00;
      background:var(--orange-soft);
      border:1px solid rgba(255,159,28,.25);
      padding:4px 9px;
      border-radius:999px;
    }
    .team-line{
      display:grid;
      grid-template-columns:1fr auto;
      gap:12px;
      align-items:center;
      padding:10px 0;
      border-top:1px solid rgba(21,24,22,.07);
      font-weight:850;
    }
    .score{
      font-size:26px;
      letter-spacing:-.04em;
      color:var(--ink);
    }
    .mini-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:18px;
    }
    .mini-stat{
      background:var(--bg-2);
      border-radius:16px;
      padding:12px;
      border:1px solid rgba(21,24,22,.07);
    }
    .mini-stat b{
      display:block;
      font-size:20px;
      line-height:1;
      letter-spacing:-.03em;
      color:var(--green-dark);
      margin-bottom:5px;
    }
    .mini-stat span{
      color:var(--muted);
      font-size:12px;
      font-weight:700;
    }
    .card{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      padding:24px;
      transition:var(--ease);
      height:100%;
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-4px);
      border-color:rgba(24,160,88,.26);
      box-shadow:var(--shadow-strong);
    }
    .news-lead{
      display:grid;
      grid-template-columns:minmax(0,1.08fr) minmax(300px,.92fr);
      gap:26px;
      align-items:stretch;
    }
    .feature-news{
      min-height:430px;
      padding:0;
      position:relative;
      overflow:hidden;
    }
    .feature-news img{
      height:100%;
      width:100%;
      object-fit:cover;
      min-height:430px;
    }
    .feature-news .overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(21,24,22,.06),rgba(21,24,22,.78));
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      padding:32px;
      color:#fff;
    }
    .feature-news h2,.feature-news h3{color:#fff}
    .feature-news p{color:rgba(255,255,255,.83);margin-bottom:0}
    .news-stack{
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    .news-item{
      display:grid;
      grid-template-columns:92px 1fr;
      gap:16px;
      align-items:center;
      padding:16px;
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:22px;
      transition:var(--ease);
    }
    .news-item:hover{
      transform:translateY(-3px);
      border-color:rgba(24,160,88,.28);
      box-shadow:var(--shadow);
    }
    .news-thumb{
      width:92px;
      height:82px;
      border-radius:16px;
      overflow:hidden;
      background:var(--green-soft);
    }
    .news-thumb img{width:100%;height:100%;object-fit:cover}
    .news-item h3{font-size:18px;margin-bottom:6px}
    .news-item p{
      margin-bottom:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
    }
    .meta-row{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
      margin-bottom:10px;
      color:var(--weak);
      font-size:13px;
      font-weight:750;
    }
    .meta-row .dot{
      width:5px;height:5px;border-radius:50%;background:var(--line);
    }
    .league-tabs{
      display:flex;
      align-items:center;
      gap:10px;
      flex-wrap:wrap;
      margin-top:18px;
    }
    .league-tabs button{
      border:1px solid rgba(21,24,22,.08);
      background:#fff;
      color:var(--muted);
      padding:10px 14px;
      border-radius:999px;
      font-weight:800;
      font-size:14px;
      transition:var(--ease);
    }
    .league-tabs button:hover,
    .league-tabs button.is-active{
      color:#fff;
      background:var(--green);
      border-color:var(--green);
      box-shadow:0 12px 25px rgba(24,160,88,.18);
    }
    .topic-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr 1fr;
      gap:22px;
    }
    .topic-card{
      min-height:260px;
      position:relative;
      display:flex;
      flex-direction:column;
      justify-content:space-between;
    }
    .topic-card.large{
      grid-row:span 2;
      min-height:542px;
      background:
        linear-gradient(180deg,rgba(255,255,255,.88),rgba(255,255,255,.96)),
        url("/assets/images/coverpic/cover-4.webp") center/cover no-repeat;
    }
    .topic-icon{
      width:46px;height:46px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:var(--green-soft);
      color:var(--green-dark);
      font-weight:900;
      font-size:20px;
      margin-bottom:18px;
    }
    .topic-card p{color:var(--muted);margin-bottom:18px}
    .link-more{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--green-dark);
      font-weight:850;
      font-size:14px;
    }
    .link-more:hover{gap:12px;color:var(--teal)}
    .schedule-strip{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:28px;
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .schedule-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:22px 24px;
      border-bottom:1px solid rgba(21,24,22,.07);
      background:linear-gradient(90deg,#fff,var(--green-soft));
    }
    .schedule-list{
      display:grid;
      grid-template-columns:repeat(3,1fr);
    }
    .schedule-card{
      padding:24px;
      border-right:1px solid rgba(21,24,22,.07);
    }
    .schedule-card:last-child{border-right:0}
    .time-badge{
      display:inline-flex;
      padding:5px 10px;
      border-radius:999px;
      background:var(--orange-soft);
      color:#965700;
      font-size:12px;
      font-weight:850;
      margin-bottom:16px;
    }
    .versus{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      font-weight:900;
      margin:15px 0;
    }
    .vs-pill{
      border-radius:999px;
      background:var(--bg);
      padding:5px 9px;
      color:var(--weak);
      font-size:12px;
      flex:0 0 auto;
    }
    .watch-note{
      color:var(--muted);
      font-size:14px;
      line-height:1.65;
      margin-bottom:0;
    }
    .data-board{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .data-tile{
      background:var(--ink);
      color:#fff;
      border-radius:24px;
      padding:24px;
      box-shadow:0 18px 45px rgba(21,24,22,.13);
      position:relative;
      overflow:hidden;
    }
    .data-tile:nth-child(even){background:#17351F}
    .data-tile::after{
      content:"";
      position:absolute;
      right:-30px;bottom:-30px;
      width:112px;height:112px;
      border-radius:50%;
      border:16px solid rgba(255,255,255,.06);
    }
    .data-tile b{
      display:block;
      font-size:34px;
      line-height:1;
      letter-spacing:-.05em;
      margin-bottom:10px;
      color:#fff;
    }
    .data-tile span{
      display:block;
      color:rgba(255,255,255,.68);
      font-size:14px;
      font-weight:700;
      line-height:1.6;
    }
    .trend{
      display:inline-flex;
      margin-top:16px;
      border-radius:999px;
      padding:5px 9px;
      background:rgba(24,160,88,.18);
      color:#BDF1CF;
      font-size:12px;
      font-weight:850;
    }
    .analysis-layout{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:26px;
      align-items:stretch;
    }
    .analysis-panel{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:28px;
      padding:28px;
      box-shadow:var(--shadow);
    }
    .bar-list{
      display:flex;
      flex-direction:column;
      gap:18px;
      margin-top:22px;
    }
    .bar-item{
      display:grid;
      grid-template-columns:110px 1fr auto;
      gap:14px;
      align-items:center;
      color:var(--muted);
      font-weight:750;
      font-size:14px;
    }
    .bar-track{
      height:10px;
      border-radius:999px;
      background:var(--bg);
      overflow:hidden;
    }
    .bar-fill{
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--green),var(--teal));
    }
    .quote-card{
      background:linear-gradient(135deg,var(--green-soft),#fff);
      border:1px solid rgba(24,160,88,.16);
      border-radius:28px;
      padding:30px;
      box-shadow:var(--shadow);
    }
    .quote-card p{
      font-size:20px;
      line-height:1.75;
      color:var(--ink);
      margin-bottom:22px;
      font-weight:700;
    }
    .quote-meta{color:var(--muted);font-weight:800}
    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      margin:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border:1px solid rgba(21,24,22,.08);
      border-radius:20px;
      overflow:hidden;
      background:#fff;
      box-shadow:0 12px 30px rgba(22,34,24,.05);
      transition:var(--ease);
    }
    .accordion-item:hover{border-color:rgba(24,160,88,.22)}
    .accordion-title{
      border:0 !important;
      color:var(--ink) !important;
      font-size:17px;
      font-weight:850;
      padding:20px 56px 20px 22px;
      line-height:1.55;
      background:#fff;
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:var(--green-soft);
      color:var(--green-dark) !important;
    }
    .accordion-title::before{
      right:22px;
      margin-top:-10px;
      color:var(--green-dark);
      font-size:22px;
    }
    .accordion-content{
      border:0 !important;
      border-top:1px solid rgba(21,24,22,.07) !important;
      color:var(--muted);
      line-height:1.85;
      padding:20px 22px 24px;
      background:#fff;
    }
    .cta{
      padding:82px 0;
    }
    .cta-box{
      background:
        linear-gradient(120deg,rgba(21,24,22,.92),rgba(16,23,18,.92)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      color:#fff;
      border-radius:34px;
      padding:42px;
      box-shadow:0 30px 80px rgba(21,24,22,.22);
      overflow:hidden;
      position:relative;
    }
    .cta-box::after{
      content:"";
      position:absolute;
      right:-120px;top:-120px;
      width:320px;height:320px;
      border-radius:50%;
      background:rgba(24,160,88,.20);
      filter:blur(4px);
    }
    .cta-box h2{color:#fff}
    .cta-box .lead{color:rgba(255,255,255,.76)}
    .cta-card{
      position:relative;
      z-index:1;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      border-radius:26px;
      padding:24px;
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .form-field.full{grid-column:1/-1}
    .form-field label{
      display:block;
      color:rgba(255,255,255,.78);
      font-size:13px;
      font-weight:800;
      margin-bottom:7px;
    }
    .form-field input,
    .form-field select,
    .form-field textarea{
      width:100%;
      margin:0;
      border-radius:16px;
      border:1px solid rgba(255,255,255,.16);
      background:rgba(255,255,255,.92);
      color:var(--ink);
      box-shadow:none;
      min-height:48px;
      padding:12px 14px;
      transition:var(--ease);
    }
    .form-field textarea{min-height:110px;resize:vertical}
    .form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus{
      border-color:rgba(24,160,88,.82);
      box-shadow:0 0 0 4px rgba(24,160,88,.16);
      background:#fff;
    }
    .site-footer{
      background:var(--footer);
      color:rgba(255,255,255,.82);
      padding:66px 0 28px;
    }
    .footer-brand{
      display:inline-flex;
      align-items:center;
      gap:11px;
      color:#fff;
      font-size:22px;
      font-weight:850;
      margin-bottom:18px;
      letter-spacing:-.03em;
    }
    .footer-desc{
      color:rgba(255,255,255,.64);
      line-height:1.85;
      max-width:380px;
      margin-bottom:24px;
    }
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:14px;
      font-size:15px;
    }
    .footer-links{
      list-style:none;
      margin:0;
      padding:0;
      display:flex;
      flex-direction:column;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.62);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      padding-left:4px;
    }
    .footer-divider{
      border:0;
      border-top:1px solid rgba(255,255,255,.10);
      margin:36px 0 22px;
    }
    .footer-bottom{
      display:flex;
      flex-direction:column;
      align-items:center;
      text-align:center;
      gap:8px;
      color:rgba(255,255,255,.58);
      font-size:13px;
      line-height:1.8;
    }
    .footer-bottom a{
      color:rgba(255,255,255,.70);
      margin:0 6px;
    }
    .footer-bottom a:hover{color:#fff}
    @media (max-width:1180px){
      .nav-shell{
        grid-template-columns:auto 1fr auto;
      }
      .nav-links{
        position:absolute;
        left:20px;
        right:20px;
        top:82px;
        padding:14px;
        background:rgba(255,255,255,.96);
        border:1px solid rgba(21,24,22,.08);
        border-radius:22px;
        box-shadow:var(--shadow);
        overflow-x:auto;
        transform:translateY(-10px);
        opacity:0;
        pointer-events:none;
      }
      .nav-links.is-open{
        opacity:1;
        transform:translateY(0);
        pointer-events:auto;
      }
      .menu-toggle{display:inline-flex}
      .news-lead,.analysis-layout{grid-template-columns:1fr}
      .topic-grid{grid-template-columns:1fr 1fr}
      .topic-card.large{grid-row:auto;min-height:320px}
      .data-board{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:768px){
      .site-container{width:min(calc(100% - 28px),var(--container))}
      .section{padding:58px 0}
      .section-head{
        display:block;
        margin-bottom:26px;
      }
      .nav-shell{
        min-height:auto;
        padding:14px 0;
        grid-template-columns:1fr auto;
        gap:12px;
      }
      .brand{font-size:20px}
      .nav-search{
        grid-column:1/-1;
        order:3;
        width:100%;
      }
      .nav-search input{font-size:13px}
      .nav-links{
        top:118px;
        left:14px;
        right:14px;
      }
      .hero{padding:46px 0 48px}
      .hero-card{padding:22px}
      .magazine-visual{min-height:auto;margin-top:28px}
      .cover-frame{height:270px}
      .floating-match{
        position:relative;
        right:auto;
        bottom:auto;
        width:100%;
        margin-top:-28px;
      }
      .news-item{grid-template-columns:78px 1fr;padding:13px}
      .news-thumb{width:78px;height:72px}
      .topic-grid,.data-board{grid-template-columns:1fr}
      .schedule-list{grid-template-columns:1fr}
      .schedule-card{border-right:0;border-bottom:1px solid rgba(21,24,22,.07)}
      .schedule-card:last-child{border-bottom:0}
      .bar-item{grid-template-columns:1fr;gap:8px}
      .cta-box{padding:28px;border-radius:28px}
      .form-grid{grid-template-columns:1fr}
      .mini-stats{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      h1{font-size:34px}
      h2{font-size:27px}
      .hero-actions .btn{width:100%}
      .search-submit{padding:9px 12px}
      .topic-chip{font-size:12px}
      .feature-news img{min-height:360px}
      .feature-news .overlay{padding:24px}
      .schedule-head{display:block}
      .schedule-head .badge{margin-top:12px}
    }

/* roulang page: category4 */
:root{
      --color-primary:#18A058;
      --color-primary-dark:#13934B;
      --color-primary-soft:#E8F6EE;
      --color-accent:#FF9F1C;
      --color-cyan:#0E7C66;
      --color-text:#151816;
      --color-text-2:#39413B;
      --color-muted:#6D766F;
      --color-bg:#F7F8F3;
      --color-bg-2:#EEF3EA;
      --color-card:#FFFFFF;
      --color-line:#DDE5D7;
      --color-line-2:rgba(21,24,22,.08);
      --color-footer:#101712;
      --radius-sm:12px;
      --radius-md:18px;
      --radius-lg:28px;
      --radius-xl:36px;
      --shadow-sm:0 10px 26px rgba(22,34,24,.06);
      --shadow-md:0 18px 50px rgba(22,34,24,.09);
      --shadow-lg:0 28px 70px rgba(22,34,24,.13);
      --ease:all .26s ease;
      --container:1220px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--color-text);
      background:
        radial-gradient(circle at 8% 8%, rgba(24,160,88,.08), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(255,159,28,.09), transparent 24%),
        linear-gradient(180deg,#FAFAF6 0%, var(--color-bg) 56%, #FAFAF6 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--color-primary)}
    img{max-width:100%;display:block}
    button,input,select,textarea{
      font:inherit;
      outline:none;
    }
    button{cursor:pointer;border:0}
    ::selection{background:rgba(24,160,88,.18)}
    .site-container{
      width:min(calc(100% - 40px), var(--container));
      margin:0 auto;
    }

    .skip-link{
      position:absolute;
      left:-999px;
      top:14px;
      z-index:9999;
      padding:10px 14px;
      border-radius:999px;
      background:var(--color-primary);
      color:#fff;
      font-weight:700;
    }
    .skip-link:focus{left:14px}

    .site-header{
      position:sticky;
      top:0;
      z-index:99;
      background:rgba(250,250,246,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(221,229,215,.75);
      box-shadow:0 8px 24px rgba(22,34,24,.04);
    }
    .topbar{
      display:flex;
      align-items:center;
      gap:18px;
      min-height:78px;
      padding:12px 0;
    }
    .brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
      font-size:22px;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--color-text);
      white-space:nowrap;
    }
    .brand-mark{
      width:36px;
      height:36px;
      display:inline-block;
      border-radius:50%;
      background:
        linear-gradient(90deg, transparent 45%, rgba(255,255,255,.85) 46%, rgba(255,255,255,.85) 54%, transparent 55%),
        radial-gradient(circle at 72% 28%, var(--color-accent) 0 4px, transparent 5px),
        var(--color-primary);
      box-shadow:inset 0 0 0 5px rgba(255,255,255,.3), 0 12px 22px rgba(24,160,88,.2);
      position:relative;
    }
    .brand-mark:after{
      content:"";
      position:absolute;
      inset:8px;
      border:1.5px solid rgba(255,255,255,.75);
      border-radius:50%;
    }
    .header-search{
      flex:1 1 470px;
      max-width:560px;
      margin-left:auto;
    }
    .search-shell{
      display:flex;
      align-items:center;
      gap:10px;
      background:#fff;
      border:1px solid var(--color-line);
      border-radius:999px;
      padding:6px 7px 6px 18px;
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .search-shell:focus-within{
      border-color:rgba(24,160,88,.45);
      box-shadow:0 0 0 5px rgba(24,160,88,.09), var(--shadow-sm);
    }
    .search-icon{
      width:18px;
      height:18px;
      border:2px solid var(--color-primary);
      border-radius:50%;
      position:relative;
      flex:0 0 auto;
    }
    .search-icon:after{
      content:"";
      position:absolute;
      width:8px;
      height:2px;
      background:var(--color-primary);
      transform:rotate(45deg);
      right:-6px;
      bottom:-3px;
      border-radius:99px;
    }
    .search-shell input{
      width:100%;
      border:0;
      background:transparent;
      color:var(--color-text);
      min-width:80px;
      padding:8px 4px;
    }
    .search-shell input::placeholder{color:#8A938D}
    .search-shell button{
      flex:0 0 auto;
      border-radius:999px;
      background:var(--color-primary);
      color:#fff;
      font-weight:700;
      padding:10px 18px;
      transition:var(--ease);
    }
    .search-shell button:hover{
      background:var(--color-primary-dark);
      transform:translateY(-1px);
      box-shadow:0 10px 20px rgba(24,160,88,.2);
    }
    .nav-toggle{
      display:none;
      width:42px;
      height:42px;
      border-radius:14px;
      background:#fff;
      border:1px solid var(--color-line);
      position:relative;
      flex:0 0 auto;
    }
    .nav-toggle span,
    .nav-toggle:before,
    .nav-toggle:after{
      content:"";
      position:absolute;
      left:11px;
      right:11px;
      height:2px;
      background:var(--color-text);
      border-radius:99px;
      transition:var(--ease);
    }
    .nav-toggle span{top:20px}
    .nav-toggle:before{top:13px}
    .nav-toggle:after{bottom:13px}
    .nav-toggle.is-open span{opacity:0}
    .nav-toggle.is-open:before{top:20px;transform:rotate(45deg)}
    .nav-toggle.is-open:after{bottom:20px;transform:rotate(-45deg)}
    .nav-row{
      padding:0 0 14px;
      overflow:hidden;
    }
    .nav-links{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      scrollbar-width:none;
      -webkit-overflow-scrolling:touch;
    }
    .nav-links::-webkit-scrollbar{display:none}
    .nav-links a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:38px;
      padding:8px 15px;
      border-radius:999px;
      background:rgba(255,255,255,.78);
      border:1px solid rgba(221,229,215,.9);
      color:var(--color-text-2);
      font-size:14px;
      font-weight:700;
      white-space:nowrap;
    }
    .nav-links a:hover{
      color:var(--color-primary);
      border-color:rgba(24,160,88,.32);
      background:var(--color-primary-soft);
    }
    .nav-links a.active{
      background:var(--color-text);
      border-color:var(--color-text);
      color:#fff;
      box-shadow:0 12px 24px rgba(21,24,22,.12);
    }
    .nav-links a.active:hover{color:#fff}

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:13px 22px;
      border-radius:999px;
      font-weight:800;
      border:1px solid transparent;
      transition:var(--ease);
      line-height:1.2;
    }
    .btn-primary{
      background:var(--color-primary);
      color:#fff;
      box-shadow:0 16px 32px rgba(24,160,88,.22);
    }
    .btn-primary:hover{
      background:var(--color-primary-dark);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 20px 42px rgba(24,160,88,.28);
    }
    .btn-secondary{
      background:#fff;
      color:var(--color-text);
      border-color:var(--color-line);
      box-shadow:var(--shadow-sm);
    }
    .btn-secondary:hover{
      border-color:rgba(24,160,88,.38);
      color:var(--color-primary);
      transform:translateY(-2px);
    }
    .btn:focus-visible,
    .nav-links a:focus-visible,
    .footer-links a:focus-visible,
    .search-shell button:focus-visible,
    .nav-toggle:focus-visible{
      outline:3px solid rgba(255,159,28,.45);
      outline-offset:3px;
    }

    .section{
      padding:86px 0;
      position:relative;
    }
    .section-tight{padding:64px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:34px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:6px 12px;
      border-radius:999px;
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      font-weight:800;
      font-size:13px;
      letter-spacing:.03em;
    }
    .eyebrow:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--color-primary);
      box-shadow:0 0 0 5px rgba(24,160,88,.12);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(38px,5.2vw,62px);
      line-height:1.1;
      letter-spacing:-.05em;
      font-weight:850;
      margin-bottom:20px;
    }
    h2{
      font-size:clamp(28px,3.2vw,42px);
      line-height:1.18;
      letter-spacing:-.04em;
      font-weight:850;
      margin-bottom:12px;
    }
    h3{
      font-size:20px;
      line-height:1.35;
      letter-spacing:-.02em;
      font-weight:800;
      margin-bottom:8px;
    }
    .lead{
      color:var(--color-text-2);
      font-size:17px;
      line-height:1.85;
      max-width:720px;
    }
    .muted{color:var(--color-muted)}
    .text-green{color:var(--color-primary-dark)}
    .text-orange{color:var(--color-accent)}

    .hero{
      padding:68px 0 54px;
      overflow:hidden;
    }
    .hero-panel{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-xl);
      background:
        linear-gradient(115deg, rgba(250,250,246,.98) 0%, rgba(250,250,246,.92) 52%, rgba(232,246,238,.88) 100%),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      border:1px solid rgba(221,229,215,.85);
      box-shadow:var(--shadow-md);
      padding:42px;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:-30%;
      background:
        linear-gradient(rgba(24,160,88,.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(24,160,88,.08) 1px, transparent 1px);
      background-size:42px 42px;
      transform:rotate(-8deg);
      opacity:.35;
      pointer-events:none;
    }
    .hero-panel:after{
      content:"";
      position:absolute;
      width:270px;
      height:270px;
      border:1px solid rgba(24,160,88,.16);
      border-radius:50%;
      right:-76px;
      top:-70px;
      box-shadow:inset 0 0 0 22px rgba(255,255,255,.35);
      pointer-events:none;
    }
    .hero-content,
    .hero-arena{position:relative;z-index:1}
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
      margin:28px 0 26px;
    }
    .quick-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
    }
    .quick-tags a,
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(221,229,215,.9);
      color:var(--color-text-2);
      font-size:13px;
      font-weight:750;
    }
    .quick-tags a:hover,
    .tag:hover{
      background:var(--color-primary-soft);
      border-color:rgba(24,160,88,.35);
      color:var(--color-primary-dark);
    }
    .hero-search-card{
      background:rgba(255,255,255,.92);
      border:1px solid rgba(221,229,215,.9);
      box-shadow:var(--shadow-md);
      border-radius:28px;
      padding:20px;
      margin-bottom:18px;
    }
    .hero-search-title{
      display:flex;
      justify-content:space-between;
      gap:10px;
      align-items:center;
      margin-bottom:12px;
      font-weight:850;
    }
    .mini-search{
      display:flex;
      align-items:center;
      gap:10px;
      border:1px solid var(--color-line);
      border-radius:18px;
      padding:8px 10px 8px 14px;
      background:#FAFAF6;
    }
    .mini-search input{
      flex:1;
      min-width:0;
      border:0;
      background:transparent;
      padding:8px 0;
    }
    .mini-search button{
      padding:9px 13px;
      border-radius:14px;
      background:var(--color-text);
      color:#fff;
      font-weight:800;
      transition:var(--ease);
      white-space:nowrap;
    }
    .mini-search button:hover{background:var(--color-primary)}
    .match-board{
      background:var(--color-text);
      color:#fff;
      border-radius:30px;
      padding:22px;
      box-shadow:0 24px 54px rgba(21,24,22,.22);
      position:relative;
      overflow:hidden;
    }
    .match-board:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg, rgba(24,160,88,.28), transparent 45%), radial-gradient(circle at 82% 14%, rgba(255,159,28,.28), transparent 22%);
      pointer-events:none;
    }
    .match-board>*{position:relative;z-index:1}
    .board-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      margin-bottom:18px;
      color:rgba(255,255,255,.78);
      font-size:13px;
      font-weight:750;
    }
    .live-dot{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:#fff;
      font-weight:850;
    }
    .live-dot:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--color-accent);
      box-shadow:0 0 0 7px rgba(255,159,28,.13);
    }
    .versus-row{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:12px;
      padding:15px 0;
      border-top:1px solid rgba(255,255,255,.12);
    }
    .versus-row:last-child{border-bottom:1px solid rgba(255,255,255,.12)}
    .team{
      min-width:0;
    }
    .team strong{
      display:block;
      font-size:17px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .team span{
      font-size:12px;
      color:rgba(255,255,255,.62);
    }
    .team.right{text-align:right}
    .score-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-width:70px;
      border-radius:999px;
      padding:8px 11px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.16);
      color:#fff;
      font-weight:900;
      letter-spacing:.02em;
    }
    .pixel-line{
      height:4px;
      width:100%;
      margin-top:20px;
      border-radius:999px;
      background:repeating-linear-gradient(90deg, var(--color-primary) 0 24px, rgba(255,255,255,.22) 24px 36px, var(--color-accent) 36px 48px);
      opacity:.9;
    }

    .card{
      background:var(--color-card);
      border:1px solid var(--color-line-2);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
      overflow:hidden;
    }
    .card:hover{
      transform:translateY(-4px);
      border-color:rgba(24,160,88,.34);
      box-shadow:var(--shadow-md);
    }

    .game-grid .cell{margin-bottom:24px}
    .game-card{
      min-height:220px;
      padding:22px;
      position:relative;
    }
    .game-card.featured{
      min-height:464px;
      background:
        linear-gradient(180deg, rgba(21,24,22,.10), rgba(21,24,22,.70)),
        url("/assets/images/coverpic/cover-8.webp") center/cover no-repeat;
      color:#fff;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
    }
    .game-card.featured p{color:rgba(255,255,255,.82)}
    .game-logo{
      width:50px;
      height:50px;
      border-radius:18px;
      display:grid;
      place-items:center;
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
      font-weight:950;
      margin-bottom:18px;
      border:1px solid rgba(24,160,88,.16);
    }
    .game-card.featured .game-logo{
      background:rgba(255,255,255,.15);
      color:#fff;
      border-color:rgba(255,255,255,.22);
      backdrop-filter:blur(8px);
    }
    .game-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:18px;
    }
    .game-meta span{
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background:#F4F7F0;
      color:var(--color-text-2);
      font-size:12px;
      font-weight:800;
    }
    .game-card.featured .game-meta span{
      background:rgba(255,255,255,.14);
      color:#fff;
    }

    .schedule-section{
      background:linear-gradient(180deg, rgba(238,243,234,.72), rgba(250,250,246,.94));
      border-top:1px solid rgba(221,229,215,.7);
      border-bottom:1px solid rgba(221,229,215,.7);
    }
    .filter-rail{
      position:sticky;
      top:118px;
      padding:18px;
      border-radius:26px;
      background:#fff;
      border:1px solid var(--color-line-2);
      box-shadow:var(--shadow-sm);
    }
    .filter-title{
      font-size:14px;
      color:var(--color-muted);
      font-weight:850;
      margin:4px 0 12px;
    }
    .filter-list{
      display:flex;
      flex-direction:column;
      gap:9px;
      margin:0;
      list-style:none;
    }
    .filter-list a{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px 13px;
      border-radius:16px;
      background:#FAFAF6;
      border:1px solid transparent;
      font-weight:800;
      color:var(--color-text-2);
    }
    .filter-list a:hover,
    .filter-list a.current{
      background:var(--color-primary-soft);
      border-color:rgba(24,160,88,.25);
      color:var(--color-primary-dark);
    }
    .filter-list small{
      color:var(--color-muted);
      font-weight:800;
    }
    .duel-list{
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    .duel-card{
      padding:18px;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--color-line-2);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .duel-card:hover{
      transform:translateY(-3px);
      border-color:rgba(24,160,88,.32);
      box-shadow:var(--shadow-md);
    }
    .duel-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding-bottom:14px;
      border-bottom:1px solid rgba(221,229,215,.75);
      margin-bottom:15px;
    }
    .status{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:900;
      white-space:nowrap;
    }
    .status.live{background:rgba(255,159,28,.14);color:#B86B00}
    .status.upcoming{background:var(--color-primary-soft);color:var(--color-primary-dark)}
    .status.finished{background:#F0F1EE;color:#697069}
    .status:before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:currentColor;
    }
    .duel-body{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      gap:16px;
      align-items:center;
    }
    .duel-team{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
    }
    .duel-team.right{
      justify-content:flex-end;
      text-align:right;
    }
    .avatar{
      width:44px;
      height:44px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:linear-gradient(135deg,var(--color-primary),var(--color-cyan));
      color:#fff;
      font-weight:950;
      flex:0 0 auto;
      box-shadow:0 12px 22px rgba(24,160,88,.16);
    }
    .duel-team strong{
      display:block;
      font-size:17px;
      font-weight:900;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .duel-team span{
      display:block;
      color:var(--color-muted);
      font-size:13px;
      font-weight:650;
    }
    .duel-vs{
      min-width:86px;
      text-align:center;
      padding:9px 12px;
      border-radius:16px;
      background:#F4F7F0;
      font-weight:950;
      color:var(--color-text);
    }
    .duel-foot{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin-top:15px;
    }
    .duel-foot span{
      font-size:12px;
      padding:5px 9px;
      border-radius:999px;
      background:#FAFAF6;
      border:1px solid var(--color-line);
      color:var(--color-muted);
      font-weight:800;
    }

    .zone-card{
      padding:24px;
      min-height:250px;
    }
    .zone-card.dark{
      background:var(--color-text);
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .zone-card.dark:after{
      content:"";
      position:absolute;
      width:170px;
      height:170px;
      right:-60px;
      bottom:-60px;
      border:1px solid rgba(24,160,88,.48);
      border-radius:50%;
      box-shadow:inset 0 0 0 18px rgba(24,160,88,.10);
    }
    .zone-card.dark p{color:rgba(255,255,255,.76)}
    .zone-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      margin-bottom:18px;
    }
    .zone-num{
      font-size:34px;
      line-height:1;
      font-weight:950;
      letter-spacing:-.04em;
      color:var(--color-primary);
    }
    .zone-card.dark .zone-num{color:var(--color-accent)}
    .zone-list{
      list-style:none;
      margin:18px 0 0;
      display:grid;
      gap:10px;
    }
    .zone-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:var(--color-text-2);
    }
    .zone-card.dark .zone-list li{color:rgba(255,255,255,.82)}
    .zone-list li:before{
      content:"";
      width:8px;
      height:8px;
      margin-top:10px;
      border-radius:3px;
      background:var(--color-primary);
      box-shadow:0 0 0 4px rgba(24,160,88,.12);
      flex:0 0 auto;
    }

    .version-panel{
      position:relative;
      overflow:hidden;
      border-radius:34px;
      background:#fff;
      border:1px solid var(--color-line-2);
      box-shadow:var(--shadow-md);
    }
    .version-image{
      height:100%;
      min-height:420px;
      background:
        linear-gradient(180deg, rgba(21,24,22,.08), rgba(21,24,22,.58)),
        url("/assets/images/coverpic/cover-9.webp") center/cover no-repeat;
      border-radius:34px 0 0 34px;
      display:flex;
      align-items:flex-end;
      padding:30px;
      color:#fff;
    }
    .version-image p{color:rgba(255,255,255,.8);margin-bottom:0}
    .version-content{padding:34px}
    .timeline{
      list-style:none;
      margin:24px 0 0;
      position:relative;
      display:grid;
      gap:18px;
    }
    .timeline:before{
      content:"";
      position:absolute;
      left:10px;
      top:6px;
      bottom:6px;
      width:2px;
      background:var(--color-line);
    }
    .timeline li{
      position:relative;
      padding-left:36px;
    }
    .timeline li:before{
      content:"";
      position:absolute;
      left:3px;
      top:8px;
      width:16px;
      height:16px;
      border-radius:50%;
      background:#fff;
      border:4px solid var(--color-primary);
      box-shadow:0 0 0 5px rgba(24,160,88,.10);
    }
    .timeline strong{
      display:block;
      font-size:16px;
      font-weight:900;
    }
    .timeline span{
      color:var(--color-muted);
      font-size:14px;
      line-height:1.7;
    }

    .replay-card{
      padding:22px;
      display:flex;
      flex-direction:column;
      min-height:245px;
    }
    .replay-thumb{
      height:130px;
      border-radius:20px;
      background:
        linear-gradient(135deg, rgba(21,24,22,.12), rgba(21,24,22,.48)),
        url("/assets/images/coverpic/cover-10.webp") center/cover no-repeat;
      margin-bottom:18px;
      position:relative;
      overflow:hidden;
    }
    .replay-thumb.alt1{background-image:linear-gradient(135deg, rgba(21,24,22,.12), rgba(21,24,22,.48)),url("/assets/images/coverpic/cover-11.webp")}
    .replay-thumb.alt2{background-image:linear-gradient(135deg, rgba(21,24,22,.12), rgba(21,24,22,.48)),url("/assets/images/coverpic/cover-12.webp")}
    .play{
      position:absolute;
      left:18px;
      bottom:18px;
      width:42px;
      height:42px;
      border-radius:50%;
      background:rgba(255,255,255,.88);
      display:grid;
      place-items:center;
      color:var(--color-primary);
      font-weight:950;
      box-shadow:0 14px 28px rgba(21,24,22,.16);
    }
    .replay-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      margin-top:auto;
      padding-top:14px;
      color:var(--color-muted);
      font-size:13px;
      font-weight:750;
    }

    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      list-style:none;
      margin:0;
    }
    .accordion-item{
      margin-bottom:14px;
      border-radius:22px;
      overflow:hidden;
      border:1px solid var(--color-line-2);
      background:#fff;
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .accordion-item:hover{border-color:rgba(24,160,88,.26)}
    .accordion-title{
      border:0;
      color:var(--color-text);
      font-size:17px;
      line-height:1.45;
      font-weight:850;
      padding:20px 56px 20px 22px;
      background:#fff;
      transition:var(--ease);
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:var(--color-primary-soft);
      color:var(--color-primary-dark);
    }
    .accordion-title:before{
      right:22px;
      margin-top:-12px;
      font-size:24px;
      color:var(--color-primary);
    }
    .is-active>.accordion-title{
      color:var(--color-primary-dark);
      background:linear-gradient(90deg, var(--color-primary-soft), #fff);
    }
    .accordion-content{
      border:0;
      padding:0 22px 22px;
      color:var(--color-text-2);
      line-height:1.85;
      background:#fff;
    }

    .cta-panel{
      border-radius:36px;
      overflow:hidden;
      background:
        linear-gradient(135deg, rgba(21,24,22,.94), rgba(16,23,18,.88)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      color:#fff;
      box-shadow:var(--shadow-lg);
      border:1px solid rgba(255,255,255,.08);
      padding:40px;
      position:relative;
    }
    .cta-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 86% 10%, rgba(24,160,88,.34), transparent 28%);
      pointer-events:none;
    }
    .cta-panel>*{position:relative;z-index:1}
    .cta-panel p{color:rgba(255,255,255,.78)}
    .contact-form{
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      border-radius:28px;
      padding:22px;
      backdrop-filter:blur(12px);
    }
    .form-label{
      color:rgba(255,255,255,.84);
      font-size:13px;
      font-weight:850;
      margin-bottom:7px;
      display:block;
    }
    .contact-form input,
    .contact-form select,
    .contact-form textarea{
      width:100%;
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.9);
      color:var(--color-text);
      border-radius:16px;
      padding:12px 14px;
      margin-bottom:14px;
      box-shadow:none;
      transition:var(--ease);
    }
    .contact-form textarea{min-height:110px;resize:vertical}
    .contact-form input:focus,
    .contact-form select:focus,
    .contact-form textarea:focus{
      border-color:var(--color-primary);
      box-shadow:0 0 0 5px rgba(24,160,88,.14);
      background:#fff;
    }
    .support-list{
      list-style:none;
      margin:24px 0 0;
      display:grid;
      gap:12px;
    }
    .support-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:rgba(255,255,255,.82);
    }
    .support-list li:before{
      content:"";
      width:18px;
      height:18px;
      margin-top:5px;
      border-radius:50%;
      background:var(--color-primary);
      box-shadow:inset 0 0 0 5px rgba(255,255,255,.24);
      flex:0 0 auto;
    }

    .site-footer{
      background:var(--color-footer);
      color:#F5F7F1;
      padding:64px 0 28px;
      position:relative;
      overflow:hidden;
    }
    .site-footer:before{
      content:"";
      position:absolute;
      width:360px;
      height:360px;
      border-radius:50%;
      right:-150px;
      top:-180px;
      background:rgba(24,160,88,.15);
      filter:blur(2px);
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-size:22px;
      font-weight:850;
      margin-bottom:14px;
      position:relative;
      z-index:1;
    }
    .footer-desc{
      color:rgba(245,247,241,.72);
      max-width:360px;
      line-height:1.85;
      margin-bottom:26px;
      position:relative;
      z-index:1;
    }
    .footer-title{
      font-weight:850;
      color:#fff;
      margin-bottom:15px;
    }
    .footer-links{
      list-style:none;
      margin:0 0 24px;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(245,247,241,.68);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      padding-left:4px;
    }
    .footer-divider{
      border:0;
      border-top:1px solid rgba(245,247,241,.12);
      margin:26px 0 22px;
    }
    .footer-bottom{
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:8px;
      text-align:center;
      color:rgba(245,247,241,.66);
      font-size:13px;
      line-height:1.8;
    }
    .footer-bottom a{
      color:rgba(245,247,241,.78);
      margin:0 5px;
    }
    .footer-bottom a:hover{color:#fff}

    @media (max-width:1024px){
      .topbar{flex-wrap:wrap;gap:14px}
      .header-search{order:3;flex-basis:100%;max-width:none;margin-left:0}
      .hero-panel{padding:32px}
      .filter-rail{position:relative;top:auto;margin-bottom:22px}
      .filter-list{
        flex-direction:row;
        overflow-x:auto;
        padding-bottom:4px;
      }
      .filter-list a{white-space:nowrap;min-width:138px}
      .version-image{border-radius:34px 34px 0 0;min-height:320px}
      .section{padding:72px 0}
    }

    @media (max-width:768px){
      .site-container{width:min(calc(100% - 28px), var(--container))}
      .nav-toggle{display:inline-flex;margin-left:auto}
      .topbar{min-height:auto}
      .brand{font-size:20px}
      .nav-row{
        display:none;
        padding-bottom:14px;
      }
      .nav-row.is-open{display:block}
      .nav-links{
        padding:4px 0 2px;
        align-items:stretch;
      }
      .nav-links a{min-width:max-content}
      .hero{padding:38px 0 34px}
      .hero-panel{padding:24px;border-radius:28px}
      .hero-actions .btn{width:100%}
      .section-head{
        display:block;
        margin-bottom:26px;
      }
      .duel-body{
        grid-template-columns:1fr;
        gap:12px;
      }
      .duel-team.right{
        justify-content:flex-start;
        text-align:left;
      }
      .duel-vs{
        width:max-content;
      }
      .game-card.featured{min-height:320px}
      .cta-panel{padding:26px;border-radius:28px}
    }

    @media (max-width:520px){
      h1{font-size:36px}
      h2{font-size:28px}
      .search-shell{border-radius:22px;padding:7px 8px 7px 14px}
      .search-shell button{padding:9px 13px}
      .hero-search-title{align-items:flex-start;flex-direction:column}
      .mini-search{flex-direction:column;align-items:stretch;border-radius:20px}
      .mini-search button{width:100%}
      .versus-row{
        grid-template-columns:1fr;
        gap:6px;
      }
      .team.right{text-align:left}
      .score-pill{width:max-content}
      .duel-head{align-items:flex-start;flex-direction:column}
      .avatar{width:40px;height:40px;border-radius:14px}
      .section{padding:56px 0}
      .section-tight{padding:48px 0}
      .footer-bottom a{display:inline-block;margin:2px 4px}
    }

/* roulang page: category5 */
:root{
      --green:#18A058;
      --green-dark:#13934B;
      --green-soft:#EAF6EF;
      --teal:#0E7C66;
      --orange:#FF9F1C;
      --orange-soft:#FFF2DC;
      --black:#151816;
      --text:#222520;
      --muted:#66706A;
      --bg:#F7F8F3;
      --bg-2:#EEF3EA;
      --white:#FFFFFF;
      --line:#DDE5D7;
      --line-dark:rgba(21,24,22,.1);
      --radius-lg:28px;
      --radius-md:22px;
      --radius-sm:16px;
      --shadow:0 18px 50px rgba(22,34,24,.08);
      --shadow-strong:0 24px 70px rgba(22,34,24,.13);
      --container:1220px;
      --ease:all .25s ease;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:system-ui,-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 12%, rgba(24,160,88,.08), transparent 30%),
        radial-gradient(circle at 92% 20%, rgba(255,159,28,.08), transparent 26%),
        var(--bg);
      line-height:1.75;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    a:hover{color:var(--green)}
    img{max-width:100%;display:block}
    button,input,textarea,select{
      font:inherit;
      outline:none;
    }
    button{cursor:pointer}
    ::selection{background:rgba(24,160,88,.18);color:var(--black)}

    .site-container{
      width:min(calc(100% - 40px), var(--container));
      margin:0 auto;
    }

    .site-header{
      position:sticky;
      top:0;
      z-index:1000;
      background:rgba(250,250,246,.88);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(21,24,22,.08);
      transition:var(--ease);
    }
    .site-header.is-scrolled{
      box-shadow:0 12px 36px rgba(22,34,24,.08);
      background:rgba(255,255,255,.94);
    }
    .nav-shell{
      min-height:82px;
      display:flex;
      align-items:center;
      gap:18px;
      padding:14px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      flex:0 0 auto;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--black);
      white-space:nowrap;
    }
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:50%;
      display:inline-block;
      position:relative;
      background:
        linear-gradient(135deg, rgba(24,160,88,.98), rgba(14,124,102,.95));
      box-shadow:0 8px 22px rgba(24,160,88,.24);
    }
    .brand-mark:before,
    .brand-mark:after{
      content:"";
      position:absolute;
      border:1.5px solid rgba(255,255,255,.8);
      inset:8px;
      border-radius:50%;
    }
    .brand-mark:after{
      width:2px;
      height:18px;
      border:0;
      background:rgba(255,255,255,.75);
      left:16px;
      top:8px;
      transform:rotate(34deg);
    }
    .brand span:last-child{font-size:20px}

    .nav-search{
      flex:1 1 auto;
      max-width:520px;
      margin-left:auto;
      position:relative;
    }
    .nav-search form{
      display:flex;
      align-items:center;
      gap:8px;
      background:var(--white);
      border:1px solid var(--line);
      border-radius:999px;
      padding:7px 8px 7px 16px;
      box-shadow:0 10px 30px rgba(22,34,24,.06);
      transition:var(--ease);
    }
    .nav-search form:focus-within{
      border-color:rgba(24,160,88,.55);
      box-shadow:0 0 0 4px rgba(24,160,88,.1), 0 14px 34px rgba(22,34,24,.08);
    }
    .search-icon{
      color:var(--green);
      font-weight:800;
      line-height:1;
    }
    .nav-search input{
      border:0;
      background:transparent;
      flex:1;
      min-width:80px;
      color:var(--black);
      font-size:14px;
    }
    .nav-search input::placeholder{color:#879088}
    .nav-search button{
      border:0;
      background:var(--green);
      color:#fff;
      border-radius:999px;
      padding:8px 14px;
      font-size:13px;
      font-weight:700;
      transition:var(--ease);
    }
    .nav-search button:hover{
      background:var(--green-dark);
      transform:translateY(-1px);
      box-shadow:0 10px 20px rgba(24,160,88,.2);
    }
    .menu-toggle{
      display:none;
      border:1px solid var(--line);
      background:var(--white);
      color:var(--black);
      border-radius:14px;
      width:42px;
      height:42px;
      align-items:center;
      justify-content:center;
      box-shadow:0 8px 22px rgba(22,34,24,.06);
    }
    .menu-toggle:focus,
    .nav-search button:focus,
    .btn:focus,
    .form-card input:focus,
    .form-card textarea:focus,
    .form-card select:focus{
      outline:3px solid rgba(24,160,88,.18);
      outline-offset:2px;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:6px;
      flex:0 0 auto;
    }
    .nav-links a{
      padding:9px 12px;
      border-radius:999px;
      color:var(--text);
      font-size:14px;
      font-weight:650;
      white-space:nowrap;
    }
    .nav-links a:hover{
      background:var(--green-soft);
      color:var(--green-dark);
    }
    .nav-links a.active{
      background:var(--black);
      color:#fff;
      box-shadow:0 10px 26px rgba(21,24,22,.16);
    }

    main{overflow:hidden}
    .section{
      padding:86px 0;
      position:relative;
    }
    .section.compact{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:var(--green-soft);
      color:var(--green-dark);
      font-size:13px;
      font-weight:800;
      letter-spacing:.02em;
      margin-bottom:16px;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--green);
      box-shadow:0 0 0 5px rgba(24,160,88,.13);
    }
    h1,h2,h3,p{margin-top:0}
    h1{
      font-size:clamp(38px,5.4vw,62px);
      line-height:1.1;
      letter-spacing:-.055em;
      color:var(--black);
      margin-bottom:22px;
      font-weight:850;
    }
    h2{
      font-size:clamp(28px,3.4vw,42px);
      line-height:1.18;
      letter-spacing:-.04em;
      color:var(--black);
      margin-bottom:16px;
      font-weight:820;
    }
    h3{
      font-size:20px;
      line-height:1.35;
      color:var(--black);
      font-weight:780;
      margin-bottom:10px;
    }
    .lead{
      font-size:17px;
      color:var(--muted);
      line-height:1.85;
      max-width:720px;
      margin-bottom:0;
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:34px;
    }
    .section-head .lead{max-width:560px}

    .btn-row{
      display:flex;
      align-items:center;
      gap:14px;
      flex-wrap:wrap;
      margin-top:28px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      min-height:48px;
      padding:13px 22px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      font-size:15px;
      transition:var(--ease);
    }
    .btn-primary{
      background:var(--green);
      color:#fff;
      box-shadow:0 16px 34px rgba(24,160,88,.22);
    }
    .btn-primary:hover{
      color:#fff;
      background:var(--green-dark);
      transform:translateY(-2px);
      box-shadow:0 20px 44px rgba(24,160,88,.28);
    }
    .btn-secondary{
      background:#fff;
      color:var(--black);
      border-color:var(--line);
      box-shadow:0 12px 30px rgba(22,34,24,.06);
    }
    .btn-secondary:hover{
      border-color:rgba(24,160,88,.38);
      color:var(--green-dark);
      transform:translateY(-2px);
    }

    .hero{
      padding:74px 0 54px;
      position:relative;
    }
    .hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(247,248,243,.96) 0%, rgba(247,248,243,.88) 48%, rgba(247,248,243,.72) 100%),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      z-index:-2;
    }
    .hero:after{
      content:"";
      position:absolute;
      right:-160px;
      top:74px;
      width:420px;
      height:420px;
      border-radius:50%;
      border:1px solid rgba(24,160,88,.12);
      box-shadow:inset 0 0 0 44px rgba(24,160,88,.035);
      z-index:-1;
    }
    .hero-panel{
      background:rgba(255,255,255,.82);
      border:1px solid rgba(21,24,22,.08);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      padding:22px;
      position:relative;
      overflow:hidden;
    }
    .hero-panel:before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg, rgba(24,160,88,.08), transparent 42%, rgba(255,159,28,.08));
      pointer-events:none;
    }
    .hero-search{
      margin-top:24px;
      max-width:650px;
    }
    .hero-search form{
      display:flex;
      gap:10px;
      background:#fff;
      border:1px solid var(--line);
      border-radius:22px;
      padding:10px;
      box-shadow:var(--shadow);
      transition:var(--ease);
    }
    .hero-search form:focus-within{
      border-color:rgba(24,160,88,.5);
      box-shadow:0 0 0 4px rgba(24,160,88,.1), var(--shadow);
    }
    .hero-search input{
      flex:1;
      min-width:0;
      border:0;
      border-radius:16px;
      background:var(--bg);
      padding:0 16px;
      color:var(--black);
    }
    .hero-search button{
      border:0;
      border-radius:16px;
      padding:0 20px;
      background:var(--black);
      color:#fff;
      font-weight:800;
      transition:var(--ease);
    }
    .hero-search button:hover{background:var(--green-dark)}
    .quick-tags{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      margin-top:16px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      gap:7px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.72);
      color:var(--muted);
      border-radius:999px;
      padding:7px 11px;
      font-size:13px;
      font-weight:700;
    }
    .tag strong{color:var(--green-dark)}
    .tag.hot{
      border-color:rgba(255,159,28,.35);
      background:var(--orange-soft);
      color:#8B5708;
    }

    .dashboard{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
      position:relative;
      z-index:1;
    }
    .metric-card{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:22px;
      padding:18px;
      box-shadow:0 14px 34px rgba(22,34,24,.06);
      transition:var(--ease);
      min-height:142px;
    }
    .metric-card:hover{
      transform:translateY(-4px);
      border-color:rgba(24,160,88,.32);
      box-shadow:var(--shadow-strong);
    }
    .metric-card.large{
      grid-column:span 2;
      min-height:186px;
      background:
        linear-gradient(135deg, rgba(21,24,22,.96), rgba(14,124,102,.9)),
        url("/assets/images/coverpic/cover-11.webp") center/cover no-repeat;
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .metric-card.large h3,
    .metric-card.large .metric-number{color:#fff}
    .metric-card.large p{color:rgba(255,255,255,.75)}
    .metric-top{
      display:flex;
      justify-content:space-between;
      gap:12px;
      align-items:center;
      margin-bottom:12px;
    }
    .metric-label{
      font-size:13px;
      font-weight:800;
      color:var(--muted);
    }
    .metric-card.large .metric-label{color:rgba(255,255,255,.78)}
    .status-pill{
      font-size:12px;
      font-weight:800;
      border-radius:999px;
      padding:5px 9px;
      background:var(--green-soft);
      color:var(--green-dark);
    }
    .status-pill.orange{
      background:rgba(255,159,28,.16);
      color:#A46000;
    }
    .metric-number{
      font-size:34px;
      line-height:1;
      font-weight:850;
      color:var(--black);
      letter-spacing:-.04em;
      margin-bottom:8px;
    }
    .metric-card p{font-size:14px;line-height:1.6;color:var(--muted);margin-bottom:0}
    .mini-bars{
      display:flex;
      align-items:flex-end;
      gap:7px;
      height:48px;
      margin-top:18px;
    }
    .mini-bars span{
      flex:1;
      border-radius:999px 999px 4px 4px;
      background:linear-gradient(180deg, rgba(24,160,88,.88), rgba(24,160,88,.2));
      min-height:12px;
    }

    .card{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:var(--radius-md);
      padding:24px;
      box-shadow:var(--shadow);
      transition:var(--ease);
      height:100%;
    }
    .card:hover{
      transform:translateY(-4px);
      border-color:rgba(24,160,88,.34);
      box-shadow:var(--shadow-strong);
    }

    .rank-board{
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:var(--radius-lg);
      padding:24px;
      box-shadow:var(--shadow);
    }
    .board-title{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      margin-bottom:18px;
    }
    .filter-tabs{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
    }
    .filter-tabs button{
      border:1px solid var(--line);
      background:var(--bg);
      color:var(--muted);
      border-radius:999px;
      padding:7px 12px;
      font-size:13px;
      font-weight:800;
      transition:var(--ease);
    }
    .filter-tabs button:hover,
    .filter-tabs button.active{
      background:var(--green);
      border-color:var(--green);
      color:#fff;
    }
    .rank-list{
      display:grid;
      gap:12px;
    }
    .rank-row{
      display:grid;
      grid-template-columns:46px 1fr 86px 86px 100px;
      align-items:center;
      gap:14px;
      padding:14px;
      border:1px solid var(--line);
      border-radius:18px;
      background:linear-gradient(90deg,#fff,var(--bg));
      transition:var(--ease);
    }
    .rank-row:hover{
      border-color:rgba(24,160,88,.35);
      transform:translateX(4px);
    }
    .rank-index{
      width:34px;
      height:34px;
      border-radius:12px;
      display:grid;
      place-items:center;
      background:var(--green-soft);
      color:var(--green-dark);
      font-weight:850;
    }
    .team-name{
      font-weight:820;
      color:var(--black);
      line-height:1.35;
    }
    .team-meta{
      display:block;
      font-size:12px;
      color:var(--muted);
      margin-top:2px;
    }
    .rank-data{
      text-align:right;
      font-weight:820;
      color:var(--black);
      line-height:1.25;
    }
    .rank-data small{
      display:block;
      color:var(--muted);
      font-weight:650;
      font-size:12px;
    }
    .trend{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:5px;
      border-radius:999px;
      padding:7px 10px;
      font-size:13px;
      font-weight:850;
      background:var(--green-soft);
      color:var(--green-dark);
      justify-self:end;
    }
    .trend.down{
      background:#F1F1EF;
      color:#6C706C;
    }
    .trend.hot{
      background:var(--orange-soft);
      color:#A46000;
    }

    .trend-grid{
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:stretch;
    }
    .trend-visual{
      min-height:430px;
      border-radius:var(--radius-lg);
      padding:24px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.76)),
        url("/assets/images/coverpic/cover-12.webp") center/cover no-repeat;
      border:1px solid rgba(21,24,22,.08);
      box-shadow:var(--shadow);
      position:relative;
      overflow:hidden;
    }
    .trend-visual:after{
      content:"";
      position:absolute;
      inset:auto -40px -90px auto;
      width:220px;
      height:220px;
      border-radius:50%;
      background:rgba(24,160,88,.12);
    }
    .line-chart{
      height:210px;
      display:flex;
      align-items:flex-end;
      gap:12px;
      padding:22px 8px 8px;
      border-bottom:1px solid var(--line);
      position:relative;
      z-index:1;
    }
    .line-chart .bar{
      flex:1;
      border-radius:999px 999px 8px 8px;
      background:linear-gradient(180deg,var(--green),rgba(24,160,88,.2));
      min-height:40px;
      position:relative;
      transition:var(--ease);
    }
    .line-chart .bar:hover{transform:translateY(-6px)}
    .line-chart .bar:before{
      content:attr(data-tip);
      position:absolute;
      top:-30px;
      left:50%;
      transform:translateX(-50%);
      font-size:12px;
      font-weight:800;
      color:var(--green-dark);
      background:#fff;
      border:1px solid var(--line);
      border-radius:999px;
      padding:2px 7px;
      white-space:nowrap;
      opacity:0;
      transition:var(--ease);
    }
    .line-chart .bar:hover:before{opacity:1}
    .trend-note{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:22px;
      position:relative;
      z-index:1;
    }
    .note-item{
      border:1px solid var(--line);
      border-radius:18px;
      background:rgba(255,255,255,.76);
      padding:14px;
    }
    .note-item strong{
      display:block;
      font-size:22px;
      line-height:1;
      color:var(--black);
      letter-spacing:-.03em;
      margin-bottom:6px;
    }
    .note-item span{font-size:12px;color:var(--muted);font-weight:700}

    .insight-list{
      display:grid;
      gap:14px;
    }
    .insight-item{
      display:flex;
      gap:14px;
      padding:18px;
      border-radius:20px;
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      box-shadow:0 12px 30px rgba(22,34,24,.05);
      transition:var(--ease);
    }
    .insight-item:hover{
      transform:translateY(-3px);
      border-color:rgba(24,160,88,.32);
    }
    .insight-icon{
      flex:0 0 42px;
      width:42px;
      height:42px;
      border-radius:15px;
      display:grid;
      place-items:center;
      background:var(--green-soft);
      color:var(--green-dark);
      font-weight:900;
    }
    .insight-item p{margin:0;color:var(--muted);font-size:14px;line-height:1.65}

    .heat-section{
      background:linear-gradient(180deg, var(--bg-2), rgba(238,243,234,.2));
    }
    .heat-map{
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:12px;
    }
    .heat-card{
      border-radius:22px;
      border:1px solid rgba(21,24,22,.08);
      background:#fff;
      padding:20px;
      box-shadow:var(--shadow);
      transition:var(--ease);
      min-height:160px;
      position:relative;
      overflow:hidden;
    }
    .heat-card:hover{
      transform:translateY(-4px);
      border-color:rgba(24,160,88,.35);
    }
    .heat-card:after{
      content:"";
      position:absolute;
      right:-38px;
      bottom:-42px;
      width:118px;
      height:118px;
      border-radius:50%;
      background:rgba(24,160,88,.08);
    }
    .heat-card.wide{grid-column:span 5}
    .heat-card.mid{grid-column:span 4}
    .heat-card.small{grid-column:span 3}
    .heat-title{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:12px;
      margin-bottom:16px;
      position:relative;
      z-index:1;
    }
    .heat-score{
      font-size:32px;
      line-height:1;
      font-weight:900;
      letter-spacing:-.04em;
      color:var(--black);
    }
    .progress{
      height:8px;
      background:#EEF0EA;
      border-radius:999px;
      overflow:hidden;
      margin-top:14px;
      position:relative;
      z-index:1;
    }
    .progress span{
      display:block;
      height:100%;
      border-radius:999px;
      background:linear-gradient(90deg,var(--green),var(--orange));
    }
    .heat-card p{position:relative;z-index:1;color:var(--muted);font-size:14px;margin:0}

    .compare-wrap{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:24px;
      align-items:stretch;
    }
    .duel-card{
      border-radius:var(--radius-lg);
      padding:26px;
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      box-shadow:var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .duel-card.highlight{
      background:linear-gradient(135deg, rgba(24,160,88,.96), rgba(14,124,102,.92));
      color:#fff;
    }
    .duel-card.highlight h3,
    .duel-card.highlight .duel-score{color:#fff}
    .duel-card.highlight p,
    .duel-card.highlight .duel-meta{color:rgba(255,255,255,.76)}
    .duel-head{
      display:flex;
      justify-content:space-between;
      gap:16px;
      align-items:center;
      margin-bottom:22px;
    }
    .duel-score{
      font-size:38px;
      line-height:1;
      font-weight:900;
      color:var(--black);
      letter-spacing:-.04em;
    }
    .duel-teams{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      gap:14px;
      align-items:center;
      margin:18px 0;
      text-align:center;
    }
    .team-badge{
      border-radius:18px;
      border:1px solid var(--line);
      background:rgba(255,255,255,.72);
      padding:16px 10px;
      font-weight:850;
      color:var(--black);
    }
    .duel-card.highlight .team-badge{
      color:#fff;
      border-color:rgba(255,255,255,.22);
      background:rgba(255,255,255,.1);
    }
    .vs{
      width:42px;
      height:42px;
      display:grid;
      place-items:center;
      border-radius:50%;
      background:var(--orange);
      color:#fff;
      font-weight:900;
      box-shadow:0 12px 24px rgba(255,159,28,.26);
    }
    .duel-meta{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:10px;
      margin-top:20px;
      color:var(--muted);
    }
    .duel-meta span{
      border-radius:16px;
      padding:10px;
      background:rgba(247,248,243,.88);
      font-size:13px;
      font-weight:750;
      text-align:center;
    }
    .duel-card.highlight .duel-meta span{
      background:rgba(255,255,255,.12);
    }

    .workflow{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      counter-reset:step;
    }
    .step-card{
      counter-increment:step;
      background:#fff;
      border:1px solid rgba(21,24,22,.08);
      border-radius:22px;
      padding:22px;
      box-shadow:var(--shadow);
      position:relative;
      transition:var(--ease);
    }
    .step-card:hover{
      transform:translateY(-4px);
      border-color:rgba(24,160,88,.35);
    }
    .step-card:before{
      content:"0" counter(step);
      display:inline-flex;
      width:42px;
      height:42px;
      align-items:center;
      justify-content:center;
      border-radius:15px;
      background:var(--black);
      color:#fff;
      font-weight:900;
      margin-bottom:18px;
    }
    .step-card p{font-size:14px;color:var(--muted);margin-bottom:0}

    .faq-wrap{
      max-width:920px;
      margin:0 auto;
    }
    .accordion{
      background:transparent;
      border:0;
    }
    .accordion-item{
      margin-bottom:12px;
      border:1px solid rgba(21,24,22,.08);
      border-radius:20px;
      background:#fff;
      overflow:hidden;
      box-shadow:0 12px 32px rgba(22,34,24,.05);
    }
    .accordion-title{
      border:0!important;
      color:var(--black);
      font-size:16px;
      font-weight:850;
      padding:20px 54px 20px 22px;
      background:#fff;
      transition:var(--ease);
    }
    .accordion-title:hover,
    .accordion-title:focus{
      background:var(--green-soft);
      color:var(--green-dark);
    }
    .accordion-title:before{
      right:22px;
      font-size:22px;
      color:var(--green);
      margin-top:-13px;
    }
    .is-active>.accordion-title{
      background:var(--green-soft);
      color:var(--green-dark);
    }
    .accordion-content{
      border:0!important;
      padding:0 22px 22px;
      color:var(--muted);
      line-height:1.85;
      background:#fff;
    }

    .cta{
      padding:86px 0;
      background:
        linear-gradient(135deg, rgba(21,24,22,.95), rgba(16,23,18,.92)),
        url("/assets/images/coverpic/cover-10.webp") center/cover no-repeat;
      color:#fff;
      position:relative;
    }
    .cta h2{color:#fff}
    .cta .lead{color:rgba(255,255,255,.74)}
    .contact-points{
      display:grid;
      gap:14px;
      margin-top:24px;
    }
    .contact-point{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
    }
    .contact-point b{
      color:#fff;
      display:block;
      margin-bottom:2px;
    }
    .contact-point span{color:rgba(255,255,255,.7);font-size:14px}
    .point-dot{
      width:12px;
      height:12px;
      border-radius:50%;
      background:var(--orange);
      margin-top:7px;
      box-shadow:0 0 0 6px rgba(255,159,28,.16);
      flex:0 0 auto;
    }
    .form-card{
      background:#fff;
      color:var(--text);
      border-radius:var(--radius-lg);
      padding:24px;
      border:1px solid rgba(255,255,255,.2);
      box-shadow:0 26px 70px rgba(0,0,0,.18);
    }
    .form-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:14px;
    }
    .field{margin-bottom:14px}
    .field label{
      display:block;
      font-size:13px;
      font-weight:850;
      color:var(--black);
      margin-bottom:7px;
    }
    .field input,
    .field select,
    .field textarea{
      width:100%;
      border:1px solid var(--line);
      border-radius:16px;
      background:var(--bg);
      color:var(--black);
      padding:13px 14px;
      min-height:48px;
      transition:var(--ease);
      box-shadow:none;
      margin:0;
    }
    .field textarea{
      min-height:118px;
      resize:vertical;
    }
    .field input:focus,
    .field select:focus,
    .field textarea:focus{
      border-color:rgba(24,160,88,.55);
      background:#fff;
      box-shadow:0 0 0 4px rgba(24,160,88,.1);
    }
    .form-card .btn{width:100%;border:0;margin-top:4px}

    .site-footer{
      background:#101712;
      color:rgba(255,255,255,.76);
      padding:62px 0 26px;
    }
    .footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-size:20px;
      font-weight:850;
      margin-bottom:16px;
    }
    .footer-desc{
      color:rgba(255,255,255,.66);
      line-height:1.85;
      max-width:360px;
      margin-bottom:24px;
    }
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:14px;
      font-size:15px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.66);
      font-size:14px;
    }
    .footer-links a:hover{
      color:#fff;
      padding-left:4px;
    }
    .footer-divider{
      border:0;
      border-top:1px solid rgba(255,255,255,.12);
      margin:34px 0 22px;
    }
    .footer-bottom{
      text-align:center;
      color:rgba(255,255,255,.62);
      font-size:13px;
      line-height:2;
    }
    .footer-bottom a{
      color:rgba(255,255,255,.72);
      margin:0 4px;
    }
    .footer-bottom a:hover{color:#fff}

    @media screen and (max-width:1024px){
      .nav-shell{
        flex-wrap:wrap;
        gap:12px;
      }
      .nav-search{
        order:3;
        width:100%;
        max-width:none;
        margin-left:0;
      }
      .nav-links{
        margin-left:auto;
      }
      .dashboard{margin-top:30px}
      .trend-grid,
      .compare-wrap{
        grid-template-columns:1fr;
      }
      .heat-card.wide{grid-column:span 6}
      .heat-card.mid{grid-column:span 6}
      .heat-card.small{grid-column:span 6}
      .workflow{grid-template-columns:repeat(2,1fr)}
    }

    @media screen and (max-width:768px){
      .site-container{width:min(calc(100% - 28px), var(--container))}
      .nav-shell{min-height:auto}
      .brand span:last-child{font-size:18px}
      .menu-toggle{display:flex;margin-left:auto}
      .nav-links{
        order:4;
        width:100%;
        display:none;
        overflow-x:auto;
        padding:8px 0 2px;
        -webkit-overflow-scrolling:touch;
      }
      .nav-links.is-open{display:flex}
      .nav-links a{background:#fff;border:1px solid var(--line)}
      .nav-search form{border-radius:18px}
      .nav-search button{padding:8px 12px}
      .hero{padding:52px 0 42px}
      .hero-search form{flex-direction:column;border-radius:22px}
      .hero-search input{min-height:48px}
      .hero-search button{min-height:48px}
      .section{padding:62px 0}
      .section-head{
        display:block;
        margin-bottom:26px;
      }
      .dashboard{grid-template-columns:1fr}
      .metric-card.large{grid-column:auto}
      .rank-row{
        grid-template-columns:42px 1fr auto;
        gap:10px;
      }
      .rank-row .rank-data:nth-of-type(2),
      .rank-row .rank-data:nth-of-type(3){
        display:none;
      }
      .trend-note{grid-template-columns:1fr}
      .heat-map{grid-template-columns:1fr}
      .heat-card.wide,.heat-card.mid,.heat-card.small{grid-column:auto}
      .duel-meta{grid-template-columns:1fr}
      .workflow{grid-template-columns:1fr}
      .form-grid{grid-template-columns:1fr}
      .footer-bottom span{display:block}
    }

    @media screen and (max-width:520px){
      h1{font-size:36px;letter-spacing:-.045em}
      h2{font-size:28px}
      .btn-row{align-items:stretch}
      .btn{width:100%}
      .hero-panel,.rank-board,.trend-visual,.duel-card,.form-card{padding:18px;border-radius:22px}
      .dashboard{gap:12px}
      .metric-number{font-size:30px}
      .duel-teams{
        grid-template-columns:1fr;
      }
      .vs{margin:auto}
      .line-chart{gap:7px}
      .footer-links{margin-bottom:22px}
    }
