/* roulang page: index */
:root {
      --primary: #1e8e5a;
      --primary-dark: #0f5f3e;
      --primary-soft: #e8f7ef;
      --accent: #d6f74a;
      --hot: #ff7a3d;
      --data: #2e6be6;
      --bg: #f7f9f1;
      --card: #ffffff;
      --dark: #10251b;
      --dark-2: #183526;
      --text: #34483d;
      --muted: #718075;
      --line: rgba(22, 70, 45, 0.12);
      --shadow: 0 12px 30px rgba(16, 37, 27, 0.08);
      --shadow-hover: 0 18px 46px rgba(16, 37, 27, 0.13);
      --radius-lg: 26px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --container: 1180px;
      --font: "PingFang SC", "Microsoft YaHei", "HarmonyOS Sans SC", "Noto Sans SC", Arial, sans-serif;
      --number: "DIN Alternate", "Roboto Condensed", "Arial Narrow", system-ui, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(214, 247, 74, 0.18), transparent 28%),
        linear-gradient(180deg, #f9fbf4 0%, var(--bg) 42%, #eef6ea 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
      background: none;
    }

    :focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 3px;
    }

    .container {
      width: min(100% - 48px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(247, 249, 241, 0.88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(22, 70, 45, 0.08);
      transition: box-shadow .25s ease, background .25s ease;
    }

    .site-header.is-scrolled {
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 10px 32px rgba(16, 37, 27, 0.08);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
      font-weight: 900;
      color: var(--dark);
      letter-spacing: 0;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--primary-dark), var(--primary));
      position: relative;
      box-shadow: 0 12px 24px rgba(30, 142, 90, .25);
    }

    .logo-mark::before {
      content: "";
      position: absolute;
      left: 9px;
      right: 9px;
      top: 18px;
      height: 2px;
      background: var(--accent);
      border-radius: 10px;
      transform: rotate(-22deg);
    }

    .logo-mark::after {
      content: "2";
      position: absolute;
      right: 8px;
      top: 5px;
      color: #fff;
      font-family: var(--number);
      font-weight: 900;
      font-size: 16px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .logo-text strong {
      font-size: 17px;
    }

    .logo-text span {
      font-size: 12px;
      color: var(--muted);
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-left: auto;
    }

    .nav-link {
      padding: 9px 12px;
      border-radius: 999px;
      color: #40564a;
      font-size: 14px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease, transform .2s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
    }

    .nav-link:active,
    .btn:active,
    .mobile-toggle:active {
      transform: translateY(1px);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 800;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      white-space: nowrap;
    }

    .btn-primary {
      color: #f7fff8;
      background: var(--primary-dark);
      box-shadow: 0 14px 28px rgba(15, 95, 62, .18);
    }

    .btn-primary::after {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(214, 247, 74, .18);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      background: #0b4e33;
      box-shadow: 0 18px 42px rgba(15, 95, 62, .26);
    }

    .btn-secondary {
      color: var(--primary-dark);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(30, 142, 90, .35);
      box-shadow: var(--shadow-hover);
    }

    .mobile-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--dark);
      font-weight: 900;
    }

    .section {
      padding: 82px 0;
    }

    .section-tight {
      padding: 54px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 30px;
    }

    .section-kicker,
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--primary-dark);
      background: rgba(232, 247, 239, .9);
      border: 1px solid rgba(30, 142, 90, .14);
      font-size: 13px;
      font-weight: 800;
    }

    .section-kicker::before,
    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(214, 247, 74, .22);
    }

    h1,
    h2,
    h3 {
      color: var(--dark);
      line-height: 1.16;
      letter-spacing: 0;
    }

    h1 {
      font-size: clamp(34px, 5vw, 56px);
      margin: 18px 0 18px;
      max-width: 760px;
    }

    h2 {
      font-size: clamp(26px, 3.6vw, 36px);
      margin-top: 12px;
    }

    h3 {
      font-size: 21px;
    }

    .lead {
      font-size: 17px;
      color: #476054;
      max-width: 650px;
    }

    .hero {
      padding: 72px 0 48px;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(420px, .88fr);
      gap: 36px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 28px 0 26px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .trust-item {
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .76);
      border: 1px solid var(--line);
      color: #50665a;
      font-size: 13px;
      font-weight: 700;
    }

    .score-board {
      position: relative;
      overflow: hidden;
      border-radius: 30px;
      padding: 24px;
      min-height: 520px;
      color: #f7fff8;
      box-shadow: 0 24px 60px rgba(16, 37, 27, .2);
      background: var(--dark);
    }

    .score-board::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(140deg, rgba(16, 37, 27, .92), rgba(24, 53, 38, .74)),
        url("/assets/images/backpic/back-1.webp") center/cover;
      transform: scale(1.03);
    }

    .score-board::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(214, 247, 74, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
      background-size: 44px 44px;
      opacity: .35;
      pointer-events: none;
    }

    .score-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .board-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      margin-bottom: 4px;
    }

    .board-title {
      font-size: 20px;
      font-weight: 900;
    }

    .live-pill {
      color: #173221;
      background: var(--accent);
      border-radius: 999px;
      padding: 6px 11px;
      font-size: 12px;
      font-weight: 900;
    }

    .match-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 14px;
      padding: 15px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .10);
      border: 1px solid rgba(255, 255, 255, .13);
      backdrop-filter: blur(12px);
    }

    .team {
      min-width: 0;
      font-weight: 800;
    }

    .team.right {
      text-align: right;
    }

    .league {
      display: block;
      margin-top: 3px;
      color: rgba(247, 255, 248, .7);
      font-size: 12px;
      font-weight: 600;
    }

    .score {
      min-width: 84px;
      text-align: center;
      color: var(--accent);
      font-family: var(--number);
      font-size: 30px;
      font-weight: 900;
      line-height: 1;
    }

    .board-mini {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 8px;
    }

    .mini-stat {
      padding: 14px;
      border-radius: 18px;
      background: rgba(214, 247, 74, .10);
      border: 1px solid rgba(214, 247, 74, .20);
    }

    .mini-stat strong {
      display: block;
      color: var(--accent);
      font-family: var(--number);
      font-size: 24px;
      line-height: 1.2;
    }

    .mini-stat span {
      color: rgba(247, 255, 248, .75);
      font-size: 12px;
      font-weight: 700;
    }

    .focus-strip {
      padding-top: 22px;
    }

    .score-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(220px, 1fr));
      gap: 16px;
      overflow-x: auto;
      padding-bottom: 6px;
      scrollbar-width: thin;
    }

    .strip-card,
    .card {
      background: var(--card);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .strip-card:hover,
    .card:hover {
      transform: translateY(-4px);
      border-color: rgba(30, 142, 90, .36);
      box-shadow: var(--shadow-hover);
    }

    .strip-card {
      min-width: 220px;
      padding: 18px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 10px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 800;
    }

    .tag.hot {
      background: rgba(255, 122, 61, .12);
      color: #b74719;
    }

    .tag.data {
      background: rgba(46, 107, 230, .10);
      color: #244fa6;
    }

    .strip-title {
      margin: 14px 0 8px;
      color: var(--dark);
      font-weight: 900;
    }

    .strip-meta {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.55;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr 1fr;
      gap: 18px;
    }

    .feature-card {
      padding: 24px;
      min-height: 210px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .feature-card.wide {
      grid-column: span 2;
      background:
        linear-gradient(135deg, rgba(232, 247, 239, .95), rgba(255, 255, 255, .9)),
        url("/assets/images/coverpic/cover-1.webp") right center/auto 100% no-repeat;
    }

    .icon-box {
      width: 46px;
      height: 46px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .card p,
    .feature-card p {
      color: var(--muted);
      margin-top: 10px;
      font-size: 15px;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      color: var(--primary-dark);
      font-weight: 900;
    }

    .card-link:hover {
      color: var(--primary);
    }

    .daily-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 22px;
      align-items: start;
    }

    .league-panel {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .panel-head {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: center;
      padding: 18px 20px;
      background: linear-gradient(90deg, var(--primary-soft), #fff);
      border-bottom: 1px solid var(--line);
    }

    .panel-head strong {
      color: var(--dark);
      font-size: 18px;
    }

    .match-list {
      display: grid;
    }

    .list-match {
      display: grid;
      grid-template-columns: 90px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px 20px;
      border-bottom: 1px solid rgba(22, 70, 45, .08);
    }

    .list-match:last-child {
      border-bottom: 0;
    }

    .time {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .teams-line {
      color: var(--dark);
      font-weight: 900;
    }

    .teams-line span {
      color: var(--muted);
      font-weight: 700;
      margin: 0 8px;
    }

    .compact-score {
      font-family: var(--number);
      font-size: 26px;
      font-weight: 900;
      color: var(--primary-dark);
    }

    .side-card {
      position: sticky;
      top: 100px;
      overflow: hidden;
      border-radius: var(--radius-lg);
      color: #fff;
      min-height: 420px;
      padding: 24px;
      background: var(--dark);
      box-shadow: var(--shadow-hover);
    }

    .side-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(16, 37, 27, .25), rgba(16, 37, 27, .95)),
        url("/assets/images/coverpic/cover-4.webp") center/cover;
    }

    .side-card > * {
      position: relative;
      z-index: 1;
    }

    .side-card h3 {
      color: #fff;
      margin-top: 190px;
      font-size: 25px;
    }

    .side-card p {
      color: rgba(247, 255, 248, .78);
      margin: 12px 0 18px;
    }

    .scene-grid {
      column-count: 3;
      column-gap: 18px;
    }

    .scene-card {
      break-inside: avoid;
      margin-bottom: 18px;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .scene-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .scene-image {
      position: relative;
      height: 170px;
      overflow: hidden;
    }

    .scene-card.tall .scene-image {
      height: 250px;
    }

    .scene-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .3s ease;
    }

    .scene-card:hover img {
      transform: scale(1.04);
    }

    .scene-body {
      padding: 22px;
    }

    .scene-body p {
      color: var(--muted);
      margin: 10px 0 14px;
      font-size: 15px;
    }

    .reviews-wrap {
      padding: 34px;
      border-radius: 32px;
      background:
        radial-gradient(circle at 90% 10%, rgba(214, 247, 74, .24), transparent 32%),
        var(--primary-soft);
      border: 1px solid rgba(30, 142, 90, .12);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .review-card {
      background: #fff;
      border: 1px solid rgba(22, 70, 45, .10);
      border-radius: 20px;
      padding: 18px;
      box-shadow: 0 10px 26px rgba(16, 37, 27, .06);
    }

    .review-top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: start;
      margin-bottom: 10px;
    }

    .review-name {
      color: var(--dark);
      font-weight: 900;
      line-height: 1.3;
    }

    .review-role {
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .stars {
      color: #ffb020;
      font-weight: 900;
      white-space: nowrap;
      font-size: 13px;
    }

    .review-card p {
      font-size: 15px;
      color: #43584d;
      margin-bottom: 12px;
    }

    .review-foot {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      border-top: 1px solid rgba(22, 70, 45, .08);
      padding-top: 12px;
    }

    .plans {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .plan-card {
      padding: 26px;
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .plan-card.featured {
      background: linear-gradient(180deg, var(--dark-2), var(--dark));
      color: #f7fff8;
      border-color: rgba(214, 247, 74, .25);
    }

    .plan-card.featured h3,
    .plan-card.featured .plan-price {
      color: #fff;
    }

    .plan-price {
      margin: 16px 0 12px;
      color: var(--dark);
      font-size: 28px;
      font-family: var(--number);
      font-weight: 900;
    }

    .plan-list {
      list-style: none;
      display: grid;
      gap: 10px;
      margin: 18px 0 22px;
    }

    .plan-list li {
      display: flex;
      gap: 9px;
      align-items: flex-start;
      color: inherit;
      opacity: .88;
    }

    .plan-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 10px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--accent);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 350px 1fr;
      gap: 32px;
      align-items: start;
    }

    .faq-aside {
      padding: 26px;
      border-radius: var(--radius-lg);
      background: var(--dark);
      color: #f7fff8;
      position: sticky;
      top: 100px;
    }

    .faq-aside h2 {
      color: #fff;
    }

    .faq-aside p {
      color: rgba(247, 255, 248, .72);
      margin-top: 14px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(16, 37, 27, .05);
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 19px 20px;
      color: var(--dark);
      font-weight: 900;
      text-align: left;
    }

    .faq-question span:first-child {
      display: inline-flex;
      gap: 10px;
      align-items: center;
    }

    .faq-question span:first-child::before {
      content: "Q";
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-size: 13px;
    }

    .faq-icon {
      font-size: 20px;
      color: var(--primary);
      transition: transform .2s ease;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px 58px;
      color: var(--muted);
      background: linear-gradient(180deg, #fff, rgba(232, 247, 239, .45));
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .contact-cta {
      padding: 34px;
      border-radius: 34px;
      background:
        linear-gradient(120deg, rgba(16, 37, 27, .92), rgba(15, 95, 62, .86)),
        url("/assets/images/backpic/back-2.webp") center/cover;
      color: #f7fff8;
      box-shadow: 0 24px 60px rgba(16, 37, 27, .18);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: center;
    }

    .contact-cta h2 {
      color: #fff;
      margin-bottom: 14px;
    }

    .contact-cta p {
      color: rgba(247, 255, 248, .78);
    }

    .need-list {
      list-style: none;
      display: grid;
      gap: 12px;
      margin-top: 24px;
    }

    .need-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(247, 255, 248, .86);
    }

    .need-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
    }

    .contact-form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      padding: 20px;
      border-radius: 24px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .16);
      backdrop-filter: blur(12px);
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      color: rgba(247, 255, 248, .88);
      font-size: 13px;
      font-weight: 800;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      border: 1px solid rgba(232, 247, 239, .5);
      border-radius: 15px;
      padding: 13px 14px;
      background: #fff;
      color: var(--dark);
      outline: none;
      transition: box-shadow .2s ease, border-color .2s ease;
    }

    .field textarea {
      min-height: 112px;
      resize: vertical;
    }

    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(214, 247, 74, .20);
    }

    .site-footer {
      background: var(--dark);
      color: rgba(247, 255, 248, .78);
      padding: 64px 0 26px;
      margin-top: 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr repeat(3, 1fr);
      gap: 34px;
      margin-bottom: 34px;
    }

    .footer-brand .logo {
      color: #fff;
      margin-bottom: 16px;
    }

    .footer-brand p {
      max-width: 360px;
      color: rgba(247, 255, 248, .68);
    }

    .footer-col h3 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 14px;
    }

    .footer-links {
      list-style: none;
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(247, 255, 248, .70);
      transition: color .2s ease, padding-left .2s ease;
    }

    .footer-links a:hover {
      color: var(--accent);
      padding-left: 4px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(247, 255, 248, .12);
      padding-top: 22px;
      text-align: center;
      font-size: 13px;
      color: rgba(247, 255, 248, .64);
    }

    .footer-bottom a {
      color: rgba(247, 255, 248, .72);
      margin: 0 6px;
    }

    .footer-bottom a:hover {
      color: var(--accent);
    }

    @media (max-width: 1100px) {
      .nav-links {
        gap: 2px;
      }

      .nav-link {
        padding: 8px 9px;
        font-size: 13px;
      }

      .hero-grid,
      .daily-layout,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .side-card {
        position: relative;
        top: auto;
      }

      .feature-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .faq-layout {
        grid-template-columns: 1fr;
      }

      .faq-aside {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 860px) {
      .container {
        width: min(100% - 40px, var(--container));
      }

      .mobile-toggle {
        display: grid;
        place-items: center;
        margin-left: auto;
      }

      .nav {
        min-height: 70px;
        flex-wrap: wrap;
      }

      .nav-links,
      .nav-actions {
        display: none;
        width: 100%;
      }

      .nav.menu-open .nav-links,
      .nav.menu-open .nav-actions {
        display: grid;
      }

      .nav.menu-open .nav-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 8px 0 4px;
      }

      .nav.menu-open .nav-link {
        background: #fff;
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 12px;
      }

      .nav.menu-open .nav-actions {
        padding-bottom: 16px;
      }

      .nav.menu-open .nav-actions .btn {
        width: 100%;
      }

      .hero {
        padding-top: 46px;
      }

      .score-board {
        min-height: auto;
      }

      .feature-grid,
      .plans {
        grid-template-columns: 1fr;
      }

      .feature-card.wide {
        grid-column: auto;
        background: #fff;
      }

      .scene-grid {
        column-count: 2;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      .section {
        padding: 56px 0;
      }

      .section-head {
        display: block;
      }

      .hero-actions,
      .board-mini,
      .contact-form {
        grid-template-columns: 1fr;
      }

      .hero-actions .btn {
        width: 100%;
      }

      .match-row {
        grid-template-columns: 1fr;
        text-align: left;
      }

      .team.right {
        text-align: left;
      }

      .score {
        text-align: left;
      }

      .list-match {
        grid-template-columns: 1fr;
        gap: 7px;
      }

      .scene-grid {
        column-count: 1;
      }

      .reviews-grid {
        grid-template-columns: 1fr;
      }

      .reviews-wrap,
      .contact-cta {
        padding: 22px;
        border-radius: 24px;
      }

      .contact-form {
        display: grid;
      }

      .field.full {
        grid-column: auto;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom a {
        display: inline-block;
        margin-top: 6px;
      }
    }

/* roulang page: category2 */
:root {
      --primary: #17905A;
      --primary-deep: #0F5F3E;
      --primary-soft: #E8F7EF;
      --accent: #D6F74A;
      --hot: #FF7A3D;
      --data: #2E6BE6;
      --bg: #F7F9F1;
      --card: #FFFFFF;
      --dark: #10251B;
      --dark-2: #183526;
      --text: #34483D;
      --muted: #718075;
      --light: #F7FFF8;
      --border: rgba(22, 70, 45, 0.10);
      --shadow: 0 12px 30px rgba(16, 37, 27, 0.08);
      --shadow-hover: 0 18px 46px rgba(16, 37, 27, 0.13);
      --radius-lg: 26px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --container: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "PingFang SC", "Microsoft YaHei", "HarmonyOS Sans SC", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background: radial-gradient(circle at top left, rgba(214, 247, 74, 0.20), transparent 32%), var(--bg);
      line-height: 1.75;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button, input, textarea, select { font: inherit; }
    button { cursor: pointer; }
    :focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }

    .container { width: min(100% - 48px, var(--container)); margin: 0 auto; }
    .section { padding: 82px 0; }
    .section-tight { padding: 56px 0; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 13px;
      border-radius: 999px;
      color: var(--primary-deep);
      background: rgba(214, 247, 74, 0.34);
      border: 1px solid rgba(23, 144, 90, 0.18);
      font-size: 14px;
      font-weight: 700;
    }
    .eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 5px rgba(23,144,90,.12); }
    h1, h2, h3, p { margin-top: 0; }
    h1, h2, h3 { color: var(--dark); line-height: 1.18; letter-spacing: 0; }
    h1 { font-size: clamp(32px, 4vw, 46px); margin-bottom: 18px; }
    h2 { font-size: clamp(26px, 3vw, 36px); margin-bottom: 14px; }
    h3 { font-size: 21px; margin-bottom: 10px; }
    .lead { font-size: 17px; color: var(--muted); max-width: 720px; }
    .section-head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
    .section-head p { margin-bottom: 0; }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(247, 249, 241, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: box-shadow .25s ease, background .25s ease;
    }
    .site-header.is-scrolled { background: rgba(255,255,255,.96); box-shadow: 0 10px 30px rgba(16,37,27,.08); }
    .nav { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
    .logo-mark {
      width: 42px; height: 42px; border-radius: 14px;
      background: linear-gradient(135deg, var(--primary), var(--primary-deep));
      position: relative; box-shadow: inset 0 0 0 1px rgba(255,255,255,.28), 0 10px 22px rgba(15,95,62,.22);
    }
    .logo-mark::before { content: ""; position: absolute; inset: 10px 8px; border: 2px solid var(--accent); border-left-color: transparent; border-radius: 50%; transform: rotate(-22deg); }
    .logo-mark::after { content: ""; position: absolute; width: 11px; height: 11px; right: 8px; top: 8px; border-radius: 50%; background: var(--accent); }
    .logo-text { display: flex; flex-direction: column; line-height: 1.2; }
    .logo-text strong { font-size: 18px; color: var(--dark); }
    .logo-text span { font-size: 12px; color: var(--muted); }
    .nav-links { display: flex; align-items: center; justify-content: center; gap: 5px; flex: 1; }
    .nav-link {
      padding: 9px 12px;
      border-radius: 999px;
      color: #405247;
      font-size: 14px;
      font-weight: 700;
      transition: color .2s ease, background .2s ease, transform .2s ease;
      white-space: nowrap;
    }
    .nav-link:hover, .nav-link.active { color: var(--primary-deep); background: var(--primary-soft); }
    .nav-link:active, .btn:active { transform: translateY(1px); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .btn {
      display: inline-flex; align-items: center; justify-content: center; gap: 9px;
      min-height: 44px; padding: 12px 20px;
      border-radius: 999px; border: 1px solid transparent;
      font-weight: 800; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
      white-space: nowrap;
    }
    .btn-primary { background: var(--primary-deep); color: var(--light); box-shadow: 0 10px 22px rgba(15,95,62,.22); }
    .btn-primary::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); background: #0B4E34; }
    .btn-secondary { background: #fff; color: var(--primary-deep); border-color: rgba(23,144,90,.18); }
    .btn-secondary:hover { transform: translateY(-2px); border-color: rgba(23,144,90,.35); box-shadow: var(--shadow); }
    .mobile-toggle { display: none; width: 44px; height: 44px; border-radius: 14px; border: 1px solid var(--border); background: #fff; color: var(--dark); font-size: 22px; }

    .hero { padding: 72px 0 48px; position: relative; }
    .hero::before {
      content: ""; position: absolute; inset: 0 0 auto 0; height: 420px; z-index: -1;
      background: linear-gradient(135deg, rgba(232,247,239,.96), rgba(247,249,241,.62)), url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
    }
    .hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 34px; align-items: center; }
    .hero-copy { padding: 24px 0; }
    .hero-copy .lead { margin-bottom: 26px; }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 24px; }
    .hero-points { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; margin: 0; list-style: none; }
    .hero-points li { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.76); border: 1px solid var(--border); color: var(--primary-deep); font-size: 13px; font-weight: 700; }
    .calendar-board {
      background: linear-gradient(160deg, var(--dark), #153D2A);
      color: var(--light);
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: 0 22px 55px rgba(16,37,27,.20);
      overflow: hidden;
      position: relative;
    }
    .calendar-board::before { content: ""; position: absolute; width: 220px; height: 220px; right: -90px; top: -80px; border-radius: 50%; background: rgba(214,247,74,.18); }
    .calendar-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 18px; position: relative; }
    .calendar-top strong { font-size: 20px; }
    .calendar-top span { color: rgba(247,255,248,.72); font-size: 13px; }
    .date-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; margin-bottom: 20px; position: relative; }
    .date-pill { padding: 9px 4px; border-radius: 14px; text-align: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.10); }
    .date-pill.active { background: var(--accent); color: var(--dark); font-weight: 900; }
    .date-pill small { display: block; font-size: 12px; opacity: .75; }
    .fixture-card { position: relative; display: grid; grid-template-columns: 1fr auto 1fr; gap: 12px; align-items: center; padding: 14px; border-radius: 18px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.11); margin-top: 10px; }
    .fixture-card .team { font-weight: 800; }
    .fixture-card .time { padding: 6px 10px; border-radius: 999px; color: var(--dark); background: var(--accent); font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif; font-weight: 900; }
    .board-note { margin: 16px 0 0; color: rgba(247,255,248,.75); font-size: 14px; }

    .filter-band { margin-top: -4px; }
    .filter-card { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
    .tabs { display: flex; gap: 10px; flex-wrap: wrap; }
    .tab { border: 1px solid var(--border); background: var(--bg); color: var(--text); border-radius: 999px; padding: 10px 15px; font-weight: 800; transition: all .2s ease; }
    .tab:hover, .tab.active { background: var(--primary-deep); color: #fff; border-color: var(--primary-deep); transform: translateY(-1px); }
    .filter-meta { color: var(--muted); font-size: 14px; }

    .timeline-wrap { display: grid; grid-template-columns: 330px 1fr; gap: 28px; align-items: start; }
    .side-panel { position: sticky; top: 104px; background: var(--card); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); padding: 24px; }
    .side-panel img { border-radius: 20px; height: 190px; width: 100%; object-fit: cover; margin: 16px 0; }
    .league-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 14px; }
    .tag { display: inline-flex; align-items: center; gap: 6px; padding: 7px 11px; border-radius: 999px; background: var(--primary-soft); color: var(--primary-deep); border: 1px solid rgba(23,144,90,.14); font-size: 13px; font-weight: 800; }
    .tag.hot { background: rgba(255,122,61,.12); color: #B94716; border-color: rgba(255,122,61,.18); }
    .timeline { position: relative; padding-left: 22px; }
    .timeline::before { content: ""; position: absolute; left: 7px; top: 4px; bottom: 4px; width: 2px; background: rgba(23,144,90,.18); }
    .time-group { position: relative; margin-bottom: 24px; }
    .time-group::before { content: ""; position: absolute; left: -21px; top: 8px; width: 14px; height: 14px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 6px var(--primary-soft); }
    .time-title { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 12px; }
    .time-title h3 { margin: 0; }
    .time-title span { color: var(--muted); font-size: 14px; }
    .match-row { display: grid; grid-template-columns: 88px 1fr auto; gap: 16px; align-items: center; padding: 16px; border-radius: 18px; background: #fff; border: 1px solid var(--border); box-shadow: 0 8px 20px rgba(16,37,27,.045); margin-bottom: 10px; transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
    .match-row:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: rgba(23,144,90,.28); }
    .match-time { font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif; font-size: 22px; font-weight: 900; color: var(--primary-deep); }
    .match-info strong { display: block; color: var(--dark); font-size: 17px; }
    .match-info span { display: block; color: var(--muted); font-size: 14px; margin-top: 2px; }
    .status { padding: 7px 11px; border-radius: 999px; background: rgba(46,107,230,.10); color: var(--data); font-size: 13px; font-weight: 900; }
    .status.done { background: var(--primary-soft); color: var(--primary-deep); }
    .status.focus { background: rgba(255,122,61,.13); color: #BB4A16; }

    .results-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; }
    .result-feature, .result-list, .checklist, .cta-panel, .faq-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
    .result-feature { overflow: hidden; }
    .result-feature img { width: 100%; height: 250px; object-fit: cover; }
    .result-body { padding: 24px; }
    .score-line { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin: 18px 0; }
    .score-team { flex: 1; font-weight: 900; color: var(--dark); }
    .score-team:last-child { text-align: right; }
    .score-num { font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif; font-size: 40px; line-height: 1; font-weight: 900; color: var(--primary-deep); background: var(--primary-soft); padding: 10px 16px; border-radius: 16px; }
    .result-list { padding: 22px; }
    .mini-result { display: grid; grid-template-columns: 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
    .mini-result:last-child { border-bottom: 0; }
    .mini-result strong { color: var(--dark); }
    .mini-result span { color: var(--muted); font-size: 14px; }
    .mini-score { font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif; color: var(--dark); font-size: 24px; font-weight: 900; }

    .league-filter { background: var(--dark); color: var(--light); border-radius: 30px; padding: 34px; position: relative; overflow: hidden; }
    .league-filter::after { content: ""; position: absolute; inset: auto -120px -150px auto; width: 300px; height: 300px; border-radius: 50%; background: rgba(214,247,74,.14); }
    .league-filter h2 { color: #fff; }
    .league-filter .lead { color: rgba(247,255,248,.74); }
    .league-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; position: relative; z-index: 1; }
    .league-chip { padding: 11px 16px; border-radius: 999px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.13); color: #fff; font-weight: 800; transition: all .2s ease; }
    .league-chip:hover, .league-chip.active { background: var(--accent); color: var(--dark); transform: translateY(-2px); }

    .checklist { padding: 28px; }
    .check-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 22px; }
    .check-item { padding: 18px; border-radius: 18px; background: var(--bg); border: 1px solid var(--border); transition: transform .22s ease, background .22s ease; }
    .check-item:hover { transform: translateY(-3px); background: var(--primary-soft); }
    .check-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 14px; background: var(--primary-deep); color: var(--accent); font-weight: 900; margin-bottom: 12px; }
    .check-item p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

    .cta-panel { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; padding: 30px; background: linear-gradient(135deg, #fff, var(--primary-soft)); }
    .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

    .faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; align-items: start; }
    .faq-intro { background: var(--primary-soft); border: 1px solid rgba(23,144,90,.14); border-radius: var(--radius-lg); padding: 26px; }
    .faq-card { padding: 8px; }
    .faq-item { border-bottom: 1px solid var(--border); }
    .faq-item:last-child { border-bottom: 0; }
    .faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px; border: 0; background: transparent; color: var(--dark); text-align: left; font-weight: 900; }
    .faq-question span:first-child { display: inline-flex; align-items: center; gap: 10px; }
    .faq-question span:first-child::before { content: "Q"; width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; background: var(--primary-soft); color: var(--primary-deep); font-size: 13px; }
    .faq-answer { display: none; padding: 0 18px 18px 54px; color: var(--muted); }
    .faq-item.open .faq-answer { display: block; }
    .faq-item.open .faq-question .plus { transform: rotate(45deg); }
    .plus { transition: transform .2s ease; color: var(--primary); font-size: 22px; }

    .site-footer { background: var(--dark); color: rgba(247,255,248,.78); padding: 58px 0 26px; }
    .footer-grid { display: grid; grid-template-columns: 1.35fr .85fr .85fr 1.05fr; gap: 34px; margin-bottom: 34px; }
    .site-footer .logo-text strong, .site-footer h3 { color: #fff; }
    .site-footer .logo-text span { color: rgba(247,255,248,.62); }
    .footer-brand p { margin: 18px 0 0; max-width: 340px; }
    .footer-col h3 { font-size: 17px; margin-bottom: 14px; }
    .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
    .footer-links a { color: rgba(247,255,248,.78); transition: color .2s ease; }
    .footer-links a:hover { color: var(--accent); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,.10); padding-top: 22px; text-align: center; font-size: 13px; color: rgba(247,255,248,.65); }
    .footer-bottom p { margin: 5px 0; }
    .footer-bottom a { color: rgba(247,255,248,.75); }
    .footer-bottom a:hover { color: var(--accent); }

    @media (max-width: 1100px) {
      .nav-links { position: absolute; left: 24px; right: 24px; top: 78px; display: none; flex-direction: column; align-items: stretch; background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 14px; box-shadow: var(--shadow-hover); }
      .nav-links.open { display: flex; }
      .nav-link { text-align: center; }
      .mobile-toggle { display: inline-grid; place-items: center; }
      .nav-actions { margin-left: auto; }
      .hero-grid, .timeline-wrap, .results-grid, .faq-layout { grid-template-columns: 1fr; }
      .side-panel { position: static; }
      .check-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .container { width: min(100% - 32px, var(--container)); }
      .section { padding: 58px 0; }
      .section-head, .filter-card, .cta-panel { align-items: stretch; flex-direction: column; display: flex; }
      .hero { padding: 46px 0 34px; }
      .calendar-board { padding: 18px; }
      .date-strip { grid-template-columns: repeat(4, minmax(62px, 1fr)); overflow-x: auto; }
      .fixture-card { grid-template-columns: 1fr; text-align: center; }
      .match-row { grid-template-columns: 1fr; gap: 8px; }
      .status { width: fit-content; }
      .cta-actions, .hero-actions { width: 100%; }
      .btn { width: 100%; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .score-line { flex-wrap: wrap; }
      .score-team:last-child { text-align: left; }
    }
    @media (max-width: 520px) {
      .logo-text strong { font-size: 16px; }
      .logo-text span { display: none; }
      .nav-actions { display: none; }
      .filter-meta { font-size: 13px; }
      .check-grid, .footer-grid { grid-template-columns: 1fr; }
      .league-filter { padding: 24px; border-radius: 24px; }
      .score-num { font-size: 32px; }
      .faq-answer { padding-left: 18px; }
    }

/* roulang page: category1 */
:root {
      --primary: #1E8E5A;
      --primary-dark: #0F5F3E;
      --primary-soft: #E8F7EF;
      --accent: #D6F74A;
      --hot: #FF7A3D;
      --data: #2E6BE6;
      --bg: #F7F9F1;
      --surface: #FFFFFF;
      --dark: #10251B;
      --dark-2: #183526;
      --text: #34483D;
      --muted: #718075;
      --line: rgba(22, 70, 45, 0.12);
      --line-strong: rgba(22, 70, 45, 0.2);
      --shadow: 0 12px 30px rgba(16, 37, 27, 0.08);
      --shadow-hover: 0 18px 46px rgba(16, 37, 27, 0.13);
      --radius-lg: 26px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --container: 1180px;
      --font: PingFang SC, HarmonyOS Sans SC, Microsoft YaHei, Noto Sans SC, Arial, sans-serif;
      --num-font: DIN Alternate, Roboto Condensed, Arial Narrow, system-ui, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: var(--font);
      color: var(--text);
      background:
        radial-gradient(circle at 12% 6%, rgba(214, 247, 74, 0.18), transparent 28%),
        linear-gradient(180deg, #F8FAF1 0%, var(--bg) 52%, #EFF6EA 100%);
      line-height: 1.75;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      border: 0;
      cursor: pointer;
    }

    :focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 3px;
      box-shadow: 0 0 0 5px rgba(30, 142, 90, 0.14);
    }

    .container {
      width: min(100% - 48px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(247, 249, 241, 0.86);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
      transition: background .25s ease, box-shadow .25s ease;
    }

    .site-header.is-scrolled {
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 10px 28px rgba(16, 37, 27, 0.08);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
    }

    .logo:hover {
      transform: translateY(-1px);
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 16px;
      background:
        linear-gradient(135deg, var(--accent), transparent 52%),
        linear-gradient(145deg, var(--primary), var(--primary-dark));
      position: relative;
      box-shadow: 0 12px 24px rgba(30, 142, 90, 0.22);
    }

    .logo-mark::before {
      content: "";
      position: absolute;
      inset: 10px 7px;
      border: 2px solid rgba(255, 255, 255, 0.9);
      border-left: 0;
      border-radius: 50%;
      transform: rotate(-25deg);
    }

    .logo-mark::after {
      content: "1";
      position: absolute;
      right: 8px;
      bottom: 4px;
      font-family: var(--num-font);
      font-size: 18px;
      font-weight: 800;
      color: var(--accent);
    }

    .logo-text {
      display: grid;
      line-height: 1.18;
    }

    .logo-text strong {
      color: var(--dark);
      font-size: 18px;
      letter-spacing: 0;
    }

    .logo-text span {
      color: var(--muted);
      font-size: 12px;
      margin-top: 2px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
      margin-left: auto;
      padding: 6px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
    }

    .nav-link {
      padding: 9px 13px;
      border-radius: 999px;
      color: #40564A;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-link:hover {
      color: var(--primary-dark);
      background: var(--primary-soft);
    }

    .nav-link.active {
      color: var(--dark);
      background: var(--accent);
      box-shadow: inset 0 0 0 1px rgba(16, 37, 27, 0.06);
    }

    .nav-actions {
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 46px;
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 800;
      line-height: 1.2;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn::after {
      content: "→";
      line-height: 1;
      transform: translateX(0);
      transition: transform .2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:hover::after {
      transform: translateX(3px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-primary {
      color: #F7FFF8;
      background: var(--primary-dark);
      box-shadow: 0 12px 26px rgba(15, 95, 62, 0.22);
    }

    .btn-primary:hover {
      background: #0A4F33;
      box-shadow: 0 16px 34px rgba(15, 95, 62, 0.28);
    }

    .btn-accent {
      color: var(--dark);
      background: var(--accent);
      box-shadow: 0 12px 26px rgba(149, 180, 34, 0.2);
    }

    .btn-accent:hover {
      background: #C9EC36;
    }

    .btn-ghost {
      color: var(--primary-dark);
      background: rgba(255, 255, 255, 0.82);
      border-color: var(--line);
    }

    .btn-ghost:hover {
      border-color: rgba(30, 142, 90, 0.32);
      box-shadow: var(--shadow);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      margin-left: auto;
      border-radius: 14px;
      background: var(--surface);
      color: var(--dark);
      border: 1px solid var(--line);
      font-size: 22px;
      box-shadow: var(--shadow);
    }

    main {
      display: block;
    }

    .section {
      padding: 82px 0;
    }

    .section-tight {
      padding: 56px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(214, 247, 74, 0.32);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      color: var(--dark);
      font-size: clamp(30px, 4vw, 46px);
      line-height: 1.16;
      letter-spacing: 0;
      margin-bottom: 18px;
    }

    h2 {
      color: var(--dark);
      font-size: clamp(25px, 3vw, 34px);
      line-height: 1.22;
      letter-spacing: 0;
      margin-bottom: 12px;
    }

    h3 {
      color: var(--dark);
      font-size: 20px;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    p {
      color: var(--text);
      margin-bottom: 0;
    }

    .lead {
      font-size: 17px;
      color: #41584B;
      line-height: 1.85;
    }

    .hero {
      position: relative;
      padding: 64px 0 54px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(105deg, rgba(247, 249, 241, 0.96) 0%, rgba(247, 249, 241, 0.82) 44%, rgba(16, 37, 27, 0.18) 100%),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto -8% -120px 48%;
      height: 260px;
      background: repeating-linear-gradient(135deg, rgba(30, 142, 90, 0.18) 0 2px, transparent 2px 18px);
      transform: rotate(-3deg);
      z-index: -1;
      opacity: .7;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, .86fr);
      gap: 42px;
      align-items: center;
    }

    .hero-copy {
      max-width: 710px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 28px;
    }

    .hero-points {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 26px;
    }

    .point {
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.76);
      border: 1px solid var(--line);
      color: #43594D;
      font-size: 13px;
      font-weight: 700;
    }

    .score-calendar {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(255, 255, 255, 0.7);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-hover);
      padding: 22px;
      overflow: hidden;
      position: relative;
    }

    .score-calendar::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(214, 247, 74, 0.16), transparent 38%);
      pointer-events: none;
    }

    .calendar-top {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding-bottom: 16px;
      border-bottom: 1px solid var(--line);
    }

    .calendar-top strong {
      color: var(--dark);
      font-size: 18px;
    }

    .calendar-date {
      display: grid;
      place-items: center;
      width: 72px;
      height: 72px;
      border-radius: 22px;
      background: var(--dark);
      color: #fff;
      line-height: 1.1;
      box-shadow: 0 12px 24px rgba(16, 37, 27, 0.2);
    }

    .calendar-date b {
      font-family: var(--num-font);
      font-size: 32px;
    }

    .calendar-date span {
      font-size: 12px;
      color: var(--accent);
    }

    .mini-match {
      position: relative;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 12px;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid var(--line);
    }

    .mini-match:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .team {
      color: var(--dark);
      font-weight: 800;
      min-width: 0;
    }

    .team.right {
      text-align: right;
    }

    .score {
      min-width: 76px;
      padding: 7px 10px;
      border-radius: 14px;
      text-align: center;
      color: var(--dark);
      background: #F1F8EA;
      border: 1px solid rgba(30, 142, 90, 0.16);
      font-family: var(--num-font);
      font-weight: 900;
      font-size: 24px;
      line-height: 1;
    }

    .status {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 5px 9px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      white-space: nowrap;
    }

    .status.live {
      background: rgba(255, 122, 61, 0.12);
      color: #B34D1E;
    }

    .status.upcoming {
      background: rgba(46, 107, 230, 0.12);
      color: #214DAB;
    }

    .status.done {
      background: rgba(30, 142, 90, 0.13);
      color: var(--primary-dark);
    }

    .status.focus {
      background: rgba(214, 247, 74, 0.5);
      color: var(--dark);
    }

    .filter-strip {
      padding: 22px 0 0;
    }

    .filters {
      display: flex;
      align-items: center;
      gap: 10px;
      overflow-x: auto;
      padding: 2px 2px 10px;
      scrollbar-width: thin;
    }

    .filter-btn {
      flex: 0 0 auto;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.78);
      color: #40564A;
      font-weight: 800;
      box-shadow: 0 6px 18px rgba(16, 37, 27, 0.04);
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--primary-dark);
      color: #fff;
      border-color: var(--primary-dark);
      transform: translateY(-1px);
    }

    .score-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 360px;
      gap: 28px;
      align-items: start;
    }

    .league-panel {
      display: grid;
      gap: 18px;
    }

    .league-card,
    .feature-card,
    .focus-card,
    .advice-card,
    .related-card,
    .faq-item,
    .contact-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .league-card:hover,
    .feature-card:hover,
    .focus-card:hover,
    .advice-card:hover,
    .related-card:hover,
    .faq-item:hover {
      transform: translateY(-3px);
      border-color: rgba(30, 142, 90, 0.28);
      box-shadow: var(--shadow-hover);
    }

    .league-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 18px 20px;
      border-bottom: 1px solid var(--line);
    }

    .league-title {
      display: flex;
      align-items: center;
      gap: 10px;
      color: var(--dark);
      font-size: 18px;
      font-weight: 900;
    }

    .league-title::before {
      content: "";
      width: 10px;
      height: 26px;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--accent), var(--primary));
    }

    .league-note {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .match-row {
      display: grid;
      grid-template-columns: 112px 1fr auto 1fr 92px;
      align-items: center;
      gap: 14px;
      padding: 17px 20px;
      border-bottom: 1px solid var(--line);
    }

    .match-row:last-child {
      border-bottom: 0;
    }

    .match-row:hover {
      background: #FAFCF6;
    }

    .match-time {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
    }

    .match-score {
      min-width: 84px;
      color: var(--dark);
      text-align: center;
      font-family: var(--num-font);
      font-size: 28px;
      font-weight: 900;
      line-height: 1;
    }

    .team-name {
      color: var(--dark);
      font-weight: 800;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .team-name.away {
      text-align: right;
    }

    .side-stack {
      display: grid;
      gap: 18px;
      position: sticky;
      top: 100px;
    }

    .focus-card {
      overflow: hidden;
    }

    .focus-image {
      position: relative;
      min-height: 190px;
      background: url("/assets/images/coverpic/cover-1.webp") center/cover no-repeat;
      display: flex;
      align-items: flex-end;
      padding: 20px;
    }

    .focus-image::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 10%, rgba(16, 37, 27, 0.82) 100%);
    }

    .focus-image h3 {
      position: relative;
      color: #fff;
      margin: 0;
    }

    .focus-body {
      padding: 20px;
    }

    .focus-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 13px 0;
      border-bottom: 1px solid var(--line);
    }

    .focus-line:last-child {
      border-bottom: 0;
    }

    .focus-line span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .focus-line strong {
      color: var(--dark);
      font-weight: 900;
    }

    .feature-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 24px;
      align-items: stretch;
    }

    .feature-card {
      padding: 26px;
    }

    .feature-card.highlight {
      background:
        linear-gradient(135deg, rgba(30, 142, 90, 0.94), rgba(15, 95, 62, 0.96)),
        url("/assets/images/coverpic/cover-5.webp") center/cover no-repeat;
      color: #fff;
      min-height: 330px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      border-color: transparent;
      overflow: hidden;
    }

    .feature-card.highlight h2,
    .feature-card.highlight p {
      color: #fff;
    }

    .feature-card.highlight .badge {
      align-self: flex-start;
      color: var(--dark);
      background: var(--accent);
    }

    .feature-list {
      display: grid;
      gap: 16px;
    }

    .feature-item {
      display: grid;
      grid-template-columns: 44px 1fr;
      gap: 14px;
      align-items: start;
      padding: 18px;
      border-radius: var(--radius-md);
      background: rgba(232, 247, 239, 0.58);
      border: 1px solid rgba(30, 142, 90, 0.12);
    }

    .icon {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 15px;
      background: var(--surface);
      color: var(--primary-dark);
      font-weight: 900;
      box-shadow: 0 8px 18px rgba(16, 37, 27, 0.08);
    }

    .badge {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      padding: 6px 10px;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-size: 12px;
      font-weight: 900;
      margin-bottom: 12px;
    }

    .advice-wrap {
      display: grid;
      grid-template-columns: .88fr 1.12fr;
      gap: 26px;
      align-items: center;
    }

    .advice-media {
      position: relative;
      min-height: 430px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-hover);
    }

    .advice-media img {
      width: 100%;
      height: 100%;
      min-height: 430px;
      object-fit: cover;
      transition: transform .35s ease;
    }

    .advice-media:hover img {
      transform: scale(1.04);
    }

    .advice-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(16, 37, 27, 0.82));
    }

    .media-caption {
      position: absolute;
      z-index: 1;
      left: 24px;
      right: 24px;
      bottom: 24px;
      color: #fff;
    }

    .media-caption strong {
      display: block;
      font-size: 24px;
      line-height: 1.25;
      margin-bottom: 8px;
    }

    .media-caption span {
      color: #E7F5EA;
    }

    .advice-grid {
      display: grid;
      gap: 16px;
    }

    .advice-card {
      padding: 22px;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 16px;
    }

    .step-num {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: var(--dark);
      color: var(--accent);
      font-family: var(--num-font);
      font-size: 20px;
      font-weight: 900;
    }

    .related-zone {
      background: var(--dark);
      color: #fff;
      border-radius: 34px;
      padding: 44px;
      overflow: hidden;
      position: relative;
    }

    .related-zone::before {
      content: "";
      position: absolute;
      inset: -80px -80px auto auto;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: rgba(214, 247, 74, 0.16);
    }

    .related-zone h2,
    .related-zone p {
      color: #fff;
    }

    .related-grid {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 24px;
    }

    .related-card {
      padding: 22px;
      background: rgba(255, 255, 255, 0.08);
      border-color: rgba(255, 255, 255, 0.14);
      color: #fff;
      box-shadow: none;
    }

    .related-card h3,
    .related-card p {
      color: #fff;
    }

    .related-card:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(214, 247, 74, 0.5);
    }

    .related-card a {
      display: inline-flex;
      margin-top: 14px;
      color: var(--accent);
      font-weight: 900;
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: 330px 1fr;
      gap: 34px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      min-height: 62px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 18px 20px;
      background: var(--surface);
      color: var(--dark);
      text-align: left;
      font-weight: 900;
    }

    .faq-question span {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .faq-question span::before {
      content: "Q";
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-family: var(--num-font);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .faq-question::after {
      content: "+";
      color: var(--primary);
      font-size: 24px;
      line-height: 1;
    }

    .faq-item.open .faq-question::after {
      content: "−";
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px 58px;
      background: linear-gradient(180deg, #fff, #F2FAF5);
      color: #455A4E;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .contact-band {
      padding: 72px 0 84px;
    }

    .contact-card {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 34px;
      padding: 34px;
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(232, 247, 239, 0.94)),
        url("/assets/images/coverpic/cover-8.webp") center/cover no-repeat;
    }

    .contact-list {
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .contact-list li {
      padding: 13px 15px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid var(--line);
      color: var(--dark);
      font-weight: 800;
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .field {
      display: grid;
      gap: 7px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    .field label {
      color: var(--dark);
      font-size: 13px;
      font-weight: 900;
    }

    .field input,
    .field textarea {
      width: 100%;
      border: 1px solid rgba(30, 142, 90, 0.18);
      border-radius: 16px;
      padding: 14px 15px;
      background: #fff;
      color: var(--dark);
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    .field textarea {
      min-height: 116px;
      resize: vertical;
    }

    .field input:focus,
    .field textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 5px rgba(30, 142, 90, 0.12);
    }

    .site-footer {
      background: var(--dark);
      color: #DDEBE1;
      padding: 58px 0 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr .8fr .8fr 1fr;
      gap: 30px;
      align-items: start;
    }

    .footer-brand .logo-text strong,
    .site-footer h3 {
      color: #fff;
    }

    .footer-brand .logo-text span,
    .footer-brand p,
    .footer-links li {
      color: rgba(247, 255, 248, 0.72);
    }

    .footer-brand p {
      margin-top: 18px;
      max-width: 360px;
    }

    .footer-col h3 {
      font-size: 16px;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
      padding: 0;
      margin: 0;
      list-style: none;
      font-size: 14px;
    }

    .footer-links a {
      color: rgba(247, 255, 248, 0.76);
    }

    .footer-links a:hover {
      color: var(--accent);
      padding-left: 2px;
    }

    .footer-bottom {
      margin-top: 36px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      text-align: center;
      font-size: 13px;
      color: rgba(247, 255, 248, 0.68);
    }

    .footer-bottom p {
      margin: 6px 0;
      color: rgba(247, 255, 248, 0.68);
    }

    .footer-bottom a {
      color: rgba(247, 255, 248, 0.76);
    }

    .footer-bottom a:hover {
      color: var(--accent);
    }

    @media (max-width: 1100px) {
      .nav {
        gap: 14px;
      }

      .nav-link {
        padding: 8px 9px;
        font-size: 13px;
      }

      .hero-grid,
      .score-layout,
      .feature-grid,
      .advice-wrap,
      .contact-card {
        grid-template-columns: 1fr;
      }

      .side-stack {
        position: static;
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 900px) {
      .container {
        width: min(100% - 40px, var(--container));
      }

      .mobile-toggle {
        display: grid;
        place-items: center;
      }

      .nav {
        position: relative;
        min-height: 70px;
      }

      .nav-links,
      .nav-actions {
        display: none;
      }

      .nav.is-open .nav-links,
      .nav.is-open .nav-actions {
        display: grid;
      }

      .nav.is-open .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        margin: 0;
        padding: 14px;
        border-radius: 22px;
        background: #fff;
        box-shadow: var(--shadow-hover);
        border: 1px solid var(--line);
        grid-template-columns: repeat(2, 1fr);
        z-index: 10;
      }

      .nav.is-open .nav-link {
        border-radius: 14px;
        padding: 12px;
      }

      .nav.is-open .nav-actions {
        position: absolute;
        top: calc(100% + 238px);
        left: 0;
        right: 0;
        z-index: 11;
      }

      .nav.is-open .nav-actions .btn {
        width: 100%;
      }

      .hero {
        padding-top: 44px;
      }

      .section {
        padding: 58px 0;
      }

      .match-row {
        grid-template-columns: 78px 1fr auto;
        gap: 10px;
      }

      .team-name.away {
        text-align: left;
      }

      .match-row .status {
        grid-column: 2 / -1;
        justify-self: start;
      }

      .match-score {
        min-width: 66px;
        font-size: 24px;
      }

      .related-grid,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 620px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      .logo-text strong {
        font-size: 16px;
      }

      .logo-text span {
        display: none;
      }

      .hero-actions,
      .form-grid {
        grid-template-columns: 1fr;
        display: grid;
      }

      .hero-actions .btn,
      .contact-card .btn {
        width: 100%;
      }

      .score-calendar,
      .contact-card,
      .related-zone {
        border-radius: 22px;
        padding: 20px;
      }

      .calendar-date {
        width: 62px;
        height: 62px;
        border-radius: 18px;
      }

      .mini-match {
        grid-template-columns: 1fr;
        gap: 7px;
      }

      .team.right {
        text-align: left;
      }

      .score {
        width: fit-content;
      }

      .league-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .match-row {
        grid-template-columns: 1fr;
        padding: 16px;
      }

      .team-name,
      .team-name.away {
        white-space: normal;
      }

      .match-score {
        text-align: left;
      }

      .side-stack,
      .related-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .feature-item,
      .advice-card {
        grid-template-columns: 1fr;
      }

      .advice-media,
      .advice-media img {
        min-height: 320px;
      }

      .faq-answer {
        padding-left: 20px;
      }

      .footer-bottom {
        text-align: left;
      }
    }

/* roulang page: category4 */
:root{
      --primary:#1E8E5A;
      --primary-dark:#0F5F3E;
      --primary-soft:#E8F7EF;
      --accent:#D6F74A;
      --accent-2:#FF7A3D;
      --blue:#2E6BE6;
      --bg:#F7F9F1;
      --card:#FFFFFF;
      --dark:#10251B;
      --dark-2:#183526;
      --text:#34483D;
      --muted:#718075;
      --line:rgba(22,70,45,.10);
      --line-strong:rgba(22,70,45,.18);
      --shadow:0 12px 30px rgba(16,37,27,.08);
      --shadow-hover:0 18px 46px rgba(16,37,27,.13);
      --radius-lg:28px;
      --radius-md:18px;
      --radius-sm:14px;
      --container:1180px;
      --font:PingFang SC,Microsoft YaHei,HarmonyOS Sans SC,Noto Sans SC,Arial,sans-serif;
      --num:DIN Alternate,Roboto Condensed,Arial Narrow,system-ui,sans-serif;
    }

    *{box-sizing:border-box;margin:0;padding:0}
    html{scroll-behavior:smooth}
    body{
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 8% 6%, rgba(214,247,74,.20), transparent 28%),
        radial-gradient(circle at 92% 4%, rgba(30,142,90,.12), transparent 30%),
        linear-gradient(180deg,#F7F9F1 0%,#F9FBF4 42%,#F6F8F3 100%);
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    button{cursor:pointer;border:0;background:none}
    :focus-visible{outline:2px solid var(--primary);outline-offset:3px}
    .container{width:min(100% - 48px,var(--container));margin-inline:auto}
    .section{padding:84px 0}
    .section-tight{padding:56px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(232,247,239,.95);
      color:var(--primary-dark);
      border:1px solid rgba(30,142,90,.14);
      font-size:13px;
      font-weight:700;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 4px rgba(214,247,74,.25);
    }
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:28px;
      margin-bottom:30px;
    }
    .section-head h2{
      font-size:clamp(26px,3.2vw,36px);
      line-height:1.18;
      color:var(--dark);
      letter-spacing:-.03em;
      margin-top:12px;
    }
    .section-head p{max-width:580px;color:var(--muted);font-size:16px}
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:44px;
      padding:12px 20px;
      border-radius:999px;
      font-weight:800;
      border:1px solid transparent;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,border-color .22s ease,color .22s ease;
      white-space:nowrap;
    }
    .btn-primary{
      color:#F7FFF8;
      background:linear-gradient(135deg,var(--primary-dark),var(--primary));
      box-shadow:0 12px 24px rgba(15,95,62,.20);
    }
    .btn-primary::after{content:"→";color:var(--accent);font-weight:900}
    .btn-primary:hover{transform:translateY(-2px);box-shadow:0 16px 34px rgba(15,95,62,.28);background:linear-gradient(135deg,#0B4D33,#17905A)}
    .btn-secondary{
      color:var(--primary-dark);
      background:#fff;
      border-color:var(--line-strong);
      box-shadow:0 8px 18px rgba(16,37,27,.05);
    }
    .btn-secondary:hover{transform:translateY(-2px);border-color:rgba(30,142,90,.35);box-shadow:var(--shadow)}
    .tag{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      font-size:12px;
      font-weight:800;
      color:var(--primary-dark);
      background:var(--primary-soft);
      border:1px solid rgba(30,142,90,.14);
    }
    .tag.hot{background:rgba(255,122,61,.12);color:#A74719;border-color:rgba(255,122,61,.2)}
    .tag.dark{background:rgba(16,37,27,.08);color:var(--dark);border-color:rgba(16,37,27,.12)}

    .site-header{
      position:sticky;top:0;z-index:50;
      background:rgba(247,249,241,.82);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(22,70,45,.08);
      transition:box-shadow .2s ease,background .2s ease;
    }
    .site-header.is-scrolled{background:rgba(255,255,255,.94);box-shadow:0 10px 28px rgba(16,37,27,.08)}
    .nav{
      min-height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .logo{display:inline-flex;align-items:center;gap:12px;min-width:max-content}
    .logo-mark{
      width:43px;height:43px;border-radius:16px;
      background:
        radial-gradient(circle at 70% 28%, var(--accent) 0 12%, transparent 13%),
        linear-gradient(135deg,var(--primary),var(--primary-dark));
      position:relative;
      box-shadow:0 12px 24px rgba(15,95,62,.2);
      overflow:hidden;
    }
    .logo-mark::before,.logo-mark::after{
      content:"";position:absolute;inset:auto;
      border:2px solid rgba(255,255,255,.64);
      border-radius:50%;
    }
    .logo-mark::before{width:30px;height:30px;left:-12px;bottom:-9px}
    .logo-mark::after{width:52px;height:22px;right:-22px;top:10px;transform:rotate(-18deg)}
    .logo-text{display:flex;flex-direction:column;line-height:1.15}
    .logo-text strong{font-size:18px;color:var(--dark);letter-spacing:-.02em}
    .logo-text span{font-size:12px;color:var(--muted);margin-top:3px}
    .nav-links{display:flex;align-items:center;gap:5px}
    .nav-link{
      padding:9px 12px;
      border-radius:999px;
      font-size:14px;
      font-weight:700;
      color:#43574B;
      transition:background .2s ease,color .2s ease,transform .2s ease;
    }
    .nav-link:hover{color:var(--primary-dark);background:rgba(232,247,239,.9);transform:translateY(-1px)}
    .nav-link.active{color:var(--primary-dark);background:#fff;border:1px solid rgba(30,142,90,.18);box-shadow:0 8px 20px rgba(16,37,27,.06)}
    .nav-actions{display:flex;align-items:center;gap:10px}
    .mobile-toggle{
      display:none;
      width:44px;height:44px;border-radius:14px;
      background:#fff;border:1px solid var(--line);
      color:var(--dark);font-size:20px;
      box-shadow:0 8px 18px rgba(16,37,27,.06);
    }

    .hero-special{
      position:relative;
      padding:54px 0 42px;
      overflow:hidden;
    }
    .hero-special::before{
      content:"";
      position:absolute;
      inset:0 0 auto 0;
      height:72%;
      background:
        linear-gradient(115deg,rgba(16,37,27,.86),rgba(24,53,38,.68),rgba(30,142,90,.36)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      z-index:-2;
    }
    .hero-special::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(circle at 15% 16%,rgba(214,247,74,.28),transparent 24%),
        linear-gradient(180deg,transparent 0%,transparent 63%,var(--bg) 64%);
      z-index:-1;
    }
    .hero-panel{
      display:grid;
      grid-template-columns:1.08fr .92fr;
      gap:28px;
      align-items:stretch;
      min-height:520px;
    }
    .hero-copy{
      padding:54px 0 40px;
      color:#F7FFF8;
      display:flex;
      flex-direction:column;
      justify-content:center;
    }
    .hero-copy .eyebrow{
      background:rgba(255,255,255,.12);
      color:#F7FFF8;
      border-color:rgba(255,255,255,.18);
      width:max-content;
      backdrop-filter:blur(10px);
    }
    .hero-copy h1{
      max-width:720px;
      margin:18px 0 18px;
      font-size:clamp(34px,5vw,52px);
      line-height:1.12;
      color:#fff;
      letter-spacing:-.05em;
    }
    .hero-copy p{
      max-width:640px;
      color:rgba(247,255,248,.82);
      font-size:17px;
      line-height:1.9;
    }
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:28px}
    .hero-actions .btn-secondary{
      background:rgba(255,255,255,.12);
      color:#fff;
      border-color:rgba(255,255,255,.25);
      backdrop-filter:blur(12px);
    }
    .hero-actions .btn-secondary:hover{background:rgba(255,255,255,.20)}
    .hero-meta{
      margin-top:30px;
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }
    .hero-meta span{
      display:inline-flex;
      align-items:center;
      gap:7px;
      padding:8px 11px;
      border-radius:999px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
      color:rgba(247,255,248,.88);
      font-size:13px;
      font-weight:700;
    }
    .cover-card{
      align-self:end;
      position:relative;
      min-height:500px;
      border-radius:32px;
      overflow:hidden;
      box-shadow:0 24px 60px rgba(16,37,27,.22);
      border:1px solid rgba(255,255,255,.22);
      background:var(--dark);
    }
    .cover-card img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;filter:saturate(1.08)}
    .cover-card::after{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(180deg,rgba(16,37,27,.05) 0%,rgba(16,37,27,.72) 72%,rgba(16,37,27,.92) 100%);
    }
    .cover-content{
      position:absolute;inset:auto 22px 22px 22px;
      z-index:2;color:#fff;
      padding:22px;
      border-radius:24px;
      background:rgba(16,37,27,.58);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter:blur(14px);
    }
    .cover-content h2{font-size:28px;line-height:1.22;margin:14px 0 10px;color:#fff}
    .cover-content p{color:rgba(247,255,248,.78);font-size:15px}
    .mini-score{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:12px;
      margin-top:18px;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
    }
    .mini-score strong{font-size:15px}
    .mini-score .score{
      font-family:var(--num);
      font-size:30px;
      font-weight:900;
      color:var(--accent);
      letter-spacing:.02em;
    }
    .mini-score span:last-child{text-align:right}

    .focus-layout{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:24px;
      align-items:stretch;
    }
    .feature-cover{
      position:relative;
      overflow:hidden;
      min-height:430px;
      border-radius:var(--radius-lg);
      background:var(--dark);
      box-shadow:var(--shadow);
      border:1px solid rgba(255,255,255,.2);
    }
    .feature-cover img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0;transition:transform .35s ease}
    .feature-cover:hover img{transform:scale(1.04)}
    .feature-cover::after{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(90deg,rgba(16,37,27,.86) 0%,rgba(16,37,27,.52) 54%,rgba(16,37,27,.12) 100%);
    }
    .feature-inner{
      position:relative;
      z-index:2;
      max-width:520px;
      padding:34px;
      height:100%;
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      color:#fff;
    }
    .feature-inner h3{font-size:32px;line-height:1.22;margin:16px 0 12px;color:#fff}
    .feature-inner p{color:rgba(247,255,248,.82)}
    .feature-stats{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:22px;
    }
    .feature-stats div{
      min-width:116px;
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(10px);
    }
    .feature-stats b{
      display:block;
      font-family:var(--num);
      font-size:25px;
      color:var(--accent);
      line-height:1.1;
    }
    .feature-stats small{color:rgba(247,255,248,.76)}
    .side-topics{
      display:grid;
      gap:16px;
    }
    .side-topic{
      position:relative;
      overflow:hidden;
      border-radius:24px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
      min-height:132px;
      display:grid;
      grid-template-columns:120px 1fr;
    }
    .side-topic:hover{transform:translateY(-3px);box-shadow:var(--shadow-hover);border-color:rgba(30,142,90,.26)}
    .side-topic img{width:100%;height:100%;object-fit:cover}
    .side-topic div{padding:18px}
    .side-topic h3{font-size:18px;color:var(--dark);line-height:1.32;margin:8px 0 4px}
    .side-topic p{font-size:14px;color:var(--muted);line-height:1.6}

    .masonry{
      columns:3 300px;
      column-gap:22px;
    }
    .topic-card{
      break-inside:avoid;
      display:inline-block;
      width:100%;
      margin:0 0 22px;
      border-radius:var(--radius-lg);
      background:#fff;
      overflow:hidden;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
    }
    .topic-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover);border-color:rgba(30,142,90,.28)}
    .topic-card .pic{height:190px;overflow:hidden;position:relative}
    .topic-card.tall .pic{height:260px}
    .topic-card .pic::after{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(180deg,transparent 45%,rgba(16,37,27,.46) 100%);
    }
    .topic-card img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
    .topic-card:hover img{transform:scale(1.04)}
    .topic-body{padding:22px}
    .topic-body h3{font-size:21px;line-height:1.35;color:var(--dark);margin:12px 0 8px}
    .topic-body p{color:var(--muted);font-size:15px}
    .topic-foot{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      margin-top:18px;
      padding-top:16px;
      border-top:1px solid var(--line);
      font-size:13px;
      color:var(--muted);
    }
    .topic-foot a{font-weight:800;color:var(--primary-dark)}
    .topic-foot a:hover{color:var(--primary)}

    .route-section{
      background:linear-gradient(135deg,var(--dark),var(--dark-2));
      color:#F7FFF8;
      border-radius:36px;
      padding:42px;
      position:relative;
      overflow:hidden;
      box-shadow:0 24px 60px rgba(16,37,27,.16);
    }
    .route-section::before{
      content:"";
      position:absolute;
      width:380px;height:380px;border-radius:50%;
      right:-120px;top:-150px;
      background:radial-gradient(circle,rgba(214,247,74,.25),transparent 68%);
    }
    .route-section .section-head{position:relative;z-index:1}
    .route-section h2{color:#fff}
    .route-section .section-head p{color:rgba(247,255,248,.72)}
    .stage-line{
      position:relative;
      z-index:1;
      display:grid;
      grid-template-columns:repeat(5,1fr);
      gap:14px;
      margin-top:28px;
    }
    .stage{
      position:relative;
      min-height:170px;
      padding:22px;
      border-radius:24px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(12px);
      transition:transform .22s ease,background .22s ease;
    }
    .stage:hover{transform:translateY(-3px);background:rgba(255,255,255,.12)}
    .stage::before{
      content:"";
      position:absolute;
      top:36px;left:-14px;
      width:14px;height:2px;
      background:rgba(214,247,74,.55);
    }
    .stage:first-child::before{display:none}
    .stage-num{
      width:36px;height:36px;
      display:grid;place-items:center;
      border-radius:13px;
      background:var(--accent);
      color:var(--dark);
      font-family:var(--num);
      font-weight:900;
      margin-bottom:14px;
    }
    .stage h3{font-size:18px;color:#fff;margin-bottom:8px}
    .stage p{font-size:14px;color:rgba(247,255,248,.72);line-height:1.65}

    .reading-layout{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:26px;
      align-items:start;
    }
    .reading-panel{
      position:sticky;
      top:104px;
      padding:30px;
      border-radius:var(--radius-lg);
      background:linear-gradient(180deg,#fff,#F4FAF4);
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .reading-panel h2{font-size:30px;line-height:1.2;color:var(--dark);margin:12px 0 12px}
    .reading-panel p{color:var(--muted)}
    .reading-checks{margin-top:22px;display:grid;gap:12px}
    .reading-checks li{
      list-style:none;
      display:flex;
      gap:10px;
      align-items:flex-start;
      padding:12px;
      border-radius:16px;
      background:#fff;
      border:1px solid var(--line);
      color:#40564A;
      font-weight:700;
    }
    .reading-checks li::before{
      content:"✓";
      flex:0 0 22px;
      height:22px;border-radius:50%;
      display:grid;place-items:center;
      background:var(--primary-soft);
      color:var(--primary-dark);
      font-size:13px;
      font-weight:900;
    }
    .article-list{display:grid;gap:15px}
    .article-item{
      display:grid;
      grid-template-columns:86px 1fr auto;
      gap:16px;
      align-items:center;
      padding:18px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:0 8px 22px rgba(16,37,27,.05);
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
    }
    .article-item:hover{transform:translateY(-2px);box-shadow:var(--shadow);border-color:rgba(30,142,90,.26)}
    .article-date{
      width:76px;height:76px;
      border-radius:20px;
      display:flex;flex-direction:column;align-items:center;justify-content:center;
      background:var(--primary-soft);
      color:var(--primary-dark);
      border:1px solid rgba(30,142,90,.14);
      line-height:1.15;
      font-weight:900;
      font-family:var(--num);
    }
    .article-date span{font-size:25px}
    .article-date small{font-family:var(--font);font-size:12px}
    .article-item h3{font-size:19px;line-height:1.35;color:var(--dark);margin-bottom:5px}
    .article-item p{font-size:14px;color:var(--muted);line-height:1.65}
    .article-item a{
      width:40px;height:40px;
      border-radius:50%;
      display:grid;place-items:center;
      background:var(--primary-soft);
      color:var(--primary-dark);
      font-weight:900;
      transition:background .2s ease,transform .2s ease;
    }
    .article-item a:hover{background:var(--accent);transform:translateX(2px)}

    .cta-band{
      position:relative;
      overflow:hidden;
      border-radius:36px;
      padding:44px;
      background:
        linear-gradient(120deg,rgba(16,37,27,.90),rgba(15,95,62,.80)),
        url("/assets/images/coverpic/cover-8.webp") center/cover no-repeat;
      color:#fff;
      box-shadow:0 24px 60px rgba(16,37,27,.18);
    }
    .cta-band::after{
      content:"";
      position:absolute;right:-90px;bottom:-130px;
      width:330px;height:330px;border-radius:50%;
      background:radial-gradient(circle,rgba(214,247,74,.30),transparent 65%);
    }
    .cta-content{
      position:relative;z-index:1;
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:center;
    }
    .cta-content h2{font-size:clamp(26px,3.2vw,38px);line-height:1.18;color:#fff;margin:12px 0}
    .cta-content p{color:rgba(247,255,248,.78);max-width:680px}
    .cta-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}
    .cta-actions .btn-secondary{background:rgba(255,255,255,.13);color:#fff;border-color:rgba(255,255,255,.25)}

    .faq-wrap{
      display:grid;
      grid-template-columns:.75fr 1.25fr;
      gap:28px;
      align-items:start;
    }
    .faq-intro{
      padding:30px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .faq-intro h2{font-size:30px;line-height:1.2;color:var(--dark);margin:12px 0}
    .faq-intro p{color:var(--muted)}
    .faq-list{display:grid;gap:12px}
    .faq-item{
      background:#fff;
      border:1px solid var(--line);
      border-radius:20px;
      overflow:hidden;
      box-shadow:0 8px 22px rgba(16,37,27,.05);
      transition:border-color .2s ease,box-shadow .2s ease;
    }
    .faq-item:hover{border-color:rgba(30,142,90,.28);box-shadow:var(--shadow)}
    .faq-question{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:19px 20px;
      color:var(--dark);
      font-weight:900;
      text-align:left;
    }
    .faq-question span:first-child{display:flex;gap:10px;align-items:center}
    .faq-question span:first-child::before{
      content:"Q";
      width:26px;height:26px;border-radius:50%;
      display:grid;place-items:center;
      background:var(--primary-soft);
      color:var(--primary-dark);
      font-family:var(--num);
      font-weight:900;
      flex:0 0 26px;
    }
    .faq-icon{font-size:22px;color:var(--primary);transition:transform .2s ease}
    .faq-answer{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s ease;
    }
    .faq-answer p{
      margin:0 20px 20px 56px;
      padding:16px;
      border-radius:16px;
      background:var(--primary-soft);
      color:#40564A;
      font-size:15px;
    }
    .faq-item.open .faq-answer{max-height:260px}
    .faq-item.open .faq-icon{transform:rotate(45deg)}

    .site-footer{
      margin-top:70px;
      padding:58px 0 26px;
      background:#10251B;
      color:rgba(247,255,248,.76);
      position:relative;
      overflow:hidden;
    }
    .site-footer::before{
      content:"";
      position:absolute;
      width:520px;height:520px;border-radius:50%;
      background:radial-gradient(circle,rgba(214,247,74,.14),transparent 64%);
      left:-180px;top:-230px;
    }
    .footer-grid{
      position:relative;
      display:grid;
      grid-template-columns:1.35fr .72fr .72fr 1fr;
      gap:34px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-brand .logo-text strong{color:#fff}
    .footer-brand .logo-text span{color:rgba(247,255,248,.58)}
    .footer-brand p{margin-top:18px;max-width:360px;color:rgba(247,255,248,.70)}
    .footer-col h3{
      color:#fff;
      font-size:16px;
      margin-bottom:14px;
    }
    .footer-links{display:grid;gap:9px;list-style:none}
    .footer-links a,.footer-links li{
      color:rgba(247,255,248,.70);
      font-size:14px;
      transition:color .2s ease,transform .2s ease;
    }
    .footer-links a:hover{color:var(--accent);transform:translateX(2px)}
    .footer-bottom{
      position:relative;
      padding-top:24px;
      text-align:center;
      display:grid;
      gap:8px;
      color:rgba(247,255,248,.62);
      font-size:13px;
    }
    .footer-bottom a{color:rgba(247,255,248,.72)}
    .footer-bottom a:hover{color:var(--accent)}

    @media (max-width:1100px){
      .nav{gap:14px}
      .nav-link{padding:8px 9px;font-size:13px}
      .hero-panel,.focus-layout,.reading-layout{grid-template-columns:1fr}
      .cover-card{min-height:440px;align-self:auto}
      .stage-line{grid-template-columns:repeat(3,1fr)}
      .reading-panel{position:relative;top:auto}
      .footer-grid{grid-template-columns:1fr 1fr}
    }
    @media (max-width:900px){
      .container{width:min(100% - 40px,var(--container))}
      .mobile-toggle{display:grid;place-items:center}
      .nav{min-height:70px;position:relative}
      .nav-links,.nav-actions{
        display:none;
        position:absolute;
        left:0;right:0;
        background:#fff;
        border:1px solid var(--line);
        box-shadow:var(--shadow-hover);
        z-index:30;
      }
      .nav-links{
        top:76px;
        padding:14px;
        border-radius:22px 22px 0 0;
        grid-template-columns:1fr 1fr;
        gap:8px;
      }
      .nav-actions{
        top:372px;
        padding:14px;
        border-radius:0 0 22px 22px;
      }
      .nav.menu-open .nav-links{display:grid}
      .nav.menu-open .nav-actions{display:flex}
      .nav-actions .btn{width:100%}
      .hero-special{padding-top:32px}
      .hero-copy{padding:38px 0 14px}
      .hero-panel{min-height:auto}
      .section{padding:62px 0}
      .section-head{display:block}
      .section-head p{margin-top:12px}
      .stage-line{grid-template-columns:1fr 1fr}
      .faq-wrap{grid-template-columns:1fr}
      .cta-content{grid-template-columns:1fr}
      .cta-actions{justify-content:flex-start}
    }
    @media (max-width:640px){
      .container{width:min(100% - 32px,var(--container))}
      .logo-text strong{font-size:16px}
      .logo-text span{display:none}
      .nav-links{grid-template-columns:1fr;top:72px}
      .nav-actions{top:556px}
      .hero-copy h1{font-size:32px}
      .hero-actions .btn{width:100%}
      .cover-card{min-height:420px;border-radius:24px}
      .cover-content{inset:auto 14px 14px 14px;padding:18px;border-radius:20px}
      .cover-content h2{font-size:24px}
      .mini-score{grid-template-columns:1fr;text-align:left}
      .mini-score span:last-child{text-align:left}
      .feature-cover{min-height:430px}
      .feature-inner{padding:24px}
      .feature-inner h3{font-size:26px}
      .side-topic{grid-template-columns:1fr}
      .side-topic img{height:150px}
      .masonry{columns:1}
      .route-section,.cta-band{padding:26px;border-radius:26px}
      .stage-line{grid-template-columns:1fr}
      .stage::before{display:none}
      .article-item{grid-template-columns:1fr;align-items:start}
      .article-date{width:70px;height:70px}
      .article-item a{width:100%;border-radius:14px;height:42px}
      .footer-grid{grid-template-columns:1fr}
      .footer-bottom{font-size:12px}
    }

/* roulang page: category3 */
:root {
      --primary: #1E8E5A;
      --primary-deep: #0F5F3E;
      --primary-soft: #E8F7EF;
      --accent: #D6F74A;
      --hot: #FF7A3D;
      --data: #2E6BE6;
      --bg: #F6F8F3;
      --bg-alt: #F7F9F1;
      --card: #FFFFFF;
      --dark: #10251B;
      --dark-2: #183526;
      --text: #34483D;
      --muted: #718075;
      --light: #F7FFF8;
      --border: rgba(22, 70, 45, 0.10);
      --border-strong: rgba(30, 142, 90, 0.26);
      --shadow: 0 12px 30px rgba(16, 37, 27, 0.08);
      --shadow-hover: 0 18px 46px rgba(16, 37, 27, 0.13);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --container: 1180px;
      --nav-height: 76px;
      --font: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      --num-font: "DIN Alternate", "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      text-size-adjust: 100%;
    }

    body {
      min-height: 100vh;
      font-family: var(--font);
      color: var(--text);
      line-height: 1.75;
      background:
        radial-gradient(circle at 8% 0%, rgba(214, 247, 74, 0.18), transparent 30%),
        radial-gradient(circle at 92% 14%, rgba(30, 142, 90, 0.12), transparent 32%),
        linear-gradient(180deg, var(--bg), #FFFFFF 46%, var(--bg-alt));
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
    }

    img {
      display: block;
      width: 100%;
      max-width: 100%;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
      background: none;
    }

    input,
    textarea,
    select {
      outline: none;
    }

    ::selection {
      color: var(--dark);
      background: var(--accent);
    }

    .container {
      width: min(100% - 48px, var(--container));
      margin-inline: auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(246, 248, 243, 0.86);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(22, 70, 45, 0.08);
      transition: background .25s ease, box-shadow .25s ease;
    }

    .site-header.is-scrolled {
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 10px 28px rgba(16, 37, 27, 0.08);
    }

    .nav {
      min-height: var(--nav-height);
      display: flex;
      align-items: center;
      gap: 22px;
      justify-content: space-between;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
      border-radius: 999px;
    }

    .logo:focus-visible,
    .nav-link:focus-visible,
    .btn:focus-visible,
    .mobile-toggle:focus-visible,
    .footer-links a:focus-visible,
    .filter-pill:focus-visible,
    .faq-question:focus-visible,
    .team-link:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 4px;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      position: relative;
      background:
        linear-gradient(135deg, var(--accent), #FFFFFF 48%, var(--primary) 49%, var(--primary-deep));
      box-shadow: inset 0 0 0 2px rgba(255,255,255,.65), 0 10px 22px rgba(15, 95, 62, .18);
      overflow: hidden;
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      border: 2px solid rgba(16, 37, 27, .35);
      border-radius: 50%;
    }

    .logo-mark::before {
      width: 28px;
      height: 28px;
      left: 7px;
      top: 7px;
    }

    .logo-mark::after {
      width: 54px;
      height: 16px;
      left: -6px;
      top: 13px;
      transform: rotate(-28deg);
      border-color: rgba(16, 37, 27, .24);
    }

    .logo-text {
      display: grid;
      line-height: 1.15;
    }

    .logo-text strong {
      color: var(--dark);
      font-size: 17px;
      letter-spacing: -0.2px;
      white-space: nowrap;
    }

    .logo-text span {
      color: var(--muted);
      font-size: 12px;
      margin-top: 3px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1 1 auto;
    }

    .nav-link {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 40px;
      padding: 8px 12px;
      border-radius: 999px;
      color: #40554A;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-link:hover {
      color: var(--primary-deep);
      background: rgba(30, 142, 90, 0.08);
    }

    .nav-link.active {
      color: var(--dark);
      background: var(--primary-soft);
      box-shadow: inset 0 0 0 1px rgba(30, 142, 90, .14);
    }

    .nav-link.active::after {
      content: "";
      width: 18px;
      height: 3px;
      border-radius: 999px;
      background: var(--primary);
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      padding: 12px 18px;
      font-weight: 800;
      font-size: 14px;
      line-height: 1;
      min-height: 46px;
      border: 1px solid transparent;
      white-space: nowrap;
      transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
    }

    .btn-primary {
      color: var(--light);
      background: var(--primary-deep);
      box-shadow: 0 12px 24px rgba(15, 95, 62, 0.20);
    }

    .btn-primary::after {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(214, 247, 74, .18);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(15, 95, 62, 0.25);
      background: #0A4F33;
    }

    .btn-secondary {
      color: var(--primary-deep);
      background: #FFFFFF;
      border-color: var(--border-strong);
      box-shadow: var(--shadow);
    }

    .btn-secondary:hover {
      transform: translateY(-2px);
      border-color: rgba(30, 142, 90, .42);
      box-shadow: var(--shadow-hover);
    }

    .btn-ghost {
      color: var(--dark);
      background: rgba(255, 255, 255, .72);
      border-color: var(--border);
    }

    .btn-ghost:hover {
      color: var(--primary-deep);
      border-color: var(--border-strong);
      background: #FFFFFF;
      transform: translateY(-2px);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      color: var(--dark);
      background: #FFFFFF;
      border: 1px solid var(--border);
      box-shadow: 0 8px 18px rgba(16, 37, 27, 0.06);
      font-size: 22px;
      line-height: 1;
    }

    main {
      position: relative;
      z-index: 1;
    }

    .section {
      padding: 82px 0;
    }

    .section-tight {
      padding: 54px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 30px;
    }

    .section-kicker,
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      border-radius: 999px;
      padding: 7px 12px;
      color: var(--primary-deep);
      background: rgba(232, 247, 239, .92);
      border: 1px solid rgba(30, 142, 90, .15);
      font-size: 13px;
      font-weight: 800;
    }

    .section-kicker::before,
    .eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 4px rgba(30, 142, 90, .12);
    }

    h1,
    h2,
    h3 {
      color: var(--dark);
      line-height: 1.18;
      letter-spacing: -0.6px;
    }

    h1 {
      font-size: clamp(32px, 5vw, 48px);
    }

    h2 {
      font-size: clamp(26px, 3.4vw, 36px);
    }

    h3 {
      font-size: 21px;
    }

    .lead {
      color: #496056;
      font-size: 17px;
      line-height: 1.85;
    }

    .muted {
      color: var(--muted);
    }

    .hero {
      padding: 58px 0 46px;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, rgba(246, 248, 243, .95), rgba(246, 248, 243, .78) 46%, rgba(246, 248, 243, .92)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      width: 620px;
      height: 620px;
      border-radius: 50%;
      right: -220px;
      top: -170px;
      background: radial-gradient(circle, rgba(214, 247, 74, .34), transparent 65%);
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
      gap: 34px;
      align-items: center;
    }

    .hero-copy {
      padding: 34px 0;
    }

    .hero-copy h1 {
      margin-top: 18px;
      max-width: 760px;
    }

    .hero-copy .lead {
      margin-top: 18px;
      max-width: 650px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 26px;
    }

    .mini-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(255,255,255,.75);
      border: 1px solid var(--border);
      color: #40554A;
      font-size: 13px;
      font-weight: 700;
    }

    .mini-badge i {
      width: 8px;
      height: 8px;
      display: inline-block;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(214, 247, 74, .20);
    }

    .scoreboard-card {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(160deg, rgba(16,37,27,.94), rgba(24,53,38,.90)),
        url("/assets/images/coverpic/cover-6.webp") center/cover no-repeat;
      color: var(--light);
      box-shadow: 0 26px 60px rgba(16, 37, 27, 0.23);
      border: 1px solid rgba(255,255,255,.14);
    }

    .scoreboard-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(214,247,74,.12) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.05) 1px, transparent 1px);
      background-size: 42px 42px;
      opacity: .32;
      pointer-events: none;
    }

    .scoreboard-inner {
      position: relative;
      padding: 26px;
    }

    .board-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
    }

    .board-title {
      display: grid;
      gap: 4px;
    }

    .board-title strong {
      font-size: 18px;
      color: #FFFFFF;
    }

    .board-title span {
      color: rgba(247,255,248,.72);
      font-size: 13px;
    }

    .board-chip {
      display: inline-flex;
      align-items: center;
      padding: 8px 10px;
      border-radius: 999px;
      color: var(--dark);
      background: var(--accent);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .standings-mini {
      display: grid;
      gap: 10px;
    }

    .standings-row {
      display: grid;
      grid-template-columns: 38px 1fr auto;
      align-items: center;
      gap: 12px;
      padding: 13px 14px;
      border-radius: 16px;
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.12);
      backdrop-filter: blur(8px);
    }

    .standings-row:hover {
      background: rgba(255,255,255,.15);
      border-color: rgba(214,247,74,.36);
    }

    .rank {
      width: 30px;
      height: 30px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      color: var(--dark);
      background: #FFFFFF;
      font-family: var(--num-font);
      font-weight: 900;
      font-size: 18px;
    }

    .rank.gold {
      background: var(--accent);
    }

    .team-name {
      display: grid;
      gap: 2px;
      min-width: 0;
    }

    .team-name strong {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
      color: #FFFFFF;
      font-size: 15px;
    }

    .team-name span {
      color: rgba(247,255,248,.66);
      font-size: 12px;
    }

    .pts {
      font-family: var(--num-font);
      color: var(--accent);
      font-size: 28px;
      line-height: 1;
      font-weight: 900;
    }

    .board-note {
      margin-top: 18px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }

    .note-box {
      padding: 13px;
      border-radius: 16px;
      background: rgba(214, 247, 74, .11);
      border: 1px solid rgba(214,247,74,.22);
    }

    .note-box strong {
      display: block;
      color: #FFFFFF;
      font-family: var(--num-font);
      font-size: 24px;
      line-height: 1.1;
    }

    .note-box span {
      color: rgba(247,255,248,.72);
      font-size: 12px;
    }

    .tabs-wrap {
      margin-top: -10px;
    }

    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 14px;
      border-radius: 22px;
      background: #FFFFFF;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .filter-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 42px;
      padding: 10px 15px;
      border-radius: 999px;
      color: #40554A;
      background: var(--bg-alt);
      border: 1px solid transparent;
      font-size: 14px;
      font-weight: 800;
      transition: .22s ease;
    }

    .filter-pill:hover,
    .filter-pill.active {
      color: var(--dark);
      background: var(--primary-soft);
      border-color: rgba(30,142,90,.25);
      transform: translateY(-1px);
    }

    .filter-pill.active::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
    }

    .standings-section {
      padding-top: 52px;
    }

    .table-shell {
      overflow: hidden;
      border-radius: var(--radius-xl);
      background: var(--card);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .table-headline {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 22px 24px;
      border-bottom: 1px solid var(--border);
      background:
        linear-gradient(135deg, rgba(232,247,239,.98), rgba(255,255,255,.95));
    }

    .table-headline p {
      color: var(--muted);
      font-size: 14px;
      margin-top: 4px;
    }

    .table-legend {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 8px;
    }

    .legend-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 6px 10px;
      background: #FFFFFF;
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .legend-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
    }

    .legend-dot.blue {
      background: var(--data);
    }

    .legend-dot.orange {
      background: var(--hot);
    }

    .standings-table {
      width: 100%;
      border-collapse: collapse;
      min-width: 860px;
    }

    .standings-table th,
    .standings-table td {
      padding: 16px 18px;
      text-align: left;
      border-bottom: 1px solid rgba(22, 70, 45, 0.08);
      vertical-align: middle;
    }

    .standings-table th {
      background: #FBFCF8;
      color: var(--muted);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .2px;
    }

    .standings-table td {
      color: #2E4439;
      font-size: 15px;
      font-weight: 700;
    }

    .standings-table tbody tr {
      transition: background .22s ease;
    }

    .standings-table tbody tr:hover {
      background: rgba(232,247,239,.55);
    }

    .table-scroll {
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(30,142,90,.35) rgba(232,247,239,.7);
    }

    .club-cell {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 160px;
    }

    .club-mark {
      width: 36px;
      height: 36px;
      flex: 0 0 auto;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--dark);
      background:
        radial-gradient(circle at 35% 30%, #FFFFFF 0 22%, transparent 23%),
        linear-gradient(135deg, var(--accent), var(--primary));
      font-weight: 900;
      font-size: 13px;
      box-shadow: inset 0 0 0 2px rgba(255,255,255,.75);
    }

    .club-meta {
      display: grid;
      line-height: 1.2;
    }

    .club-meta strong {
      color: var(--dark);
      font-size: 15px;
    }

    .club-meta span {
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
    }

    .rank-badge {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      font-family: var(--num-font);
      font-size: 18px;
      color: var(--dark);
      background: var(--primary-soft);
      font-weight: 900;
    }

    .rank-badge.top {
      background: var(--accent);
      box-shadow: 0 8px 18px rgba(214, 247, 74, .28);
    }

    .form-dots {
      display: flex;
      gap: 5px;
    }

    .form-dot {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 900;
      color: #FFFFFF;
    }

    .win { background: var(--primary); }
    .draw { background: #9BA79F; }
    .loss { background: var(--hot); }

    .points-num {
      font-family: var(--num-font);
      font-size: 24px;
      color: var(--primary-deep);
      font-weight: 900;
      letter-spacing: .2px;
    }

    .change-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      border-radius: 999px;
      padding: 5px 9px;
      font-size: 12px;
      font-weight: 900;
      background: var(--primary-soft);
      color: var(--primary-deep);
    }

    .change-tag.up {
      background: rgba(214,247,74,.34);
      color: #48610C;
    }

    .change-tag.down {
      background: rgba(255,122,61,.12);
      color: #A4481D;
    }

    .insight-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 24px;
      align-items: stretch;
    }

    .movement-panel,
    .analysis-card,
    .path-card,
    .faq-panel,
    .cta-panel {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .movement-panel {
      padding: 26px;
    }

    .movement-list {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .movement-item {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 14px;
      align-items: center;
      padding: 16px;
      border-radius: 18px;
      border: 1px solid var(--border);
      background: #FBFCF8;
      transition: .22s ease;
    }

    .movement-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(16,37,27,.07);
      border-color: rgba(30,142,90,.22);
    }

    .movement-icon {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--dark);
      background: var(--accent);
      font-weight: 900;
    }

    .movement-icon.neutral {
      background: var(--primary-soft);
      color: var(--primary-deep);
    }

    .movement-icon.warn {
      background: rgba(255,122,61,.15);
      color: #B34E20;
    }

    .movement-text strong {
      color: var(--dark);
      display: block;
      line-height: 1.25;
    }

    .movement-text span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .movement-num {
      font-family: var(--num-font);
      font-size: 28px;
      font-weight: 900;
      color: var(--primary-deep);
    }

    .feature-image {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      min-height: 100%;
      border: 1px solid rgba(255,255,255,.18);
      box-shadow: var(--shadow);
      background: var(--dark);
    }

    .feature-image img {
      height: 100%;
      min-height: 420px;
      object-fit: cover;
      transform: scale(1.01);
      transition: transform .35s ease;
    }

    .feature-image:hover img {
      transform: scale(1.05);
    }

    .feature-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: end;
      padding: 26px;
      background: linear-gradient(180deg, rgba(16,37,27,.08), rgba(16,37,27,.78));
      color: #FFFFFF;
    }

    .feature-overlay h3 {
      color: #FFFFFF;
      max-width: 360px;
      margin-bottom: 10px;
    }

    .feature-overlay p {
      color: rgba(247,255,248,.78);
      line-height: 1.7;
    }

    .analysis-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .analysis-card {
      padding: 22px;
      border-radius: var(--radius-lg);
      position: relative;
      overflow: hidden;
      transition: .22s ease;
    }

    .analysis-card::after {
      content: "";
      position: absolute;
      width: 100px;
      height: 100px;
      border-radius: 50%;
      right: -36px;
      top: -40px;
      background: rgba(232,247,239,.88);
      z-index: 0;
    }

    .analysis-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(30,142,90,.26);
    }

    .analysis-card > * {
      position: relative;
      z-index: 1;
    }

    .analysis-icon {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--primary-soft);
      color: var(--primary-deep);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .analysis-card:nth-child(2) .analysis-icon {
      background: rgba(214,247,74,.36);
      color: #48610C;
    }

    .analysis-card:nth-child(3) .analysis-icon {
      background: rgba(46,107,230,.10);
      color: var(--data);
    }

    .analysis-card:nth-child(4) .analysis-icon {
      background: rgba(255,122,61,.13);
      color: #AD4B1F;
    }

    .analysis-card h3 {
      margin-bottom: 10px;
    }

    .analysis-card p {
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .progress {
      margin-top: 18px;
      height: 8px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(22,70,45,.08);
    }

    .progress span {
      display: block;
      height: 100%;
      width: var(--w);
      border-radius: inherit;
      background: linear-gradient(90deg, var(--primary), var(--accent));
    }

    .path-section {
      position: relative;
      overflow: hidden;
      background: var(--dark);
      color: var(--light);
    }

    .path-section::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(115deg, rgba(16,37,27,.94), rgba(24,53,38,.88)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      opacity: 1;
    }

    .path-section .container {
      position: relative;
      z-index: 1;
    }

    .path-section h2,
    .path-section h3 {
      color: #FFFFFF;
    }

    .path-section .lead {
      color: rgba(247,255,248,.72);
    }

    .path-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 30px;
    }

    .path-card {
      padding: 24px;
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.12);
      box-shadow: none;
      color: rgba(247,255,248,.78);
      transition: .22s ease;
    }

    .path-card:hover {
      transform: translateY(-4px);
      border-color: rgba(214,247,74,.32);
      background: rgba(255,255,255,.12);
    }

    .path-num {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--accent);
      color: var(--dark);
      font-family: var(--num-font);
      font-size: 22px;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .path-card p {
      margin-top: 10px;
      line-height: 1.75;
    }

    .path-card a {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      color: var(--accent);
      font-weight: 900;
    }

    .path-card a:hover {
      gap: 10px;
    }

    .team-cta {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 24px;
      align-items: center;
      padding: 30px;
      border-radius: var(--radius-xl);
      background:
        linear-gradient(135deg, rgba(232,247,239,.95), rgba(255,255,255,.96)),
        url("/assets/images/coverpic/cover-9.webp") center/cover no-repeat;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }

    .team-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      padding: 13px 18px;
      color: var(--light);
      background: var(--primary-deep);
      font-weight: 900;
      box-shadow: 0 12px 24px rgba(15,95,62,.18);
    }

    .team-link:hover {
      transform: translateY(-2px);
      background: #0A4F33;
      box-shadow: 0 18px 34px rgba(15,95,62,.24);
    }

    .faq-layout {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 28px;
      align-items: start;
    }

    .faq-intro {
      position: sticky;
      top: 104px;
      padding: 28px;
      border-radius: var(--radius-xl);
      background: var(--primary-soft);
      border: 1px solid rgba(30,142,90,.16);
    }

    .faq-intro p {
      margin-top: 14px;
      color: #496056;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-panel {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: none;
      transition: .22s ease;
    }

    .faq-panel:hover {
      border-color: rgba(30,142,90,.25);
      box-shadow: 0 12px 26px rgba(16,37,27,.06);
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      text-align: left;
      color: var(--dark);
      font-weight: 900;
      background: #FFFFFF;
    }

    .faq-question span:first-child {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .faq-question span:first-child::before {
      content: "Q";
      width: 28px;
      height: 28px;
      border-radius: 10px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--primary-deep);
      background: var(--primary-soft);
      font-family: var(--num-font);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .faq-plus {
      width: 26px;
      height: 26px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--bg-alt);
      color: var(--primary-deep);
      font-size: 18px;
      flex: 0 0 auto;
      transition: transform .22s ease;
    }

    .faq-answer {
      display: none;
      padding: 0 20px 20px 58px;
      color: #496056;
      background: #FFFFFF;
      line-height: 1.8;
    }

    .faq-panel.open .faq-answer {
      display: block;
    }

    .faq-panel.open .faq-plus {
      transform: rotate(45deg);
      background: var(--accent);
      color: var(--dark);
    }

    .cta-panel {
      overflow: hidden;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 0;
      background: #FFFFFF;
    }

    .cta-copy {
      padding: 34px;
      background:
        linear-gradient(145deg, rgba(16,37,27,.96), rgba(24,53,38,.92)),
        url("/assets/images/coverpic/cover-4.webp") center/cover no-repeat;
      color: rgba(247,255,248,.78);
    }

    .cta-copy h2 {
      color: #FFFFFF;
      margin: 14px 0;
    }

    .cta-copy .eyebrow {
      background: rgba(214,247,74,.15);
      color: var(--accent);
      border-color: rgba(214,247,74,.25);
    }

    .cta-copy .eyebrow::before {
      background: var(--accent);
    }

    .need-list {
      display: grid;
      gap: 10px;
      margin-top: 24px;
    }

    .need-list li {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(247,255,248,.82);
    }

    .need-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
    }

    .contact-form {
      padding: 34px;
      display: grid;
      gap: 16px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .form-field {
      display: grid;
      gap: 8px;
    }

    .form-field label {
      color: var(--dark);
      font-size: 14px;
      font-weight: 900;
    }

    .form-field input,
    .form-field textarea,
    .form-field select {
      width: 100%;
      border-radius: 16px;
      border: 1px solid rgba(22, 70, 45, 0.14);
      background: #FFFFFF;
      color: var(--text);
      padding: 13px 15px;
      transition: .22s ease;
    }

    .form-field textarea {
      min-height: 116px;
      resize: vertical;
    }

    .form-field input:hover,
    .form-field textarea:hover,
    .form-field select:hover {
      border-color: rgba(30,142,90,.30);
    }

    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(30,142,90,.12);
    }

    .form-help {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .site-footer {
      background: var(--dark);
      color: rgba(247,255,248,.74);
      padding: 62px 0 24px;
      position: relative;
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      right: -250px;
      top: -230px;
      background: radial-gradient(circle, rgba(214,247,74,.15), transparent 68%);
    }

    .site-footer .container {
      position: relative;
      z-index: 1;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr .8fr .8fr 1.05fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .footer-brand p {
      margin-top: 18px;
      max-width: 360px;
      color: rgba(247,255,248,.70);
      line-height: 1.8;
    }

    .site-footer .logo-text strong {
      color: #FFFFFF;
    }

    .site-footer .logo-text span {
      color: rgba(247,255,248,.64);
    }

    .footer-col h3 {
      color: #FFFFFF;
      font-size: 16px;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
      list-style: none;
    }

    .footer-links a,
    .footer-links li {
      color: rgba(247,255,248,.70);
      font-size: 14px;
      line-height: 1.65;
    }

    .footer-links a:hover {
      color: var(--accent);
      padding-left: 4px;
    }

    .footer-bottom {
      padding-top: 24px;
      text-align: center;
      display: grid;
      gap: 8px;
      color: rgba(247,255,248,.62);
      font-size: 13px;
    }

    .footer-bottom a {
      color: rgba(247,255,248,.72);
    }

    .footer-bottom a:hover {
      color: var(--accent);
    }

    @media (max-width: 1100px) {
      .container {
        width: min(100% - 40px, var(--container));
      }

      .nav {
        gap: 12px;
      }

      .nav-link {
        padding-inline: 9px;
        font-size: 13px;
      }

      .hero-grid {
        grid-template-columns: 1fr;
      }

      .scoreboard-card {
        max-width: 760px;
      }

      .analysis-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 900px) {
      :root {
        --nav-height: 68px;
      }

      .mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
      }

      .nav {
        position: relative;
      }

      .nav-links,
      .nav-actions {
        display: none;
      }

      .nav.menu-open .nav-links,
      .nav.menu-open .nav-actions {
        display: grid;
      }

      .nav.menu-open .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 10px);
        padding: 14px;
        border-radius: 22px;
        background: rgba(255,255,255,.98);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-hover);
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        z-index: 10;
      }

      .nav.menu-open .nav-actions {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 312px);
        z-index: 11;
      }

      .nav.menu-open .nav-actions .btn {
        width: 100%;
      }

      .section,
      .hero {
        padding: 58px 0;
      }

      .section-head {
        display: grid;
        align-items: start;
      }

      .insight-grid,
      .faq-layout,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .feature-image img {
        min-height: 320px;
      }

      .faq-intro {
        position: static;
      }

      .path-grid {
        grid-template-columns: 1fr;
      }

      .team-cta {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      .logo-text strong {
        font-size: 15px;
      }

      .logo-text span {
        display: none;
      }

      .hero-copy {
        padding: 18px 0;
      }

      .hero-actions,
      .form-row {
        grid-template-columns: 1fr;
        display: grid;
      }

      .hero-actions .btn,
      .contact-form .btn {
        width: 100%;
      }

      .board-note,
      .analysis-grid {
        grid-template-columns: 1fr;
      }

      .scoreboard-inner,
      .movement-panel,
      .cta-copy,
      .contact-form {
        padding: 22px;
      }

      .table-headline {
        display: grid;
        align-items: start;
      }

      .table-legend {
        justify-content: flex-start;
      }

      .movement-item {
        grid-template-columns: auto 1fr;
      }

      .movement-num {
        grid-column: 2;
        font-size: 22px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .nav.menu-open .nav-links {
        grid-template-columns: 1fr;
      }

      .nav.menu-open .nav-actions {
        top: calc(100% + 590px);
      }

      h1 {
        font-size: 31px;
      }

      h2 {
        font-size: 25px;
      }

      .lead {
        font-size: 16px;
      }

      .hero-badges,
      .filter-bar {
        flex-direction: column;
      }

      .mini-badge,
      .filter-pill {
        width: 100%;
        justify-content: center;
      }

      .standings-row {
        grid-template-columns: 34px 1fr auto;
        gap: 10px;
        padding: 12px;
      }

      .pts {
        font-size: 24px;
      }

      .faq-answer {
        padding-left: 20px;
      }
    }

/* roulang page: category5 */
:root {
      --primary: #1E8E5A;
      --primary-dark: #0F5F3E;
      --primary-soft: #E8F7EF;
      --accent: #D6F74A;
      --hot: #FF7A3D;
      --blue: #2E6BE6;
      --bg: #F6F8F3;
      --card: #FFFFFF;
      --deep: #10251B;
      --deep-2: #183526;
      --text: #10251B;
      --muted: #718075;
      --body: #34483D;
      --white: #F7FFF8;
      --border: rgba(22, 70, 45, 0.10);
      --border-strong: rgba(30, 142, 90, 0.22);
      --shadow: 0 12px 30px rgba(16, 37, 27, 0.08);
      --shadow-hover: 0 18px 46px rgba(16, 37, 27, 0.13);
      --radius-lg: 28px;
      --radius-md: 20px;
      --radius-sm: 14px;
      --container: 1180px;
      --font: "PingFang SC", "HarmonyOS Sans SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      --num: "DIN Alternate", "Roboto Condensed", "Arial Narrow", Arial, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font);
      color: var(--body);
      background:
        radial-gradient(circle at 8% 6%, rgba(214, 247, 74, 0.18), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(30, 142, 90, 0.10), transparent 30%),
        linear-gradient(180deg, #F8FAF1 0%, var(--bg) 42%, #F2F7EE 100%);
      line-height: 1.75;
      font-size: 16px;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: none;
      background: none;
    }

    input,
    textarea {
      width: 100%;
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 14px 16px;
      color: var(--text);
      background: #fff;
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    textarea {
      resize: vertical;
      min-height: 112px;
    }

    input:focus,
    textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(30, 142, 90, 0.12);
    }

    a:focus-visible,
    button:focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 4px;
      border-radius: 12px;
    }

    .container {
      width: min(100% - 48px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(246, 248, 243, 0.84);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(22, 70, 45, 0.08);
      transition: background .25s ease, box-shadow .25s ease;
    }

    .site-header.is-scrolled {
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 10px 28px rgba(16, 37, 27, 0.08);
    }

    .nav {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }

    .logo-mark {
      width: 44px;
      height: 44px;
      border-radius: 16px;
      background:
        radial-gradient(circle at 68% 28%, var(--accent) 0 12%, transparent 13%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
      position: relative;
      box-shadow: 0 12px 24px rgba(30, 142, 90, 0.22);
      overflow: hidden;
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      border: 1.8px solid rgba(255, 255, 255, 0.72);
      border-radius: 50%;
    }

    .logo-mark::before {
      width: 28px;
      height: 28px;
      left: -8px;
      bottom: -6px;
    }

    .logo-mark::after {
      width: 32px;
      height: 2px;
      background: rgba(255, 255, 255, 0.72);
      border: 0;
      border-radius: 99px;
      transform: rotate(-28deg);
      left: 12px;
      top: 24px;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .logo-text strong {
      color: var(--text);
      font-size: 18px;
      letter-spacing: -0.02em;
    }

    .logo-text span {
      margin-top: 4px;
      color: var(--muted);
      font-size: 12px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
      flex: 1;
    }

    .nav-link {
      color: #40544A;
      font-size: 14px;
      font-weight: 700;
      padding: 9px 12px;
      border-radius: 999px;
      white-space: nowrap;
      position: relative;
    }

    .nav-link:hover {
      color: var(--primary-dark);
      background: rgba(30, 142, 90, 0.08);
    }

    .nav-link.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
      box-shadow: inset 0 0 0 1px rgba(30, 142, 90, 0.14);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      font-weight: 800;
      font-size: 14px;
      border: 1px solid transparent;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-primary {
      background: var(--deep);
      color: var(--white);
      box-shadow: 0 12px 24px rgba(16, 37, 27, 0.16);
    }

    .btn-primary::after {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(214, 247, 74, 0.18);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      box-shadow: var(--shadow-hover);
    }

    .btn-secondary {
      background: #fff;
      color: var(--primary-dark);
      border-color: var(--border-strong);
      box-shadow: 0 8px 20px rgba(16, 37, 27, 0.06);
    }

    .btn-secondary:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: #fff;
      color: var(--deep);
      font-size: 22px;
      box-shadow: inset 0 0 0 1px var(--border);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 82px 0;
    }

    .section-tight {
      padding: 62px 0;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 13px;
      border-radius: 999px;
      background: rgba(30, 142, 90, 0.10);
      color: var(--primary-dark);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
    }

    h1,
    h2,
    h3 {
      color: var(--text);
      line-height: 1.18;
      letter-spacing: -0.035em;
      font-weight: 900;
    }

    h1 {
      font-size: clamp(34px, 4.2vw, 52px);
    }

    h2 {
      font-size: clamp(26px, 3vw, 36px);
      margin-bottom: 14px;
    }

    h3 {
      font-size: 21px;
    }

    .lead {
      color: #4E6157;
      font-size: 17px;
      line-height: 1.85;
      margin-top: 18px;
    }

    .hero {
      position: relative;
      padding: 78px 0 56px;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 520px;
      background:
        linear-gradient(115deg, rgba(246, 248, 243, 0.96), rgba(246, 248, 243, 0.74)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -120px;
      top: 60px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(214, 247, 74, 0.28);
      filter: blur(8px);
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.02fr .98fr;
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 28px 0;
    }

    .hero-copy .lead {
      max-width: 650px;
    }

    .hero-actions {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-points {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .point-pill {
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 13px 14px;
      box-shadow: 0 10px 24px rgba(16, 37, 27, 0.05);
    }

    .point-pill strong {
      display: block;
      color: var(--text);
      font-size: 15px;
      line-height: 1.35;
    }

    .point-pill span {
      display: block;
      color: var(--muted);
      font-size: 13px;
      margin-top: 4px;
      line-height: 1.45;
    }

    .profile-panel {
      background: linear-gradient(160deg, var(--deep), var(--deep-2));
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: var(--shadow-hover);
      color: var(--white);
      position: relative;
      overflow: hidden;
      min-height: 470px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .profile-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(16, 37, 27, 0.25), rgba(16, 37, 27, 0.82)),
        url("/assets/images/coverpic/cover-5.webp") center/cover no-repeat;
      opacity: .36;
    }

    .profile-panel > * {
      position: relative;
      z-index: 1;
    }

    .panel-top {
      display: flex;
      justify-content: space-between;
      gap: 14px;
      align-items: flex-start;
    }

    .team-badge-large {
      width: 76px;
      height: 76px;
      border-radius: 24px;
      background:
        radial-gradient(circle at 64% 28%, var(--accent) 0 15%, transparent 16%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(214, 247, 74, 0.16));
      border: 1px solid rgba(255, 255, 255, 0.22);
      display: grid;
      place-items: center;
      font-family: var(--num);
      font-size: 28px;
      font-weight: 900;
      color: #fff;
    }

    .panel-label {
      display: inline-flex;
      padding: 7px 11px;
      border-radius: 999px;
      background: rgba(214, 247, 74, 0.16);
      color: var(--accent);
      font-size: 13px;
      font-weight: 800;
      border: 1px solid rgba(214, 247, 74, 0.28);
    }

    .panel-title {
      margin-top: 90px;
    }

    .panel-title h2 {
      color: #fff;
      font-size: 34px;
      margin-bottom: 10px;
    }

    .panel-title p {
      color: rgba(247, 255, 248, 0.78);
      max-width: 430px;
    }

    .panel-stats {
      margin-top: 24px;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .panel-stat {
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 18px;
      padding: 13px;
      backdrop-filter: blur(8px);
    }

    .panel-stat b {
      display: block;
      font-family: var(--num);
      font-size: 27px;
      line-height: 1;
      color: var(--accent);
    }

    .panel-stat span {
      display: block;
      margin-top: 7px;
      color: rgba(247, 255, 248, 0.72);
      font-size: 13px;
    }

    .search-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .search-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 12px;
      align-items: center;
    }

    .league-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .tag,
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 800;
    }

    .tag {
      padding: 8px 12px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      border: 1px solid rgba(30, 142, 90, 0.14);
    }

    .tag:hover {
      background: rgba(214, 247, 74, 0.42);
      border-color: rgba(30, 142, 90, 0.28);
      transform: translateY(-1px);
    }

    .badge {
      padding: 6px 10px;
      color: var(--primary-dark);
      background: rgba(214, 247, 74, 0.38);
    }

    .team-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: start;
    }

    .team-column {
      display: grid;
      gap: 18px;
    }

    .team-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 24px;
      padding: 20px;
      box-shadow: var(--shadow);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .team-card:nth-child(2) {
      margin-left: 34px;
    }

    .team-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(30, 142, 90, 0.32);
    }

    .team-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      margin-bottom: 16px;
    }

    .team-identity {
      display: flex;
      align-items: center;
      gap: 13px;
    }

    .club-icon {
      width: 54px;
      height: 54px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-family: var(--num);
      font-weight: 900;
      color: var(--white);
      font-size: 20px;
      background: linear-gradient(145deg, var(--primary), var(--primary-dark));
      box-shadow: 0 12px 22px rgba(30, 142, 90, 0.18);
    }

    .club-icon.orange {
      background: linear-gradient(145deg, #FF9A62, var(--hot));
    }

    .club-icon.blue {
      background: linear-gradient(145deg, #5C8DFF, var(--blue));
    }

    .club-icon.dark {
      background: linear-gradient(145deg, #244C38, #10251B);
    }

    .team-identity h3 {
      font-size: 20px;
      margin-bottom: 4px;
    }

    .team-identity p {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.4;
    }

    .form-dots {
      display: flex;
      gap: 6px;
      margin: 14px 0 16px;
    }

    .form-dots span {
      width: 24px;
      height: 24px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 12px;
      font-weight: 900;
      font-family: var(--num);
    }

    .win { background: var(--primary); }
    .draw { background: #9AA69E; }
    .loss { background: var(--hot); }

    .team-meta {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      margin-top: 14px;
    }

    .meta-box {
      border-radius: 16px;
      background: #F7FAF5;
      border: 1px solid var(--border);
      padding: 11px;
    }

    .meta-box b {
      display: block;
      color: var(--text);
      font-family: var(--num);
      font-size: 20px;
      line-height: 1;
    }

    .meta-box span {
      display: block;
      margin-top: 6px;
      color: var(--muted);
      font-size: 12px;
    }

    .team-note {
      color: #4B5E54;
      font-size: 15px;
      line-height: 1.7;
      margin-top: 14px;
    }

    .analysis-zone {
      background: var(--deep);
      color: var(--white);
      border-radius: 36px;
      padding: 42px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-hover);
    }

    .analysis-zone::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(16, 37, 27, .88), rgba(16, 37, 27, .62)),
        url("/assets/images/coverpic/cover-9.webp") center/cover no-repeat;
      opacity: .48;
    }

    .analysis-zone > * {
      position: relative;
      z-index: 1;
    }

    .analysis-zone h2,
    .analysis-zone h3 {
      color: #fff;
    }

    .analysis-zone .lead {
      color: rgba(247, 255, 248, 0.76);
      max-width: 780px;
    }

    .analysis-grid {
      margin-top: 32px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 22px;
      align-items: stretch;
    }

    .trend-card,
    .pressure-card {
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 24px;
      padding: 22px;
      backdrop-filter: blur(12px);
    }

    .metric-list {
      display: grid;
      gap: 18px;
      margin-top: 20px;
    }

    .metric-item {
      display: grid;
      gap: 8px;
    }

    .metric-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: rgba(247, 255, 248, 0.86);
      font-weight: 800;
      font-size: 14px;
    }

    .metric-head span:last-child {
      font-family: var(--num);
      color: var(--accent);
      font-size: 18px;
    }

    .bar {
      height: 10px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(255, 255, 255, 0.13);
    }

    .bar i {
      display: block;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--accent), #7CE58B);
    }

    .pressure-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .pressure-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.08);
    }

    .pressure-item em {
      flex: 0 0 auto;
      width: 30px;
      height: 30px;
      border-radius: 10px;
      background: rgba(214, 247, 74, 0.18);
      color: var(--accent);
      display: grid;
      place-items: center;
      font-style: normal;
      font-weight: 900;
    }

    .pressure-item strong {
      display: block;
      color: #fff;
      margin-bottom: 3px;
    }

    .pressure-item span {
      color: rgba(247, 255, 248, 0.72);
      font-size: 14px;
      line-height: 1.6;
    }

    .fan-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: start;
    }

    .image-card {
      position: relative;
      min-height: 430px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-hover);
      background: var(--deep);
    }

    .image-card img {
      width: 100%;
      height: 100%;
      min-height: 430px;
      object-fit: cover;
      transition: transform .35s ease;
    }

    .image-card:hover img {
      transform: scale(1.04);
    }

    .image-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 35%, rgba(16, 37, 27, 0.88));
    }

    .image-caption {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      z-index: 2;
      color: #fff;
    }

    .image-caption h3 {
      color: #fff;
      margin-bottom: 8px;
    }

    .image-caption p {
      color: rgba(247, 255, 248, .78);
    }

    .question-stack {
      display: grid;
      gap: 14px;
    }

    .question-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 14px;
      padding: 18px;
      border-radius: 22px;
      background: #fff;
      border: 1px solid var(--border);
      box-shadow: 0 10px 26px rgba(16, 37, 27, 0.06);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .question-card:hover {
      transform: translateX(4px);
      box-shadow: var(--shadow);
      border-color: rgba(30, 142, 90, 0.28);
    }

    .question-card b {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      display: grid;
      place-items: center;
      font-family: var(--num);
      font-size: 18px;
    }

    .question-card h3 {
      font-size: 18px;
      margin-bottom: 5px;
    }

    .question-card p {
      color: #52655B;
      font-size: 15px;
      line-height: 1.7;
    }

    .entry-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .entry-card {
      position: relative;
      padding: 24px;
      min-height: 220px;
      border-radius: 26px;
      overflow: hidden;
      box-shadow: var(--shadow);
      background: #fff;
      border: 1px solid var(--border);
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .entry-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(30, 142, 90, 0.30);
    }

    .entry-card.primary {
      background: linear-gradient(145deg, #FFFFFF, #EEFAF1);
    }

    .entry-card.dark {
      background: linear-gradient(145deg, var(--deep), #214934);
      color: rgba(247, 255, 248, .82);
    }

    .entry-card.dark h3 {
      color: #fff;
    }

    .entry-card h3 {
      margin: 14px 0 8px;
    }

    .entry-card p {
      color: inherit;
      font-size: 15px;
      line-height: 1.75;
      max-width: 460px;
    }

    .entry-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 18px;
      color: var(--primary-dark);
      font-weight: 900;
    }

    .entry-card.dark .entry-link {
      color: var(--accent);
    }

    .entry-link::after {
      content: "→";
      transition: transform .2s ease;
    }

    .entry-link:hover::after {
      transform: translateX(4px);
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 28px;
      align-items: start;
    }

    .faq-side {
      position: sticky;
      top: 104px;
      background: linear-gradient(155deg, var(--primary-soft), #fff);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 26px;
      box-shadow: var(--shadow);
    }

    .faq-side p {
      color: #52655B;
      margin-top: 12px;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border: 1px solid var(--border);
      border-radius: 20px;
      background: #fff;
      overflow: hidden;
      box-shadow: 0 8px 22px rgba(16, 37, 27, 0.05);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 18px 20px;
      color: var(--text);
      font-weight: 900;
      text-align: left;
    }

    .faq-question span:first-child {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .faq-question span:first-child::before {
      content: "Q";
      width: 28px;
      height: 28px;
      border-radius: 10px;
      background: var(--primary-soft);
      color: var(--primary-dark);
      display: grid;
      place-items: center;
      font-family: var(--num);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .faq-icon {
      color: var(--primary);
      font-size: 20px;
      transition: transform .2s ease;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .25s ease;
      background: #F8FCF5;
    }

    .faq-answer p {
      padding: 0 20px 18px 58px;
      color: #4E6157;
      font-size: 15px;
      line-height: 1.8;
    }

    .faq-item.open .faq-answer {
      max-height: 260px;
    }

    .faq-item.open .faq-icon {
      transform: rotate(45deg);
    }

    .cta-panel {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
      align-items: stretch;
      background:
        radial-gradient(circle at 15% 15%, rgba(214, 247, 74, 0.34), transparent 32%),
        linear-gradient(145deg, #163625, #10251B);
      border-radius: 36px;
      padding: 38px;
      color: var(--white);
      box-shadow: var(--shadow-hover);
      overflow: hidden;
      position: relative;
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -100px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      border: 38px solid rgba(214, 247, 74, 0.10);
    }

    .cta-panel > * {
      position: relative;
      z-index: 1;
    }

    .cta-panel h2 {
      color: #fff;
    }

    .cta-panel .lead {
      color: rgba(247, 255, 248, 0.76);
    }

    .need-list {
      display: grid;
      gap: 12px;
      margin-top: 26px;
    }

    .need-list li {
      list-style: none;
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(247, 255, 248, 0.84);
    }

    .need-list li::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(214, 247, 74, 0.12);
    }

    .contact-form {
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 26px;
      padding: 22px;
      backdrop-filter: blur(10px);
    }

    .form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .form-grid .full {
      grid-column: 1 / -1;
    }

    .contact-form label {
      display: block;
      color: rgba(247, 255, 248, 0.86);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 7px;
    }

    .contact-form input,
    .contact-form textarea {
      border-color: rgba(255, 255, 255, 0.16);
      background: rgba(255, 255, 255, 0.94);
    }

    .contact-form .btn {
      margin-top: 14px;
      width: 100%;
      background: var(--accent);
      color: var(--deep);
      box-shadow: 0 14px 26px rgba(214, 247, 74, 0.16);
    }

    .contact-form .btn::after {
      background: var(--primary-dark);
      box-shadow: none;
    }

    .site-footer {
      background: var(--deep);
      color: rgba(247, 255, 248, 0.76);
      padding: 62px 0 28px;
      margin-top: 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.45fr .8fr .8fr 1.1fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer .logo-text strong {
      color: #fff;
    }

    .site-footer .logo-text span {
      color: rgba(247, 255, 248, 0.62);
    }

    .footer-brand p {
      margin-top: 18px;
      max-width: 380px;
      color: rgba(247, 255, 248, 0.70);
      line-height: 1.8;
    }

    .footer-col h3 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 14px;
      letter-spacing: 0;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links li {
      list-style: none;
      color: rgba(247, 255, 248, 0.68);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      text-align: center;
      padding-top: 24px;
      color: rgba(247, 255, 248, 0.62);
      font-size: 13px;
      line-height: 1.9;
    }

    .footer-bottom a {
      color: rgba(247, 255, 248, 0.72);
    }

    .footer-bottom a:hover {
      color: var(--accent);
    }

    @media (max-width: 1080px) {
      .container {
        width: min(100% - 40px, var(--container));
      }

      .nav {
        gap: 14px;
      }

      .nav-link {
        padding: 8px 9px;
        font-size: 13px;
      }

      .hero-grid,
      .analysis-grid,
      .cta-panel {
        grid-template-columns: 1fr;
      }

      .profile-panel {
        min-height: 420px;
      }

      .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 860px) {
      .mobile-toggle {
        display: grid;
        place-items: center;
      }

      .nav {
        min-height: 70px;
      }

      .nav-links,
      .nav-actions {
        display: none;
      }

      .nav.is-open .nav-links,
      .nav.is-open .nav-actions {
        display: grid;
        position: absolute;
        left: 20px;
        right: 20px;
        background: #fff;
        border: 1px solid var(--border);
        box-shadow: var(--shadow-hover);
        z-index: 20;
      }

      .nav.is-open .nav-links {
        top: 72px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 16px;
        border-radius: 22px 22px 0 0;
      }

      .nav.is-open .nav-actions {
        top: 282px;
        padding: 0 16px 16px;
        border-top: 0;
        border-radius: 0 0 22px 22px;
      }

      .nav.is-open .nav-actions .btn {
        width: 100%;
      }

      .hero {
        padding-top: 48px;
      }

      .hero-points,
      .team-layout,
      .fan-grid,
      .faq-wrap,
      .entry-grid {
        grid-template-columns: 1fr;
      }

      .team-card:nth-child(2) {
        margin-left: 0;
      }

      .faq-side {
        position: static;
      }

      .analysis-zone,
      .cta-panel {
        border-radius: 28px;
        padding: 28px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      body {
        font-size: 15px;
      }

      .section {
        padding: 56px 0;
      }

      .section-tight {
        padding: 44px 0;
      }

      .hero-actions,
      .search-row {
        display: grid;
        grid-template-columns: 1fr;
      }

      .hero-actions .btn,
      .search-row .btn {
        width: 100%;
      }

      .hero-points,
      .panel-stats,
      .team-meta,
      .form-grid {
        grid-template-columns: 1fr;
      }

      .profile-panel {
        padding: 18px;
        min-height: 430px;
      }

      .panel-title {
        margin-top: 72px;
      }

      .panel-title h2 {
        font-size: 28px;
      }

      .analysis-zone,
      .cta-panel {
        padding: 22px;
        border-radius: 24px;
      }

      .faq-answer p {
        padding-left: 20px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .nav.is-open .nav-links {
        grid-template-columns: 1fr;
      }

      .nav.is-open .nav-actions {
        top: 506px;
      }

      .logo-text strong {
        font-size: 16px;
      }
    }

/* roulang page: category6 */
:root {
      --primary: #1E8E5A;
      --primary-dark: #0F5F3E;
      --primary-soft: #E8F7EF;
      --accent: #D6F74A;
      --hot: #FF7A3D;
      --data: #2E6BE6;
      --bg: #F7F9F1;
      --card: #FFFFFF;
      --dark: #10251B;
      --dark-2: #183526;
      --text: #34483D;
      --muted: #718075;
      --light: #F7FFF8;
      --border: rgba(22, 70, 45, 0.12);
      --shadow: 0 12px 30px rgba(16, 37, 27, 0.08);
      --shadow-hover: 0 18px 46px rgba(16, 37, 27, 0.13);
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --radius-sm: 12px;
      --container: 1180px;
      --ease: 180ms ease;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "PingFang SC", "Microsoft YaHei", "HarmonyOS Sans SC", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(214, 247, 74, 0.18), transparent 34%),
        linear-gradient(180deg, #F8FAF2 0%, var(--bg) 45%, #F4F8EE 100%);
      line-height: 1.75;
      min-width: 320px;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color var(--ease), transform var(--ease), background var(--ease), border-color var(--ease);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input,
    textarea,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
      border: 0;
      background: none;
    }

    :focus-visible {
      outline: 2px solid var(--primary);
      outline-offset: 3px;
      box-shadow: 0 0 0 5px rgba(30, 142, 90, 0.14);
    }

    .container {
      width: min(100% - 48px, var(--container));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(247, 249, 241, 0.88);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(22, 70, 45, 0.08);
      transition: background var(--ease), box-shadow var(--ease);
    }

    .site-header.is-scrolled {
      background: rgba(255, 255, 255, 0.96);
      box-shadow: 0 10px 28px rgba(16, 37, 27, 0.08);
    }

    .nav {
      height: 76px;
      display: flex;
      align-items: center;
      gap: 22px;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background:
        radial-gradient(circle at 68% 30%, var(--accent) 0 10%, transparent 11%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
      position: relative;
      box-shadow: 0 12px 24px rgba(30, 142, 90, 0.22);
      overflow: hidden;
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      border: 2px solid rgba(255, 255, 255, 0.72);
      border-radius: 999px;
    }

    .logo-mark::before {
      width: 44px;
      height: 20px;
      left: -8px;
      top: 11px;
      transform: rotate(-20deg);
    }

    .logo-mark::after {
      width: 2px;
      height: 42px;
      left: 20px;
      top: 0;
      opacity: 0.55;
    }

    .logo-text {
      display: grid;
      line-height: 1.2;
    }

    .logo-text strong {
      color: var(--dark);
      font-size: 18px;
      letter-spacing: 0;
    }

    .logo-text span {
      color: var(--muted);
      font-size: 12px;
      margin-top: 3px;
    }

    .nav-links {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 5px;
    }

    .nav-link {
      padding: 9px 12px;
      border-radius: 999px;
      color: #40564A;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary-dark);
      background: var(--primary-soft);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      min-height: 44px;
      padding: 12px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      color: var(--dark);
      transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
      white-space: nowrap;
    }

    .btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-hover);
    }

    .btn:active {
      transform: translateY(0);
    }

    .btn-primary {
      color: var(--light);
      background: var(--primary-dark);
      box-shadow: 0 10px 24px rgba(15, 95, 62, 0.22);
    }

    .btn-primary::after {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(214, 247, 74, 0.16);
    }

    .btn-primary:hover {
      background: #0B4E33;
    }

    .btn-secondary {
      background: var(--accent);
      color: var(--dark);
      border-color: rgba(16, 37, 27, 0.08);
    }

    .btn-ghost {
      color: var(--primary-dark);
      background: rgba(255, 255, 255, 0.72);
      border-color: var(--border);
    }

    .mobile-toggle {
      display: none;
      width: 44px;
      height: 44px;
      margin-left: auto;
      border-radius: 14px;
      color: var(--dark);
      background: var(--primary-soft);
      font-size: 22px;
      transition: background var(--ease), transform var(--ease);
    }

    .mobile-toggle:hover {
      background: #DDF2E7;
      transform: translateY(-1px);
    }

    main {
      overflow: hidden;
    }

    .section {
      padding: 82px 0;
    }

    .section-tight {
      padding: 54px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      border: 1px solid rgba(30, 142, 90, 0.14);
      font-size: 13px;
      font-weight: 800;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(214, 247, 74, 0.22);
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .section-head.center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    h1,
    h2,
    h3 {
      color: var(--dark);
      line-height: 1.18;
      letter-spacing: 0;
    }

    h1 {
      margin-top: 18px;
      font-size: clamp(32px, 5vw, 48px);
    }

    h2 {
      font-size: clamp(26px, 3.6vw, 36px);
      margin-top: 12px;
    }

    h3 {
      font-size: 21px;
    }

    .lead {
      margin-top: 18px;
      color: #465B50;
      font-size: 17px;
      max-width: 680px;
    }

    .hero {
      padding: 72px 0 54px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
      gap: 34px;
      align-items: stretch;
    }

    .hero-copy {
      padding: 38px 0;
    }

    .hero-actions {
      margin-top: 28px;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .hero-meta {
      margin-top: 30px;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .meta-pill {
      display: inline-flex;
      align-items: center;
      padding: 9px 12px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.72);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .magazine-panel {
      position: relative;
      overflow: hidden;
      min-height: 488px;
      border-radius: var(--radius-xl);
      background: var(--dark);
      box-shadow: var(--shadow-hover);
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .magazine-panel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      min-height: 488px;
      transform: scale(1.02);
      opacity: 0.76;
    }

    .magazine-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(16, 37, 27, 0.18), rgba(16, 37, 27, 0.86));
    }

    .panel-content {
      position: absolute;
      inset: auto 24px 24px 24px;
      z-index: 2;
      color: var(--light);
    }

    .panel-tag {
      display: inline-flex;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(214, 247, 74, 0.18);
      color: var(--accent);
      border: 1px solid rgba(214, 247, 74, 0.32);
      font-size: 13px;
      font-weight: 800;
    }

    .panel-content h2 {
      color: #FFFFFF;
      margin-top: 16px;
      font-size: clamp(25px, 3.2vw, 34px);
    }

    .panel-content p {
      margin-top: 12px;
      color: rgba(247, 255, 248, 0.82);
    }

    .headline-list {
      margin-top: 20px;
      display: grid;
      gap: 10px;
    }

    .headline-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(8px);
    }

    .headline-row strong {
      color: #FFFFFF;
      font-size: 15px;
    }

    .headline-row span {
      color: var(--accent);
      font-size: 13px;
      white-space: nowrap;
    }

    .feature-strip {
      display: grid;
      grid-template-columns: 1.2fr 1fr 1fr;
      gap: 18px;
    }

    .strip-card,
    .story-card,
    .article-item,
    .path-card,
    .tag-card,
    .faq-item {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
    }

    .strip-card:hover,
    .story-card:hover,
    .article-item:hover,
    .path-card:hover,
    .tag-card:hover,
    .faq-item:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(30, 142, 90, 0.28);
    }

    .strip-card {
      overflow: hidden;
    }

    .strip-card.large {
      grid-row: span 2;
    }

    .strip-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
    }

    .strip-card.large img {
      height: 340px;
    }

    .strip-body {
      padding: 22px;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      padding: 5px 10px;
      border-radius: 999px;
      color: var(--primary-dark);
      background: var(--primary-soft);
      font-size: 12px;
      font-weight: 800;
    }

    .badge.hot {
      color: #8A3A13;
      background: rgba(255, 122, 61, 0.14);
    }

    .badge.data {
      color: #1C4AA2;
      background: rgba(46, 107, 230, 0.12);
    }

    .strip-body h3,
    .story-card h3 {
      margin-top: 12px;
    }

    .strip-body p,
    .story-card p,
    .path-card p,
    .article-item p {
      margin-top: 10px;
      color: var(--muted);
      font-size: 15px;
    }

    .read-link {
      margin-top: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary-dark);
      font-weight: 800;
      font-size: 14px;
    }

    .read-link::after {
      content: "→";
      transition: transform var(--ease);
    }

    .read-link:hover::after {
      transform: translateX(4px);
    }

    .story-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
      align-items: start;
    }

    .story-card {
      overflow: hidden;
    }

    .story-card:nth-child(2) {
      margin-top: 38px;
    }

    .story-card:nth-child(3) {
      margin-top: -18px;
    }

    .story-card img {
      width: 100%;
      height: 210px;
      object-fit: cover;
      transition: transform var(--ease);
    }

    .story-card:hover img {
      transform: scale(1.04);
    }

    .story-card .content {
      padding: 22px;
    }

    .insight-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) 340px;
      gap: 26px;
      align-items: start;
    }

    .article-list {
      display: grid;
      gap: 16px;
    }

    .article-item {
      padding: 22px;
      display: grid;
      grid-template-columns: 118px minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
    }

    .article-date {
      display: grid;
      place-items: center;
      min-height: 86px;
      border-radius: 18px;
      background: linear-gradient(135deg, var(--primary-soft), rgba(214, 247, 74, 0.22));
      color: var(--primary-dark);
      font-weight: 900;
      text-align: center;
      line-height: 1.25;
    }

    .article-date small {
      display: block;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .article-main h3 {
      font-size: 20px;
    }

    .article-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin-top: 10px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .arrow-button {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      color: var(--primary-dark);
      background: var(--primary-soft);
      font-weight: 900;
    }

    .sidebar-card {
      position: sticky;
      top: 100px;
      padding: 24px;
      border-radius: var(--radius-xl);
      background: var(--dark);
      color: var(--light);
      overflow: hidden;
      box-shadow: var(--shadow-hover);
    }

    .sidebar-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(214, 247, 74, 0.14), transparent 45%),
        radial-gradient(circle at 86% 16%, rgba(214, 247, 74, 0.20), transparent 28%);
      pointer-events: none;
    }

    .sidebar-card > * {
      position: relative;
      z-index: 1;
    }

    .sidebar-card h3 {
      color: #FFFFFF;
      font-size: 24px;
    }

    .sidebar-card p {
      margin-top: 10px;
      color: rgba(247, 255, 248, 0.78);
      font-size: 15px;
    }

    .score-note {
      margin-top: 18px;
      display: grid;
      gap: 10px;
    }

    .score-note li {
      list-style: none;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(247, 255, 248, 0.84);
      font-size: 14px;
    }

    .score-note strong {
      color: var(--accent);
      white-space: nowrap;
    }

    .reading-path {
      background: linear-gradient(135deg, rgba(232, 247, 239, 0.92), rgba(255, 255, 255, 0.72));
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .path-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      counter-reset: path;
    }

    .path-card {
      position: relative;
      padding: 24px;
      overflow: hidden;
    }

    .path-card::before {
      counter-increment: path;
      content: "0" counter(path);
      position: absolute;
      right: 18px;
      top: 12px;
      color: rgba(30, 142, 90, 0.12);
      font-size: 44px;
      font-weight: 900;
      line-height: 1;
      font-family: "DIN Alternate", "Roboto Condensed", Arial, sans-serif;
    }

    .path-icon {
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border-radius: 16px;
      background: var(--primary-dark);
      color: var(--accent);
      font-weight: 900;
      margin-bottom: 16px;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .tag-card {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 16px;
      border-radius: 999px;
      color: var(--dark);
      font-weight: 800;
      background: rgba(255, 255, 255, 0.78);
    }

    .tag-card::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--primary);
    }

    .tag-card:nth-child(3n)::before {
      background: var(--hot);
    }

    .tag-card:nth-child(4n)::before {
      background: var(--data);
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 34px;
      align-items: start;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      overflow: hidden;
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 22px;
      color: var(--dark);
      font-weight: 900;
      text-align: left;
    }

    .faq-question span {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .faq-question span::before {
      content: "Q";
      display: grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-size: 13px;
      flex: 0 0 auto;
    }

    .faq-question::after {
      content: "+";
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      background: var(--primary-soft);
      color: var(--primary-dark);
      font-size: 20px;
      flex: 0 0 auto;
    }

    .faq-item.open .faq-question::after {
      content: "−";
    }

    .faq-answer {
      display: none;
      padding: 0 22px 22px 60px;
      color: var(--muted);
      background: linear-gradient(180deg, transparent, rgba(232, 247, 239, 0.48));
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      background: var(--dark);
      color: var(--light);
      box-shadow: var(--shadow-hover);
    }

    .cta-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, rgba(16, 37, 27, 0.76), rgba(16, 37, 27, 0.94)),
        url("/assets/images/backpic/back-3.webp") center/cover;
    }

    .cta-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 0.9fr;
      gap: 30px;
      padding: 42px;
      align-items: center;
    }

    .cta-inner h2 {
      color: #FFFFFF;
    }

    .cta-inner p {
      margin-top: 14px;
      color: rgba(247, 255, 248, 0.78);
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .contact-card {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid rgba(255, 255, 255, 0.14);
      backdrop-filter: blur(10px);
    }

    .contact-card h3 {
      color: #FFFFFF;
      margin-bottom: 14px;
    }

    .contact-list {
      display: grid;
      gap: 10px;
    }

    .contact-list li {
      list-style: none;
      display: flex;
      align-items: flex-start;
      gap: 10px;
      color: rgba(247, 255, 248, 0.82);
      font-size: 14px;
    }

    .contact-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 10px;
      border-radius: 50%;
      background: var(--accent);
      flex: 0 0 auto;
    }

    .site-footer {
      padding: 58px 0 26px;
      background: var(--dark);
      color: rgba(247, 255, 248, 0.78);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr 0.75fr 1fr;
      gap: 34px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .site-footer .logo-text strong,
    .site-footer h3 {
      color: #FFFFFF;
    }

    .site-footer .logo-text span {
      color: rgba(247, 255, 248, 0.62);
    }

    .footer-brand p {
      margin-top: 18px;
      max-width: 360px;
      font-size: 14px;
    }

    .footer-col h3 {
      font-size: 16px;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links li {
      list-style: none;
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      padding-top: 22px;
      text-align: center;
      color: rgba(247, 255, 248, 0.62);
      font-size: 13px;
    }

    .footer-bottom p + p {
      margin-top: 8px;
    }

    .footer-bottom a:hover {
      color: var(--accent);
    }

    @media (max-width: 1100px) {
      .nav {
        gap: 14px;
      }

      .nav-link {
        padding: 8px 9px;
        font-size: 13px;
      }

      .hero-grid,
      .insight-layout,
      .cta-inner {
        grid-template-columns: 1fr;
      }

      .sidebar-card {
        position: relative;
        top: auto;
      }

      .path-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 900px) {
      .container {
        width: min(100% - 40px, var(--container));
      }

      .mobile-toggle {
        display: grid;
        place-items: center;
      }

      .nav {
        height: 70px;
      }

      .nav-links,
      .nav-actions {
        display: none;
      }

      .nav.is-open {
        height: auto;
        min-height: 70px;
        align-items: flex-start;
        flex-wrap: wrap;
        padding: 13px 0 18px;
      }

      .nav.is-open .mobile-toggle {
        margin-top: 0;
      }

      .nav.is-open .nav-links,
      .nav.is-open .nav-actions {
        display: grid;
        width: 100%;
      }

      .nav.is-open .nav-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        order: 3;
        padding-top: 10px;
      }

      .nav.is-open .nav-actions {
        order: 4;
      }

      .nav.is-open .btn {
        width: 100%;
      }

      .hero {
        padding-top: 48px;
      }

      .hero-copy {
        padding: 12px 0 0;
      }

      .feature-strip,
      .story-grid,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .strip-card.large {
        grid-row: auto;
      }

      .strip-card.large img,
      .strip-card img {
        height: 240px;
      }

      .story-card:nth-child(2),
      .story-card:nth-child(3) {
        margin-top: 0;
      }

      .article-item {
        grid-template-columns: 92px minmax(0, 1fr);
      }

      .article-item .arrow-button {
        grid-column: 2;
        justify-self: start;
      }
    }

    @media (max-width: 620px) {
      .container {
        width: min(100% - 32px, var(--container));
      }

      .section {
        padding: 58px 0;
      }

      .section-tight {
        padding: 42px 0;
      }

      .logo-text strong {
        font-size: 16px;
      }

      .logo-text span {
        display: none;
      }

      .hero-actions,
      .cta-actions {
        align-items: stretch;
        flex-direction: column;
      }

      .btn {
        width: 100%;
      }

      .magazine-panel,
      .magazine-panel img {
        min-height: 430px;
      }

      .panel-content {
        inset: auto 16px 16px 16px;
      }

      .headline-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
      }

      .path-grid,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .article-item {
        grid-template-columns: 1fr;
      }

      .article-date {
        min-height: 72px;
        place-items: start;
        padding: 14px;
      }

      .faq-answer {
        padding-left: 22px;
      }

      .cta-inner {
        padding: 26px;
      }

      .nav.is-open .nav-links {
        grid-template-columns: 1fr;
      }
    }
