/* roulang page: index */
:root {
      --primary: #0e8f5a;
      --primary-dark: #087a4a;
      --primary-deep: #0a5f3c;
      --accent: #d7f75b;
      --accent-gold: #f2c94c;
      --orange: #ff7a3d;
      --red: #e94b4b;
      --ink: #10231c;
      --text: #25362f;
      --muted: #6d7f75;
      --soft: #f7faf4;
      --soft-green: #eef6ec;
      --white: #ffffff;
      --border: rgba(14, 143, 90, .14);
      --border-strong: rgba(14, 143, 90, .28);
      --shadow: 0 16px 40px rgba(18, 64, 42, .10);
      --shadow-lg: 0 24px 70px rgba(18, 64, 42, .16);
      --radius-sm: 14px;
      --radius: 22px;
      --radius-lg: 32px;
      --container: 1220px;
      --gradient: linear-gradient(135deg, #0e8f5a, #15b77a);
      --badge-gradient: linear-gradient(135deg, #d7f75b, #78e08f);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 5%, rgba(215, 247, 91, .18), transparent 30%),
        radial-gradient(circle at 92% 12%, rgba(14, 143, 90, .12), transparent 26%),
        linear-gradient(180deg, #fbfdf8 0%, #f3f8ef 45%, #ffffff 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;
    }

    a:hover {
      color: var(--primary);
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    button,
    input {
      font: inherit;
    }

    button:focus-visible,
    a:focus-visible,
    input:focus-visible {
      outline: 3px solid rgba(215, 247, 91, .75);
      outline-offset: 3px;
    }

    .container {
      max-width: var(--container);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .88);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(14, 143, 90, .10);
      box-shadow: 0 10px 30px rgba(18, 64, 42, .06);
    }

    .brand-row {
      padding: 15px 0;
      border-bottom: 1px solid rgba(14, 143, 90, .08);
    }

    .brand-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      min-width: max-content;
      color: var(--ink);
      font-weight: 900;
      font-size: 24px;
      letter-spacing: 0;
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--gradient);
      color: var(--white);
      display: grid;
      place-items: center;
      box-shadow: 0 12px 26px rgba(14, 143, 90, .24);
      position: relative;
      overflow: hidden;
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      border: 2px solid rgba(255, 255, 255, .72);
      border-radius: 50%;
    }

    .logo-mark::before {
      width: 22px;
      height: 22px;
    }

    .logo-mark::after {
      width: 58px;
      height: 18px;
      transform: rotate(-28deg);
    }

    .site-tagline {
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      flex: 1;
      min-width: 180px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .search-box {
      position: relative;
      width: 260px;
    }

    .search-box input {
      width: 100%;
      min-height: 44px;
      border-radius: 999px;
      border: 1px solid var(--border);
      background: rgba(247, 250, 244, .9);
      padding: 10px 18px 10px 42px;
      color: var(--ink);
      transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .search-box input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(14, 143, 90, .12);
      background: var(--white);
    }

    .search-box::before {
      content: "⌕";
      position: absolute;
      left: 17px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--primary);
      font-size: 18px;
      font-weight: 700;
    }

    .btn-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 10px 20px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
      white-space: nowrap;
    }

    .btn-primary-custom {
      color: var(--white);
      background: var(--gradient);
      box-shadow: 0 14px 30px rgba(14, 143, 90, .24);
    }

    .btn-primary-custom:hover {
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 18px 38px rgba(14, 143, 90, .30);
    }

    .btn-secondary-custom {
      color: var(--primary-deep);
      background: var(--white);
      border-color: var(--border-strong);
    }

    .btn-secondary-custom:hover {
      color: var(--primary-deep);
      background: #eef9e8;
      transform: translateY(-2px);
      border-color: rgba(14, 143, 90, .38);
    }

    .channel-row {
      padding: 10px 0;
    }

    .channel-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      overflow-x: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(14, 143, 90, .35) transparent;
      padding-bottom: 2px;
    }

    .channel-nav a {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 16px;
      border-radius: 999px;
      color: var(--text);
      font-weight: 800;
      font-size: 14px;
      white-space: nowrap;
      border: 1px solid transparent;
      position: relative;
    }

    .channel-nav a:hover {
      background: rgba(14, 143, 90, .08);
      color: var(--primary-deep);
      border-color: rgba(14, 143, 90, .10);
    }

    .channel-nav a.active {
      color: var(--white);
      background: var(--gradient);
      box-shadow: 0 10px 22px rgba(14, 143, 90, .20);
    }

    .hero {
      position: relative;
      padding: 86px 0 58px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 78%;
      background:
        linear-gradient(135deg, rgba(10, 95, 60, .88), rgba(14, 143, 90, .70)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
      border-bottom-left-radius: 48px;
      border-bottom-right-radius: 48px;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      left: -8%;
      top: 10%;
      width: 54%;
      height: 52%;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, .10) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
      background-size: 46px 46px;
      transform: rotate(-8deg);
      z-index: -1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(215, 247, 91, .18);
      border: 1px solid rgba(215, 247, 91, .36);
      color: #efffd0;
      font-weight: 800;
      font-size: 14px;
      margin-bottom: 18px;
    }

    .hero h1 {
      color: var(--white);
      font-size: clamp(34px, 4.4vw, 54px);
      line-height: 1.16;
      font-weight: 950;
      letter-spacing: 0;
      margin: 0 0 20px;
      max-width: 760px;
    }

    .hero-lead {
      color: rgba(255, 255, 255, .88);
      font-size: 18px;
      line-height: 1.85;
      max-width: 680px;
      margin: 0 0 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 720px;
    }

    .metric-badge {
      border-radius: 20px;
      padding: 16px;
      background: rgba(255, 255, 255, .13);
      border: 1px solid rgba(255, 255, 255, .22);
      color: var(--white);
      backdrop-filter: blur(12px);
    }

    .metric-badge strong {
      display: block;
      font-size: 28px;
      line-height: 1.1;
      color: var(--accent);
      font-weight: 950;
      margin-bottom: 4px;
    }

    .metric-badge span {
      display: block;
      font-size: 13px;
      color: rgba(255, 255, 255, .82);
    }

    .match-board {
      background: rgba(255, 255, 255, .94);
      border: 1px solid rgba(255, 255, 255, .72);
      border-radius: var(--radius-lg);
      padding: 22px;
      box-shadow: var(--shadow-lg);
      color: var(--ink);
      margin-top: 12px;
    }

    .board-head,
    .fixture-row,
    .content-list-item,
    .review-head,
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .board-title {
      font-size: 20px;
      font-weight: 950;
      color: var(--ink);
      margin: 0;
    }

    .live-dot {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--red);
      font-size: 13px;
      font-weight: 900;
    }

    .live-dot::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--red);
      box-shadow: 0 0 0 6px rgba(233, 75, 75, .12);
    }

    .fixture-row {
      padding: 16px 0;
      border-bottom: 1px solid rgba(14, 143, 90, .10);
    }

    .fixture-row:last-child {
      border-bottom: 0;
    }

    .league-tag,
    .tag {
      display: inline-flex;
      align-items: center;
      width: fit-content;
      min-height: 28px;
      padding: 5px 10px;
      border-radius: 999px;
      background: rgba(14, 143, 90, .10);
      color: var(--primary-deep);
      font-size: 12px;
      font-weight: 900;
    }

    .teams {
      flex: 1;
      min-width: 0;
    }

    .teams strong {
      display: block;
      font-size: 16px;
      color: var(--ink);
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .teams span {
      color: var(--muted);
      font-size: 13px;
    }

    .score {
      min-width: 74px;
      text-align: center;
      border-radius: 16px;
      padding: 8px 10px;
      background: #10231c;
      color: var(--accent);
      font-size: 20px;
      font-weight: 950;
      line-height: 1.2;
    }

    .section {
      padding: 78px 0;
    }

    .section-tight {
      padding: 58px 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 34px;
    }

    .section-kicker {
      color: var(--primary);
      font-weight: 950;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .section-title {
      color: var(--ink);
      font-size: clamp(26px, 3vw, 36px);
      line-height: 1.22;
      font-weight: 950;
      letter-spacing: 0;
      margin: 0;
    }

    .section-desc {
      color: var(--muted);
      max-width: 620px;
      margin: 10px 0 0;
      font-size: 16px;
    }

    .pain-panel {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 10px;
      box-shadow: var(--shadow);
    }

    .timeline-step {
      display: grid;
      grid-template-columns: 108px 1fr 190px;
      gap: 22px;
      align-items: center;
      padding: 22px;
      border-radius: 24px;
      transition: transform .2s ease, background .2s ease;
    }

    .timeline-step:hover {
      background: var(--soft-green);
      transform: translateY(-2px);
    }

    .step-time {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      border-radius: 999px;
      color: var(--primary-deep);
      background: var(--badge-gradient);
      font-weight: 950;
    }

    .timeline-step h3 {
      margin: 0 0 6px;
      color: var(--ink);
      font-size: 20px;
      font-weight: 950;
    }

    .timeline-step p {
      margin: 0;
      color: var(--muted);
    }

    .step-note {
      color: var(--primary-deep);
      font-weight: 900;
      text-align: right;
    }

    .solution-layout {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 24px;
      align-items: stretch;
    }

    .feature-card,
    .content-card,
    .review-card,
    .stat-card,
    .category-card,
    .faq-wrap,
    .subscribe-card {
      background: rgba(255, 255, 255, .92);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: 0 10px 28px rgba(18, 64, 42, .07);
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
      overflow: hidden;
    }

    .feature-card:hover,
    .content-card:hover,
    .review-card:hover,
    .stat-card:hover,
    .category-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: var(--border-strong);
    }

    .feature-main {
      min-height: 100%;
      display: grid;
      grid-template-rows: auto 1fr;
    }

    .feature-main img {
      width: 100%;
      aspect-ratio: 16 / 9;
      object-fit: cover;
    }

    .feature-body {
      padding: 26px;
    }

    .feature-body h3,
    .content-card h3,
    .category-card h3 {
      color: var(--ink);
      font-weight: 950;
      line-height: 1.35;
      margin: 12px 0 10px;
      font-size: 22px;
    }

    .feature-body p,
    .content-card p,
    .category-card p {
      color: var(--muted);
      margin: 0;
    }

    .feature-stack {
      display: grid;
      gap: 16px;
    }

    .mini-feature {
      padding: 20px;
      display: grid;
      grid-template-columns: 48px 1fr;
      gap: 14px;
      align-items: start;
    }

    .icon-chip {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: var(--badge-gradient);
      color: var(--primary-deep);
      font-weight: 950;
      box-shadow: 0 10px 22px rgba(14, 143, 90, .12);
    }

    .mini-feature h3 {
      color: var(--ink);
      font-size: 18px;
      font-weight: 950;
      margin: 0 0 4px;
    }

    .mini-feature p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.7;
    }

    .stats-band {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      padding: 34px;
      background:
        linear-gradient(135deg, rgba(16, 35, 28, .94), rgba(10, 95, 60, .92)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      box-shadow: var(--shadow-lg);
    }

    .stats-band .section-title,
    .stats-band .section-desc {
      color: var(--white);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }

    .stat-card {
      padding: 22px;
      background: rgba(255, 255, 255, .12);
      border-color: rgba(255, 255, 255, .18);
      backdrop-filter: blur(12px);
      box-shadow: none;
    }

    .stat-card strong {
      display: block;
      color: var(--accent);
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1;
      font-weight: 950;
      margin-bottom: 8px;
    }

    .stat-card span {
      color: rgba(255, 255, 255, .85);
      font-size: 14px;
    }

    .category-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 16px;
    }

    .category-card {
      padding: 18px;
      min-height: 190px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .category-card h3 {
      font-size: 18px;
      margin-top: 14px;
    }

    .category-card .arrow {
      color: var(--primary);
      font-weight: 950;
    }

    .magazine-layout {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 24px;
    }

    .headline-card {
      position: relative;
      min-height: 520px;
      color: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: end;
      padding: 30px;
      background: #0a5f3c;
    }

    .headline-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .headline-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(16, 35, 28, .12), rgba(16, 35, 28, .92));
      z-index: 1;
    }

    .headline-content {
      position: relative;
      z-index: 2;
    }

    .headline-content h3 {
      font-size: clamp(26px, 3vw, 36px);
      font-weight: 950;
      line-height: 1.22;
      margin: 14px 0 12px;
    }

    .headline-content p {
      color: rgba(255, 255, 255, .86);
      margin: 0;
      max-width: 580px;
    }

    .content-list {
      display: grid;
      gap: 14px;
    }

    .content-list-item {
      padding: 18px;
      border-radius: 20px;
      background: var(--white);
      border: 1px solid var(--border);
      box-shadow: 0 8px 24px rgba(18, 64, 42, .06);
    }

    .content-list-item:hover {
      border-color: var(--border-strong);
      transform: translateY(-2px);
    }

    .content-list-item h3 {
      color: var(--ink);
      font-size: 18px;
      font-weight: 950;
      margin: 0 0 5px;
      line-height: 1.35;
    }

    .content-list-item p {
      color: var(--muted);
      margin: 0;
      font-size: 14px;
      line-height: 1.65;
    }

    .date-pill {
      min-width: 78px;
      text-align: center;
      border-radius: 16px;
      background: var(--soft-green);
      color: var(--primary-deep);
      font-weight: 950;
      padding: 10px 8px;
      font-size: 13px;
    }

    .topic-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 24px;
    }

    .content-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

    .content-card-body {
      padding: 18px;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
    }

    .review-card {
      padding: 20px;
      display: flex;
      flex-direction: column;
      min-height: 260px;
    }

    .review-name {
      color: var(--ink);
      font-weight: 950;
      margin: 0;
    }

    .review-meta {
      color: var(--muted);
      font-size: 13px;
      margin-top: 2px;
    }

    .rating {
      color: #b18400;
      background: rgba(242, 201, 76, .20);
      border-radius: 999px;
      padding: 5px 9px;
      font-weight: 950;
      font-size: 13px;
      white-space: nowrap;
    }

    .review-card p {
      color: var(--text);
      margin: 16px 0;
      line-height: 1.75;
      flex: 1;
    }

    .review-foot {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      color: var(--muted);
      font-size: 13px;
      border-top: 1px solid rgba(14, 143, 90, .10);
      padding-top: 12px;
    }

    .faq-wrap {
      padding: 10px;
    }

    .accordion {
      --bs-accordion-border-color: transparent;
      --bs-accordion-border-width: 0;
      --bs-accordion-btn-focus-box-shadow: none;
      --bs-accordion-active-bg: transparent;
      --bs-accordion-active-color: var(--ink);
    }

    .accordion-item {
      border: 0;
      border-radius: 18px !important;
      background: transparent;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .accordion-button {
      border-radius: 18px !important;
      background: var(--soft);
      color: var(--ink);
      font-weight: 950;
      padding: 18px 20px;
      line-height: 1.45;
      box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
      background: linear-gradient(135deg, rgba(215, 247, 91, .34), rgba(238, 246, 236, .96));
      border-left: 5px solid var(--primary);
    }

    .accordion-button::after {
      background-size: 16px;
      filter: saturate(0) brightness(.45);
    }

    .accordion-body {
      color: var(--muted);
      padding: 18px 22px 22px;
      line-height: 1.85;
      background: var(--white);
    }

    .cta-section {
      padding: 76px 0 86px;
    }

    .subscribe-card {
      position: relative;
      overflow: hidden;
      padding: 38px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(135deg, rgba(14, 143, 90, .96), rgba(21, 183, 122, .92)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      color: var(--white);
      box-shadow: var(--shadow-lg);
    }

    .subscribe-card h2 {
      font-size: clamp(28px, 3.4vw, 42px);
      font-weight: 950;
      line-height: 1.22;
      margin: 0 0 12px;
    }

    .subscribe-card p {
      color: rgba(255, 255, 255, .88);
      max-width: 720px;
      margin: 0;
    }

    .subscribe-form {
      display: flex;
      gap: 12px;
      margin-top: 26px;
      max-width: 680px;
    }

    .subscribe-form input {
      flex: 1;
      min-height: 50px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .34);
      padding: 12px 18px;
      color: var(--ink);
      background: rgba(255, 255, 255, .94);
    }

    .subscribe-form input:focus {
      box-shadow: 0 0 0 4px rgba(215, 247, 91, .24);
      border-color: var(--accent);
    }

    .site-footer {
      background: #10231c;
      color: rgba(255, 255, 255, .80);
      padding: 60px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .9fr .9fr;
      gap: 36px;
      padding-bottom: 38px;
    }

    .footer-brand {
      color: var(--white);
      font-size: 24px;
      font-weight: 950;
      margin-bottom: 12px;
    }

    .footer-text {
      color: rgba(255, 255, 255, .68);
      max-width: 460px;
      margin: 0;
    }

    .footer-title {
      color: var(--white);
      font-weight: 950;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .72);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--accent);
      transform: translateX(3px);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .12);
      padding: 22px 0;
      color: rgba(255, 255, 255, .62);
      font-size: 13px;
      flex-wrap: wrap;
      justify-content: center;
      text-align: center;
    }

    .record-line {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 18px;
      width: 100%;
    }

    .record-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px 14px;
      width: 100%;
      margin-top: 8px;
    }

    .record-links a {
      color: rgba(255, 255, 255, .68);
    }

    .record-links a:hover {
      color: var(--accent);
    }

    @media (max-width: 1199px) {
      .brand-wrap {
        flex-wrap: wrap;
      }

      .site-tagline {
        order: 3;
        flex-basis: 100%;
      }

      .category-grid,
      .reviews-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 991px) {
      .hero {
        padding-top: 64px;
      }

      .solution-layout,
      .magazine-layout {
        grid-template-columns: 1fr;
      }

      .headline-card {
        min-height: 420px;
      }

      .timeline-step {
        grid-template-columns: 92px 1fr;
      }

      .step-note {
        grid-column: 2;
        text-align: left;
      }

      .topic-strip {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 767px) {
      body {
        font-size: 16px;
      }

      .brand-row {
        padding: 12px 0;
      }

      .brand-wrap {
        align-items: flex-start;
      }

      .brand-logo {
        font-size: 21px;
      }

      .logo-mark {
        width: 38px;
        height: 38px;
      }

      .header-actions {
        width: 100%;
        flex-wrap: wrap;
      }

      .search-box {
        width: 100%;
      }

      .header-actions .btn-pill {
        width: 100%;
      }

      .channel-nav {
        padding-bottom: 6px;
      }

      .hero::before {
        height: 88%;
        border-bottom-left-radius: 28px;
        border-bottom-right-radius: 28px;
      }

      .hero {
        padding: 48px 0 30px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-actions .btn-pill {
        width: 100%;
      }

      .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .metric-badge strong {
        font-size: 24px;
      }

      .match-board {
        border-radius: 24px;
        padding: 18px;
      }

      .fixture-row {
        align-items: flex-start;
        flex-wrap: wrap;
      }

      .score {
        min-width: 68px;
      }

      .section,
      .section-tight,
      .cta-section {
        padding: 52px 0;
      }

      .section-head {
        display: block;
        margin-bottom: 24px;
      }

      .timeline-step {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px;
      }

      .step-time {
        width: fit-content;
        padding: 0 16px;
      }

      .step-note {
        grid-column: auto;
      }

      .feature-body,
      .subscribe-card {
        padding: 22px;
      }

      .category-grid,
      .reviews-grid,
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .headline-card {
        min-height: 360px;
        padding: 22px;
      }

      .content-list-item {
        align-items: flex-start;
        flex-direction: column;
      }

      .date-pill {
        min-width: auto;
      }

      .subscribe-form {
        flex-direction: column;
      }

      .subscribe-form .btn-pill {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }
    }

    @media (max-width: 520px) {
      .container {
        padding-left: 18px;
        padding-right: 18px;
      }

      .hero-metrics {
        grid-template-columns: 1fr;
      }

      .board-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .mini-feature {
        grid-template-columns: 42px 1fr;
      }

      .icon-chip {
        width: 42px;
        height: 42px;
        border-radius: 14px;
      }

      .review-foot {
        flex-direction: column;
        gap: 4px;
      }
    }

/* roulang page: category1 */
:root{
      --primary:#0E8F5A;
      --primary-dark:#087A4A;
      --primary-deep:#0A5F3C;
      --secondary:#D7F75B;
      --light-yellow:#F2C94C;
      --accent:#FF7A3D;
      --danger:#E94B4B;
      --text:#10231C;
      --muted:#66756D;
      --soft:#F7FAF4;
      --soft-green:#EEF6EC;
      --white:#FFFFFF;
      --border:rgba(14,143,90,.14);
      --border-strong:rgba(14,143,90,.28);
      --shadow:0 16px 40px rgba(18,64,42,.10);
      --shadow-hover:0 22px 56px rgba(18,64,42,.16);
      --radius-sm:14px;
      --radius:22px;
      --radius-lg:32px;
      --container:1200px;
      --gradient:linear-gradient(135deg,#0E8F5A,#15B77A);
      --gradient-soft:linear-gradient(135deg,rgba(215,247,91,.28),rgba(120,224,143,.22));
      --night:linear-gradient(135deg,#10231C,#0A5F3C);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at top left,rgba(215,247,91,.22),transparent 30%),
        radial-gradient(circle at 90% 10%,rgba(14,143,90,.12),transparent 28%),
        var(--soft);
      font-size:16px;
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:all .22s ease}
    a:hover{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    .container{max-width:var(--container)}
    ::selection{background:rgba(215,247,91,.75);color:var(--text)}
    .site-header{
      position:sticky;
      top:0;
      z-index:1020;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(18px);
      border-bottom:1px solid var(--border);
      box-shadow:0 8px 30px rgba(16,35,28,.06);
    }
    .brand-row{padding:14px 0;border-bottom:1px solid rgba(14,143,90,.10)}
    .brand-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:22px;
    }
    .brand-logo{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      font-size:24px;
      letter-spacing:-.02em;
      color:var(--text);
      white-space:nowrap;
    }
    .logo-mark{
      width:40px;
      height:40px;
      border-radius:50%;
      background:
        radial-gradient(circle at 50% 50%,#fff 0 17%,transparent 18%),
        linear-gradient(45deg,transparent 43%,rgba(255,255,255,.8) 44% 52%,transparent 53%),
        var(--gradient);
      box-shadow:0 10px 24px rgba(14,143,90,.24);
      position:relative;
    }
    .logo-mark:after{
      content:"";
      position:absolute;
      inset:8px;
      border:2px solid rgba(255,255,255,.7);
      border-radius:50%;
    }
    .site-tagline{
      color:var(--muted);
      font-size:14px;
      flex:1;
      text-align:center;
      white-space:nowrap;
    }
    .header-actions{display:flex;align-items:center;gap:12px}
    .search-box input{
      width:230px;
      min-height:42px;
      border:1px solid var(--border);
      border-radius:999px;
      padding:0 18px;
      outline:none;
      background:rgba(247,250,244,.9);
      color:var(--text);
      transition:all .22s ease;
    }
    .search-box input::placeholder{color:#93A098}
    .search-box input:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(14,143,90,.12);
      background:#fff;
    }
    .btn-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:44px;
      padding:10px 20px;
      border-radius:999px;
      font-weight:800;
      border:1px solid transparent;
      white-space:nowrap;
      transition:all .22s ease;
    }
    .btn-primary-custom{
      color:#fff;
      background:var(--gradient);
      box-shadow:0 14px 26px rgba(14,143,90,.22);
    }
    .btn-primary-custom:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 34px rgba(14,143,90,.30);
      filter:saturate(1.05);
    }
    .btn-secondary-custom{
      color:var(--primary-deep);
      background:#fff;
      border-color:var(--border-strong);
    }
    .btn-secondary-custom:hover{
      color:var(--primary-deep);
      background:var(--soft-green);
      transform:translateY(-2px);
      border-color:var(--primary);
    }
    .channel-row{background:rgba(247,250,244,.74)}
    .channel-nav{
      display:flex;
      align-items:center;
      gap:10px;
      padding:11px 0;
      overflow-x:auto;
      scrollbar-width:none;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .channel-nav a{
      position:relative;
      flex:0 0 auto;
      padding:9px 16px;
      border-radius:999px;
      color:#31473D;
      font-weight:800;
      font-size:15px;
      border:1px solid transparent;
    }
    .channel-nav a:hover{
      background:rgba(14,143,90,.08);
      color:var(--primary-deep);
    }
    .channel-nav a.active{
      color:#fff;
      background:var(--gradient);
      box-shadow:0 10px 24px rgba(14,143,90,.20);
    }
    .main-section{padding:76px 0}
    .section-head{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap:24px;
      margin-bottom:28px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(14,143,90,.10);
      color:var(--primary-deep);
      font-size:13px;
      font-weight:900;
      margin-bottom:14px;
    }
    .eyebrow:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--secondary);
      box-shadow:0 0 0 4px rgba(215,247,91,.24);
    }
    h1,h2,h3{letter-spacing:-.03em;color:var(--text)}
    h1{
      font-size:50px;
      line-height:1.16;
      font-weight:950;
      margin:0 0 18px;
    }
    h2{
      font-size:34px;
      line-height:1.25;
      font-weight:950;
      margin:0;
    }
    h3{
      font-size:20px;
      line-height:1.35;
      font-weight:900;
      margin:0 0 10px;
    }
    .lead-text{
      color:#4D5F56;
      font-size:18px;
      line-height:1.85;
      margin:0;
    }
    .muted{color:var(--muted)}
    .score-hero{
      position:relative;
      padding:72px 0 60px;
      overflow:hidden;
    }
    .score-hero:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(110deg,rgba(247,250,244,.98) 0%,rgba(247,250,244,.88) 45%,rgba(14,95,60,.52) 100%),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
      z-index:-2;
    }
    .score-hero:after{
      content:"";
      position:absolute;
      right:-80px;
      top:80px;
      width:340px;
      height:340px;
      border-radius:50%;
      background:rgba(215,247,91,.28);
      filter:blur(4px);
      z-index:-1;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .hero-badges{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:30px;
    }
    .data-badge{
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.76);
      border:1px solid var(--border);
      box-shadow:0 12px 28px rgba(18,64,42,.08);
    }
    .data-badge strong{
      display:block;
      font-size:30px;
      line-height:1;
      font-weight:950;
      color:var(--primary-deep);
      margin-bottom:6px;
    }
    .data-badge span{
      display:block;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .match-board{
      background:rgba(255,255,255,.86);
      border:1px solid rgba(255,255,255,.78);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-hover);
      padding:22px;
      backdrop-filter:blur(14px);
    }
    .board-top{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding-bottom:16px;
      border-bottom:1px solid var(--border);
      margin-bottom:16px;
    }
    .live-dot{
      display:inline-flex;
      align-items:center;
      gap:8px;
      font-size:13px;
      font-weight:900;
      color:var(--danger);
    }
    .live-dot:before{
      content:"";
      width:9px;
      height:9px;
      border-radius:50%;
      background:var(--danger);
      box-shadow:0 0 0 5px rgba(233,75,75,.12);
    }
    .match-item{
      display:grid;
      grid-template-columns:1fr auto 1fr;
      align-items:center;
      gap:12px;
      padding:16px;
      border-radius:20px;
      background:rgba(238,246,236,.72);
      border:1px solid rgba(14,143,90,.10);
      margin-bottom:12px;
      transition:all .22s ease;
    }
    .match-item:hover{
      transform:translateY(-3px);
      border-color:var(--border-strong);
      box-shadow:0 14px 28px rgba(18,64,42,.10);
      background:#fff;
    }
    .team{
      font-weight:900;
      color:var(--text);
    }
    .team.right{text-align:right}
    .score{
      min-width:88px;
      text-align:center;
      padding:8px 12px;
      border-radius:14px;
      color:#fff;
      background:var(--night);
      font-size:22px;
      line-height:1;
      font-weight:950;
      letter-spacing:.02em;
    }
    .match-meta{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      color:var(--muted);
      font-size:13px;
      padding:0 4px 10px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      min-height:28px;
      padding:5px 10px;
      border-radius:999px;
      background:rgba(14,143,90,.10);
      color:var(--primary-deep);
      font-size:12px;
      font-weight:900;
    }
    .tag.hot{
      background:rgba(255,122,61,.12);
      color:#B84E20;
    }
    .tag.light{
      background:var(--gradient-soft);
      color:var(--primary-deep);
    }
    .card-custom{
      height:100%;
      border:1px solid var(--border);
      border-radius:var(--radius);
      background:rgba(255,255,255,.88);
      box-shadow:0 12px 32px rgba(18,64,42,.07);
      overflow:hidden;
      transition:all .24s ease;
    }
    .card-custom:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
      border-color:var(--border-strong);
    }
    .card-pad{padding:24px}
    .timeline-wrap{
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .timeline-date{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      padding:18px;
      background:linear-gradient(135deg,rgba(14,143,90,.08),rgba(215,247,91,.20));
      border-bottom:1px solid var(--border);
    }
    .date-pill{
      padding:9px 14px;
      border-radius:999px;
      font-weight:900;
      font-size:14px;
      color:#365046;
      background:#fff;
      border:1px solid var(--border);
    }
    .date-pill.active{
      color:#fff;
      background:var(--gradient);
      border-color:transparent;
      box-shadow:0 10px 22px rgba(14,143,90,.18);
    }
    .timeline-list{padding:8px 18px 18px}
    .schedule-row{
      display:grid;
      grid-template-columns:92px 1.2fr auto 1fr 120px;
      gap:14px;
      align-items:center;
      padding:18px 6px;
      border-bottom:1px solid rgba(14,143,90,.10);
    }
    .schedule-row:last-child{border-bottom:0}
    .time{
      font-weight:950;
      color:var(--primary-deep);
      font-size:18px;
    }
    .league{
      color:var(--muted);
      font-size:13px;
      font-weight:800;
    }
    .center-score{
      min-width:84px;
      text-align:center;
      padding:8px 12px;
      border-radius:14px;
      background:#F1F7EF;
      font-weight:950;
      color:var(--text);
    }
    .status{
      justify-self:end;
      font-size:13px;
      font-weight:900;
      border-radius:999px;
      padding:7px 10px;
      background:rgba(14,143,90,.10);
      color:var(--primary-deep);
    }
    .status.wait{background:rgba(242,201,76,.16);color:#8A6505}
    .status.done{background:rgba(16,35,28,.08);color:#526158}
    .feature-grid{
      display:grid;
      grid-template-columns:1.3fr .7fr;
      gap:22px;
      align-items:stretch;
    }
    .image-card{
      position:relative;
      min-height:360px;
      border-radius:var(--radius-lg);
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .image-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      position:absolute;
      inset:0;
    }
    .image-card:after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(16,35,28,.08),rgba(16,35,28,.78));
    }
    .image-caption{
      position:absolute;
      left:24px;
      right:24px;
      bottom:24px;
      color:#fff;
      z-index:1;
    }
    .image-caption h3{color:#fff;font-size:26px}
    .image-caption p{margin:0;color:rgba(255,255,255,.82)}
    .side-stack{display:grid;gap:18px}
    .info-list{
      display:grid;
      gap:14px;
      margin:0;
      padding:0;
      list-style:none;
    }
    .info-list li{
      display:flex;
      gap:12px;
      padding:14px;
      border-radius:18px;
      background:rgba(238,246,236,.68);
      border:1px solid rgba(14,143,90,.10);
    }
    .info-list .num{
      flex:0 0 auto;
      width:30px;
      height:30px;
      border-radius:50%;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--gradient);
      color:#fff;
      font-weight:950;
      font-size:13px;
    }
    .process{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .process-card{
      position:relative;
      padding:24px;
      border-radius:var(--radius);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:0 12px 30px rgba(18,64,42,.06);
      transition:all .22s ease;
    }
    .process-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow);
      border-color:var(--border-strong);
    }
    .step{
      width:42px;
      height:42px;
      border-radius:16px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:var(--gradient-soft);
      color:var(--primary-deep);
      font-weight:950;
      margin-bottom:14px;
    }
    .league-strip{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      padding:18px;
      border-radius:var(--radius);
      background:var(--night);
      color:#fff;
      box-shadow:var(--shadow);
    }
    .league-chip{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:10px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.16);
      color:#fff;
      font-weight:900;
    }
    .league-chip:before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--secondary);
    }
    .accordion{--bs-accordion-border-width:0}
    .accordion-item{
      border:1px solid var(--border)!important;
      border-radius:20px!important;
      overflow:hidden;
      margin-bottom:14px;
      box-shadow:0 10px 28px rgba(18,64,42,.05);
      background:#fff;
    }
    .accordion-button{
      color:var(--text);
      background:#fff;
      font-weight:900;
      padding:18px 20px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary-deep);
      background:linear-gradient(135deg,rgba(14,143,90,.10),rgba(215,247,91,.18));
    }
    .accordion-button:focus{
      border-color:transparent;
      box-shadow:0 0 0 4px rgba(14,143,90,.12)!important;
    }
    .accordion-body{
      color:#4D5F56;
      padding:2px 20px 20px;
      line-height:1.85;
    }
    .cta-panel{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      padding:44px;
      color:#fff;
      background:
        linear-gradient(135deg,rgba(10,95,60,.94),rgba(14,143,90,.82)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      box-shadow:var(--shadow-hover);
    }
    .cta-panel:after{
      content:"";
      position:absolute;
      width:230px;
      height:230px;
      right:-60px;
      top:-70px;
      border-radius:50%;
      background:rgba(215,247,91,.24);
    }
    .cta-panel h2,.cta-panel p{color:#fff;position:relative;z-index:1}
    .cta-panel p{color:rgba(255,255,255,.84);max-width:720px}
    .cta-actions{position:relative;z-index:1;display:flex;flex-wrap:wrap;gap:12px;margin-top:24px}
    .cta-panel .btn-secondary-custom{background:rgba(255,255,255,.96)}
    .subscribe-form{
      display:flex;
      gap:10px;
      max-width:520px;
      margin-top:22px;
      position:relative;
      z-index:1;
    }
    .subscribe-form input{
      flex:1;
      min-height:48px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.44);
      background:rgba(255,255,255,.12);
      color:#fff;
      padding:0 18px;
      outline:none;
    }
    .subscribe-form input::placeholder{color:rgba(255,255,255,.72)}
    .subscribe-form input:focus{
      background:rgba(255,255,255,.18);
      box-shadow:0 0 0 4px rgba(215,247,91,.22);
    }
    .site-footer{
      margin-top:84px;
      padding:56px 0 26px;
      background:#10231C;
      color:rgba(255,255,255,.78);
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.3fr .9fr .9fr;
      gap:38px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.10);
    }
    .footer-brand{
      color:#fff;
      font-size:24px;
      font-weight:950;
      margin-bottom:12px;
    }
    .footer-text{
      max-width:470px;
      color:rgba(255,255,255,.70);
      margin:0;
    }
    .footer-title{
      color:#fff;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-links{
      display:grid;
      gap:8px;
    }
    .footer-links a{
      color:rgba(255,255,255,.70);
      font-size:14px;
    }
    .footer-links a:hover{
      color:var(--secondary);
      transform:translateX(3px);
    }
    .footer-bottom{
      text-align:center;
      padding-top:22px;
      font-size:13px;
      color:rgba(255,255,255,.62);
    }
    .record-line{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:10px 18px;
      margin-bottom:10px;
    }
    .record-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:center;
      gap:8px;
    }
    .record-links a{color:rgba(255,255,255,.66)}
    .record-links a:hover{color:var(--secondary)}
    @media (max-width:1199px){
      h1{font-size:44px}
      .site-tagline{text-align:left}
      .header-actions .search-box input{width:190px}
      .process{grid-template-columns:repeat(2,1fr)}
      .schedule-row{grid-template-columns:82px 1fr auto 1fr 92px}
    }
    @media (max-width:991px){
      .brand-wrap{flex-wrap:wrap}
      .site-tagline{order:3;width:100%;font-size:13px}
      .header-actions{margin-left:auto}
      .score-hero{padding:56px 0}
      .hero-badges{grid-template-columns:repeat(3,1fr)}
      .feature-grid{grid-template-columns:1fr}
      .image-card{min-height:320px}
      .footer-grid{grid-template-columns:1fr 1fr}
      .footer-grid>div:first-child{grid-column:1/-1}
    }
    @media (max-width:767px){
      body{font-size:15px}
      .brand-row{padding:12px 0}
      .brand-logo{font-size:21px}
      .logo-mark{width:36px;height:36px}
      .header-actions{width:100%;justify-content:space-between}
      .search-box{flex:1}
      .search-box input{width:100%!important}
      .btn-pill{min-height:44px;padding:10px 15px;font-size:14px}
      .channel-nav{gap:8px;padding:10px 0}
      .channel-nav a{padding:8px 13px;font-size:14px}
      h1{font-size:34px}
      h2{font-size:27px}
      .lead-text{font-size:16px}
      .main-section{padding:52px 0}
      .section-head{display:block}
      .section-head .muted{margin-top:10px}
      .hero-badges{grid-template-columns:repeat(2,1fr)}
      .match-board{padding:16px;border-radius:24px}
      .match-item{grid-template-columns:1fr;gap:8px;text-align:left}
      .team.right{text-align:left}
      .score{width:100%;min-width:auto}
      .schedule-row{
        grid-template-columns:1fr auto;
        gap:8px;
        padding:16px 2px;
      }
      .schedule-row .league{grid-column:1/-1}
      .schedule-row .center-score{grid-column:1/2;width:max-content}
      .schedule-row .status{grid-column:2/3;grid-row:2/3}
      .process{grid-template-columns:1fr}
      .cta-panel{padding:30px 22px}
      .subscribe-form{flex-direction:column}
      .subscribe-form input{border-radius:16px}
      .footer-grid{grid-template-columns:1fr}
    }
    @media (max-width:520px){
      .hero-badges{grid-template-columns:1fr}
      .data-badge strong{font-size:26px}
      .brand-wrap{gap:12px}
      .header-actions{flex-direction:column;align-items:stretch}
      .header-actions .btn-pill{width:100%}
      .league-strip{padding:14px}
      .league-chip{font-size:13px;padding:9px 12px}
      .image-caption{left:18px;right:18px;bottom:18px}
      .image-caption h3{font-size:22px}
    }

/* roulang page: category2 */
:root{
      --primary:#0E8F5A;
      --primary-dark:#087A4A;
      --primary-deep:#0A5F3C;
      --secondary:#D7F75B;
      --gold:#F2C94C;
      --orange:#FF7A3D;
      --danger:#E94B4B;
      --text:#10231C;
      --muted:#66766F;
      --light-muted:#8B9B94;
      --bg:#F7FAF4;
      --bg-soft:#EEF6EC;
      --white:#FFFFFF;
      --border:rgba(14,143,90,.14);
      --border-strong:rgba(14,143,90,.28);
      --shadow:0 16px 40px rgba(18,64,42,.10);
      --shadow-hover:0 24px 56px rgba(18,64,42,.16);
      --radius-sm:14px;
      --radius-md:20px;
      --radius-lg:28px;
      --radius-xl:34px;
      --container:1200px;
      --gradient:linear-gradient(135deg,#0E8F5A,#15B77A);
      --badge-gradient:linear-gradient(135deg,#D7F75B,#78E08F);
      --night-gradient:linear-gradient(135deg,#10231C,#0A5F3C);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 8% 8%,rgba(215,247,91,.20),transparent 28%),
        radial-gradient(circle at 92% 16%,rgba(14,143,90,.12),transparent 26%),
        linear-gradient(180deg,#FFFFFF 0%,var(--bg) 42%,#FFFFFF 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}
    a:hover{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input,textarea{font-family:inherit}
    .container{max-width:var(--container)}
    .section{padding:76px 0}
    .section-tight{padding:58px 0}
    .section-title{
      font-size:34px;
      line-height:1.22;
      font-weight:850;
      letter-spacing:-.5px;
      margin:0;
      color:var(--text);
    }
    .section-lead{
      color:var(--muted);
      font-size:17px;
      max-width:720px;
      margin:14px 0 0;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(14,143,90,.10);
      color:var(--primary-deep);
      font-weight:750;
      font-size:14px;
      border:1px solid var(--border);
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--secondary);
      box-shadow:0 0 0 5px rgba(215,247,91,.22);
    }
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(14,143,90,.10);
      box-shadow:0 8px 28px rgba(18,64,42,.06);
    }
    .brand-row{padding:14px 0;border-bottom:1px solid rgba(14,143,90,.10)}
    .brand-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .brand-logo{
      display:inline-flex;
      align-items:center;
      gap:12px;
      font-weight:900;
      font-size:24px;
      color:var(--text);
      white-space:nowrap;
    }
    .brand-logo:hover{color:var(--primary-deep);transform:translateY(-1px)}
    .logo-mark{
      width:42px;
      height:42px;
      border-radius:16px;
      background:var(--gradient);
      position:relative;
      box-shadow:0 12px 26px rgba(14,143,90,.26);
      flex:0 0 auto;
    }
    .logo-mark::before{
      content:"";
      position:absolute;
      inset:9px;
      border:2px solid rgba(255,255,255,.92);
      border-radius:50%;
    }
    .logo-mark::after{
      content:"";
      position:absolute;
      left:20px;
      top:7px;
      bottom:7px;
      width:2px;
      background:rgba(255,255,255,.78);
      transform:rotate(28deg);
      border-radius:2px;
    }
    .site-tagline{
      color:var(--muted);
      font-weight:650;
      font-size:14px;
      flex:1;
      text-align:center;
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .search-box{
      width:260px;
      position:relative;
    }
    .search-box input{
      width:100%;
      border:1px solid var(--border);
      background:var(--bg);
      border-radius:999px;
      padding:11px 16px;
      font-size:14px;
      color:var(--text);
      outline:none;
      transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .search-box input::placeholder{color:var(--light-muted)}
    .search-box input:focus{
      background:#fff;
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(14,143,90,.12);
    }
    .btn-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:44px;
      padding:12px 20px;
      border-radius:999px;
      font-weight:800;
      border:1px solid transparent;
      line-height:1;
      white-space:nowrap;
      transition:transform .2s ease,box-shadow .2s ease,background .2s ease,border-color .2s ease;
    }
    .btn-primary-custom{
      color:#fff;
      background:var(--gradient);
      box-shadow:0 12px 28px rgba(14,143,90,.22);
    }
    .btn-primary-custom:hover{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 38px rgba(14,143,90,.30);
    }
    .btn-secondary-custom{
      color:var(--primary-deep);
      background:#fff;
      border-color:var(--border-strong);
    }
    .btn-secondary-custom:hover{
      background:rgba(14,143,90,.08);
      color:var(--primary-deep);
      transform:translateY(-2px);
      border-color:rgba(14,143,90,.42);
    }
    .channel-row{background:rgba(247,250,244,.82)}
    .channel-nav{
      display:flex;
      align-items:center;
      gap:8px;
      overflow-x:auto;
      scrollbar-width:none;
      padding:10px 0;
      -webkit-overflow-scrolling:touch;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .channel-nav a{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:10px 16px;
      border-radius:999px;
      color:#31433B;
      font-weight:800;
      font-size:15px;
      white-space:nowrap;
      border:1px solid transparent;
    }
    .channel-nav a:hover{
      background:rgba(14,143,90,.08);
      color:var(--primary-deep);
      border-color:var(--border);
    }
    .channel-nav a.active{
      color:#10231C;
      background:var(--badge-gradient);
      border-color:rgba(120,224,143,.48);
      box-shadow:0 10px 22px rgba(14,143,90,.14);
    }
    .league-hero{
      position:relative;
      padding:82px 0 68px;
      overflow:hidden;
    }
    .league-hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(247,250,244,.98) 0%,rgba(247,250,244,.88) 43%,rgba(247,250,244,.52) 100%),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
      z-index:-2;
    }
    .league-hero::after{
      content:"";
      position:absolute;
      right:-120px;
      top:40px;
      width:360px;
      height:360px;
      border-radius:50%;
      background:rgba(215,247,91,.30);
      filter:blur(20px);
      z-index:-1;
    }
    .hero-copy h1{
      margin:18px 0 18px;
      font-size:50px;
      line-height:1.16;
      letter-spacing:-1px;
      font-weight:900;
      max-width:760px;
    }
    .hero-copy p{
      color:#44564E;
      font-size:18px;
      max-width:720px;
      margin:0 0 26px;
    }
    .hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:26px}
    .quick-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:18px;
    }
    .quick-tags span{
      display:inline-flex;
      padding:8px 13px;
      border-radius:999px;
      background:rgba(255,255,255,.78);
      border:1px solid var(--border);
      color:var(--primary-deep);
      font-weight:750;
      font-size:14px;
    }
    .hero-panel{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(255,255,255,.72);
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      padding:22px;
      backdrop-filter:blur(12px);
    }
    .panel-top{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      margin-bottom:18px;
    }
    .panel-title{font-size:18px;font-weight:900}
    .live-badge{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:999px;
      background:rgba(255,122,61,.12);
      color:#B74C1C;
      font-weight:850;
      font-size:13px;
    }
    .live-badge::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--orange);
      box-shadow:0 0 0 5px rgba(255,122,61,.18);
    }
    .league-board{
      display:grid;
      gap:12px;
    }
    .board-row{
      display:grid;
      grid-template-columns:1fr auto;
      align-items:center;
      gap:14px;
      padding:16px;
      border-radius:20px;
      background:linear-gradient(135deg,#FFFFFF,#F2F8EF);
      border:1px solid var(--border);
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
    }
    .board-row:hover{
      transform:translateY(-3px);
      box-shadow:0 14px 28px rgba(18,64,42,.10);
      border-color:var(--border-strong);
    }
    .board-name{font-weight:900;margin-bottom:3px}
    .board-meta{font-size:13px;color:var(--muted)}
    .board-score{
      font-size:24px;
      font-weight:950;
      color:var(--primary-deep);
      font-variant-numeric:tabular-nums;
    }
    .stat-strip{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:16px;
    }
    .stat-mini{
      border-radius:20px;
      background:var(--night-gradient);
      color:#fff;
      padding:16px;
      min-height:104px;
      position:relative;
      overflow:hidden;
    }
    .stat-mini::after{
      content:"";
      position:absolute;
      width:88px;
      height:88px;
      border-radius:50%;
      right:-28px;
      top:-26px;
      background:rgba(215,247,91,.20);
    }
    .stat-mini strong{
      display:block;
      font-size:30px;
      line-height:1;
      margin-bottom:8px;
      color:var(--secondary);
    }
    .stat-mini span{font-size:13px;color:rgba(255,255,255,.78)}
    .league-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:22px;
    }
    .league-card{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      border:1px solid var(--border);
      background:#fff;
      box-shadow:0 10px 30px rgba(18,64,42,.07);
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
    }
    .league-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
      border-color:var(--border-strong);
    }
    .league-card img{
      width:100%;
      height:180px;
      object-fit:cover;
    }
    .league-card-body{padding:20px}
    .league-label{
      display:inline-flex;
      padding:6px 10px;
      border-radius:999px;
      background:rgba(14,143,90,.10);
      color:var(--primary-deep);
      font-weight:850;
      font-size:13px;
      margin-bottom:12px;
    }
    .league-card h3{
      font-size:21px;
      line-height:1.35;
      font-weight:900;
      margin:0 0 10px;
    }
    .league-card p{color:var(--muted);margin:0 0 16px}
    .league-card .card-foot{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
      font-size:14px;
      color:var(--light-muted);
      border-top:1px solid rgba(14,143,90,.10);
      padding-top:14px;
    }
    .feature-wrap{
      display:grid;
      grid-template-columns:1.16fr .84fr;
      gap:24px;
      align-items:stretch;
    }
    .headline-card{
      min-height:460px;
      border-radius:var(--radius-xl);
      overflow:hidden;
      position:relative;
      background:url('/assets/images/coverpic/cover-4.webp') center/cover no-repeat;
      box-shadow:var(--shadow);
    }
    .headline-card::before{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(16,35,28,.08),rgba(16,35,28,.86));
    }
    .headline-content{
      position:absolute;
      left:28px;
      right:28px;
      bottom:28px;
      color:#fff;
    }
    .headline-content .league-label{
      background:rgba(215,247,91,.92);
      color:#10231C;
    }
    .headline-content h2{
      font-size:32px;
      line-height:1.24;
      font-weight:950;
      margin:6px 0 12px;
    }
    .headline-content p{
      color:rgba(255,255,255,.84);
      margin:0;
      font-size:16px;
    }
    .side-list{
      display:grid;
      gap:14px;
    }
    .side-item{
      display:grid;
      grid-template-columns:96px 1fr;
      gap:14px;
      padding:14px;
      border-radius:22px;
      background:#fff;
      border:1px solid var(--border);
      box-shadow:0 10px 24px rgba(18,64,42,.06);
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
    }
    .side-item:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow);
      border-color:var(--border-strong);
    }
    .side-item img{
      width:96px;
      height:86px;
      border-radius:18px;
      object-fit:cover;
    }
    .side-item h3{
      font-size:17px;
      font-weight:900;
      line-height:1.36;
      margin:0 0 6px;
    }
    .side-item p{
      font-size:14px;
      color:var(--muted);
      margin:0;
      line-height:1.55;
    }
    .rhythm-section{
      background:linear-gradient(180deg,rgba(238,246,236,.70),rgba(255,255,255,.70));
      border-top:1px solid rgba(14,143,90,.10);
      border-bottom:1px solid rgba(14,143,90,.10);
    }
    .rhythm-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      margin-top:28px;
    }
    .rhythm-card{
      padding:22px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:0 12px 30px rgba(18,64,42,.07);
      transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
    }
    .rhythm-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:var(--border-strong);
    }
    .rhythm-num{
      width:44px;
      height:44px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:950;
      color:#10231C;
      background:var(--badge-gradient);
      margin-bottom:16px;
    }
    .rhythm-card h3{
      font-size:19px;
      font-weight:900;
      margin:0 0 10px;
    }
    .rhythm-card p{
      color:var(--muted);
      margin:0;
      font-size:15px;
    }
    .data-layout{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:24px;
      align-items:start;
    }
    .rank-panel,.explain-panel{
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      padding:24px;
    }
    .rank-panel h2,.explain-panel h2{
      font-size:26px;
      font-weight:900;
      margin:0 0 18px;
    }
    .rank-row{
      display:grid;
      grid-template-columns:38px 1fr auto;
      gap:12px;
      align-items:center;
      padding:14px 0;
      border-bottom:1px solid rgba(14,143,90,.10);
    }
    .rank-row:last-child{border-bottom:0}
    .rank-no{
      width:32px;
      height:32px;
      border-radius:12px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(14,143,90,.10);
      color:var(--primary-deep);
      font-weight:900;
    }
    .rank-row:nth-child(1) .rank-no,.rank-row:nth-child(2) .rank-no,.rank-row:nth-child(3) .rank-no{
      background:var(--badge-gradient);
      color:#10231C;
    }
    .rank-name{font-weight:900}
    .rank-desc{font-size:13px;color:var(--muted)}
    .rank-value{
      font-size:20px;
      font-weight:950;
      color:var(--primary-deep);
      font-variant-numeric:tabular-nums;
    }
    .explain-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
    }
    .explain-card{
      border-radius:20px;
      background:linear-gradient(135deg,#F7FAF4,#FFFFFF);
      border:1px solid var(--border);
      padding:18px;
    }
    .explain-card strong{
      display:block;
      font-size:26px;
      color:var(--primary-deep);
      line-height:1;
      margin-bottom:8px;
    }
    .explain-card span{color:var(--muted);font-size:14px}
    .focus-banner{
      border-radius:var(--radius-xl);
      background:var(--night-gradient);
      color:#fff;
      padding:34px;
      position:relative;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .focus-banner::before{
      content:"";
      position:absolute;
      width:340px;
      height:340px;
      right:-110px;
      bottom:-160px;
      border-radius:50%;
      background:rgba(215,247,91,.18);
    }
    .focus-banner::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(90deg,rgba(16,35,28,.12),rgba(16,35,28,.88)),url('/assets/images/coverpic/cover-8.webp') right center/auto 100% no-repeat;
      opacity:.45;
    }
    .focus-content{position:relative;z-index:1;max-width:720px}
    .focus-content h2{
      font-size:32px;
      line-height:1.25;
      font-weight:950;
      margin:12px 0 12px;
    }
    .focus-content p{color:rgba(255,255,255,.82);margin:0 0 22px}
    .focus-tags{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
    .focus-tags span{
      padding:8px 12px;
      border-radius:999px;
      color:#10231C;
      background:rgba(215,247,91,.92);
      font-weight:850;
      font-size:13px;
    }
    .accordion{
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid var(--border)!important;
      border-radius:22px!important;
      overflow:hidden;
      background:#fff;
      box-shadow:0 8px 22px rgba(18,64,42,.05);
    }
    .accordion-button{
      padding:20px 22px;
      font-weight:900;
      color:var(--text);
      background:#fff;
      box-shadow:none!important;
      line-height:1.45;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary-deep);
      background:linear-gradient(135deg,rgba(215,247,91,.22),rgba(14,143,90,.06));
      border-left:5px solid var(--primary);
    }
    .accordion-button:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(14,143,90,.12)!important;
    }
    .accordion-body{
      color:var(--muted);
      padding:4px 22px 22px 27px;
    }
    .cta-panel{
      border-radius:var(--radius-xl);
      padding:40px;
      background:
        radial-gradient(circle at 18% 20%,rgba(215,247,91,.26),transparent 32%),
        linear-gradient(135deg,#FFFFFF,#EEF6EC);
      border:1px solid var(--border);
      box-shadow:var(--shadow);
      display:grid;
      grid-template-columns:1fr auto;
      gap:26px;
      align-items:center;
    }
    .cta-panel h2{
      font-size:32px;
      font-weight:950;
      line-height:1.25;
      margin:0 0 10px;
    }
    .cta-panel p{
      color:var(--muted);
      margin:0;
      max-width:720px;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }
    .site-footer{
      background:#0D2019;
      color:rgba(255,255,255,.78);
      padding:58px 0 26px;
      margin-top:34px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.25fr .9fr .9fr;
      gap:42px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      font-size:24px;
      font-weight:950;
      color:#fff;
      margin-bottom:12px;
    }
    .footer-text{
      color:rgba(255,255,255,.68);
      margin:0;
      max-width:520px;
    }
    .footer-title{
      font-weight:900;
      color:#fff;
      margin-bottom:14px;
    }
    .footer-links{
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.70);
      width:max-content;
    }
    .footer-links a:hover{
      color:var(--secondary);
      transform:translateX(3px);
    }
    .footer-bottom{
      text-align:center;
      padding-top:24px;
      font-size:14px;
      color:rgba(255,255,255,.62);
    }
    .record-line{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:10px 18px;
      margin-bottom:10px;
    }
    .record-links{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:8px;
    }
    .record-links a{color:rgba(255,255,255,.66)}
    .record-links a:hover{color:var(--secondary)}
    @media (max-width:1199px){
      .brand-wrap{flex-wrap:wrap}
      .site-tagline{order:3;flex-basis:100%;text-align:left}
      .search-box{width:220px}
      .hero-copy h1{font-size:44px}
      .league-grid{grid-template-columns:repeat(2,1fr)}
      .rhythm-grid{grid-template-columns:repeat(2,1fr)}
      .feature-wrap,.data-layout{grid-template-columns:1fr}
      .headline-card{min-height:410px}
      .cta-panel{grid-template-columns:1fr}
      .cta-actions{justify-content:flex-start}
    }
    @media (max-width:767px){
      body{font-size:16px}
      .section{padding:54px 0}
      .section-tight{padding:46px 0}
      .brand-row{padding:12px 0}
      .brand-wrap{gap:12px}
      .brand-logo{font-size:21px}
      .logo-mark{width:38px;height:38px;border-radius:14px}
      .site-tagline{font-size:13px}
      .header-actions{width:100%;justify-content:space-between}
      .search-box{width:100%;flex:1}
      .header-actions .btn-pill{display:none}
      .channel-nav{padding:9px 0;gap:7px}
      .channel-nav a{font-size:14px;padding:9px 13px}
      .league-hero{padding:54px 0 48px}
      .hero-copy h1{font-size:34px;letter-spacing:-.5px}
      .hero-copy p{font-size:16px}
      .hero-actions .btn-pill{width:100%}
      .hero-panel{padding:16px;border-radius:26px}
      .board-row{grid-template-columns:1fr;padding:14px}
      .board-score{font-size:22px}
      .stat-strip{grid-template-columns:1fr}
      .section-title{font-size:27px}
      .section-lead{font-size:16px}
      .league-grid{grid-template-columns:1fr}
      .league-card img{height:190px}
      .headline-card{min-height:420px}
      .headline-content{left:20px;right:20px;bottom:22px}
      .headline-content h2{font-size:26px}
      .side-item{grid-template-columns:84px 1fr}
      .side-item img{width:84px;height:82px}
      .rhythm-grid{grid-template-columns:1fr}
      .rank-panel,.explain-panel{padding:20px;border-radius:26px}
      .explain-grid{grid-template-columns:1fr}
      .rank-row{grid-template-columns:34px 1fr auto}
      .focus-banner{padding:26px;border-radius:26px}
      .focus-content h2,.cta-panel h2{font-size:26px}
      .cta-panel{padding:26px;border-radius:26px}
      .cta-actions .btn-pill{width:100%}
      .footer-grid{grid-template-columns:1fr;gap:28px}
    }
    @media (max-width:520px){
      .container{padding-left:18px;padding-right:18px}
      .hero-copy h1{font-size:31px}
      .panel-top{align-items:flex-start;flex-direction:column}
      .league-card-body{padding:18px}
      .side-item{grid-template-columns:1fr}
      .side-item img{width:100%;height:150px}
      .rank-value{font-size:18px}
      .record-line,.record-links{font-size:13px}
    }

/* roulang page: category3 */
:root {
      --primary: #0E8F5A;
      --primary-dark: #087A4A;
      --primary-deep: #0A5F3C;
      --secondary: #D7F75B;
      --accent: #FF7A3D;
      --text: #10231C;
      --muted: #66766D;
      --soft: #F7FAF4;
      --soft-green: #EEF6EC;
      --white: #FFFFFF;
      --border: rgba(14, 143, 90, .14);
      --border-strong: rgba(14, 143, 90, .28);
      --shadow: 0 16px 40px rgba(18, 64, 42, .10);
      --shadow-strong: 0 22px 54px rgba(18, 64, 42, .16);
      --radius-sm: 14px;
      --radius: 22px;
      --radius-lg: 32px;
      --container: 1200px;
      --gradient: linear-gradient(135deg, #0E8F5A, #15B77A);
      --light-gradient: linear-gradient(135deg, rgba(215, 247, 91, .95), rgba(120, 224, 143, .92));
    }

    * { box-sizing: border-box; }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 10% 8%, rgba(215, 247, 91, .18), transparent 26%),
        radial-gradient(circle at 90% 18%, rgba(14, 143, 90, .10), transparent 28%),
        linear-gradient(180deg, #FBFDF8 0%, var(--soft) 48%, #FFFFFF 100%);
      line-height: 1.75;
      font-size: 16px;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
    }

    a:hover {
      color: var(--primary);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    .container {
      max-width: var(--container);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 10px 30px rgba(16, 35, 28, .05);
    }

    .brand-row {
      padding: 16px 0 14px;
    }

    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 22px;
      justify-content: space-between;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -.5px;
      white-space: nowrap;
      color: var(--text);
    }

    .brand-logo:hover {
      color: var(--primary-dark);
      transform: translateY(-1px);
    }

    .logo-mark {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.95) 0 13%, transparent 14%),
        linear-gradient(135deg, var(--primary-deep), var(--primary), #16C784);
      position: relative;
      box-shadow: inset 0 0 0 3px rgba(255,255,255,.55), 0 10px 26px rgba(14, 143, 90, .24);
      flex: 0 0 auto;
    }

    .logo-mark::before,
    .logo-mark::after {
      content: "";
      position: absolute;
      background: rgba(255,255,255,.78);
      left: 9px;
      right: 9px;
      height: 2px;
      top: 20px;
      transform: rotate(28deg);
      border-radius: 999px;
    }

    .logo-mark::after {
      transform: rotate(-28deg);
    }

    .site-tagline {
      color: var(--muted);
      font-size: 14px;
      flex: 1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 0 0 auto;
    }

    .search-box {
      position: relative;
    }

    .search-box input {
      width: 240px;
      height: 44px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: #fff;
      padding: 0 18px 0 42px;
      outline: none;
      color: var(--text);
      box-shadow: 0 8px 24px rgba(18, 64, 42, .05);
    }

    .search-box::before {
      content: "⌕";
      position: absolute;
      left: 17px;
      top: 50%;
      transform: translateY(-52%);
      color: var(--primary);
      font-size: 20px;
      z-index: 1;
    }

    .search-box input:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 4px rgba(14, 143, 90, .12);
    }

    .btn-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 11px 20px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      white-space: nowrap;
      line-height: 1.2;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    }

    .btn-primary-custom {
      background: var(--gradient);
      color: #fff;
      box-shadow: 0 12px 26px rgba(14, 143, 90, .25);
    }

    .btn-primary-custom:hover,
    .btn-primary-custom:focus {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(14, 143, 90, .32);
    }

    .btn-secondary-custom {
      background: #fff;
      color: var(--primary-dark);
      border-color: var(--border-strong);
    }

    .btn-secondary-custom:hover,
    .btn-secondary-custom:focus {
      background: var(--soft-green);
      color: var(--primary-deep);
      transform: translateY(-2px);
      border-color: rgba(14, 143, 90, .42);
    }

    .channel-row {
      border-top: 1px solid rgba(14, 143, 90, .08);
      background: linear-gradient(180deg, rgba(238, 246, 236, .72), rgba(255,255,255,.86));
    }

    .channel-nav {
      display: flex;
      align-items: center;
      gap: 8px;
      overflow-x: auto;
      padding: 10px 0;
      scrollbar-width: none;
    }

    .channel-nav::-webkit-scrollbar {
      display: none;
    }

    .channel-nav a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 16px;
      border-radius: 999px;
      color: #365247;
      font-weight: 800;
      font-size: 15px;
      white-space: nowrap;
      border: 1px solid transparent;
      position: relative;
    }

    .channel-nav a:hover {
      color: var(--primary-deep);
      background: rgba(14, 143, 90, .08);
      border-color: rgba(14, 143, 90, .10);
    }

    .channel-nav a.active {
      color: #fff;
      background: var(--gradient);
      box-shadow: 0 10px 22px rgba(14, 143, 90, .24);
    }

    .section {
      padding: 74px 0;
    }

    .section-tight {
      padding: 58px 0;
    }

    .hero-profile {
      position: relative;
      padding: 78px 0 56px;
      overflow: hidden;
    }

    .hero-profile::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(110deg, rgba(247,250,244,.98) 0%, rgba(247,250,244,.86) 42%, rgba(8,122,74,.08) 100%),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      z-index: -2;
    }

    .hero-profile::after {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -180px;
      top: 70px;
      background: radial-gradient(circle, rgba(215,247,91,.30), transparent 65%);
      z-index: -1;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      color: var(--primary-deep);
      background: rgba(215,247,91,.55);
      border: 1px solid rgba(14,143,90,.16);
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 18px;
    }

    .eyebrow::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--primary);
      box-shadow: 0 0 0 5px rgba(14,143,90,.12);
    }

    h1, h2, h3 {
      color: var(--text);
      font-weight: 900;
      letter-spacing: -.6px;
    }

    h1 {
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.16;
      margin: 0 0 18px;
    }

    h2 {
      font-size: clamp(25px, 3vw, 36px);
      line-height: 1.22;
      margin-bottom: 12px;
    }

    h3 {
      font-size: 20px;
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .lead {
      color: #52645B;
      font-size: 18px;
      line-height: 1.85;
      margin-bottom: 26px;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin: 26px 0 24px;
    }

    .profile-hero-card {
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.92);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-strong);
      padding: 18px;
      position: relative;
      overflow: hidden;
    }

    .profile-hero-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto 0;
      height: 120px;
      background: linear-gradient(135deg, rgba(14,143,90,.14), rgba(215,247,91,.20));
      pointer-events: none;
    }

    .hero-img {
      position: relative;
      height: 250px;
      border-radius: 26px;
      overflow: hidden;
      margin-bottom: 16px;
    }

    .hero-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 36%, rgba(16,35,28,.72));
    }

    .hero-img-label {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 16px;
      color: #fff;
      z-index: 1;
    }

    .hero-img-label strong {
      display: block;
      font-size: 22px;
      line-height: 1.25;
      margin-bottom: 4px;
    }

    .hero-img-label span {
      color: rgba(255,255,255,.82);
      font-size: 14px;
    }

    .mini-board {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      position: relative;
      z-index: 1;
    }

    .mini-board .item {
      border-radius: 18px;
      padding: 14px 12px;
      background: var(--soft);
      border: 1px solid var(--border);
      text-align: center;
    }

    .mini-board b {
      display: block;
      font-size: 24px;
      line-height: 1;
      color: var(--primary-deep);
      margin-bottom: 8px;
    }

    .mini-board span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .stat-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .stat-badge {
      border-radius: 20px;
      padding: 16px 18px;
      background: rgba(255,255,255,.78);
      border: 1px solid var(--border);
      box-shadow: 0 10px 26px rgba(18,64,42,.06);
    }

    .stat-badge strong {
      display: block;
      font-size: 26px;
      color: var(--primary-deep);
      line-height: 1.1;
      margin-bottom: 5px;
    }

    .stat-badge span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 32px;
    }

    .section-head.center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-head p {
      color: var(--muted);
      margin: 0;
      font-size: 17px;
    }

    .profile-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 22px;
    }

    .card-custom {
      border: 1px solid var(--border);
      border-radius: var(--radius);
      background: rgba(255,255,255,.92);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
      height: 100%;
    }

    .card-custom:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-strong);
      border-color: rgba(14,143,90,.30);
    }

    .feature-card {
      padding: 28px;
      background:
        linear-gradient(180deg, rgba(255,255,255,.96), rgba(238,246,236,.72)),
        radial-gradient(circle at 80% 0%, rgba(215,247,91,.22), transparent 34%);
    }

    .feature-card .tag-list,
    .tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 18px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(14,143,90,.08);
      color: var(--primary-deep);
      font-size: 13px;
      font-weight: 800;
      border: 1px solid rgba(14,143,90,.12);
    }

    .team-table-card {
      padding: 22px;
    }

    .team-table {
      width: 100%;
      border-collapse: separate;
      border-spacing: 0 10px;
    }

    .team-table th {
      color: #5C7166;
      font-size: 13px;
      font-weight: 900;
      padding: 0 12px 6px;
      white-space: nowrap;
    }

    .team-table td {
      background: var(--soft);
      padding: 13px 12px;
      border-top: 1px solid rgba(14,143,90,.10);
      border-bottom: 1px solid rgba(14,143,90,.10);
      color: var(--text);
      vertical-align: middle;
      font-weight: 700;
    }

    .team-table td:first-child {
      border-left: 1px solid rgba(14,143,90,.10);
      border-radius: 16px 0 0 16px;
    }

    .team-table td:last-child {
      border-right: 1px solid rgba(14,143,90,.10);
      border-radius: 0 16px 16px 0;
      color: var(--primary-deep);
      font-weight: 900;
    }

    .club-name {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .club-dot {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--gradient);
      box-shadow: inset 0 0 0 5px rgba(255,255,255,.38);
      flex: 0 0 auto;
    }

    .info-panels {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .info-panel {
      padding: 24px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: #fff;
      box-shadow: var(--shadow);
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
    }

    .info-panel:hover {
      transform: translateY(-4px);
      border-color: rgba(14,143,90,.30);
      box-shadow: var(--shadow-strong);
    }

    .panel-icon {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      background: var(--light-gradient);
      color: var(--primary-deep);
      font-size: 24px;
      font-weight: 900;
    }

    .info-panel p {
      color: var(--muted);
      margin: 0;
    }

    .visual-band {
      border-radius: var(--radius-lg);
      background:
        linear-gradient(135deg, rgba(10,95,60,.94), rgba(14,143,90,.88)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      color: #fff;
      overflow: hidden;
      position: relative;
      padding: 36px;
      box-shadow: var(--shadow-strong);
    }

    .visual-band::after {
      content: "";
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      right: -80px;
      top: -90px;
      background: rgba(215,247,91,.22);
    }

    .visual-band h2,
    .visual-band h3 {
      color: #fff;
    }

    .visual-band p {
      color: rgba(255,255,255,.82);
      margin-bottom: 0;
    }

    .process-list {
      display: grid;
      gap: 14px;
      margin-top: 26px;
      position: relative;
      z-index: 1;
    }

    .process-item {
      display: grid;
      grid-template-columns: 56px 1fr;
      gap: 16px;
      align-items: start;
      padding: 16px;
      border-radius: 20px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.18);
      backdrop-filter: blur(8px);
    }

    .process-num {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: var(--secondary);
      color: var(--primary-deep);
      display: grid;
      place-items: center;
      font-weight: 1000;
      font-size: 20px;
    }

    .compare-card {
      padding: 26px;
    }

    .compare-list {
      display: grid;
      gap: 14px;
      margin-top: 20px;
    }

    .compare-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 15px;
      border-radius: 18px;
      background: var(--soft);
      border: 1px solid rgba(14,143,90,.10);
    }

    .check {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: grid;
      place-items: center;
      font-size: 14px;
      font-weight: 900;
      flex: 0 0 auto;
      margin-top: 2px;
    }

    .compare-item strong {
      display: block;
      margin-bottom: 2px;
      font-weight: 900;
    }

    .compare-item span {
      color: var(--muted);
      font-size: 14px;
    }

    .image-card {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      min-height: 420px;
      box-shadow: var(--shadow-strong);
    }

    .image-card img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
    }

    .image-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 32%, rgba(16,35,28,.82));
    }

    .image-caption {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      z-index: 1;
      color: #fff;
    }

    .image-caption h3 {
      color: #fff;
      font-size: 24px;
    }

    .image-caption p {
      color: rgba(255,255,255,.82);
      margin: 0;
    }

    .scenario-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .scenario-card {
      padding: 22px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background: linear-gradient(180deg, #fff, rgba(238,246,236,.70));
      min-height: 190px;
      transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    .scenario-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: var(--border-strong);
    }

    .scenario-card .small-title {
      font-weight: 900;
      color: var(--primary-deep);
      margin-bottom: 10px;
    }

    .scenario-card p {
      color: var(--muted);
      margin: 0;
      font-size: 15px;
    }

    .accordion {
      --bs-accordion-border-width: 0;
      --bs-accordion-bg: transparent;
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      border: 1px solid var(--border) !important;
      border-radius: 20px !important;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 12px 28px rgba(18,64,42,.06);
    }

    .accordion-button {
      padding: 20px 22px;
      font-weight: 900;
      color: var(--text);
      background: #fff;
      box-shadow: none !important;
      line-height: 1.45;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary-deep);
      background: linear-gradient(90deg, rgba(215,247,91,.26), rgba(238,246,236,.90));
      border-left: 5px solid var(--primary);
    }

    .accordion-button:focus {
      box-shadow: 0 0 0 4px rgba(14,143,90,.12) !important;
      border-color: transparent;
    }

    .accordion-body {
      padding: 0 22px 22px;
      color: var(--muted);
      line-height: 1.9;
    }

    .cta-block {
      border-radius: var(--radius-lg);
      padding: 40px;
      background:
        radial-gradient(circle at 16% 20%, rgba(215,247,91,.30), transparent 30%),
        linear-gradient(135deg, #0A5F3C, #0E8F5A 58%, #18BA7C);
      color: #fff;
      box-shadow: var(--shadow-strong);
      overflow: hidden;
      position: relative;
    }

    .cta-block::after {
      content: "";
      position: absolute;
      right: -70px;
      bottom: -90px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      border: 42px solid rgba(255,255,255,.10);
    }

    .cta-block h2 {
      color: #fff;
    }

    .cta-block p {
      color: rgba(255,255,255,.82);
      margin: 0;
    }

    .cta-form {
      display: flex;
      gap: 12px;
      position: relative;
      z-index: 1;
    }

    .cta-form input {
      flex: 1;
      min-height: 50px;
      border: 1px solid rgba(255,255,255,.34);
      border-radius: 999px;
      padding: 0 18px;
      color: #fff;
      background: rgba(255,255,255,.13);
      outline: none;
    }

    .cta-form input::placeholder {
      color: rgba(255,255,255,.70);
    }

    .cta-form input:focus {
      border-color: var(--secondary);
      box-shadow: 0 0 0 4px rgba(215,247,91,.18);
    }

    .cta-form .btn-pill {
      background: var(--secondary);
      color: var(--primary-deep);
      border-color: transparent;
    }

    .cta-form .btn-pill:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 32px rgba(0,0,0,.18);
      color: var(--primary-deep);
    }

    .site-footer {
      background: #0D2119;
      color: rgba(255,255,255,.82);
      padding: 58px 0 28px;
      margin-top: 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr .9fr .9fr;
      gap: 36px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .footer-brand {
      font-size: 24px;
      font-weight: 1000;
      color: #fff;
      margin-bottom: 14px;
    }

    .footer-text {
      color: rgba(255,255,255,.68);
      margin: 0;
      max-width: 520px;
    }

    .footer-title {
      color: #fff;
      font-weight: 900;
      margin-bottom: 14px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255,255,255,.70);
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--secondary);
      transform: translateX(3px);
    }

    .footer-bottom {
      padding-top: 24px;
      text-align: center;
      font-size: 14px;
      color: rgba(255,255,255,.62);
    }

    .record-line,
    .record-links {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px 16px;
      margin-bottom: 10px;
    }

    .record-links a {
      color: rgba(255,255,255,.68);
    }

    .record-links a:hover {
      color: var(--secondary);
    }

    @media (max-width: 1199px) {
      .search-box input {
        width: 200px;
      }

      .info-panels {
        grid-template-columns: repeat(2, 1fr);
      }

      .scenario-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 991px) {
      .brand-wrap {
        flex-wrap: wrap;
      }

      .site-tagline {
        order: 3;
        flex-basis: 100%;
      }

      .header-actions {
        margin-left: auto;
      }

      .profile-grid {
        grid-template-columns: 1fr;
      }

      .stat-strip {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid > div:first-child {
        grid-column: 1 / -1;
      }
    }

    @media (max-width: 767px) {
      body {
        font-size: 15px;
      }

      .brand-row {
        padding: 12px 0;
      }

      .brand-wrap {
        gap: 12px;
      }

      .brand-logo {
        font-size: 21px;
      }

      .logo-mark {
        width: 38px;
        height: 38px;
      }

      .header-actions {
        width: 100%;
      }

      .search-box {
        flex: 1;
      }

      .search-box input {
        width: 100%;
        height: 44px;
      }

      .btn-pill {
        min-height: 44px;
        padding: 10px 15px;
        font-size: 14px;
      }

      .hero-profile {
        padding: 52px 0 40px;
      }

      .section {
        padding: 52px 0;
      }

      .section-tight {
        padding: 44px 0;
      }

      .lead {
        font-size: 16px;
      }

      .stat-strip,
      .mini-board,
      .info-panels,
      .scenario-grid {
        grid-template-columns: 1fr;
      }

      .profile-hero-card,
      .feature-card,
      .team-table-card,
      .visual-band,
      .cta-block {
        border-radius: 24px;
        padding: 22px;
      }

      .hero-img,
      .hero-img img {
        height: 220px;
      }

      .team-table {
        min-width: 520px;
      }

      .table-scroll {
        overflow-x: auto;
        padding-bottom: 4px;
      }

      .process-item {
        grid-template-columns: 46px 1fr;
      }

      .process-num {
        width: 42px;
        height: 42px;
        border-radius: 14px;
      }

      .image-card,
      .image-card img {
        min-height: 320px;
      }

      .cta-form {
        flex-direction: column;
      }

      .cta-form input,
      .cta-form .btn-pill {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: 31px;
      }

      h2 {
        font-size: 25px;
      }

      .channel-nav a {
        padding: 8px 13px;
        font-size: 14px;
      }

      .brand-logo span:last-child {
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .header-actions {
        align-items: stretch;
      }

      .header-actions .btn-primary-custom {
        display: none;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn-pill {
        width: 100%;
      }

      .stat-badge strong {
        font-size: 23px;
      }

      .footer-bottom {
        font-size: 13px;
      }
    }

/* roulang page: category4 */
:root{
      --primary:#0E8F5A;
      --primary-dark:#087A4A;
      --primary-deep:#0A5F3C;
      --primary-soft:#E8F7EF;
      --accent:#D7F75B;
      --accent-warm:#F2C94C;
      --orange:#FF7A3D;
      --danger:#E94B4B;
      --text:#10231C;
      --text-2:#42544B;
      --muted:#6E8077;
      --bg:#F7FAF4;
      --bg-2:#EEF6EC;
      --white:#FFFFFF;
      --border:rgba(14,143,90,.14);
      --border-strong:rgba(14,143,90,.25);
      --shadow:0 16px 40px rgba(18,64,42,.10);
      --shadow-lg:0 24px 70px rgba(18,64,42,.16);
      --radius-sm:14px;
      --radius:22px;
      --radius-lg:32px;
      --container:1200px;
      --transition:all .24s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(215,247,91,.22), transparent 30%),
        radial-gradient(circle at 86% 16%, rgba(14,143,90,.12), transparent 34%),
        linear-gradient(180deg,#FBFDF8 0%,var(--bg) 45%,#FFFFFF 100%);
      font-size:16px;
      line-height:1.75;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:var(--transition)}
    a:hover{color:var(--primary)}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    .container{max-width:var(--container)}
    .section{padding:76px 0}
    .section-tight{padding:58px 0}
    .section-title{
      margin-bottom:28px;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:999px;
      color:var(--primary-deep);
      background:linear-gradient(135deg,rgba(215,247,91,.42),rgba(120,224,143,.24));
      border:1px solid rgba(14,143,90,.18);
      font-size:14px;
      font-weight:700;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(14,143,90,.12);
    }
    h1,h2,h3,h4{color:var(--text);font-weight:850;letter-spacing:-.03em}
    h1{font-size:50px;line-height:1.16;margin:18px 0 18px}
    h2{font-size:34px;line-height:1.25;margin:10px 0 12px}
    h3{font-size:21px;line-height:1.38;margin:0 0 10px}
    p{margin:0;color:var(--text-2)}
    .lead{font-size:18px;line-height:1.85;color:#3A4E44}
    .text-muted-custom{color:var(--muted)}
    .site-header{
      position:sticky;
      top:0;
      z-index:1020;
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(18px);
      border-bottom:1px solid rgba(14,143,90,.10);
      box-shadow:0 10px 32px rgba(16,35,28,.05);
    }
    .brand-row{padding:16px 0;border-bottom:1px solid rgba(14,143,90,.08)}
    .brand-wrap{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
    }
    .brand-logo{
      display:inline-flex;
      align-items:center;
      gap:11px;
      color:var(--text);
      font-size:24px;
      font-weight:900;
      letter-spacing:-.04em;
      white-space:nowrap;
    }
    .brand-logo:hover{color:var(--primary-deep)}
    .logo-mark{
      position:relative;
      width:42px;
      height:42px;
      border-radius:15px;
      background:linear-gradient(135deg,var(--primary),#16B978);
      box-shadow:0 12px 26px rgba(14,143,90,.24);
      overflow:hidden;
    }
    .logo-mark::before{
      content:"";
      position:absolute;
      inset:9px;
      border:2px solid rgba(255,255,255,.86);
      border-radius:50%;
    }
    .logo-mark::after{
      content:"";
      position:absolute;
      width:52px;
      height:2px;
      background:rgba(255,255,255,.72);
      transform:rotate(-30deg);
      left:-6px;
      top:20px;
    }
    .site-tagline{
      flex:1;
      color:var(--muted);
      font-size:14px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }
    .header-actions{
      display:flex;
      align-items:center;
      gap:12px;
    }
    .search-box{
      position:relative;
      width:255px;
    }
    .search-box::before{
      content:"⌕";
      position:absolute;
      left:15px;
      top:50%;
      transform:translateY(-50%);
      color:var(--primary);
      font-weight:800;
      z-index:1;
    }
    .search-box input{
      width:100%;
      height:44px;
      padding:0 14px 0 38px;
      border-radius:999px;
      border:1px solid var(--border);
      background:#F9FCF7;
      color:var(--text);
      outline:none;
      transition:var(--transition);
    }
    .search-box input::placeholder{color:#8A9A92}
    .search-box input:focus{
      border-color:rgba(14,143,90,.42);
      background:#fff;
      box-shadow:0 0 0 4px rgba(14,143,90,.10);
    }
    .btn-pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      min-height:44px;
      padding:12px 20px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:800;
      line-height:1.1;
      transition:var(--transition);
      white-space:nowrap;
    }
    .btn-primary-custom{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),#15B77A);
      box-shadow:0 12px 26px rgba(14,143,90,.22);
    }
    .btn-primary-custom:hover,.btn-primary-custom:focus{
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 18px 36px rgba(14,143,90,.30);
      filter:saturate(1.06);
    }
    .btn-secondary-custom{
      color:var(--primary-deep);
      background:#fff;
      border-color:rgba(14,143,90,.22);
      box-shadow:0 10px 22px rgba(18,64,42,.06);
    }
    .btn-secondary-custom:hover,.btn-secondary-custom:focus{
      color:var(--primary-deep);
      background:var(--primary-soft);
      transform:translateY(-2px);
      border-color:rgba(14,143,90,.36);
    }
    .channel-row{
      background:linear-gradient(90deg,rgba(238,246,236,.82),rgba(255,255,255,.82));
    }
    .channel-nav{
      display:flex;
      align-items:center;
      gap:10px;
      overflow-x:auto;
      padding:10px 0;
      scrollbar-width:none;
    }
    .channel-nav::-webkit-scrollbar{display:none}
    .channel-nav a{
      position:relative;
      flex:0 0 auto;
      padding:10px 16px;
      border-radius:999px;
      color:#31463B;
      font-size:15px;
      font-weight:800;
      border:1px solid transparent;
    }
    .channel-nav a:hover{
      color:var(--primary-deep);
      background:rgba(14,143,90,.08);
      border-color:rgba(14,143,90,.10);
    }
    .channel-nav a.active{
      color:#fff;
      background:linear-gradient(135deg,var(--primary-dark),#15B77A);
      box-shadow:0 10px 22px rgba(14,143,90,.18);
    }
    .hero{
      position:relative;
      padding:78px 0 50px;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(247,250,244,.96) 0%,rgba(247,250,244,.88) 46%,rgba(247,250,244,.45) 100%),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      z-index:-2;
    }
    .hero::after{
      content:"";
      position:absolute;
      right:-120px;
      top:40px;
      width:420px;
      height:420px;
      border-radius:50%;
      background:radial-gradient(circle,rgba(215,247,91,.36),transparent 68%);
      z-index:-1;
    }
    .hero-panel{
      padding:28px;
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.78);
      border:1px solid rgba(14,143,90,.16);
      box-shadow:var(--shadow-lg);
      backdrop-filter:blur(16px);
    }
    .hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:28px}
    .hero-tags{
      display:flex;
      flex-wrap:wrap;
      gap:10px;
      margin-top:24px;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      padding:7px 12px;
      border-radius:999px;
      background:#fff;
      border:1px solid var(--border);
      color:var(--primary-deep);
      font-size:13px;
      font-weight:800;
    }
    .feature-visual{
      position:relative;
      border-radius:var(--radius-lg);
      overflow:hidden;
      min-height:500px;
      box-shadow:var(--shadow-lg);
      border:1px solid rgba(255,255,255,.7);
      background:#0B3F2A;
    }
    .feature-visual img{
      width:100%;
      height:500px;
      object-fit:cover;
      opacity:.9;
    }
    .visual-overlay{
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(9,51,34,.12),rgba(7,47,31,.86));
      display:flex;
      flex-direction:column;
      justify-content:flex-end;
      padding:28px;
      color:#fff;
    }
    .visual-overlay h2,.visual-overlay h3{color:#fff}
    .visual-overlay p{color:rgba(255,255,255,.84)}
    .match-ribbon{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:12px;
      margin-top:18px;
    }
    .ribbon-item{
      border-radius:18px;
      padding:14px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.22);
      backdrop-filter:blur(10px);
    }
    .ribbon-item strong{
      display:block;
      font-size:22px;
      line-height:1.1;
      color:var(--accent);
    }
    .ribbon-item span{
      color:rgba(255,255,255,.82);
      font-size:13px;
    }
    .stat-row{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:26px;
    }
    .stat-badge{
      padding:18px;
      border-radius:22px;
      background:linear-gradient(135deg,rgba(215,247,91,.45),rgba(255,255,255,.85));
      border:1px solid rgba(14,143,90,.16);
    }
    .stat-badge strong{
      display:block;
      color:var(--primary-deep);
      font-size:30px;
      font-weight:900;
      line-height:1;
      margin-bottom:7px;
    }
    .stat-badge span{
      color:var(--text-2);
      font-size:13px;
      font-weight:700;
    }
    .card-custom{
      height:100%;
      border:1px solid var(--border);
      border-radius:var(--radius);
      background:rgba(255,255,255,.86);
      box-shadow:0 10px 30px rgba(18,64,42,.07);
      transition:var(--transition);
      overflow:hidden;
    }
    .card-custom:hover{
      transform:translateY(-4px);
      border-color:rgba(14,143,90,.34);
      box-shadow:var(--shadow);
    }
    .topic-strip{
      position:relative;
      padding:34px;
      border-radius:var(--radius-lg);
      background:
        linear-gradient(135deg,rgba(10,95,60,.94),rgba(14,143,90,.82)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      color:#fff;
      overflow:hidden;
    }
    .topic-strip::after{
      content:"";
      position:absolute;
      right:-60px;
      bottom:-80px;
      width:260px;
      height:260px;
      border:26px solid rgba(215,247,91,.16);
      border-radius:50%;
    }
    .topic-strip h2,.topic-strip h3{color:#fff}
    .topic-strip p{color:rgba(255,255,255,.82)}
    .topic-pill-wrap{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
    .topic-pill{
      display:inline-flex;
      padding:9px 13px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.2);
      color:#fff;
      font-weight:800;
      font-size:14px;
    }
    .cover-card img{
      width:100%;
      aspect-ratio:16/9;
      object-fit:cover;
    }
    .cover-card .card-body{padding:22px}
    .meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:12px;
      color:var(--muted);
      font-size:13px;
      font-weight:700;
    }
    .meta .dot{
      width:5px;
      height:5px;
      background:var(--primary);
      border-radius:50%;
    }
    .journey{
      position:relative;
      display:grid;
      grid-template-columns:1.1fr .9fr;
      gap:24px;
      align-items:stretch;
    }
    .journey-main{
      padding:30px;
      border-radius:var(--radius-lg);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:var(--shadow);
    }
    .journey-list{
      display:grid;
      gap:14px;
      margin-top:24px;
    }
    .journey-step{
      display:grid;
      grid-template-columns:54px 1fr;
      gap:16px;
      align-items:flex-start;
      padding:18px;
      border-radius:22px;
      background:#F9FCF7;
      border:1px solid rgba(14,143,90,.10);
      transition:var(--transition);
    }
    .journey-step:hover{
      background:#fff;
      border-color:rgba(14,143,90,.28);
      transform:translateX(3px);
    }
    .step-num{
      width:54px;
      height:54px;
      border-radius:18px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,var(--primary),#15B77A);
      color:#fff;
      font-size:20px;
      font-weight:900;
      box-shadow:0 12px 24px rgba(14,143,90,.20);
    }
    .journey-side{
      border-radius:var(--radius-lg);
      overflow:hidden;
      min-height:100%;
      position:relative;
      background:#0B3F2A;
      box-shadow:var(--shadow);
    }
    .journey-side img{
      width:100%;
      height:100%;
      min-height:520px;
      object-fit:cover;
      opacity:.86;
    }
    .side-caption{
      position:absolute;
      inset:auto 22px 22px 22px;
      padding:20px;
      border-radius:24px;
      background:rgba(255,255,255,.88);
      backdrop-filter:blur(14px);
      border:1px solid rgba(255,255,255,.8);
    }
    .side-caption p{font-size:14px}
    .scenario-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
    }
    .scenario-card{
      padding:22px;
      border-radius:var(--radius);
      background:#fff;
      border:1px solid var(--border);
      min-height:210px;
      transition:var(--transition);
    }
    .scenario-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow);
      border-color:var(--border-strong);
    }
    .scenario-icon{
      width:48px;
      height:48px;
      border-radius:17px;
      background:linear-gradient(135deg,rgba(215,247,91,.72),rgba(120,224,143,.45));
      display:flex;
      align-items:center;
      justify-content:center;
      color:var(--primary-deep);
      font-weight:950;
      font-size:20px;
      margin-bottom:16px;
    }
    .dark-board{
      border-radius:var(--radius-lg);
      padding:32px;
      background:linear-gradient(135deg,#10231C,#0A5F3C);
      color:#fff;
      box-shadow:var(--shadow-lg);
      position:relative;
      overflow:hidden;
    }
    .dark-board::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px),
        linear-gradient(0deg,rgba(255,255,255,.05) 1px,transparent 1px);
      background-size:36px 36px;
      opacity:.45;
    }
    .dark-board > *{position:relative}
    .dark-board h2,.dark-board h3{color:#fff}
    .dark-board p{color:rgba(255,255,255,.76)}
    .board-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
      margin-top:22px;
    }
    .board-item{
      padding:18px;
      border-radius:20px;
      background:rgba(255,255,255,.10);
      border:1px solid rgba(255,255,255,.14);
    }
    .board-item strong{
      display:block;
      color:var(--accent);
      font-size:24px;
      line-height:1.1;
      margin-bottom:8px;
    }
    .insight-card{
      padding:24px;
      border-radius:var(--radius);
      background:#fff;
      border:1px solid var(--border);
      box-shadow:0 10px 30px rgba(18,64,42,.06);
    }
    .insight-card ul{
      list-style:none;
      padding:0;
      margin:18px 0 0;
      display:grid;
      gap:12px;
    }
    .insight-card li{
      display:flex;
      gap:10px;
      color:var(--text-2);
    }
    .insight-card li::before{
      content:"";
      flex:0 0 auto;
      width:9px;
      height:9px;
      margin-top:10px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 5px rgba(14,143,90,.10);
    }
    .accordion{
      --bs-accordion-border-width:0;
      --bs-accordion-bg:transparent;
      display:grid;
      gap:14px;
    }
    .accordion-item{
      border:1px solid var(--border)!important;
      border-radius:22px!important;
      overflow:hidden;
      box-shadow:0 10px 24px rgba(18,64,42,.05);
      background:#fff;
    }
    .accordion-button{
      padding:20px 22px;
      font-weight:850;
      color:var(--text);
      background:#fff;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary-deep);
      background:linear-gradient(135deg,rgba(232,247,239,.98),rgba(255,255,255,.96));
      border-left:5px solid var(--primary);
    }
    .accordion-button:focus{
      border-color:rgba(14,143,90,.32);
      box-shadow:0 0 0 4px rgba(14,143,90,.12)!important;
    }
    .accordion-body{
      padding:4px 24px 22px 27px;
      color:var(--text-2);
      line-height:1.85;
    }
    .cta-box{
      position:relative;
      overflow:hidden;
      border-radius:var(--radius-lg);
      padding:42px;
      background:
        linear-gradient(135deg,rgba(14,143,90,.95),rgba(21,183,122,.86)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
      color:#fff;
      box-shadow:var(--shadow-lg);
    }
    .cta-box::after{
      content:"";
      position:absolute;
      right:-70px;
      top:-70px;
      width:230px;
      height:230px;
      border-radius:50%;
      background:rgba(215,247,91,.22);
    }
    .cta-box h2,.cta-box h3{color:#fff}
    .cta-box p{color:rgba(255,255,255,.84)}
    .subscribe-form{
      display:flex;
      gap:10px;
      padding:8px;
      border-radius:999px;
      background:rgba(255,255,255,.18);
      border:1px solid rgba(255,255,255,.28);
      backdrop-filter:blur(12px);
    }
    .subscribe-form input{
      flex:1;
      min-width:0;
      height:48px;
      padding:0 18px;
      border:0;
      outline:none;
      border-radius:999px;
      background:#fff;
      color:var(--text);
    }
    .subscribe-form input:focus{
      box-shadow:0 0 0 4px rgba(215,247,91,.24);
    }
    .subscribe-form .btn-pill{
      background:var(--accent);
      color:#17311F;
      box-shadow:none;
      border:0;
    }
    .subscribe-form .btn-pill:hover{
      transform:translateY(-1px);
      background:#E3FF78;
      color:#17311F;
    }
    .site-footer{
      margin-top:20px;
      background:#0D2119;
      color:rgba(255,255,255,.78);
      padding:58px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.4fr .9fr .9fr;
      gap:42px;
      padding-bottom:34px;
      border-bottom:1px solid rgba(255,255,255,.12);
    }
    .footer-brand{
      color:#fff;
      font-size:24px;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-text{
      color:rgba(255,255,255,.68);
      max-width:520px;
      line-height:1.85;
    }
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:14px;
    }
    .footer-links{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:8px 18px;
    }
    .footer-links a{
      color:rgba(255,255,255,.70);
      font-size:14px;
    }
    .footer-links a:hover{
      color:var(--accent);
      transform:translateX(2px);
    }
    .footer-bottom{
      padding-top:24px;
      text-align:center;
      color:rgba(255,255,255,.62);
      font-size:13px;
    }
    .record-line{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:10px 20px;
      margin-bottom:10px;
    }
    .record-links{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:7px;
    }
    .record-links a{color:rgba(255,255,255,.64)}
    .record-links a:hover{color:var(--accent)}
    @media (max-width:1199px){
      h1{font-size:44px}
      .search-box{width:220px}
      .scenario-grid{grid-template-columns:repeat(2,1fr)}
      .feature-visual,.feature-visual img{min-height:460px;height:460px}
    }
    @media (max-width:991px){
      .brand-wrap{align-items:flex-start;flex-wrap:wrap}
      .site-tagline{order:3;width:100%;flex:auto}
      .header-actions{margin-left:auto}
      .search-box{width:240px}
      .journey{grid-template-columns:1fr}
      .journey-side img{min-height:380px;height:380px}
      .footer-grid{grid-template-columns:1fr 1fr}
      .footer-grid>div:first-child{grid-column:1/-1}
      .stat-row{grid-template-columns:repeat(3,1fr)}
    }
    @media (max-width:767px){
      body{font-size:15px}
      .section{padding:52px 0}
      .section-tight{padding:44px 0}
      .brand-row{padding:12px 0}
      .brand-logo{font-size:21px}
      .logo-mark{width:38px;height:38px;border-radius:14px}
      .header-actions{width:100%;justify-content:space-between}
      .search-box{flex:1;width:auto}
      .header-actions .btn-pill{padding:12px 14px}
      .channel-nav a{padding:9px 13px;font-size:14px}
      .hero{padding:52px 0 34px}
      h1{font-size:34px;line-height:1.22}
      h2{font-size:27px}
      h3{font-size:19px}
      .lead{font-size:16px}
      .hero-panel{padding:22px;border-radius:26px}
      .feature-visual,.feature-visual img{min-height:420px;height:420px}
      .visual-overlay{padding:22px}
      .match-ribbon{grid-template-columns:1fr}
      .stat-row{grid-template-columns:repeat(2,1fr)}
      .topic-strip{padding:24px}
      .scenario-grid{grid-template-columns:1fr}
      .board-grid{grid-template-columns:1fr}
      .cta-box{padding:28px}
      .subscribe-form{flex-direction:column;border-radius:24px}
      .subscribe-form input{width:100%}
      .footer-grid{grid-template-columns:1fr;gap:28px}
      .footer-links{grid-template-columns:1fr 1fr}
    }
    @media (max-width:520px){
      .container{padding-left:18px;padding-right:18px}
      .site-tagline{font-size:13px;white-space:normal}
      .header-actions{flex-direction:column;align-items:stretch}
      .search-box{width:100%}
      .btn-pill{width:100%;min-height:46px}
      .hero-actions .btn-pill{width:100%}
      h1{font-size:31px}
      .stat-row{grid-template-columns:1fr}
      .journey-step{grid-template-columns:46px 1fr;padding:15px}
      .step-num{width:46px;height:46px;border-radius:16px}
      .feature-visual,.feature-visual img{min-height:390px;height:390px}
      .footer-links{grid-template-columns:1fr}
      .record-line{display:grid;gap:8px}
    }

/* roulang page: category5 */
:root{
      --primary:#0E8F5A;--primary-dark:#087A4A;--primary-deep:#0A5F3C;--accent:#D7F75B;--gold:#F2C94C;--orange:#FF7A3D;
      --text:#10231C;--muted:#61746B;--light:#F7FAF4;--soft:#EEF6EC;--white:#fff;--border:rgba(14,143,90,.14);
      --shadow:0 16px 40px rgba(18,64,42,.10);--shadow-lg:0 24px 60px rgba(18,64,42,.16);--radius:24px;--radius-lg:32px;--container:1200px;
    }
    *{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei","Noto Sans SC",Arial,sans-serif;color:var(--text);background:linear-gradient(180deg,#fbfdf8 0%,#f1f8ee 48%,#fff 100%);line-height:1.75;font-size:16px}a{color:inherit;text-decoration:none;transition:.22s ease}a:hover{color:var(--primary)}img{max-width:100%;display:block}button,input{font:inherit}.container{max-width:var(--container)}::selection{background:rgba(215,247,91,.65);color:#0b2b1d}
    .site-header{position:sticky;top:0;z-index:99;background:rgba(255,255,255,.92);backdrop-filter:blur(14px);box-shadow:0 8px 28px rgba(15,74,48,.08)}
    .brand-row{border-bottom:1px solid var(--border)}.brand-wrap{min-height:78px;display:flex;align-items:center;justify-content:space-between;gap:24px}.brand-logo{display:flex;align-items:center;gap:12px;font-weight:900;font-size:24px;color:var(--primary-deep);letter-spacing:-.5px}.logo-mark{width:42px;height:42px;border-radius:50%;background:radial-gradient(circle at 32% 28%,var(--accent) 0 18%,transparent 19%),linear-gradient(135deg,var(--primary),#15B77A);position:relative;box-shadow:0 10px 24px rgba(14,143,90,.25)}.logo-mark:after{content:"";position:absolute;inset:10px;border:2px solid rgba(255,255,255,.78);border-radius:50%;border-left-color:transparent}.site-tagline{color:var(--muted);font-size:14px;white-space:nowrap}.header-actions{display:flex;align-items:center;gap:12px}.search-box input{width:260px;height:44px;border:1px solid var(--border);border-radius:999px;padding:0 18px;background:#fff;color:var(--text);outline:none;transition:.22s ease}.search-box input:focus{border-color:rgba(14,143,90,.55);box-shadow:0 0 0 4px rgba(14,143,90,.10)}.btn-pill{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:11px 20px;border-radius:999px;font-weight:800;border:1px solid transparent;transition:.22s ease;white-space:nowrap}.btn-primary-custom{background:linear-gradient(135deg,var(--primary),#15B77A);color:#fff;box-shadow:0 14px 26px rgba(14,143,90,.22)}.btn-primary-custom:hover{color:#fff;transform:translateY(-2px);box-shadow:0 18px 34px rgba(14,143,90,.28)}.btn-secondary-custom{background:#fff;color:var(--primary-deep);border-color:rgba(14,143,90,.22)}.btn-secondary-custom:hover{background:var(--soft);transform:translateY(-2px);border-color:rgba(14,143,90,.38)}
    .channel-row{background:linear-gradient(90deg,rgba(238,246,236,.96),rgba(255,255,255,.96))}.channel-nav{display:flex;align-items:center;gap:8px;overflow-x:auto;padding:12px 0;scrollbar-width:none}.channel-nav::-webkit-scrollbar{display:none}.channel-nav a{flex:0 0 auto;padding:9px 16px;border-radius:999px;font-weight:800;font-size:15px;color:#274238;position:relative}.channel-nav a:hover{background:rgba(14,143,90,.08);color:var(--primary-deep)}.channel-nav a.active{background:linear-gradient(135deg,var(--primary),#15B77A);color:#fff;box-shadow:0 10px 24px rgba(14,143,90,.22)}
    main{overflow:hidden}.section{padding:76px 0}.section-tight{padding:56px 0}.eyebrow{display:inline-flex;align-items:center;gap:8px;padding:7px 12px;border-radius:999px;background:rgba(215,247,91,.35);color:var(--primary-deep);font-size:13px;font-weight:900;margin-bottom:16px}.hero{padding:76px 0 58px;background:radial-gradient(circle at 12% 10%,rgba(215,247,91,.45),transparent 28%),radial-gradient(circle at 88% 22%,rgba(21,183,122,.16),transparent 30%)}.hero h1{font-size:52px;line-height:1.16;font-weight:950;letter-spacing:-1.5px;margin:0 0 18px}.hero p.lead{font-size:18px;color:#43584f;max-width:660px;margin-bottom:26px}.hero-visual{position:relative;border-radius:var(--radius-lg);padding:18px;background:linear-gradient(135deg,rgba(14,143,90,.95),rgba(10,95,60,.92)),url('/assets/images/backpic/back-3.webp') center/cover;box-shadow:var(--shadow-lg);min-height:430px;color:#fff;overflow:hidden}.hero-visual:before{content:"";position:absolute;inset:0;background:linear-gradient(120deg,rgba(255,255,255,.18),transparent 42%);pointer-events:none}.score-board{position:relative;z-index:1;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.22);border-radius:26px;padding:24px;backdrop-filter:blur(10px)}.board-title{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px;font-weight:900}.live-dot{display:inline-flex;align-items:center;gap:7px;font-size:13px;color:#efffd1}.live-dot:before{content:"";width:8px;height:8px;border-radius:50%;background:var(--accent);box-shadow:0 0 0 6px rgba(215,247,91,.18)}.rank-row{display:grid;grid-template-columns:42px 1fr auto;align-items:center;gap:12px;padding:13px 0;border-top:1px solid rgba(255,255,255,.16)}.rank-no{width:34px;height:34px;border-radius:12px;background:rgba(215,247,91,.22);display:grid;place-items:center;font-weight:950}.rank-team strong{display:block;font-size:16px}.rank-team span{font-size:12px;color:rgba(255,255,255,.72)}.rank-points{font-size:24px;font-weight:950;color:var(--accent)}.hero-img-card{position:absolute;right:18px;bottom:18px;width:46%;border-radius:24px;overflow:hidden;border:1px solid rgba(255,255,255,.25);box-shadow:0 18px 38px rgba(0,0,0,.18)}.hero-img-card img{height:154px;width:100%;object-fit:cover}.stat-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:24px}.stat-badge{background:#fff;border:1px solid var(--border);border-radius:22px;padding:16px;box-shadow:0 12px 30px rgba(18,64,42,.07)}.stat-badge b{display:block;font-size:30px;line-height:1;color:var(--primary-deep);font-weight:950}.stat-badge span{font-size:13px;color:var(--muted)}
    .section-head{display:flex;justify-content:space-between;gap:24px;align-items:end;margin-bottom:28px}.section-head h2{font-size:34px;line-height:1.2;font-weight:950;margin:0}.section-head p{color:var(--muted);max-width:560px;margin:8px 0 0}.custom-card{background:rgba(255,255,255,.92);border:1px solid var(--border);border-radius:var(--radius);box-shadow:var(--shadow);transition:.22s ease;height:100%}.custom-card:hover{transform:translateY(-4px);border-color:rgba(14,143,90,.34);box-shadow:var(--shadow-lg)}.tag{display:inline-flex;align-items:center;border-radius:999px;padding:5px 10px;background:rgba(14,143,90,.09);color:var(--primary-deep);font-weight:900;font-size:12px}.table-card{padding:24px}.data-table{width:100%;border-collapse:separate;border-spacing:0 10px}.data-table th{font-size:13px;color:var(--muted);font-weight:900;padding:0 14px 8px}.data-table td{background:#fff;padding:15px 14px;border-top:1px solid var(--border);border-bottom:1px solid var(--border);vertical-align:middle}.data-table td:first-child{border-left:1px solid var(--border);border-radius:16px 0 0 16px;font-weight:950;color:var(--primary-deep)}.data-table td:last-child{border-right:1px solid var(--border);border-radius:0 16px 16px 0}.team-cell{display:flex;align-items:center;gap:10px;font-weight:900}.team-dot{width:28px;height:28px;border-radius:10px;background:linear-gradient(135deg,var(--primary),var(--accent));box-shadow:0 8px 18px rgba(14,143,90,.18)}.trend-up{color:var(--primary);font-weight:950}.trend-hot{color:var(--orange);font-weight:950}.leader-card{overflow:hidden}.leader-card img{height:190px;width:100%;object-fit:cover}.leader-card .body{padding:22px}.leader-name{font-size:24px;font-weight:950;margin:8px 0}.metric-line{display:flex;justify-content:space-between;gap:12px;border-top:1px solid var(--border);padding-top:12px;margin-top:14px;color:var(--muted)}.metric-line b{font-size:28px;color:var(--primary-deep);line-height:1}.insight-panel{background:linear-gradient(135deg,#0A5F3C,#0E8F5A);border-radius:var(--radius-lg);padding:34px;color:#fff;position:relative;overflow:hidden}.insight-panel:after{content:"";position:absolute;width:240px;height:240px;border-radius:50%;right:-80px;top:-80px;background:rgba(215,247,91,.22)}.insight-panel h2{font-size:32px;font-weight:950;margin-bottom:14px}.insight-list{display:grid;gap:14px;margin-top:22px;position:relative;z-index:1}.insight-item{display:flex;gap:14px;padding:16px;border-radius:18px;background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.18)}.insight-num{width:34px;height:34px;display:grid;place-items:center;border-radius:12px;background:var(--accent);color:#17351f;font-weight:950;flex:0 0 auto}.mini-rank{padding:22px}.mini-rank h3{font-size:20px;font-weight:950;margin-bottom:14px}.mini-row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:13px 0;border-top:1px solid var(--border)}.mini-row:first-of-type{border-top:0}.mini-row span{color:var(--muted);font-size:14px}.mini-row b{color:var(--primary-deep)}.explain-card{padding:24px}.explain-card h3{font-size:20px;font-weight:950;margin:10px 0}.explain-card p{color:var(--muted);margin:0}.icon-box{width:46px;height:46px;border-radius:16px;background:linear-gradient(135deg,rgba(215,247,91,.65),rgba(14,143,90,.18));display:grid;place-items:center;font-weight:950;color:var(--primary-deep)}
    .compare-zone{background:var(--soft);border-top:1px solid var(--border);border-bottom:1px solid var(--border)}.compare-card{padding:26px}.progress-wrap{margin-top:18px}.progress-item{margin-bottom:18px}.progress-label{display:flex;justify-content:space-between;font-weight:900;margin-bottom:8px}.progress{height:12px;border-radius:999px;background:rgba(14,143,90,.10)}.progress-bar{background:linear-gradient(90deg,var(--primary),var(--accent));border-radius:999px}.cta-band{border-radius:var(--radius-lg);background:linear-gradient(135deg,rgba(14,143,90,.96),rgba(21,183,122,.90)),url('/assets/images/backpic/back-2.webp') center/cover;color:#fff;padding:44px;box-shadow:var(--shadow-lg);display:flex;align-items:center;justify-content:space-between;gap:24px}.cta-band h2{font-weight:950;margin:0 0 8px}.cta-band p{margin:0;color:rgba(255,255,255,.82);max-width:680px}.subscribe-form{display:flex;gap:10px;min-width:360px}.subscribe-form input{height:48px;border-radius:999px;border:1px solid rgba(255,255,255,.34);background:rgba(255,255,255,.92);padding:0 16px;outline:none;min-width:0;flex:1}.subscribe-form input:focus{box-shadow:0 0 0 4px rgba(215,247,91,.25)}.btn-light-custom{background:var(--accent);color:#17351f;border-color:transparent}.btn-light-custom:hover{color:#17351f;filter:brightness(1.03);transform:translateY(-2px)}
    .accordion{--bs-accordion-border-width:0}.accordion-item{border:1px solid var(--border)!important;border-radius:20px!important;overflow:hidden;margin-bottom:14px;background:#fff;box-shadow:0 10px 26px rgba(18,64,42,.06)}.accordion-button{font-weight:950;color:var(--text);background:#fff;padding:18px 22px}.accordion-button:not(.collapsed){color:var(--primary-deep);background:linear-gradient(90deg,rgba(215,247,91,.24),rgba(238,246,236,.5));box-shadow:none}.accordion-button:focus{box-shadow:0 0 0 4px rgba(14,143,90,.10);border-color:transparent}.accordion-body{color:var(--muted);padding:0 22px 22px}
    .site-footer{background:#0d231a;color:#dce9e1;padding:56px 0 26px}.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:34px;margin-bottom:34px}.footer-brand{font-size:24px;font-weight:950;color:#fff;margin-bottom:12px}.footer-text{color:#adc2b8;margin:0}.footer-title{font-weight:950;color:#fff;margin-bottom:12px}.footer-links{display:grid;gap:8px}.footer-links a{color:#c6d6ce;font-size:14px}.footer-links a:hover{color:var(--accent);padding-left:4px}.footer-bottom{border-top:1px solid rgba(255,255,255,.12);padding-top:22px;text-align:center;color:#abc0b6;font-size:13px}.record-line,.record-links{display:flex;justify-content:center;gap:14px;flex-wrap:wrap}.record-links{margin-top:8px}.record-links a{color:#abc0b6}.record-links a:hover{color:var(--accent)}
    @media (max-width:1024px){.brand-wrap{flex-wrap:wrap;padding:14px 0}.site-tagline{order:3;width:100%}.hero h1{font-size:42px}.hero-visual{min-height:390px}.section{padding:62px 0}.cta-band{align-items:flex-start;flex-direction:column}.subscribe-form{width:100%;min-width:0}.footer-grid{grid-template-columns:1fr 1fr}}
    @media (max-width:768px){body{font-size:15px}.header-actions{width:100%;justify-content:space-between}.search-box{flex:1}.search-box input{width:100%}.btn-primary-custom{padding-left:15px;padding-right:15px}.channel-nav a{padding:9px 14px}.hero{padding:52px 0 34px}.hero h1{font-size:34px;letter-spacing:-.6px}.hero p.lead{font-size:16px}.stat-strip{grid-template-columns:repeat(2,1fr)}.hero-img-card{position:relative;right:auto;bottom:auto;width:100%;margin-top:16px}.section-head{display:block}.section-head h2,.insight-panel h2{font-size:28px}.data-table{font-size:14px}.data-table th:nth-child(4),.data-table td:nth-child(4){display:none}.footer-grid{grid-template-columns:1fr}.cta-band{padding:28px}.subscribe-form{flex-direction:column}.subscribe-form .btn-pill{width:100%}}
    @media (max-width:520px){.brand-logo{font-size:21px}.logo-mark{width:38px;height:38px}.site-tagline{font-size:13px}.header-actions{flex-direction:column;align-items:stretch}.hero h1{font-size:31px}.stat-strip{grid-template-columns:1fr}.table-card{padding:16px;overflow-x:auto}.data-table{min-width:560px}.rank-row{grid-template-columns:36px 1fr auto}.score-board{padding:18px}.leader-card img{height:160px}.section{padding:48px 0}.section-tight{padding:42px 0}.record-line,.record-links{gap:8px}.btn-pill{min-height:46px}}

/* roulang page: category6 */
:root {
      --primary: #0E8F5A;
      --primary-dark: #087A4A;
      --primary-deep: #0A5F3C;
      --secondary: #D7F75B;
      --accent: #FF7A3D;
      --warning: #F2C94C;
      --text: #10231C;
      --muted: #5E7168;
      --light-muted: #82948B;
      --bg: #F7FAF4;
      --bg-soft: #EEF6EC;
      --white: #FFFFFF;
      --border: rgba(14, 143, 90, .14);
      --border-strong: rgba(14, 143, 90, .26);
      --shadow: 0 16px 42px rgba(18, 64, 42, .10);
      --shadow-hover: 0 22px 58px rgba(18, 64, 42, .16);
      --radius-sm: 14px;
      --radius: 22px;
      --radius-lg: 32px;
      --container: 1200px;
      --gradient: linear-gradient(135deg, #0E8F5A, #15B77A);
      --gradient-soft: linear-gradient(135deg, rgba(215, 247, 91, .34), rgba(120, 224, 143, .20));
      --dark-gradient: linear-gradient(135deg, #0A5F3C, #10231C);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 6%, rgba(215, 247, 91, .22), transparent 28%),
        radial-gradient(circle at 92% 12%, rgba(14, 143, 90, .12), transparent 26%),
        linear-gradient(180deg, #F9FCF6 0%, var(--bg) 52%, #FFFFFF 100%);
      line-height: 1.75;
      font-size: 16px;
      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;
    }

    a:hover {
      color: var(--primary);
    }

    img {
      max-width: 100%;
      display: block;
    }

    button,
    input {
      font: inherit;
    }

    ::selection {
      background: rgba(215, 247, 91, .8);
      color: var(--text);
    }

    .container {
      max-width: var(--container);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(14, 143, 90, .10);
      box-shadow: 0 10px 30px rgba(18, 64, 42, .06);
    }

    .brand-row {
      padding: 16px 0 12px;
      border-bottom: 1px solid rgba(14, 143, 90, .09);
    }

    .brand-wrap {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 22px;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 900;
      letter-spacing: -.02em;
      color: var(--text);
      white-space: nowrap;
    }

    .brand-logo:hover {
      color: var(--primary-deep);
      transform: translateY(-1px);
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-block;
      background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.88) 0 18%, transparent 19%),
        linear-gradient(45deg, transparent 44%, rgba(255,255,255,.72) 45% 55%, transparent 56%),
        var(--gradient);
      box-shadow: inset 0 0 0 3px rgba(255,255,255,.75), 0 10px 24px rgba(14,143,90,.22);
      position: relative;
    }

    .logo-mark::after {
      content: "";
      position: absolute;
      inset: 9px;
      border: 2px solid rgba(255,255,255,.85);
      border-radius: 50%;
    }

    .site-tagline {
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      min-width: 0;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      justify-content: flex-end;
    }

    .search-box {
      position: relative;
      min-width: 245px;
    }

    .search-box::before {
      content: "⌕";
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--primary);
      font-weight: 900;
      font-size: 17px;
    }

    .search-box input {
      width: 100%;
      height: 44px;
      border: 1px solid var(--border);
      background: var(--bg);
      border-radius: 999px;
      padding: 0 16px 0 40px;
      color: var(--text);
      outline: none;
      transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
    }

    .search-box input::placeholder {
      color: var(--light-muted);
    }

    .search-box input:focus {
      border-color: rgba(14, 143, 90, .52);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(14, 143, 90, .12);
    }

    .btn-pill {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 11px 20px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid transparent;
      white-space: nowrap;
      line-height: 1.2;
    }

    .btn-primary-custom {
      background: var(--gradient);
      color: #fff;
      box-shadow: 0 12px 26px rgba(14, 143, 90, .22);
    }

    .btn-primary-custom:hover,
    .btn-primary-custom:focus {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(14, 143, 90, .30);
      filter: brightness(1.03);
    }

    .btn-secondary-custom {
      background: #fff;
      color: var(--primary-deep);
      border-color: var(--border-strong);
      box-shadow: 0 12px 26px rgba(18, 64, 42, .06);
    }

    .btn-secondary-custom:hover,
    .btn-secondary-custom:focus {
      background: rgba(14, 143, 90, .08);
      color: var(--primary-deep);
      transform: translateY(-2px);
      border-color: rgba(14, 143, 90, .34);
    }

    .channel-row {
      padding: 9px 0;
      background: linear-gradient(90deg, rgba(238, 246, 236, .86), rgba(255,255,255,.88));
    }

    .channel-nav {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      scrollbar-width: none;
      padding-bottom: 1px;
    }

    .channel-nav::-webkit-scrollbar {
      display: none;
    }

    .channel-nav a {
      flex: 0 0 auto;
      padding: 9px 15px;
      border-radius: 999px;
      color: #29443A;
      font-size: 14px;
      font-weight: 800;
      position: relative;
      border: 1px solid transparent;
    }

    .channel-nav a:hover {
      background: rgba(14, 143, 90, .08);
      border-color: rgba(14, 143, 90, .12);
      color: var(--primary-deep);
    }

    .channel-nav a.active {
      color: #fff;
      background: var(--gradient);
      box-shadow: 0 10px 22px rgba(14, 143, 90, .20);
    }

    .page-hero {
      position: relative;
      padding: 74px 0 54px;
      overflow: hidden;
    }

    .page-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(247,250,244,.96), rgba(247,250,244,.70)),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
      z-index: -2;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      width: 520px;
      height: 520px;
      right: -180px;
      top: -170px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(215,247,91,.42), rgba(14,143,90,.10) 52%, transparent 70%);
      z-index: -1;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .76);
      border: 1px solid var(--border);
      color: var(--primary-deep);
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 18px;
      box-shadow: 0 10px 28px rgba(18, 64, 42, .06);
    }

    .hero-kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--secondary);
      box-shadow: 0 0 0 5px rgba(215, 247, 91, .24);
    }

    h1,
    h2,
    h3 {
      color: var(--text);
      letter-spacing: -.035em;
      line-height: 1.18;
    }

    h1 {
      font-size: clamp(32px, 5vw, 54px);
      font-weight: 950;
      margin: 0 0 18px;
    }

    h2 {
      font-size: clamp(25px, 3.2vw, 36px);
      font-weight: 950;
      margin: 0;
    }

    h3 {
      font-size: 19px;
      font-weight: 900;
      margin: 0;
    }

    .lead-text {
      color: var(--muted);
      font-size: 18px;
      line-height: 1.85;
      max-width: 720px;
      margin: 0 0 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 26px 0 0;
    }

    .hero-panel {
      background: rgba(255, 255, 255, .88);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 18px;
      box-shadow: var(--shadow);
      backdrop-filter: blur(10px);
      height: 100%;
    }

    .hero-cover {
      position: relative;
      min-height: 250px;
      border-radius: 26px;
      overflow: hidden;
      background: var(--dark-gradient);
      margin-bottom: 16px;
    }

    .hero-cover img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      opacity: .86;
    }

    .hero-cover-badge {
      position: absolute;
      left: 18px;
      bottom: 18px;
      right: 18px;
      padding: 16px;
      border-radius: 20px;
      background: rgba(16, 35, 28, .76);
      color: #fff;
      backdrop-filter: blur(12px);
    }

    .hero-cover-badge strong {
      display: block;
      font-size: 20px;
      line-height: 1.35;
      margin-bottom: 5px;
    }

    .hero-cover-badge span {
      color: rgba(255,255,255,.78);
      font-size: 13px;
    }

    .news-ticker {
      display: grid;
      gap: 10px;
    }

    .ticker-item {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
      padding: 12px 13px;
      border-radius: 16px;
      background: rgba(238, 246, 236, .78);
      border: 1px solid rgba(14, 143, 90, .10);
    }

    .ticker-item span:first-child {
      font-weight: 850;
      color: var(--text);
    }

    .ticker-item span:last-child {
      color: var(--primary-deep);
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
    }

    .section {
      padding: 74px 0;
    }

    .section-tight {
      padding: 58px 0;
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 24px;
      margin-bottom: 28px;
    }

    .section-head p {
      color: var(--muted);
      margin: 10px 0 0;
      max-width: 680px;
      line-height: 1.8;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .topic-tag {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(255,255,255,.78);
      border: 1px solid var(--border);
      color: var(--primary-deep);
      font-size: 13px;
      font-weight: 850;
    }

    .topic-tag:hover {
      background: rgba(215, 247, 91, .35);
      border-color: rgba(14, 143, 90, .28);
      transform: translateY(-2px);
    }

    .stat-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 28px;
    }

    .stat-badge {
      background: var(--gradient-soft);
      border: 1px solid rgba(14, 143, 90, .13);
      border-radius: 20px;
      padding: 16px;
    }

    .stat-badge strong {
      display: block;
      font-size: 30px;
      line-height: 1;
      color: var(--primary-deep);
      font-weight: 950;
      letter-spacing: -.04em;
      margin-bottom: 7px;
    }

    .stat-badge span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .magazine-layout {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 24px;
      align-items: stretch;
    }

    .feature-card,
    .story-card,
    .side-panel,
    .timeline-card,
    .rank-card,
    .newsletter-card {
      background: rgba(255, 255, 255, .88);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
    }

    .feature-card:hover,
    .story-card:hover,
    .side-panel:hover,
    .timeline-card:hover,
    .rank-card:hover,
    .newsletter-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(14, 143, 90, .30);
    }

    .feature-img {
      position: relative;
      height: 360px;
      overflow: hidden;
    }

    .feature-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .35s ease;
    }

    .feature-card:hover .feature-img img {
      transform: scale(1.035);
    }

    .feature-img::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 26%, rgba(16, 35, 28, .82));
    }

    .feature-content {
      position: absolute;
      inset: auto 24px 24px 24px;
      z-index: 2;
      color: #fff;
    }

    .label {
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 6px 11px;
      background: rgba(215, 247, 91, .92);
      color: #173022;
      font-size: 12px;
      font-weight: 950;
      margin-bottom: 12px;
    }

    .feature-content h3 {
      color: #fff;
      font-size: 28px;
      margin-bottom: 10px;
    }

    .feature-content p {
      color: rgba(255, 255, 255, .82);
      margin: 0;
    }

    .feature-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding: 18px 22px 22px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .side-panel {
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .side-title {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding-bottom: 14px;
      border-bottom: 1px solid rgba(14,143,90,.12);
    }

    .side-title span {
      color: var(--primary-deep);
      font-weight: 900;
      font-size: 13px;
    }

    .quick-news {
      display: grid;
      gap: 13px;
    }

    .quick-item {
      display: grid;
      grid-template-columns: 76px 1fr;
      gap: 13px;
      align-items: center;
      padding: 10px;
      margin: 0 -10px;
      border-radius: 18px;
    }

    .quick-item:hover {
      background: rgba(14, 143, 90, .06);
    }

    .quick-item img {
      width: 76px;
      height: 62px;
      object-fit: cover;
      border-radius: 14px;
    }

    .quick-item strong {
      display: block;
      line-height: 1.45;
      margin-bottom: 4px;
      font-size: 15px;
    }

    .quick-item span {
      color: var(--light-muted);
      font-size: 12px;
      font-weight: 700;
    }

    .story-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .story-card {
      border-radius: 26px;
    }

    .story-card img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

    .story-body {
      padding: 20px;
    }

    .story-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      color: var(--light-muted);
      font-size: 12px;
      font-weight: 800;
      margin-bottom: 10px;
    }

    .story-meta .dot {
      width: 5px;
      height: 5px;
      background: var(--primary);
      border-radius: 50%;
    }

    .story-body h3 {
      margin-bottom: 9px;
      font-size: 18px;
    }

    .story-body p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .deep-section {
      background:
        radial-gradient(circle at 16% 20%, rgba(215, 247, 91, .22), transparent 30%),
        linear-gradient(135deg, #0A5F3C, #10231C);
      color: #fff;
      border-radius: 0;
      position: relative;
      overflow: hidden;
    }

    .deep-section h2,
    .deep-section h3 {
      color: #fff;
    }

    .deep-section .section-head p {
      color: rgba(255,255,255,.74);
    }

    .timeline-wrap {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 24px;
      align-items: stretch;
    }

    .timeline-intro {
      padding: 28px;
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,.10);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(10px);
    }

    .timeline-intro p {
      color: rgba(255,255,255,.78);
      margin: 14px 0 0;
    }

    .timeline-list {
      display: grid;
      gap: 14px;
    }

    .timeline-card {
      display: grid;
      grid-template-columns: 110px 1fr;
      gap: 18px;
      padding: 18px;
      background: rgba(255,255,255,.10);
      border-color: rgba(255,255,255,.16);
      box-shadow: none;
      color: #fff;
    }

    .timeline-card:hover {
      border-color: rgba(215,247,91,.46);
      box-shadow: 0 18px 42px rgba(0,0,0,.18);
    }

    .time-pill {
      height: 100%;
      min-height: 76px;
      border-radius: 20px;
      background: rgba(215, 247, 91, .16);
      border: 1px solid rgba(215, 247, 91, .30);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
    }

    .time-pill strong {
      color: var(--secondary);
      font-size: 24px;
      line-height: 1;
      font-weight: 950;
    }

    .time-pill span {
      color: rgba(255,255,255,.72);
      font-size: 12px;
      margin-top: 4px;
    }

    .timeline-card p {
      color: rgba(255,255,255,.76);
      margin: 8px 0 0;
      font-size: 14px;
      line-height: 1.75;
    }

    .analysis-grid {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 24px;
      align-items: stretch;
    }

    .rank-card {
      padding: 24px;
    }

    .rank-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .rank-item {
      display: grid;
      grid-template-columns: 38px 1fr auto;
      align-items: center;
      gap: 12px;
      padding: 13px;
      border-radius: 17px;
      background: var(--bg);
      border: 1px solid rgba(14,143,90,.09);
    }

    .rank-num {
      width: 34px;
      height: 34px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: #fff;
      color: var(--primary-deep);
      font-weight: 950;
      border: 1px solid var(--border);
    }

    .rank-item strong {
      display: block;
      font-size: 15px;
      line-height: 1.35;
    }

    .rank-item small {
      color: var(--light-muted);
      font-weight: 700;
    }

    .heat {
      color: var(--accent);
      font-weight: 950;
      white-space: nowrap;
    }

    .newsletter-card {
      position: relative;
      min-height: 100%;
      padding: 28px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.93), rgba(238,246,236,.90)),
        url("/assets/images/coverpic/cover-12.webp") center/cover no-repeat;
      overflow: hidden;
    }

    .newsletter-card::after {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      right: -70px;
      bottom: -80px;
      background: rgba(215,247,91,.36);
      z-index: 0;
    }

    .newsletter-card > * {
      position: relative;
      z-index: 1;
    }

    .newsletter-card p {
      color: var(--muted);
      max-width: 620px;
      margin: 12px 0 20px;
    }

    .subscribe-form {
      display: flex;
      gap: 12px;
      max-width: 650px;
      margin-top: 18px;
    }

    .subscribe-form input {
      flex: 1;
      min-height: 50px;
      border: 1px solid var(--border);
      border-radius: 999px;
      padding: 0 18px;
      background: rgba(255,255,255,.90);
      outline: none;
      color: var(--text);
      transition: border-color .22s ease, box-shadow .22s ease;
    }

    .subscribe-form input:focus {
      border-color: rgba(14, 143, 90, .55);
      box-shadow: 0 0 0 4px rgba(14,143,90,.12);
    }

    .accordion {
      display: grid;
      gap: 14px;
    }

    .accordion-item {
      border: 1px solid var(--border) !important;
      border-radius: 22px !important;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 10px 30px rgba(18, 64, 42, .06);
    }

    .accordion-button {
      color: var(--text);
      background: #fff;
      font-weight: 900;
      font-size: 16px;
      padding: 18px 20px;
      box-shadow: none !important;
    }

    .accordion-button:not(.collapsed) {
      color: var(--primary-deep);
      background: linear-gradient(90deg, rgba(215,247,91,.22), rgba(14,143,90,.06));
    }

    .accordion-button:focus {
      border-color: transparent;
      box-shadow: 0 0 0 4px rgba(14, 143, 90, .12) !important;
    }

    .accordion-button::after {
      filter: hue-rotate(90deg) saturate(1.4);
    }

    .accordion-body {
      color: var(--muted);
      padding: 0 20px 20px;
      line-height: 1.85;
    }

    .cta-section {
      padding: 76px 0 88px;
    }

    .cta-box {
      border-radius: 36px;
      padding: 42px;
      background:
        linear-gradient(135deg, rgba(10, 95, 60, .95), rgba(14, 143, 90, .90)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
      color: #fff;
      box-shadow: 0 24px 70px rgba(10, 95, 60, .24);
      overflow: hidden;
      position: relative;
    }

    .cta-box::before {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -80px;
      top: -120px;
      border-radius: 50%;
      background: rgba(215,247,91,.25);
    }

    .cta-box > * {
      position: relative;
      z-index: 1;
    }

    .cta-box h2 {
      color: #fff;
      max-width: 760px;
    }

    .cta-box p {
      color: rgba(255,255,255,.78);
      max-width: 720px;
      margin: 13px 0 24px;
      font-size: 17px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .cta-box .btn-secondary-custom {
      background: rgba(255,255,255,.92);
    }

    .site-footer {
      background: #0F211A;
      color: rgba(255,255,255,.76);
      padding: 58px 0 28px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .9fr .9fr;
      gap: 38px;
      padding-bottom: 34px;
      border-bottom: 1px solid rgba(255,255,255,.10);
    }

    .footer-brand {
      color: #fff;
      font-size: 22px;
      font-weight: 950;
      margin-bottom: 12px;
    }

    .footer-text {
      margin: 0;
      color: rgba(255,255,255,.68);
      line-height: 1.85;
      max-width: 460px;
    }

    .footer-title {
      color: #fff;
      font-weight: 900;
      margin-bottom: 13px;
    }

    .footer-links {
      display: grid;
      gap: 9px;
    }

    .footer-links a {
      color: rgba(255,255,255,.68);
      width: fit-content;
    }

    .footer-links a:hover {
      color: var(--secondary);
      transform: translateX(3px);
    }

    .footer-bottom {
      padding-top: 24px;
      text-align: center;
      display: grid;
      gap: 10px;
      font-size: 13px;
      color: rgba(255,255,255,.60);
    }

    .record-line,
    .record-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px 14px;
      align-items: center;
    }

    .record-links a {
      color: rgba(255,255,255,.64);
    }

    .record-links a:hover {
      color: var(--secondary);
    }

    @media (max-width: 1199.98px) {
      .brand-wrap {
        grid-template-columns: auto 1fr;
      }

      .site-tagline {
        display: none;
      }

      .header-actions {
        grid-column: 1 / -1;
        justify-content: space-between;
      }

      .search-box {
        flex: 1;
        min-width: 0;
      }

      .magazine-layout,
      .analysis-grid,
      .timeline-wrap {
        grid-template-columns: 1fr;
      }

      .story-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .feature-img {
        height: 330px;
      }
    }

    @media (max-width: 767.98px) {
      body {
        font-size: 15px;
      }

      .brand-row {
        padding: 13px 0 10px;
      }

      .brand-wrap {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
      }

      .brand-logo {
        font-size: 20px;
      }

      .logo-mark {
        width: 34px;
        height: 34px;
      }

      .header-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
      }

      .search-box {
        min-width: 100%;
      }

      .btn-pill {
        width: 100%;
        min-height: 46px;
      }

      .channel-row {
        padding: 8px 0;
      }

      .channel-nav {
        gap: 7px;
      }

      .channel-nav a {
        padding: 8px 13px;
      }

      .page-hero {
        padding: 46px 0 38px;
      }

      .lead-text {
        font-size: 16px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .stat-strip {
        grid-template-columns: 1fr;
      }

      .section,
      .section-tight {
        padding: 48px 0;
      }

      .section-head {
        display: block;
        margin-bottom: 22px;
      }

      .hero-cover,
      .hero-cover img {
        min-height: 220px;
        height: 220px;
      }

      .feature-img {
        height: 300px;
      }

      .feature-content {
        inset: auto 18px 18px 18px;
      }

      .feature-content h3 {
        font-size: 22px;
      }

      .story-grid {
        grid-template-columns: 1fr;
        gap: 16px;
      }

      .quick-item {
        grid-template-columns: 70px 1fr;
      }

      .timeline-card {
        grid-template-columns: 1fr;
      }

      .time-pill {
        min-height: 64px;
        align-items: flex-start;
        padding: 14px 16px;
      }

      .rank-item {
        grid-template-columns: 34px 1fr;
      }

      .rank-item .heat {
        grid-column: 2;
      }

      .subscribe-form {
        flex-direction: column;
      }

      .cta-section {
        padding: 52px 0 62px;
      }

      .cta-box {
        padding: 28px 22px;
        border-radius: 28px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }
    }

    @media (max-width: 520px) {
      .container {
        padding-left: 18px;
        padding-right: 18px;
      }

      h1 {
        font-size: 31px;
      }

      h2 {
        font-size: 24px;
      }

      .hero-kicker {
        font-size: 13px;
      }

      .ticker-item {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
      }

      .feature-img {
        height: 280px;
      }

      .feature-meta {
        padding: 16px 18px 20px;
      }

      .side-panel,
      .rank-card,
      .newsletter-card,
      .timeline-intro {
        padding: 20px;
        border-radius: 24px;
      }

      .footer-bottom {
        font-size: 12px;
      }
    }
