/* roulang page: index */
:root {
      --primary: #1f8a4c;
      --primary-deep: #146b3c;
      --primary-soft: #f2f8f1;
      --accent: #ff7a1a;
      --accent-soft: #fff1e6;
      --ink: #14221a;
      --muted: #66736b;
      --paper: #fffdf7;
      --sand: #faf4e8;
      --line: rgba(31, 138, 76, .16);
      --dark: #10251b;
      --white: #ffffff;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 12px;
      --shadow: 0 18px 50px rgba(20, 34, 26, .08);
      --shadow-strong: 0 24px 70px rgba(20, 34, 26, .13);
      --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font);
      color: var(--ink);
      background: linear-gradient(180deg, var(--paper) 0%, #fffaf0 48%, var(--primary-soft) 100%);
      line-height: 1.8;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
    img { max-width: 100%; display: block; }
    button, input, textarea, select { font-family: inherit; }
    ::selection { background: rgba(31, 138, 76, .18); color: var(--ink); }
    .container { max-width: 1200px; }

    .site-header {
      position: fixed;
      top: 16px;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 18px;
    }
    .navbar-shell {
      max-width: 1200px;
      margin: 0 auto;
      border: 1px solid rgba(255, 255, 255, .35);
      border-radius: 999px;
      background: rgba(16, 37, 27, .48);
      backdrop-filter: blur(16px) saturate(140%);
      box-shadow: 0 18px 45px rgba(16, 37, 27, .18);
      padding: 8px 12px;
    }
    .navbar-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: #fffaf0 !important;
      font-weight: 800;
      letter-spacing: 0;
      min-width: 148px;
    }
    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #36b86b);
      display: inline-grid;
      place-items: center;
      box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .32);
      position: relative;
      flex: 0 0 auto;
    }
    .brand-mark::before {
      content: "";
      width: 0;
      height: 0;
      border-left: 11px solid #fff;
      border-top: 7px solid transparent;
      border-bottom: 7px solid transparent;
      margin-left: 3px;
    }
    .brand-mark::after {
      content: "";
      position: absolute;
      width: 25px;
      height: 25px;
      border: 1px solid rgba(255, 255, 255, .42);
      border-radius: 50%;
      inset: 6px;
    }
    .nav-link {
      color: rgba(255, 253, 247, .84) !important;
      font-weight: 650;
      font-size: 15px;
      padding: 9px 13px !important;
      border-radius: 999px;
      white-space: nowrap;
    }
    .nav-link:hover, .nav-link.active {
      color: #fff !important;
      background: rgba(255, 255, 255, .14);
    }
    .navbar-toggler {
      border: 1px solid rgba(255, 255, 255, .35);
      border-radius: 999px;
      padding: 8px 10px;
      box-shadow: none !important;
      background: rgba(255, 255, 255, .12);
    }
    .navbar-toggler-icon { filter: invert(1); }
    .nav-search {
      width: 170px;
      height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .28);
      background: rgba(255, 255, 255, .16);
      color: #fff;
      padding: 0 14px;
      outline: none;
      font-size: 14px;
    }
    .nav-search::placeholder { color: rgba(255, 255, 255, .7); }
    .nav-search:focus { border-color: rgba(255, 255, 255, .72); box-shadow: 0 0 0 4px rgba(255, 255, 255, .14); }
    .btn-main, .btn-ghost, .btn-lightline {
      border: 0;
      border-radius: 999px;
      padding: 12px 22px;
      font-weight: 750;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
      min-height: 46px;
    }
    .btn-main {
      color: #fff;
      background: linear-gradient(135deg, var(--primary), var(--primary-deep));
      box-shadow: 0 14px 30px rgba(31, 138, 76, .24);
    }
    .btn-main:hover, .btn-main:focus { color: #fff; transform: translateY(-2px); box-shadow: 0 20px 42px rgba(31, 138, 76, .32); }
    .btn-ghost {
      color: #fffdf7;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .34);
    }
    .btn-ghost:hover, .btn-ghost:focus { color: #fff; background: rgba(255, 255, 255, .22); transform: translateY(-2px); }
    .btn-lightline {
      color: var(--primary-deep);
      background: #fff;
      border: 1px solid var(--line);
    }
    .btn-lightline:hover, .btn-lightline:focus { color: var(--primary-deep); background: var(--primary-soft); transform: translateY(-2px); box-shadow: var(--shadow); }
    .btn-main:focus-visible, .btn-ghost:focus-visible, .btn-lightline:focus-visible, .form-control:focus, .form-select:focus { outline: 3px solid rgba(31, 138, 76, .24); outline-offset: 2px; }

    .hero {
      min-height: 760px;
      padding: 150px 0 90px;
      color: #fffdf7;
      background-image: linear-gradient(120deg, rgba(16, 37, 27, .92), rgba(16, 37, 27, .68) 48%, rgba(31, 138, 76, .44)), url('/assets/images/backpic/back-1.webp');
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(115deg, rgba(255,255,255,.08) 0 1px, transparent 1px 88px);
      opacity: .32;
      pointer-events: none;
    }
    .hero::after {
      content: "";
      position: absolute;
      right: -180px;
      bottom: -250px;
      width: 680px;
      height: 680px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 50%;
      box-shadow: inset 0 0 0 22px rgba(255, 255, 255, .03);
      pointer-events: none;
    }
    .hero .container { position: relative; z-index: 2; }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .13);
      border: 1px solid rgba(255, 255, 255, .26);
      color: #fff3df;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 6px rgba(255, 122, 26, .18);
    }
    .hero h1 {
      font-size: clamp(36px, 5vw, 56px);
      line-height: 1.15;
      font-weight: 820;
      letter-spacing: 0;
      margin: 0 0 20px;
      max-width: 720px;
    }
    .hero-lead {
      font-size: 18px;
      line-height: 1.9;
      color: rgba(255, 253, 247, .83);
      max-width: 650px;
      margin-bottom: 28px;
    }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 12px;
      max-width: 720px;
    }
    .metric {
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .18);
      backdrop-filter: blur(10px);
    }
    .metric strong { display: block; font-size: 22px; line-height: 1.2; color: #fff; }
    .metric span { font-size: 13px; color: rgba(255, 253, 247, .75); }
    .live-board {
      background: rgba(255, 253, 247, .94);
      color: var(--ink);
      border-radius: 28px;
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, .55);
      box-shadow: 0 28px 80px rgba(0, 0, 0, .24);
    }
    .board-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 18px; }
    .board-title { font-weight: 800; font-size: 20px; }
    .pill, .tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 12px;
      font-weight: 750;
      line-height: 1.3;
      white-space: nowrap;
    }
    .pill-green { color: var(--primary-deep); background: rgba(31, 138, 76, .12); }
    .pill-orange { color: #af4c00; background: var(--accent-soft); }
    .pill-dark { color: #fff; background: var(--dark); }
    .match-list { display: grid; gap: 12px; }
    .match-item {
      display: grid;
      grid-template-columns: 66px 1fr auto;
      gap: 12px;
      align-items: center;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: #fff;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .match-item:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(20, 34, 26, .08); border-color: rgba(31, 138, 76, .3); }
    .timebox {
      min-height: 54px;
      border-radius: 15px;
      background: var(--primary-soft);
      display: grid;
      place-items: center;
      color: var(--primary-deep);
      font-weight: 800;
      line-height: 1.25;
      text-align: center;
      font-size: 14px;
    }
    .match-name { font-size: 13px; color: var(--muted); margin-bottom: 2px; }
    .teams { font-weight: 800; line-height: 1.35; }
    .board-mini {
      margin-top: 16px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
    }
    .mini-card {
      border-radius: 16px;
      background: linear-gradient(180deg, var(--primary-soft), #fff);
      border: 1px solid var(--line);
      padding: 13px;
    }
    .mini-card strong { display: block; font-size: 20px; color: var(--primary-deep); line-height: 1.15; }
    .mini-card span { color: var(--muted); font-size: 12px; }

    main { position: relative; }
    .section { padding: 88px 0; }
    .section.alt { background: rgba(242, 248, 241, .82); }
    .section.sand { background: var(--sand); }
    .section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 34px; }
    .section-kicker { color: var(--primary-deep); font-weight: 800; font-size: 14px; margin-bottom: 8px; }
    h2 { font-size: clamp(28px, 4vw, 38px); line-height: 1.25; font-weight: 820; margin: 0; letter-spacing: 0; }
    .section-desc { max-width: 520px; color: var(--muted); margin: 0; font-size: 16px; }

    .feature-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 18px;
    }
    .feature-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow);
      min-height: 210px;
      position: relative;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); border-color: rgba(31, 138, 76, .28); }
    .feature-card.large { grid-column: span 5; min-height: 350px; }
    .feature-card.wide { grid-column: span 7; }
    .feature-card.small { grid-column: span 4; }
    .feature-card.green { background: linear-gradient(135deg, #eaf6ea, #fffdf7); }
    .feature-card.dark { background: linear-gradient(135deg, #10251b, #1d5033); color: #fffdf7; }
    .feature-card.dark p, .feature-card.dark .feature-meta { color: rgba(255, 253, 247, .76); }
    .feature-icon {
      width: 44px;
      height: 44px;
      border-radius: 15px;
      display: grid;
      place-items: center;
      background: var(--primary-soft);
      color: var(--primary-deep);
      font-weight: 900;
      margin-bottom: 16px;
    }
    .feature-card.dark .feature-icon { background: rgba(255,255,255,.12); color: #fff; }
    .feature-card h3 { font-size: 22px; line-height: 1.35; font-weight: 800; margin: 0 0 10px; }
    .feature-card p { color: var(--muted); margin: 0; }
    .feature-meta { color: var(--muted); font-size: 13px; margin-top: 16px; font-weight: 700; }
    .feature-image {
      position: absolute;
      right: 18px;
      bottom: 18px;
      width: 46%;
      aspect-ratio: 4 / 3;
      border-radius: 20px;
      object-fit: cover;
      box-shadow: 0 18px 44px rgba(20, 34, 26, .14);
    }

    .category-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .category-card {
      position: relative;
      min-height: 260px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      color: #fff;
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,.28);
    }
    .category-card img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; transition: transform .35s ease; }
    .category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16,37,27,.18), rgba(16,37,27,.86)); }
    .category-card:hover img { transform: scale(1.05); }
    .category-content { position: absolute; z-index: 2; inset: auto 20px 20px 20px; }
    .category-content h3 { font-size: 22px; font-weight: 820; margin: 10px 0 8px; }
    .category-content p { color: rgba(255,255,255,.82); margin: 0 0 14px; line-height: 1.65; }
    .category-link { font-weight: 800; color: #fff; display: inline-flex; align-items: center; gap: 6px; }
    .category-link:hover { color: #ffe2c7; }

    .masonry {
      columns: 3 280px;
      column-gap: 18px;
    }
    .scene-card {
      break-inside: avoid;
      margin: 0 0 18px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      background: #fff;
      box-shadow: var(--shadow);
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .scene-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
    .scene-card img { width: 100%; height: 170px; object-fit: cover; }
    .scene-body { padding: 22px; }
    .scene-card.tall img { height: 245px; }
    .scene-card h3 { font-size: 21px; line-height: 1.35; margin: 12px 0 8px; font-weight: 800; }
    .scene-card p { color: var(--muted); margin: 0 0 12px; }
    .point-list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
    .point-list li { position: relative; padding-left: 22px; color: var(--muted); font-size: 15px; }
    .point-list li::before { content: ""; position: absolute; left: 0; top: .78em; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }
    .small-link { color: var(--primary-deep); font-weight: 800; display: inline-flex; gap: 6px; margin-top: 16px; }
    .small-link:hover { color: var(--accent); }

    .path-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .path-card {
      border-radius: var(--radius-lg);
      background: #fff;
      border: 1px solid var(--line);
      padding: 24px;
      box-shadow: var(--shadow);
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .path-card h3 { font-size: 21px; font-weight: 820; margin: 0; }
    .path-row { border-top: 1px solid var(--line); padding-top: 13px; }
    .path-label { color: var(--muted); font-size: 13px; font-weight: 750; margin-bottom: 3px; }
    .path-value { font-weight: 760; line-height: 1.5; }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .review-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 20px;
      box-shadow: var(--shadow);
      min-height: 260px;
      display: flex;
      flex-direction: column;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-strong); }
    .review-top { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
    .avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      color: #fff;
      display: grid;
      place-items: center;
      font-weight: 900;
      flex: 0 0 auto;
    }
    .review-name { font-weight: 820; line-height: 1.3; }
    .review-tag { font-size: 12px; color: var(--muted); }
    .rating { color: var(--accent); font-weight: 900; margin-bottom: 10px; }
    .review-text { color: #243329; line-height: 1.75; margin: 0 0 14px; flex: 1; }
    .review-foot { display: flex; justify-content: space-between; gap: 10px; align-items: center; color: var(--muted); font-size: 12px; }

    .schedule-panel {
      border-radius: 30px;
      background: linear-gradient(135deg, #fff, var(--primary-soft));
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .schedule-head {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 24px;
      padding: 28px;
      border-bottom: 1px solid var(--line);
      align-items: center;
    }
    .schedule-days { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
    .day-chip {
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #fff;
      padding: 9px 13px;
      color: var(--muted);
      font-weight: 750;
      font-size: 13px;
    }
    .day-chip.active { background: var(--primary); color: #fff; border-color: var(--primary); }
    .schedule-list { padding: 18px; display: grid; gap: 12px; }
    .schedule-item {
      display: grid;
      grid-template-columns: 82px 1fr 160px 128px;
      align-items: center;
      gap: 16px;
      padding: 16px;
      border-radius: 20px;
      background: rgba(255, 255, 255, .88);
      border: 1px solid var(--line);
    }
    .schedule-item:hover { box-shadow: 0 14px 35px rgba(20,34,26,.08); }
    .league { color: var(--muted); font-size: 13px; font-weight: 750; }
    .focus-text { color: var(--muted); font-size: 14px; }

    .faq-wrap .accordion { display: grid; gap: 14px; }
    .accordion-item {
      border: 1px solid var(--line) !important;
      border-radius: 18px !important;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 10px 28px rgba(20, 34, 26, .05);
    }
    .accordion-button {
      background: #fff;
      color: var(--ink);
      font-weight: 800;
      font-size: 17px;
      padding: 18px 20px;
      box-shadow: none !important;
    }
    .accordion-button:not(.collapsed) { color: var(--primary-deep); background: var(--primary-soft); }
    .accordion-button::after { filter: hue-rotate(75deg) saturate(1.4); }
    .accordion-body { color: var(--muted); line-height: 1.85; padding: 0 20px 20px; background: var(--primary-soft); }

    .cta-section {
      background: linear-gradient(135deg, var(--primary-soft), var(--sand));
      padding: 88px 0;
    }
    .cta-card {
      border-radius: 30px;
      background: #fff;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-strong);
      overflow: hidden;
    }
    .cta-copy { padding: 38px; height: 100%; background: linear-gradient(160deg, #fff, #f7fbf4); }
    .cta-copy h2 { margin-bottom: 16px; }
    .contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 12px; }
    .contact-list li { padding: 12px 14px; border-radius: 16px; background: var(--primary-soft); color: var(--muted); }
    .contact-list strong { color: var(--ink); }
    .contact-form { padding: 32px; }
    .form-label { font-weight: 760; color: var(--ink); }
    .form-control, .form-select {
      border-radius: 14px;
      border: 1px solid var(--line);
      min-height: 50px;
      color: var(--ink);
      background-color: #fffdfb;
    }
    textarea.form-control { min-height: 118px; resize: vertical; }
    .form-control:focus, .form-select:focus { border-color: rgba(31, 138, 76, .58); box-shadow: 0 0 0 4px rgba(31, 138, 76, .12); }

    .site-footer {
      background: var(--dark);
      color: rgba(255, 253, 247, .8);
      padding: 66px 0 0;
    }
    .footer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 850; font-size: 20px; margin-bottom: 14px; }
    .footer-text { color: rgba(255,253,247,.68); max-width: 360px; margin: 0; }
    .footer-title { color: #fff; font-weight: 820; margin-bottom: 16px; }
    .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
    .footer-links a { color: rgba(255,253,247,.7); }
    .footer-links a:hover { color: #fff; transform: translateX(2px); }
    .footer-contact { color: rgba(255,253,247,.72); }
    .footer-bottom {
      margin-top: 44px;
      padding: 24px 0;
      border-top: 1px solid rgba(255,255,255,.12);
      text-align: center;
      color: rgba(255,253,247,.62);
      font-size: 13px;
      line-height: 1.9;
    }
    .footer-bottom a { color: rgba(255,253,247,.72); margin: 0 6px; }
    .footer-bottom a:hover { color: #fff; }

    @media (max-width: 1199.98px) {
      .hero-metrics { grid-template-columns: repeat(2, 1fr); }
      .feature-card.large, .feature-card.wide { grid-column: span 6; }
      .feature-card.small { grid-column: span 6; }
      .category-strip, .path-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
      .schedule-item { grid-template-columns: 76px 1fr 130px; }
      .schedule-item .btn-lightline { grid-column: 2 / -1; justify-self: start; }
    }
    @media (max-width: 991.98px) {
      .site-header { top: 10px; padding: 0 10px; }
      .navbar-shell { border-radius: 24px; }
      .navbar-collapse {
        margin-top: 12px;
        padding: 12px;
        border-radius: 20px;
        background: rgba(16,37,27,.92);
      }
      .nav-search { width: 100%; margin: 10px 0; }
      .hero { padding-top: 132px; min-height: auto; }
      .live-board { margin-top: 34px; }
      .section { padding: 66px 0; }
      .section-head { display: block; }
      .section-desc { margin-top: 12px; }
      .feature-grid { grid-template-columns: 1fr; }
      .feature-card.large, .feature-card.wide, .feature-card.small { grid-column: auto; }
      .feature-image { position: relative; right: auto; bottom: auto; width: 100%; margin-top: 20px; }
      .schedule-head { grid-template-columns: 1fr; }
      .schedule-days { justify-content: flex-start; }
    }
    @media (max-width: 767.98px) {
      .hero { padding: 122px 0 64px; }
      .hero h1 { font-size: 34px; }
      .hero-lead { font-size: 16px; }
      .hero-actions { flex-direction: column; }
      .hero-actions .btn-main, .hero-actions .btn-ghost { width: 100%; }
      .hero-metrics, .board-mini, .category-strip, .path-grid, .review-grid { grid-template-columns: 1fr; }
      .match-item { grid-template-columns: 58px 1fr; }
      .match-item .pill { grid-column: 1 / -1; justify-self: start; }
      .masonry { columns: 1; }
      .schedule-item { grid-template-columns: 1fr; gap: 10px; }
      .schedule-item .btn-lightline { grid-column: auto; width: 100%; }
      .cta-copy, .contact-form { padding: 26px; }
      .footer-bottom a { display: inline-block; margin: 2px 5px; }
    }
    @media (max-width: 520px) {
      .navbar-brand { font-size: 16px; min-width: auto; }
      .brand-mark { width: 34px; height: 34px; }
      .hero h1 { font-size: 32px; }
      .live-board { padding: 16px; border-radius: 22px; }
      .board-head { align-items: flex-start; flex-direction: column; }
      .section { padding: 54px 0; }
      .feature-card, .path-card, .review-card { padding: 20px; }
      .category-card { min-height: 230px; }
    }

/* roulang page: category1 */
:root{
      --primary:#1F8A4C;
      --primary-dark:#12683A;
      --primary-soft:#EAF6EE;
      --accent:#FF7A1A;
      --accent-soft:#FFF0E4;
      --cyan:#20C997;
      --ink:#14221A;
      --muted:#66736B;
      --bg:#FFFDF7;
      --bg-soft:#F2F8F1;
      --bg-warm:#FAF4E8;
      --line:#DDE8DD;
      --line-strong:rgba(31,138,76,.22);
      --footer:#10251B;
      --white:#fff;
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --shadow:0 18px 50px rgba(20,34,26,.08);
      --shadow-hover:0 24px 70px rgba(20,34,26,.14);
      --font:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans CJK SC",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 8%, rgba(31,138,76,.08), transparent 28%),
        linear-gradient(180deg,var(--bg),#fff 42%,var(--bg-soft));
      line-height:1.78;
      overflow-x:hidden;
      text-rendering:optimizeLegibility;
    }
    a{color:inherit;text-decoration:none;transition:all .25s ease}
    img{max-width:100%;display:block}
    button,input,textarea,select{font-family:inherit}
    :focus-visible{outline:3px solid rgba(255,122,26,.35);outline-offset:3px}
    .container{max-width:1200px}
    .section{padding:88px 0;position:relative}
    .section-sm{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:var(--radius-pill);
      background:rgba(31,138,76,.12);
      color:var(--primary-dark);
      border:1px solid rgba(31,138,76,.15);
      font-weight:700;
      font-size:13px;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(255,122,26,.14);
    }
    h1,h2,h3,h4{letter-spacing:-.03em;color:var(--ink)}
    h1{font-size:clamp(34px,5vw,56px);line-height:1.12;font-weight:850;margin:18px 0 18px}
    h2{font-size:clamp(28px,3.6vw,38px);line-height:1.24;font-weight:800;margin:0 0 14px}
    h3{font-size:22px;font-weight:800;line-height:1.35}
    .lead-text{font-size:18px;color:rgba(255,255,255,.84);max-width:640px}
    .section-desc{color:var(--muted);font-size:17px;max-width:720px;margin:0}
    .btn-main,.btn-ghost,.btn-light-green{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:var(--radius-pill);
      font-weight:800;
      line-height:1.2;
      border:1px solid transparent;
      transition:all .25s ease;
      white-space:nowrap;
    }
    .btn-main{
      color:#fff!important;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      box-shadow:0 12px 30px rgba(31,138,76,.28);
      padding:13px 22px;
    }
    .btn-main:hover{transform:translateY(-2px);box-shadow:0 18px 42px rgba(31,138,76,.36);background:linear-gradient(135deg,#269E5A,#0F5E34)}
    .btn-ghost{
      color:#fff!important;
      border-color:rgba(255,255,255,.42);
      background:rgba(255,255,255,.12);
      padding:13px 22px;
      backdrop-filter:blur(10px);
    }
    .btn-ghost:hover{background:rgba(255,255,255,.2);transform:translateY(-2px)}
    .btn-light-green{
      color:var(--primary-dark)!important;
      background:#fff;
      border-color:rgba(31,138,76,.2);
      padding:10px 16px;
    }
    .btn-light-green:hover{background:var(--primary-soft);border-color:rgba(31,138,76,.32);transform:translateY(-1px)}

    .site-header{
      position:fixed;
      top:18px;
      left:0;
      right:0;
      z-index:1000;
      padding:0 22px;
    }
    .navbar-shell{
      max-width:1240px;
      margin:0 auto;
      padding:12px 16px;
      border-radius:24px;
      background:rgba(255,255,255,.66);
      border:1px solid rgba(255,255,255,.48);
      box-shadow:0 14px 40px rgba(16,37,27,.12);
      backdrop-filter:blur(16px) saturate(140%);
    }
    .navbar-brand,.footer-brand{
      display:flex;
      align-items:center;
      gap:10px;
      font-weight:900;
      color:var(--primary-dark)!important;
      letter-spacing:-.02em;
    }
    .brand-mark{
      width:36px;height:36px;border-radius:14px;
      background:
        radial-gradient(circle at 68% 28%, #fff 0 8%, transparent 9%),
        linear-gradient(135deg,var(--primary),var(--primary-dark));
      position:relative;
      box-shadow:0 10px 22px rgba(31,138,76,.28);
      flex:0 0 auto;
    }
    .brand-mark::before{
      content:"";
      position:absolute;
      left:13px;top:10px;
      width:0;height:0;
      border-top:8px solid transparent;
      border-bottom:8px solid transparent;
      border-left:12px solid #fff;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:6px;
      border:1.5px solid rgba(255,255,255,.55);
      border-radius:11px;
    }
    .navbar-toggler{
      border:0;
      border-radius:14px;
      background:rgba(31,138,76,.1);
      padding:9px 11px;
    }
    .navbar-toggler:focus{box-shadow:0 0 0 4px rgba(31,138,76,.16)}
    .nav-link{
      color:rgba(20,34,26,.78)!important;
      font-weight:750;
      padding:9px 12px!important;
      border-radius:var(--radius-pill);
      margin:0 2px;
      font-size:15px;
    }
    .nav-link:hover,.nav-link.active{
      color:var(--primary-dark)!important;
      background:rgba(31,138,76,.12);
    }
    .nav-search{
      width:150px;
      height:40px;
      border-radius:var(--radius-pill);
      border:1px solid rgba(31,138,76,.18);
      background:rgba(255,255,255,.74);
      padding:0 14px;
      color:var(--ink);
      font-size:14px;
      transition:all .25s ease;
    }
    .nav-search:focus{
      width:180px;
      border-color:rgba(31,138,76,.46);
      box-shadow:0 0 0 4px rgba(31,138,76,.12);
      outline:0;
      background:#fff;
    }

    .category-hero{
      min-height:760px;
      padding:150px 0 94px;
      display:flex;
      align-items:center;
      position:relative;
      overflow:hidden;
      color:#fff;
      background:
        linear-gradient(115deg,rgba(16,37,27,.94),rgba(18,104,58,.74) 48%,rgba(16,37,27,.72)),
        url("/assets/images/backpic/back-1.webp") center/cover no-repeat;
    }
    .category-hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px),
        linear-gradient(0deg,rgba(255,255,255,.05) 1px,transparent 1px);
      background-size:68px 68px;
      opacity:.38;
      mask-image:linear-gradient(180deg,#000,transparent 86%);
    }
    .category-hero::after{
      content:"";
      position:absolute;
      width:520px;height:520px;border:2px solid rgba(255,255,255,.1);
      border-radius:50%;
      right:-170px;bottom:-160px;
      box-shadow:inset 0 0 0 28px rgba(255,255,255,.03);
    }
    .hero-content{position:relative;z-index:2}
    .hero-panel{
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.24);
      border-radius:30px;
      padding:22px;
      box-shadow:0 24px 70px rgba(0,0,0,.22);
      backdrop-filter:blur(16px);
    }
    .hero-cover{
      position:relative;
      overflow:hidden;
      border-radius:24px;
      min-height:260px;
      margin-bottom:16px;
    }
    .hero-cover img{width:100%;height:260px;object-fit:cover;filter:saturate(1.05)}
    .hero-cover::after{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(180deg,transparent,rgba(16,37,27,.76));
    }
    .hero-cover-text{
      position:absolute;
      left:18px;right:18px;bottom:18px;
      z-index:1;
    }
    .hero-cover-text strong{display:block;font-size:22px;line-height:1.25}
    .hero-cover-text span{font-size:14px;color:rgba(255,255,255,.78)}
    .mini-board{
      display:grid;
      gap:12px;
    }
    .board-row{
      display:grid;
      grid-template-columns:72px 1fr auto;
      gap:12px;
      align-items:center;
      padding:14px;
      border-radius:18px;
      background:rgba(255,255,255,.9);
      color:var(--ink);
      border:1px solid rgba(255,255,255,.3);
    }
    .board-time{
      color:var(--primary-dark);
      font-weight:900;
      background:var(--primary-soft);
      border-radius:14px;
      padding:8px 6px;
      text-align:center;
      line-height:1.2;
    }
    .board-match b{display:block;font-size:15px}
    .board-match small{color:var(--muted)}
    .status-badge,.tag{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:var(--radius-pill);
      padding:5px 10px;
      font-size:12px;
      font-weight:800;
      white-space:nowrap;
    }
    .status-badge{background:var(--accent-soft);color:#B94A05}
    .tag{background:rgba(31,138,76,.1);color:var(--primary-dark);border:1px solid rgba(31,138,76,.12)}
    .hero-stats{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:28px;
    }
    .stat-pill{
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.12);
      border:1px solid rgba(255,255,255,.18);
      color:#fff;
    }
    .stat-pill strong{display:block;font-size:24px;line-height:1}
    .stat-pill span{font-size:13px;color:rgba(255,255,255,.72)}

    .league-strip{
      margin-top:-44px;
      position:relative;
      z-index:5;
    }
    .league-card{
      background:#fff;
      border:1px solid rgba(31,138,76,.14);
      border-radius:28px;
      box-shadow:var(--shadow);
      padding:24px;
    }
    .league-tags{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
    }
    .league-tags a{
      border-radius:var(--radius-pill);
      padding:10px 16px;
      font-weight:800;
      background:var(--bg-soft);
      color:var(--primary-dark);
      border:1px solid rgba(31,138,76,.16);
    }
    .league-tags a:hover{
      background:var(--primary);
      color:#fff;
      transform:translateY(-2px);
      box-shadow:0 12px 28px rgba(31,138,76,.24);
    }

    .schedule-section{background:linear-gradient(180deg,transparent,var(--bg-soft))}
    .schedule-layout{
      display:grid;
      grid-template-columns:minmax(0,1.6fr) minmax(300px,.8fr);
      gap:26px;
      align-items:start;
    }
    .schedule-list{
      display:grid;
      gap:14px;
    }
    .match-card{
      display:grid;
      grid-template-columns:96px 1fr 170px;
      gap:18px;
      align-items:center;
      background:#fff;
      border:1px solid rgba(31,138,76,.14);
      border-radius:22px;
      padding:18px;
      box-shadow:0 12px 34px rgba(20,34,26,.06);
      transition:all .25s ease;
    }
    .match-card:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(31,138,76,.26);
    }
    .time-block{
      border-radius:18px;
      background:linear-gradient(180deg,var(--primary-soft),#fff);
      border:1px solid rgba(31,138,76,.14);
      padding:14px 10px;
      text-align:center;
    }
    .time-block strong{display:block;color:var(--primary-dark);font-size:22px;line-height:1.1}
    .time-block span{font-size:13px;color:var(--muted)}
    .match-main h3{margin:0 0 6px;font-size:19px}
    .match-meta{display:flex;flex-wrap:wrap;gap:8px;color:var(--muted);font-size:14px}
    .match-action{display:flex;justify-content:flex-end}
    .side-panel{
      border-radius:28px;
      padding:24px;
      background:linear-gradient(160deg,#10251B,#1F8A4C);
      color:#fff;
      position:sticky;
      top:116px;
      overflow:hidden;
      box-shadow:var(--shadow);
    }
    .side-panel::after{
      content:"";
      position:absolute;
      width:260px;height:260px;
      border-radius:50%;
      border:28px solid rgba(255,255,255,.06);
      right:-90px;bottom:-120px;
    }
    .side-panel h3{color:#fff;margin-bottom:12px}
    .side-list{
      list-style:none;
      padding:0;margin:18px 0 0;
      display:grid;
      gap:12px;
      position:relative;
      z-index:1;
    }
    .side-list li{
      display:flex;
      gap:10px;
      padding:12px;
      border-radius:16px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.14);
    }
    .side-list i{
      width:10px;height:10px;border-radius:50%;
      margin-top:9px;
      background:var(--accent);
      flex:0 0 auto;
    }

    .topic-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .8fr;
      gap:22px;
    }
    .topic-card{
      border-radius:26px;
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(31,138,76,.14);
      box-shadow:var(--shadow);
      transition:all .25s ease;
      height:100%;
    }
    .topic-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-hover)}
    .topic-card.large{grid-row:span 2}
    .topic-img{height:210px;overflow:hidden;position:relative}
    .topic-card.large .topic-img{height:356px}
    .topic-img img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
    .topic-card:hover .topic-img img{transform:scale(1.05)}
    .topic-img::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,transparent,rgba(16,37,27,.52))}
    .topic-body{padding:22px}
    .topic-body p{color:var(--muted);margin:10px 0 16px}
    .topic-tags{display:flex;flex-wrap:wrap;gap:8px}

    .guide-wrap{
      border-radius:34px;
      background:
        linear-gradient(135deg,rgba(250,244,232,.86),rgba(242,248,241,.94)),
        radial-gradient(circle at 20% 20%,rgba(255,122,26,.12),transparent 30%);
      border:1px solid rgba(31,138,76,.14);
      padding:34px;
      box-shadow:var(--shadow);
    }
    .guide-steps{
      counter-reset:step;
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      margin-top:24px;
    }
    .step-card{
      counter-increment:step;
      position:relative;
      padding:22px;
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(31,138,76,.13);
      min-height:210px;
      transition:all .25s ease;
    }
    .step-card:hover{transform:translateY(-3px);box-shadow:0 18px 44px rgba(20,34,26,.09)}
    .step-card::before{
      content:"0" counter(step);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:42px;height:42px;
      border-radius:16px;
      background:var(--primary);
      color:#fff;
      font-weight:900;
      margin-bottom:16px;
      box-shadow:0 10px 20px rgba(31,138,76,.24);
    }
    .step-card h3{font-size:18px;margin-bottom:8px}
    .step-card p{color:var(--muted);font-size:15px;margin:0}

    .data-band{
      background:#10251B;
      color:#fff;
      overflow:hidden;
    }
    .data-band h2,.data-band h3{color:#fff}
    .data-band .section-desc{color:rgba(255,255,255,.72)}
    .data-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:18px;
      margin-top:28px;
    }
    .data-card{
      padding:24px;
      border-radius:24px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.14);
      backdrop-filter:blur(10px);
    }
    .data-card strong{
      display:block;
      font-size:34px;
      line-height:1;
      color:#fff;
      margin-bottom:8px;
    }
    .data-card span{color:rgba(255,255,255,.68);font-size:14px}

    .faq-section{background:var(--bg)}
    .accordion{display:grid;gap:14px}
    .accordion-item{
      border:1px solid rgba(31,138,76,.16)!important;
      border-radius:20px!important;
      overflow:hidden;
      background:#fff;
      box-shadow:0 10px 28px rgba(20,34,26,.05);
    }
    .accordion-button{
      font-weight:850;
      color:var(--ink);
      background:#fff;
      padding:20px 22px;
      box-shadow:none!important;
      line-height:1.45;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary-dark);
      background:var(--primary-soft);
    }
    .accordion-button::after{
      border-radius:50%;
      background-color:rgba(31,138,76,.12);
      background-position:center;
      padding:14px;
    }
    .accordion-body{
      color:var(--muted);
      line-height:1.9;
      padding:0 22px 22px;
      background:linear-gradient(180deg,var(--primary-soft),#fff 55%);
    }

    .cta-section{padding:84px 0;background:linear-gradient(180deg,var(--bg-soft),var(--bg-warm))}
    .cta-card{
      border-radius:34px;
      overflow:hidden;
      background:#fff;
      border:1px solid rgba(31,138,76,.14);
      box-shadow:var(--shadow);
    }
    .cta-copy{
      padding:38px;
      height:100%;
      background:
        linear-gradient(145deg,rgba(31,138,76,.95),rgba(16,37,27,.96)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .cta-copy h2{color:#fff}
    .cta-copy p{color:rgba(255,255,255,.78)}
    .cta-copy ul{
      list-style:none;
      padding:0;margin:24px 0 0;
      display:grid;gap:12px;
    }
    .cta-copy li{
      padding:12px 14px;
      border-radius:16px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.14);
    }
    .cta-form{padding:38px}
    .form-label{font-weight:800;color:var(--ink);margin-bottom:8px}
    .form-control,.form-select{
      border-radius:16px;
      border:1px solid rgba(31,138,76,.18);
      min-height:50px;
      padding:12px 14px;
      color:var(--ink);
      background:#fff;
    }
    .form-control:focus,.form-select:focus{
      border-color:rgba(31,138,76,.55);
      box-shadow:0 0 0 4px rgba(31,138,76,.12);
    }
    textarea.form-control{min-height:120px}

    .site-footer{
      background:var(--footer);
      color:rgba(255,255,255,.72);
      padding:64px 0 28px;
    }
    .site-footer .footer-brand{color:#fff!important;margin-bottom:14px}
    .footer-text{max-width:330px;margin:0;color:rgba(255,255,255,.68)}
    .footer-title{
      color:#fff;
      font-weight:900;
      margin-bottom:14px;
    }
    .footer-links{
      list-style:none;
      padding:0;margin:0;
      display:grid;gap:9px;
    }
    .footer-links a,.footer-bottom a{
      color:rgba(255,255,255,.68);
    }
    .footer-links a:hover,.footer-bottom a:hover{color:#fff}
    .footer-contact{line-height:1.9;color:rgba(255,255,255,.7);word-break:break-all}
    .footer-bottom{
      border-top:1px solid rgba(255,255,255,.12);
      margin-top:38px;
      padding-top:22px;
      text-align:center;
      display:grid;
      gap:8px;
      font-size:14px;
      color:rgba(255,255,255,.58);
    }

    @media (max-width:1199px){
      .topic-grid{grid-template-columns:1fr 1fr}
      .topic-card.large{grid-row:auto}
      .guide-steps{grid-template-columns:repeat(2,1fr)}
      .data-grid{grid-template-columns:repeat(2,1fr)}
    }
    @media (max-width:991px){
      .site-header{top:10px;padding:0 12px}
      .navbar-shell{border-radius:20px;padding:10px 12px}
      .navbar-collapse{
        margin-top:12px;
        padding:12px;
        border-radius:18px;
        background:rgba(255,255,255,.86);
        border:1px solid rgba(31,138,76,.14);
      }
      .nav-search{width:100%;margin-bottom:10px}
      .nav-search:focus{width:100%}
      .category-hero{padding:132px 0 76px;min-height:auto}
      .hero-panel{margin-top:28px}
      .schedule-layout{grid-template-columns:1fr}
      .side-panel{position:relative;top:auto}
      .match-card{grid-template-columns:86px 1fr}
      .match-action{grid-column:1/-1;justify-content:flex-start}
    }
    @media (max-width:767px){
      .section{padding:62px 0}
      .section-sm{padding:46px 0}
      .lead-text{font-size:16px}
      .hero-stats{grid-template-columns:1fr}
      .league-card{padding:18px;border-radius:22px}
      .league-tags{gap:9px}
      .league-tags a{padding:9px 12px;font-size:14px}
      .topic-grid,.guide-steps,.data-grid{grid-template-columns:1fr}
      .topic-img,.topic-card.large .topic-img{height:230px}
      .guide-wrap{padding:22px;border-radius:26px}
      .cta-copy,.cta-form{padding:26px}
      .board-row{grid-template-columns:64px 1fr;align-items:start}
      .board-row .status-badge{grid-column:2;justify-self:start}
    }
    @media (max-width:520px){
      h1{font-size:33px}
      h2{font-size:27px}
      .category-hero{padding-top:120px}
      .d-flex.gap-3{gap:10px!important}
      .btn-main,.btn-ghost{width:100%;padding:13px 18px}
      .match-card{grid-template-columns:1fr;padding:16px}
      .time-block{text-align:left}
      .match-action{justify-content:stretch}
      .match-action .btn-light-green{width:100%}
      .hero-panel{padding:16px;border-radius:24px}
      .footer-bottom{font-size:13px}
    }

/* roulang page: category2 */
:root{
      --primary:#1F8A4C;
      --primary-dark:#126437;
      --primary-soft:#EAF6EC;
      --accent:#FF7A1A;
      --accent-soft:#FFF0E4;
      --cyan:#20C997;
      --text:#14221A;
      --muted:#66736B;
      --bg:#FFFDF7;
      --bg-soft:#F2F8F1;
      --bg-warm:#FAF4E8;
      --dark:#10251B;
      --line:#DDE8DD;
      --line-strong:rgba(31,138,76,.22);
      --white:#fff;
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --shadow:0 18px 50px rgba(20,34,26,.08);
      --shadow-hover:0 24px 70px rgba(20,34,26,.14);
      --font:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans CJK SC",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 8% 12%, rgba(31,138,76,.08), transparent 28%),
        radial-gradient(circle at 85% 30%, rgba(255,122,26,.08), transparent 24%),
        linear-gradient(180deg,var(--bg) 0%,#fff 45%,var(--bg-soft) 100%);
      line-height:1.78;
      font-size:16px;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color .22s ease,background .22s ease,transform .22s ease,opacity .22s ease}
    img{max-width:100%;display:block}
    button,input,textarea,select{font:inherit}
    ::selection{background:rgba(31,138,76,.22);color:var(--text)}
    .container{max-width:1200px}
    .section{padding:88px 0}
    .section-sm{padding:68px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:var(--radius-pill);
      background:var(--primary-soft);
      color:var(--primary-dark);
      font-weight:800;
      font-size:13px;
      margin-bottom:16px;
      border:1px solid rgba(31,138,76,.12);
    }
    .section-kicker::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(255,122,26,.12);
    }
    .section-title{
      font-size:clamp(28px,3vw,38px);
      line-height:1.22;
      font-weight:850;
      letter-spacing:-.03em;
      margin:0 0 14px;
      color:var(--text);
    }
    .section-desc{
      color:var(--muted);
      max-width:760px;
      font-size:17px;
      margin:0;
    }
    .text-muted-green{color:var(--muted)}
    .site-header{
      position:absolute;
      top:18px;
      left:0;
      right:0;
      z-index:1000;
      padding:0 18px;
    }
    .navbar-shell{
      max-width:1240px;
      margin:0 auto;
      padding:12px 16px;
      border-radius:var(--radius-pill);
      background:rgba(16,37,27,.58);
      backdrop-filter:blur(16px) saturate(140%);
      -webkit-backdrop-filter:blur(16px) saturate(140%);
      border:1px solid rgba(255,255,255,.28);
      box-shadow:0 16px 42px rgba(10,30,18,.22);
    }
    .navbar-brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:850;
      letter-spacing:-.02em;
      color:#fff;
      font-size:20px;
      white-space:nowrap;
    }
    .navbar-brand:hover,.navbar-brand:focus{color:#fff}
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:14px;
      background:
        radial-gradient(circle at 72% 25%, rgba(255,255,255,.95) 0 3px, transparent 4px),
        linear-gradient(135deg,var(--primary),var(--primary-dark));
      position:relative;
      display:inline-block;
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.32),0 10px 24px rgba(31,138,76,.25);
      flex:0 0 auto;
    }
    .brand-mark::before{
      content:"";
      position:absolute;
      left:14px;
      top:11px;
      width:0;
      height:0;
      border-top:8px solid transparent;
      border-bottom:8px solid transparent;
      border-left:12px solid #fff;
      filter:drop-shadow(0 1px 1px rgba(0,0,0,.12));
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:7px;
      border:1px solid rgba(255,255,255,.42);
      border-radius:50%;
      border-left-color:transparent;
    }
    .navbar-nav{gap:4px}
    .navbar-shell .nav-link{
      color:rgba(255,255,255,.84);
      font-weight:760;
      font-size:15px;
      padding:9px 13px!important;
      border-radius:var(--radius-pill);
    }
    .navbar-shell .nav-link:hover,
    .navbar-shell .nav-link:focus{
      color:#fff;
      background:rgba(255,255,255,.13);
    }
    .navbar-shell .nav-link.active{
      color:#fff;
      background:rgba(31,138,76,.82);
      box-shadow:inset 0 0 0 1px rgba(255,255,255,.18);
    }
    .nav-search{
      width:148px;
      height:40px;
      padding:0 14px;
      border-radius:var(--radius-pill);
      border:1px solid rgba(255,255,255,.28);
      outline:none;
      background:rgba(255,255,255,.12);
      color:#fff;
      font-size:14px;
      transition:border .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .nav-search::placeholder{color:rgba(255,255,255,.68)}
    .nav-search:focus{
      border-color:rgba(255,255,255,.72);
      background:rgba(255,255,255,.18);
      box-shadow:0 0 0 4px rgba(31,138,76,.18);
    }
    .navbar-toggler{
      border:1px solid rgba(255,255,255,.35);
      border-radius:14px;
      padding:7px 10px;
      box-shadow:none!important;
    }
    .navbar-toggler-icon{filter:brightness(0) invert(1)}
    .btn-main,.btn-ghost,.btn-orange{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:var(--radius-pill);
      font-weight:850;
      line-height:1;
      border:1px solid transparent;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,border-color .22s ease,color .22s ease;
      white-space:nowrap;
    }
    .btn-main{
      color:#fff!important;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      box-shadow:0 14px 30px rgba(31,138,76,.26);
      padding:13px 22px;
    }
    .btn-main:hover,.btn-main:focus{
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(31,138,76,.34);
      background:linear-gradient(135deg,#239a56,#0f5b31);
      color:#fff!important;
    }
    .btn-orange{
      color:#fff!important;
      background:linear-gradient(135deg,var(--accent),#e75f00);
      box-shadow:0 14px 30px rgba(255,122,26,.25);
      padding:13px 22px;
    }
    .btn-orange:hover,.btn-orange:focus{
      transform:translateY(-2px);
      box-shadow:0 18px 42px rgba(255,122,26,.32);
      color:#fff!important;
    }
    .btn-ghost{
      color:var(--primary-dark)!important;
      background:rgba(255,255,255,.82);
      border-color:rgba(31,138,76,.18);
      padding:13px 22px;
      box-shadow:0 10px 24px rgba(20,34,26,.06);
    }
    .btn-ghost:hover,.btn-ghost:focus{
      transform:translateY(-2px);
      background:var(--primary-soft);
      border-color:rgba(31,138,76,.34);
      color:var(--primary-dark)!important;
    }
    .page-hero{
      position:relative;
      min-height:650px;
      display:flex;
      align-items:center;
      padding:140px 0 88px;
      color:#fff;
      overflow:hidden;
      background:
        linear-gradient(110deg,rgba(16,37,27,.94) 0%,rgba(16,37,27,.78) 48%,rgba(31,138,76,.48) 100%),
        url('/assets/images/backpic/back-2.webp') center/cover no-repeat;
    }
    .page-hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(120deg,rgba(255,255,255,.08) 0 1px,transparent 1px 64px),
        radial-gradient(circle at 82% 18%,rgba(255,122,26,.28),transparent 24%),
        radial-gradient(circle at 65% 82%,rgba(31,138,76,.28),transparent 28%);
      opacity:.8;
      pointer-events:none;
    }
    .page-hero::after{
      content:"";
      position:absolute;
      width:560px;
      height:560px;
      right:-210px;
      bottom:-180px;
      border-radius:50%;
      border:1px solid rgba(255,255,255,.16);
      box-shadow:inset 0 0 0 28px rgba(255,255,255,.035);
      pointer-events:none;
    }
    .hero-content{position:relative;z-index:2}
    .hero-badge{
      display:inline-flex;
      align-items:center;
      gap:9px;
      padding:8px 14px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.22);
      color:#fff;
      font-weight:800;
      font-size:14px;
      backdrop-filter:blur(8px);
    }
    .hero-badge .dot{
      width:9px;height:9px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(255,122,26,.18);
    }
    .page-hero h1{
      margin:20px 0 18px;
      font-size:clamp(34px,5vw,58px);
      line-height:1.12;
      font-weight:900;
      letter-spacing:-.045em;
      max-width:780px;
    }
    .hero-lead{
      max-width:720px;
      color:rgba(255,255,255,.82);
      font-size:18px;
      line-height:1.86;
      margin-bottom:28px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:30px}
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:14px;
      max-width:720px;
    }
    .metric-pill{
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.18);
      backdrop-filter:blur(10px);
    }
    .metric-pill strong{display:block;font-size:23px;line-height:1.1;color:#fff}
    .metric-pill span{font-size:13px;color:rgba(255,255,255,.72)}
    .hero-board{
      position:relative;
      z-index:2;
      border-radius:var(--radius-xl);
      background:rgba(255,253,247,.94);
      color:var(--text);
      box-shadow:0 28px 80px rgba(0,0,0,.28);
      border:1px solid rgba(255,255,255,.6);
      overflow:hidden;
    }
    .hero-board-head{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:20px 20px 14px;
      border-bottom:1px solid var(--line);
      background:linear-gradient(135deg,#fff,var(--bg-warm));
    }
    .board-title{font-weight:900;font-size:18px}
    .board-date{
      border-radius:var(--radius-pill);
      background:var(--accent-soft);
      color:#b74a00;
      padding:6px 10px;
      font-weight:800;
      font-size:12px;
    }
    .board-games{padding:14px}
    .board-game{
      display:grid;
      grid-template-columns:58px 1fr auto;
      gap:12px;
      align-items:center;
      padding:14px;
      border-radius:18px;
      border:1px solid rgba(31,138,76,.12);
      background:#fff;
      margin-bottom:10px;
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
    }
    .board-game:hover{
      transform:translateY(-2px);
      border-color:rgba(31,138,76,.28);
      box-shadow:0 14px 32px rgba(20,34,26,.08);
    }
    .board-time{
      width:58px;
      min-height:50px;
      border-radius:16px;
      background:var(--primary-soft);
      color:var(--primary-dark);
      display:flex;
      align-items:center;
      justify-content:center;
      font-weight:900;
      font-size:15px;
    }
    .board-game h3{
      margin:0 0 3px;
      font-size:16px;
      font-weight:900;
    }
    .board-game p{
      margin:0;
      color:var(--muted);
      font-size:13px;
      line-height:1.5;
    }
    .tag{
      display:inline-flex;
      align-items:center;
      border-radius:var(--radius-pill);
      padding:6px 10px;
      background:var(--primary-soft);
      color:var(--primary-dark);
      border:1px solid rgba(31,138,76,.13);
      font-size:12px;
      font-weight:850;
      line-height:1;
      white-space:nowrap;
    }
    .tag.orange{background:var(--accent-soft);color:#b74a00;border-color:rgba(255,122,26,.18)}
    .tag.dark{background:rgba(16,37,27,.08);color:var(--dark);border-color:rgba(16,37,27,.12)}
    .date-strip{
      display:flex;
      gap:10px;
      overflow-x:auto;
      padding:8px 2px 14px;
      scrollbar-width:thin;
      scrollbar-color:rgba(31,138,76,.32) transparent;
    }
    .date-chip{
      min-width:118px;
      border:1px solid rgba(31,138,76,.16);
      background:#fff;
      border-radius:18px;
      padding:12px 14px;
      box-shadow:0 10px 24px rgba(20,34,26,.05);
      cursor:pointer;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,border-color .22s ease;
    }
    .date-chip:hover{transform:translateY(-2px);box-shadow:var(--shadow);border-color:rgba(31,138,76,.28)}
    .date-chip.active{
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      color:#fff;
      border-color:transparent;
      box-shadow:0 16px 34px rgba(31,138,76,.26);
    }
    .date-chip strong{display:block;font-size:15px;line-height:1.2}
    .date-chip span{display:block;font-size:12px;color:var(--muted);margin-top:4px}
    .date-chip.active span{color:rgba(255,255,255,.75)}
    .schedule-panel{
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid rgba(31,138,76,.14);
      box-shadow:var(--shadow);
      overflow:hidden;
    }
    .schedule-toolbar{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      padding:18px 20px;
      background:linear-gradient(135deg,var(--bg-soft),#fff);
      border-bottom:1px solid var(--line);
    }
    .schedule-toolbar h2{font-size:20px;font-weight:900;margin:0}
    .filter-pills{display:flex;gap:8px;flex-wrap:wrap}
    .schedule-list{padding:10px}
    .schedule-item{
      display:grid;
      grid-template-columns:92px 1.1fr 1.4fr 120px 124px;
      gap:14px;
      align-items:center;
      padding:18px;
      border-radius:20px;
      border:1px solid transparent;
      transition:background .22s ease,border-color .22s ease,transform .22s ease,box-shadow .22s ease;
    }
    .schedule-item + .schedule-item{margin-top:6px}
    .schedule-item:hover{
      background:var(--bg);
      border-color:rgba(31,138,76,.16);
      transform:translateY(-1px);
      box-shadow:0 14px 32px rgba(20,34,26,.06);
    }
    .time-box{
      border-radius:16px;
      padding:10px;
      background:var(--primary-soft);
      color:var(--primary-dark);
      text-align:center;
      font-weight:900;
      line-height:1.2;
    }
    .time-box small{display:block;font-size:12px;color:var(--muted);font-weight:800;margin-top:4px}
    .league-name{font-weight:900}
    .league-name span{display:block;color:var(--muted);font-size:13px;font-weight:700;margin-top:2px}
    .teams{font-weight:900;font-size:17px}
    .teams small{display:block;color:var(--muted);font-size:13px;font-weight:700;margin-top:3px}
    .watch-point{color:var(--muted);font-size:14px}
    .entry-link{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      border-radius:var(--radius-pill);
      color:var(--primary-dark);
      background:var(--primary-soft);
      border:1px solid rgba(31,138,76,.16);
      padding:9px 12px;
      font-weight:850;
      font-size:13px;
    }
    .entry-link:hover,.entry-link:focus{
      background:var(--primary);
      color:#fff;
      border-color:var(--primary);
    }
    .feature-card,.focus-card,.data-card,.news-card,.cta-card{
      border-radius:var(--radius-xl);
      border:1px solid rgba(31,138,76,.14);
      background:#fff;
      box-shadow:var(--shadow);
      overflow:hidden;
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
    }
    .feature-card:hover,.focus-card:hover,.data-card:hover,.news-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(31,138,76,.26);
    }
    .feature-card{height:100%;padding:24px}
    .feature-icon{
      width:52px;height:52px;border-radius:18px;
      display:flex;align-items:center;justify-content:center;
      background:linear-gradient(135deg,var(--primary-soft),#fff);
      color:var(--primary-dark);
      font-size:24px;
      margin-bottom:16px;
      border:1px solid rgba(31,138,76,.12);
    }
    .feature-card h3{font-size:20px;font-weight:900;margin:0 0 10px}
    .feature-card p{margin:0;color:var(--muted)}
    .focus-card .cover{
      position:relative;
      height:210px;
      overflow:hidden;
    }
    .focus-card .cover img{width:100%;height:100%;object-fit:cover;transition:transform .35s ease}
    .focus-card:hover .cover img{transform:scale(1.05)}
    .focus-card .cover::after{
      content:"";
      position:absolute;inset:0;
      background:linear-gradient(180deg,transparent 25%,rgba(16,37,27,.72));
    }
    .cover .floating-tag{
      position:absolute;
      left:16px;
      bottom:16px;
      z-index:2;
      background:rgba(255,255,255,.92);
      color:var(--primary-dark);
      border-radius:var(--radius-pill);
      padding:7px 11px;
      font-weight:900;
      font-size:12px;
    }
    .focus-body{padding:22px}
    .focus-body h3{font-size:22px;font-weight:900;margin:0 0 8px}
    .focus-body p{color:var(--muted);margin:0 0 16px}
    .stats-row{display:flex;flex-wrap:wrap;gap:8px}
    .data-zone{
      background:
        linear-gradient(135deg,rgba(242,248,241,.94),rgba(250,244,232,.9)),
        radial-gradient(circle at 15% 20%,rgba(255,122,26,.12),transparent 24%);
      border-top:1px solid rgba(31,138,76,.1);
      border-bottom:1px solid rgba(31,138,76,.1);
    }
    .data-card{padding:24px;height:100%}
    .data-card.highlight{
      background:linear-gradient(135deg,var(--dark),#17462b);
      color:#fff;
      border-color:rgba(255,255,255,.12);
    }
    .data-card.highlight p,.data-card.highlight .data-note{color:rgba(255,255,255,.72)}
    .data-num{
      display:flex;
      align-items:flex-end;
      gap:8px;
      margin-bottom:12px;
      color:var(--primary);
      font-weight:950;
      letter-spacing:-.04em;
      font-size:42px;
      line-height:1;
    }
    .data-card.highlight .data-num{color:#fff}
    .data-num small{font-size:14px;font-weight:850;letter-spacing:0;color:var(--muted);margin-bottom:5px}
    .data-card.highlight .data-num small{color:rgba(255,255,255,.7)}
    .data-card h3{font-size:20px;font-weight:900;margin:0 0 8px}
    .data-card p{margin:0;color:var(--muted)}
    .data-note{
      margin-top:16px;
      padding-top:14px;
      border-top:1px dashed rgba(31,138,76,.22);
      color:var(--muted);
      font-size:13px;
    }
    .news-layout{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:24px;
      align-items:stretch;
    }
    .news-card.large{
      min-height:100%;
      display:flex;
      flex-direction:column;
    }
    .news-card.large img{
      width:100%;
      height:300px;
      object-fit:cover;
    }
    .news-body{padding:24px}
    .news-body h3{font-size:25px;font-weight:900;line-height:1.28;margin:12px 0 10px}
    .news-body p{color:var(--muted);margin:0 0 16px}
    .news-list{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .news-mini{
      display:grid;
      grid-template-columns:98px 1fr;
      gap:14px;
      padding:14px;
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(31,138,76,.14);
      box-shadow:0 10px 26px rgba(20,34,26,.05);
      transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease;
    }
    .news-mini:hover{
      transform:translateY(-3px);
      box-shadow:var(--shadow);
      border-color:rgba(31,138,76,.25);
    }
    .news-mini img{
      width:98px;
      height:86px;
      border-radius:16px;
      object-fit:cover;
    }
    .news-mini h3{font-size:17px;font-weight:900;line-height:1.35;margin:0 0 5px}
    .news-mini p{font-size:13px;color:var(--muted);line-height:1.55;margin:0}
    .process-card{
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid rgba(31,138,76,.14);
      box-shadow:var(--shadow);
      padding:28px;
      height:100%;
      position:relative;
      overflow:hidden;
    }
    .process-card::after{
      content:"";
      position:absolute;
      width:130px;
      height:130px;
      border-radius:50%;
      right:-52px;
      top:-52px;
      background:rgba(255,122,26,.08);
    }
    .step-no{
      width:42px;height:42px;border-radius:16px;
      display:flex;align-items:center;justify-content:center;
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      font-weight:950;
      margin-bottom:18px;
    }
    .process-card h3{font-size:20px;font-weight:900;margin:0 0 10px}
    .process-card p{margin:0;color:var(--muted)}
    .faq-wrap{
      border-radius:var(--radius-xl);
      padding:10px;
      background:#fff;
      border:1px solid rgba(31,138,76,.14);
      box-shadow:var(--shadow);
    }
    .accordion-item{
      border:0;
      background:transparent;
      border-radius:20px!important;
      overflow:hidden;
    }
    .accordion-item + .accordion-item{margin-top:8px}
    .accordion-button{
      border-radius:20px!important;
      box-shadow:none!important;
      background:var(--bg);
      color:var(--text);
      font-size:17px;
      font-weight:900;
      padding:19px 20px;
    }
    .accordion-button:not(.collapsed){
      background:var(--primary-soft);
      color:var(--primary-dark);
    }
    .accordion-button::after{
      width:28px;height:28px;
      border-radius:50%;
      background-color:#fff;
      background-position:center;
      box-shadow:0 6px 16px rgba(20,34,26,.08);
    }
    .accordion-body{
      color:var(--muted);
      line-height:1.85;
      padding:2px 20px 22px;
      background:linear-gradient(180deg,var(--primary-soft),#fff);
    }
    .cta-section{
      padding:86px 0;
      background:
        linear-gradient(120deg,rgba(16,37,27,.95),rgba(18,100,55,.9)),
        url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
      color:#fff;
      position:relative;
      overflow:hidden;
    }
    .cta-section::before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 18% 22%,rgba(255,122,26,.22),transparent 26%),
        linear-gradient(120deg,rgba(255,255,255,.06) 0 1px,transparent 1px 72px);
      pointer-events:none;
    }
    .cta-section .container{position:relative;z-index:1}
    .cta-card{
      background:rgba(255,253,247,.95);
      color:var(--text);
      padding:28px;
    }
    .cta-list{
      list-style:none;
      padding:0;
      margin:22px 0 0;
      display:grid;
      gap:12px;
    }
    .cta-list li{
      display:flex;
      gap:10px;
      align-items:flex-start;
      color:rgba(255,255,255,.82);
    }
    .cta-list li::before{
      content:"✓";
      width:22px;height:22px;border-radius:50%;
      display:inline-flex;align-items:center;justify-content:center;
      background:rgba(255,122,26,.22);
      color:#fff;
      font-weight:900;
      flex:0 0 auto;
      margin-top:3px;
    }
    .form-label{font-weight:850;color:var(--text);font-size:14px;margin-bottom:7px}
    .form-control,.form-select{
      border-radius:16px;
      border:1px solid rgba(31,138,76,.18);
      min-height:50px;
      padding:11px 14px;
      background:#fff;
      color:var(--text);
      box-shadow:none!important;
    }
    textarea.form-control{min-height:116px;resize:vertical}
    .form-control:focus,.form-select:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(31,138,76,.12)!important;
    }
    .site-footer{
      background:var(--dark);
      color:rgba(255,255,255,.78);
      padding:62px 0 28px;
    }
    .site-footer .footer-brand{color:#fff;margin-bottom:16px}
    .footer-text{color:rgba(255,255,255,.66);margin:0;line-height:1.8}
    .footer-title{
      color:#fff;
      font-weight:900;
      margin-bottom:14px;
      font-size:16px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.68);
      font-size:14px;
    }
    .footer-links a:hover,.footer-links a:focus{
      color:#fff;
      padding-left:3px;
    }
    .footer-contact{
      color:rgba(255,255,255,.72);
      font-size:14px;
      line-height:1.8;
      word-break:break-all;
    }
    .footer-bottom{
      margin-top:42px;
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.12);
      text-align:center;
      color:rgba(255,255,255,.62);
      font-size:13px;
      line-height:1.9;
    }
    .footer-bottom a{color:rgba(255,255,255,.72)}
    .footer-bottom a:hover{color:#fff}
    @media (max-width:1199.98px){
      .schedule-item{grid-template-columns:82px 1fr 1.2fr 110px}
      .schedule-item .entry-link{grid-column:2 / -1;justify-self:start}
      .hero-metrics{grid-template-columns:repeat(3,1fr)}
    }
    @media (max-width:991.98px){
      .site-header{top:12px;padding:0 12px}
      .navbar-shell{border-radius:24px;padding:10px 12px}
      .navbar-collapse{
        margin-top:12px;
        padding:12px;
        border-radius:20px;
        background:rgba(16,37,27,.72);
        border:1px solid rgba(255,255,255,.14);
      }
      .navbar-nav{align-items:stretch!important}
      .navbar-shell .nav-link{padding:11px 13px!important}
      .nav-search{width:100%;margin:8px 0 10px}
      .page-hero{padding:128px 0 70px}
      .hero-board{margin-top:30px}
      .news-layout{grid-template-columns:1fr}
      .schedule-item{grid-template-columns:82px 1fr;align-items:start}
      .schedule-item .teams,
      .schedule-item .watch-point,
      .schedule-item .entry-link{grid-column:2 / -1}
      .section{padding:70px 0}
      .section-sm{padding:56px 0}
    }
    @media (max-width:767.98px){
      body{font-size:15px}
      .page-hero{min-height:auto;padding:118px 0 56px}
      .page-hero h1{font-size:34px}
      .hero-lead{font-size:16px}
      .hero-metrics{grid-template-columns:1fr}
      .hero-actions .btn-main,.hero-actions .btn-ghost{width:100%}
      .board-game{grid-template-columns:54px 1fr}
      .board-game .tag{grid-column:2 / -1;justify-self:start}
      .schedule-toolbar{align-items:flex-start;flex-direction:column}
      .filter-pills{width:100%}
      .schedule-item{grid-template-columns:1fr;padding:16px}
      .schedule-item .teams,
      .schedule-item .watch-point,
      .schedule-item .entry-link{grid-column:auto}
      .time-box{text-align:left;display:inline-block;min-width:94px}
      .entry-link{width:100%}
      .focus-card .cover{height:190px}
      .news-mini{grid-template-columns:86px 1fr}
      .news-mini img{width:86px;height:78px}
      .cta-section{padding:64px 0}
    }
    @media (max-width:520px){
      .container{padding-left:18px;padding-right:18px}
      .navbar-brand{font-size:18px}
      .brand-mark{width:34px;height:34px;border-radius:12px}
      .section-title{font-size:28px}
      .date-chip{min-width:104px;padding:10px 12px}
      .feature-card,.process-card,.cta-card{padding:22px}
      .news-card.large img{height:220px}
      .footer-bottom{font-size:12px}
    }

/* roulang page: category3 */
:root{
      --primary:#1F8A4C;
      --primary-dark:#10251B;
      --primary-deep:#166B3C;
      --accent:#FF7A1A;
      --cyan:#20C997;
      --text:#14221A;
      --muted:#66736B;
      --bg:#FFFDF7;
      --bg-soft:#F2F8F1;
      --bg-cream:#FAF4E8;
      --line:#DDE8DD;
      --line-strong:rgba(31,138,76,.22);
      --white:#fff;
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --shadow:0 18px 50px rgba(20,34,26,.08);
      --shadow-hover:0 24px 70px rgba(20,34,26,.14);
      --nav-h:82px;
      --font:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans CJK SC",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--text);
      background:
        radial-gradient(circle at 12% 8%, rgba(31,138,76,.09), transparent 28%),
        radial-gradient(circle at 88% 22%, rgba(255,122,26,.08), transparent 24%),
        linear-gradient(180deg,var(--bg) 0%,#fff 48%,var(--bg-soft) 100%);
      line-height:1.78;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color .25s ease,background .25s ease,transform .25s ease,box-shadow .25s ease}
    img{max-width:100%;display:block}
    button,input,textarea,select{font-family:inherit}
    ::selection{background:rgba(31,138,76,.18);color:var(--primary-dark)}
    .container{max-width:1180px}
    .section{padding:88px 0;position:relative}
    .section-tight{padding:64px 0}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 13px;
      border-radius:var(--radius-pill);
      background:rgba(31,138,76,.11);
      border:1px solid rgba(31,138,76,.16);
      color:var(--primary-deep);
      font-weight:700;
      font-size:13px;
      letter-spacing:.02em;
    }
    .eyebrow::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(255,122,26,.12);
    }
    .section-title{
      margin:14px 0 12px;
      font-size:clamp(28px,3vw,38px);
      line-height:1.22;
      font-weight:800;
      letter-spacing:-.03em;
      color:var(--text);
    }
    .section-desc{
      color:var(--muted);
      font-size:16.5px;
      max-width:760px;
      margin:0;
    }
    .site-header{
      position:fixed;
      left:0;right:0;top:0;
      z-index:1030;
      padding:16px clamp(14px,2vw,28px);
      transition:padding .28s ease,background .28s ease;
    }
    .navbar-shell{
      width:min(1180px,100%);
      margin:0 auto;
      padding:12px 16px;
      border-radius:var(--radius-pill);
      background:rgba(255,255,255,.66);
      border:1px solid rgba(255,255,255,.52);
      box-shadow:0 14px 38px rgba(16,37,27,.12);
      backdrop-filter:blur(18px) saturate(150%);
      -webkit-backdrop-filter:blur(18px) saturate(150%);
    }
    .site-header.is-scrolled{padding-top:10px;padding-bottom:10px}
    .site-header.is-scrolled .navbar-shell{
      background:rgba(255,253,247,.94);
      border-color:rgba(31,138,76,.14);
      box-shadow:0 18px 48px rgba(20,34,26,.12);
    }
    .navbar-brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:var(--primary-dark);
      font-weight:850;
      letter-spacing:-.02em;
      font-size:20px;
    }
    .brand-mark{
      width:38px;height:38px;
      border-radius:14px;
      display:inline-block;
      flex:0 0 auto;
      position:relative;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      box-shadow:0 10px 24px rgba(31,138,76,.24);
      overflow:hidden;
    }
    .brand-mark::before{
      content:"";
      position:absolute;
      left:14px;top:10px;
      width:0;height:0;
      border-left:12px solid #fff;
      border-top:8px solid transparent;
      border-bottom:8px solid transparent;
      z-index:2;
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:6px;
      border:1.5px solid rgba(255,255,255,.55);
      border-radius:50%;
      transform:skewX(-12deg);
    }
    .navbar-nav{gap:3px}
    .nav-link{
      color:rgba(20,34,26,.74);
      font-size:15px;
      font-weight:700;
      padding:9px 13px!important;
      border-radius:var(--radius-pill);
      position:relative;
    }
    .nav-link:hover,.nav-link:focus{
      color:var(--primary);
      background:rgba(31,138,76,.09);
    }
    .nav-link.active{
      color:var(--primary-dark)!important;
      background:rgba(31,138,76,.14);
    }
    .nav-search{
      width:136px;
      border:1px solid rgba(31,138,76,.18);
      background:rgba(255,255,255,.72);
      border-radius:var(--radius-pill);
      min-height:40px;
      padding:8px 14px;
      color:var(--text);
      outline:none;
      font-size:14px;
      transition:border .25s ease,box-shadow .25s ease,background .25s ease;
    }
    .nav-search:focus,.form-control:focus,.form-select:focus{
      border-color:rgba(31,138,76,.62);
      box-shadow:0 0 0 .24rem rgba(31,138,76,.14);
      background:#fff;
    }
    .navbar-toggler{
      border:0;
      border-radius:14px;
      background:rgba(31,138,76,.1);
      padding:10px 12px;
    }
    .navbar-toggler:focus{box-shadow:0 0 0 .2rem rgba(31,138,76,.18)}
    .navbar-toggler-icon{
      width:1.25em;height:1.25em;
      background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2820, 34, 26, 0.86%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    .btn-main,.btn-ghost,.btn-lightline{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:var(--radius-pill);
      font-weight:800;
      line-height:1.25;
      border:1px solid transparent;
      white-space:nowrap;
      transition:transform .25s ease,box-shadow .25s ease,background .25s ease,border-color .25s ease,color .25s ease;
    }
    .btn-main{
      color:#fff!important;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      box-shadow:0 12px 28px rgba(31,138,76,.26);
      padding:13px 22px;
    }
    .btn-main:hover,.btn-main:focus{
      transform:translateY(-2px);
      box-shadow:0 18px 40px rgba(31,138,76,.32);
      background:linear-gradient(135deg,var(--primary-deep),#0d1f16);
    }
    .btn-ghost{
      color:var(--primary-dark);
      background:rgba(255,255,255,.78);
      border-color:rgba(31,138,76,.18);
      padding:13px 22px;
    }
    .btn-ghost:hover,.btn-ghost:focus{
      color:var(--primary);
      background:rgba(242,248,241,.95);
      border-color:rgba(31,138,76,.34);
      transform:translateY(-2px);
    }
    .btn-lightline{
      color:var(--primary);
      background:rgba(31,138,76,.08);
      border-color:rgba(31,138,76,.16);
      padding:9px 15px;
      font-size:14px;
    }
    .btn-lightline:hover{background:rgba(31,138,76,.14);transform:translateY(-1px)}
    .hero{
      min-height:760px;
      padding:150px 0 92px;
      color:#fff;
      position:relative;
      overflow:hidden;
      background:
        linear-gradient(110deg,rgba(16,37,27,.92) 0%,rgba(16,37,27,.76) 48%,rgba(31,138,76,.35) 100%),
        url("/assets/images/backpic/back-3.webp") center/cover no-repeat;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(135deg,rgba(255,255,255,.08) 1px,transparent 1px) 0 0/46px 46px,
        radial-gradient(circle at 75% 30%,rgba(32,201,151,.22),transparent 28%),
        radial-gradient(circle at 20% 80%,rgba(255,122,26,.18),transparent 22%);
      opacity:.72;
      pointer-events:none;
    }
    .hero::after{
      content:"";
      position:absolute;
      left:-12%;bottom:-28%;
      width:560px;height:560px;
      border:2px solid rgba(255,255,255,.13);
      border-radius:50%;
      pointer-events:none;
    }
    .hero .container{position:relative;z-index:2}
    .hero h1{
      margin:18px 0 18px;
      font-size:clamp(34px,5vw,56px);
      line-height:1.14;
      font-weight:850;
      letter-spacing:-.045em;
      max-width:760px;
    }
    .hero p{
      color:rgba(255,255,255,.82);
      font-size:18px;
      line-height:1.86;
      max-width:680px;
      margin-bottom:0;
    }
    .hero .eyebrow{
      color:#eafff5;
      background:rgba(255,255,255,.12);
      border-color:rgba(255,255,255,.22);
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:30px}
    .hero-metrics{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:34px;
      max-width:720px;
    }
    .metric-item{
      padding:16px;
      border-radius:20px;
      background:rgba(255,255,255,.11);
      border:1px solid rgba(255,255,255,.16);
      backdrop-filter:blur(12px);
    }
    .metric-item strong{
      display:block;
      color:#fff;
      font-size:23px;
      line-height:1.1;
      margin-bottom:5px;
    }
    .metric-item span{
      color:rgba(255,255,255,.72);
      font-size:13px;
      font-weight:700;
    }
    .match-panel{
      background:rgba(255,253,247,.94);
      color:var(--text);
      border-radius:30px;
      padding:18px;
      box-shadow:0 30px 80px rgba(0,0,0,.23);
      border:1px solid rgba(255,255,255,.68);
      position:relative;
      overflow:hidden;
    }
    .match-panel::before{
      content:"";
      position:absolute;
      inset:0;
      background:radial-gradient(circle at 94% 4%,rgba(32,201,151,.22),transparent 34%);
      pointer-events:none;
    }
    .panel-top{
      position:relative;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:14px;
      margin-bottom:14px;
    }
    .panel-top h2{font-size:20px;font-weight:850;margin:0}
    .live-dot{
      display:inline-flex;
      align-items:center;
      gap:7px;
      color:var(--primary);
      font-weight:800;
      font-size:13px;
      padding:6px 10px;
      border-radius:var(--radius-pill);
      background:rgba(31,138,76,.1);
    }
    .live-dot::before{
      content:"";
      width:8px;height:8px;border-radius:50%;
      background:var(--cyan);
      box-shadow:0 0 0 5px rgba(32,201,151,.16);
    }
    .panel-match{
      position:relative;
      border-radius:20px;
      border:1px solid rgba(31,138,76,.13);
      background:#fff;
      padding:15px;
      margin-bottom:11px;
      display:grid;
      grid-template-columns:72px 1fr auto;
      align-items:center;
      gap:13px;
      transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
    }
    .panel-match:hover{
      transform:translateY(-2px);
      box-shadow:0 16px 34px rgba(20,34,26,.09);
      border-color:rgba(31,138,76,.25);
    }
    .timebox{
      text-align:center;
      border-radius:16px;
      padding:9px 7px;
      background:linear-gradient(180deg,var(--bg-soft),#fff);
      border:1px solid rgba(31,138,76,.12);
    }
    .timebox b{display:block;font-size:18px;color:var(--primary-dark);line-height:1.1}
    .timebox small{display:block;color:var(--muted);font-size:12px;margin-top:3px}
    .match-info h3{font-size:16px;font-weight:850;margin:0 0 3px;color:var(--text)}
    .match-info p{font-size:13px;line-height:1.55;color:var(--muted);margin:0}
    .tag,.badge-soft,.game-chip{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:var(--radius-pill);
      font-size:12.5px;
      font-weight:800;
      line-height:1;
      padding:7px 10px;
      border:1px solid transparent;
      white-space:nowrap;
    }
    .tag-hot{background:rgba(255,122,26,.12);color:#c85409;border-color:rgba(255,122,26,.18)}
    .tag-green{background:rgba(31,138,76,.1);color:var(--primary);border-color:rgba(31,138,76,.15)}
    .tag-cyan{background:rgba(32,201,151,.13);color:#118968;border-color:rgba(32,201,151,.2)}
    .game-nav{
      margin-top:-34px;
      position:relative;
      z-index:5;
    }
    .game-strip{
      background:#fff;
      border:1px solid rgba(31,138,76,.13);
      border-radius:26px;
      box-shadow:var(--shadow);
      padding:16px;
      display:flex;
      gap:12px;
      overflow:auto;
      scrollbar-width:thin;
      scrollbar-color:rgba(31,138,76,.36) transparent;
    }
    .game-chip{
      flex:0 0 auto;
      padding:13px 17px;
      background:var(--bg-soft);
      color:var(--primary-dark);
      border-color:rgba(31,138,76,.12);
      font-size:14px;
    }
    .game-chip.active,.game-chip:hover{
      color:#fff;
      background:linear-gradient(135deg,var(--primary),var(--primary-dark));
      box-shadow:0 12px 26px rgba(31,138,76,.22);
    }
    .feature-card,.topic-card,.info-card,.cta-card,.schedule-card{
      border:1px solid rgba(31,138,76,.13);
      border-radius:var(--radius-lg);
      background:rgba(255,255,255,.86);
      box-shadow:var(--shadow);
      transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
      overflow:hidden;
      height:100%;
    }
    .feature-card:hover,.topic-card:hover,.info-card:hover,.schedule-card:hover{
      transform:translateY(-5px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(31,138,76,.24);
    }
    .feature-card{
      padding:24px;
      position:relative;
    }
    .feature-card::after{
      content:"";
      position:absolute;
      right:-42px;bottom:-42px;
      width:130px;height:130px;border-radius:50%;
      background:rgba(31,138,76,.06);
    }
    .icon-badge{
      width:48px;height:48px;border-radius:18px;
      display:flex;align-items:center;justify-content:center;
      background:linear-gradient(135deg,rgba(31,138,76,.14),rgba(32,201,151,.12));
      color:var(--primary);
      font-weight:900;
      font-size:20px;
      margin-bottom:18px;
    }
    .feature-card h3,.topic-card h3,.info-card h3{
      font-size:20px;
      font-weight:850;
      margin:0 0 8px;
      letter-spacing:-.02em;
    }
    .feature-card p,.topic-card p,.info-card p{
      color:var(--muted);
      margin:0;
      font-size:15.5px;
    }
    .schedule-zone{
      background:
        linear-gradient(180deg,rgba(242,248,241,.92),rgba(250,244,232,.78)),
        radial-gradient(circle at 80% 20%,rgba(255,122,26,.12),transparent 28%);
      border-top:1px solid rgba(31,138,76,.1);
      border-bottom:1px solid rgba(31,138,76,.1);
    }
    .schedule-card{padding:18px;background:#fff;margin-bottom:14px}
    .schedule-row{
      display:grid;
      grid-template-columns:88px 1.2fr 1fr auto;
      gap:16px;
      align-items:center;
    }
    .event-name{
      color:var(--muted);
      font-size:13px;
      font-weight:800;
      margin-bottom:3px;
    }
    .teams{
      font-size:18px;
      font-weight:850;
      line-height:1.35;
      color:var(--text);
    }
    .focus-list{
      margin:0;
      padding:0;
      list-style:none;
      color:var(--muted);
      font-size:14px;
    }
    .focus-list li{
      position:relative;
      padding-left:16px;
      margin:2px 0;
    }
    .focus-list li::before{
      content:"";
      position:absolute;
      left:0;top:.72em;
      width:6px;height:6px;border-radius:50%;
      background:var(--accent);
    }
    .side-board{
      border-radius:28px;
      background:linear-gradient(145deg,var(--primary-dark),#183b2a);
      color:#fff;
      padding:24px;
      box-shadow:0 24px 60px rgba(16,37,27,.18);
      position:sticky;
      top:105px;
      overflow:hidden;
    }
    .side-board::before{
      content:"";
      position:absolute;
      right:-70px;top:-70px;
      width:180px;height:180px;border-radius:50%;
      border:2px solid rgba(255,255,255,.12);
    }
    .side-board h3{position:relative;font-size:21px;font-weight:850;margin:0 0 14px}
    .board-item{
      position:relative;
      padding:14px 0;
      border-top:1px solid rgba(255,255,255,.13);
    }
    .board-item:first-of-type{border-top:0}
    .board-item strong{display:block;font-size:15px;margin-bottom:3px}
    .board-item span{display:block;color:rgba(255,255,255,.68);font-size:13px;line-height:1.55}
    .topic-img{
      height:188px;
      overflow:hidden;
      position:relative;
    }
    .topic-img img{
      width:100%;
      height:100%;
      object-fit:cover;
      transition:transform .45s ease;
    }
    .topic-card:hover .topic-img img{transform:scale(1.05)}
    .topic-img .tag{
      position:absolute;
      left:14px;top:14px;
      backdrop-filter:blur(8px);
      background:rgba(255,253,247,.88);
    }
    .topic-body{padding:22px}
    .topic-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      margin:14px 0 0;
    }
    .data-panel{
      border-radius:30px;
      background:
        linear-gradient(135deg,rgba(16,37,27,.96),rgba(31,138,76,.88)),
        url("/assets/images/backpic/back-2.webp") center/cover no-repeat;
      color:#fff;
      padding:30px;
      min-height:100%;
      position:relative;
      overflow:hidden;
    }
    .data-panel::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(135deg,rgba(255,255,255,.07) 1px,transparent 1px) 0 0/34px 34px;
      opacity:.7;
    }
    .data-panel > *{position:relative;z-index:2}
    .data-panel h2{
      font-size:30px;
      font-weight:850;
      margin:10px 0 12px;
      letter-spacing:-.03em;
    }
    .data-panel p{color:rgba(255,255,255,.76);margin:0}
    .data-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:12px;
      margin-top:24px;
    }
    .data-tile{
      padding:16px;
      border-radius:18px;
      background:rgba(255,255,255,.1);
      border:1px solid rgba(255,255,255,.13);
    }
    .data-tile strong{display:block;font-size:26px;line-height:1.1;margin-bottom:5px}
    .data-tile span{color:rgba(255,255,255,.68);font-size:13px;font-weight:700}
    .info-list{
      display:flex;
      flex-direction:column;
      gap:14px;
    }
    .info-card{
      padding:18px;
      display:grid;
      grid-template-columns:118px 1fr;
      gap:16px;
      align-items:center;
    }
    .info-cover{
      height:92px;border-radius:18px;overflow:hidden;
      background:var(--bg-soft);
    }
    .info-cover img{width:100%;height:100%;object-fit:cover}
    .info-meta{
      display:flex;
      gap:8px;
      flex-wrap:wrap;
      margin-top:10px;
    }
    .process-step{
      display:flex;
      gap:16px;
      padding:22px;
      border-radius:22px;
      background:#fff;
      border:1px solid rgba(31,138,76,.13);
      box-shadow:0 12px 34px rgba(20,34,26,.06);
      height:100%;
    }
    .step-num{
      width:42px;height:42px;border-radius:15px;
      display:flex;align-items:center;justify-content:center;
      flex:0 0 auto;
      color:#fff;
      font-weight:900;
      background:linear-gradient(135deg,var(--accent),#e25b09);
      box-shadow:0 10px 22px rgba(255,122,26,.22);
    }
    .process-step h3{font-size:18px;font-weight:850;margin:0 0 6px}
    .process-step p{color:var(--muted);margin:0;font-size:15px}
    .faq-section .accordion{display:grid;gap:14px}
    .accordion-item{
      border:1px solid rgba(31,138,76,.15)!important;
      border-radius:20px!important;
      overflow:hidden;
      background:#fff;
      box-shadow:0 12px 30px rgba(20,34,26,.05);
    }
    .accordion-button{
      border:0;
      border-radius:20px!important;
      padding:18px 22px;
      font-weight:850;
      color:var(--text);
      background:#fff;
      box-shadow:none!important;
      line-height:1.55;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary-dark);
      background:linear-gradient(180deg,rgba(242,248,241,.96),rgba(255,255,255,.96));
    }
    .accordion-button::after{
      width:28px;height:28px;
      border-radius:50%;
      background-color:rgba(31,138,76,.1);
      background-size:14px;
      background-position:center;
      filter:none;
    }
    .accordion-body{
      padding:0 22px 22px;
      color:var(--muted);
      line-height:1.85;
    }
    .cta-wrap{
      background:
        radial-gradient(circle at 16% 20%,rgba(255,122,26,.14),transparent 24%),
        linear-gradient(135deg,var(--bg-soft),var(--bg-cream));
    }
    .cta-card{
      padding:34px;
      background:#fff;
      border-radius:30px;
    }
    .form-control,.form-select{
      min-height:52px;
      border-radius:16px;
      border:1px solid rgba(31,138,76,.16);
      color:var(--text);
      background:#fff;
      padding:12px 15px;
    }
    textarea.form-control{min-height:126px;resize:vertical}
    .form-label{font-weight:800;color:var(--text);font-size:14px;margin-bottom:7px}
    .contact-note{
      border-radius:24px;
      background:linear-gradient(145deg,var(--primary-dark),#173923);
      color:#fff;
      padding:28px;
      height:100%;
      box-shadow:0 20px 54px rgba(16,37,27,.16);
    }
    .contact-note p{color:rgba(255,255,255,.72);margin-bottom:20px}
    .note-list{list-style:none;margin:0;padding:0;display:grid;gap:12px}
    .note-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:rgba(255,255,255,.78);
      font-size:15px;
    }
    .note-list li::before{
      content:"✓";
      width:22px;height:22px;border-radius:50%;
      display:inline-flex;align-items:center;justify-content:center;
      background:rgba(32,201,151,.2);
      color:#dffef3;
      flex:0 0 auto;
      font-weight:900;
      font-size:12px;
      margin-top:2px;
    }
    .site-footer{
      background:var(--primary-dark);
      color:rgba(255,255,255,.78);
      padding:70px 0 28px;
      position:relative;
      overflow:hidden;
    }
    .site-footer::before{
      content:"";
      position:absolute;
      left:-120px;top:-160px;
      width:360px;height:360px;border-radius:50%;
      background:rgba(31,138,76,.22);
      filter:blur(4px);
    }
    .site-footer .container{position:relative;z-index:2}
    .footer-brand{color:#fff;margin-bottom:16px}
    .footer-text{color:rgba(255,255,255,.64);font-size:15px;line-height:1.8;margin:0}
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:16px;
      font-size:16px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer-links a,.footer-bottom a{
      color:rgba(255,255,255,.66);
    }
    .footer-links a:hover,.footer-bottom a:hover{
      color:#fff;
      text-decoration:none;
    }
    .footer-contact{
      color:rgba(255,255,255,.68);
      font-size:14px;
      line-height:1.8;
      word-break:break-word;
    }
    .footer-bottom{
      margin-top:42px;
      padding-top:24px;
      border-top:1px solid rgba(255,255,255,.12);
      text-align:center;
      color:rgba(255,255,255,.58);
      font-size:13px;
      display:grid;
      gap:8px;
    }
    @media (max-width:1199.98px){
      .navbar-shell{border-radius:26px}
      .nav-search{width:118px}
      .schedule-row{grid-template-columns:82px 1fr;align-items:start}
      .schedule-row .focus-list,.schedule-row .btn-lightline{grid-column:2}
      .side-board{position:relative;top:auto}
    }
    @media (max-width:991.98px){
      .site-header{padding:12px}
      .navbar-shell{padding:10px 12px}
      .navbar-collapse{
        margin-top:12px;
        padding:14px;
        border-radius:22px;
        background:rgba(255,253,247,.96);
        border:1px solid rgba(31,138,76,.12);
      }
      .navbar-nav{align-items:stretch!important;gap:5px}
      .nav-link{padding:11px 13px!important}
      .nav-search{width:100%;margin:8px 0 10px}
      .hero{padding-top:132px;min-height:auto}
      .hero-metrics{grid-template-columns:1fr 1fr}
      .match-panel{margin-top:28px}
      .section{padding:70px 0}
      .info-card{grid-template-columns:102px 1fr}
    }
    @media (max-width:767.98px){
      body{line-height:1.72}
      .hero{padding:120px 0 70px}
      .hero p{font-size:16px}
      .hero-actions .btn-main,.hero-actions .btn-ghost{width:100%}
      .hero-metrics{grid-template-columns:1fr}
      .panel-match{grid-template-columns:64px 1fr}
      .panel-match .tag{grid-column:1 / -1;justify-content:center}
      .game-nav{margin-top:-22px}
      .game-strip{border-radius:22px}
      .section{padding:58px 0}
      .section-tight{padding:48px 0}
      .schedule-row{grid-template-columns:1fr;gap:12px}
      .schedule-row .focus-list,.schedule-row .btn-lightline{grid-column:auto}
      .timebox{text-align:left;display:inline-flex;align-items:baseline;gap:8px;width:max-content;padding:10px 13px}
      .info-card{grid-template-columns:1fr}
      .info-cover{height:165px}
      .data-grid{grid-template-columns:1fr}
      .cta-card{padding:24px}
      .contact-note{margin-top:18px}
    }
    @media (max-width:520px){
      .navbar-brand{font-size:18px}
      .brand-mark{width:34px;height:34px;border-radius:12px}
      .hero h1{font-size:32px}
      .match-panel{padding:14px;border-radius:24px}
      .panel-top{align-items:flex-start;flex-direction:column}
      .topic-img{height:168px}
      .process-step{padding:18px}
      .footer-bottom{font-size:12px;line-height:1.8}
    }

/* roulang page: category4 */
:root{
      --primary:#1F8A4C;
      --primary-dark:#10251B;
      --primary-soft:#F2F8F1;
      --accent:#FF7A1A;
      --accent-soft:#FFF0E4;
      --ink:#14221A;
      --muted:#66736B;
      --bg:#FFFDF7;
      --sand:#FAF4E8;
      --line:#DDE8DD;
      --line-strong:rgba(31,138,76,.18);
      --white:#ffffff;
      --cyan:#20C997;
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:16px;
      --radius-pill:999px;
      --shadow:0 18px 50px rgba(20,34,26,.08);
      --shadow-hover:0 24px 70px rgba(20,34,26,.14);
      --font:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Microsoft YaHei","Noto Sans CJK SC",Arial,sans-serif;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:var(--font);
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 18%, rgba(31,138,76,.08), transparent 26%),
        radial-gradient(circle at 92% 14%, rgba(255,122,26,.08), transparent 22%),
        linear-gradient(180deg,var(--bg) 0%, #fffaf0 48%, var(--primary-soft) 100%);
      line-height:1.8;
      overflow-x:hidden;
    }
    a{color:inherit;text-decoration:none;transition:color .2s ease,background .2s ease,opacity .2s ease}
    img{max-width:100%;display:block}
    button,input,textarea,select{font-family:inherit}
    :focus-visible{outline:3px solid rgba(255,122,26,.38);outline-offset:3px}
    .container{max-width:1200px}
    .site-header{
      position:absolute;
      top:18px;
      left:0;
      right:0;
      z-index:50;
      padding:0 18px;
    }
    .navbar-shell{
      width:min(1200px,calc(100vw - 36px));
      margin:0 auto;
      padding:12px 16px;
      border:1px solid rgba(255,255,255,.38);
      border-radius:var(--radius-pill);
      background:rgba(16,37,27,.50);
      box-shadow:0 20px 45px rgba(0,0,0,.14);
      backdrop-filter:blur(16px) saturate(145%);
      -webkit-backdrop-filter:blur(16px) saturate(145%);
    }
    .navbar-brand,.footer-brand{
      display:inline-flex;
      align-items:center;
      gap:10px;
      font-weight:800;
      letter-spacing:.02em;
      color:#fff;
      white-space:nowrap;
    }
    .brand-mark{
      width:38px;
      height:38px;
      border-radius:15px;
      display:inline-block;
      position:relative;
      background:linear-gradient(135deg,var(--primary),#30ad68);
      box-shadow:inset 0 -8px 16px rgba(0,0,0,.14),0 8px 18px rgba(31,138,76,.22);
      flex:0 0 auto;
    }
    .brand-mark::before{
      content:"";
      position:absolute;
      left:14px;
      top:10px;
      width:0;
      height:0;
      border-top:8px solid transparent;
      border-bottom:8px solid transparent;
      border-left:12px solid #fff;
      filter:drop-shadow(0 2px 3px rgba(0,0,0,.12));
    }
    .brand-mark::after{
      content:"";
      position:absolute;
      inset:7px;
      border:1px solid rgba(255,255,255,.45);
      border-radius:50%;
    }
    .navbar-nav .nav-link{
      color:rgba(255,255,255,.86);
      font-size:15px;
      font-weight:650;
      padding:9px 13px!important;
      border-radius:var(--radius-pill);
      margin:0 2px;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active{
      color:#fff;
      background:rgba(255,255,255,.16);
    }
    .navbar-toggler{
      border:1px solid rgba(255,255,255,.42);
      border-radius:14px;
      padding:8px 10px;
      background:rgba(255,255,255,.12);
    }
    .navbar-toggler:focus{box-shadow:0 0 0 .22rem rgba(255,122,26,.22)}
    .navbar-toggler-icon{filter:invert(1)}
    .nav-search{
      width:156px;
      height:40px;
      border:1px solid rgba(255,255,255,.32);
      border-radius:var(--radius-pill);
      padding:0 14px;
      color:#fff;
      background:rgba(255,255,255,.12);
      outline:none;
      transition:border .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .nav-search::placeholder{color:rgba(255,255,255,.72)}
    .nav-search:focus{
      background:rgba(255,255,255,.18);
      border-color:rgba(255,255,255,.62);
      box-shadow:0 0 0 4px rgba(31,138,76,.18);
    }
    .btn-main,.btn-ghost,.btn-accent{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      border-radius:var(--radius-pill);
      font-weight:750;
      line-height:1.2;
      border:1px solid transparent;
      transition:transform .22s ease,box-shadow .22s ease,background .22s ease,border .22s ease,color .22s ease;
      cursor:pointer;
      white-space:nowrap;
    }
    .btn-main{
      color:#fff!important;
      background:linear-gradient(135deg,var(--primary),#126b3b);
      box-shadow:0 12px 28px rgba(31,138,76,.24);
      padding:12px 22px;
    }
    .btn-main:hover{transform:translateY(-2px);box-shadow:0 18px 36px rgba(31,138,76,.32);background:linear-gradient(135deg,#239b56,#0d5c31)}
    .btn-ghost{
      color:var(--primary-dark);
      background:rgba(255,255,255,.82);
      border-color:rgba(31,138,76,.18);
      padding:12px 22px;
    }
    .btn-ghost:hover{background:var(--primary-soft);border-color:rgba(31,138,76,.34);transform:translateY(-2px)}
    .btn-accent{
      color:#fff!important;
      background:linear-gradient(135deg,var(--accent),#ea5f0d);
      padding:12px 22px;
      box-shadow:0 12px 28px rgba(255,122,26,.24);
    }
    .btn-accent:hover{transform:translateY(-2px);box-shadow:0 18px 38px rgba(255,122,26,.30)}
    .hero{
      position:relative;
      min-height:620px;
      padding:150px 0 88px;
      color:#fff;
      overflow:hidden;
      background-image:linear-gradient(120deg,rgba(16,37,27,.92),rgba(16,37,27,.70) 48%,rgba(31,138,76,.48)),url('/assets/images/backpic/back-3.webp');
      background-size:cover;
      background-position:center;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(110deg,transparent 0 38%,rgba(255,255,255,.09) 38.2%,transparent 38.6%),
        radial-gradient(circle at 78% 22%,rgba(255,122,26,.28),transparent 20%),
        repeating-linear-gradient(90deg,rgba(255,255,255,.045) 0 1px,transparent 1px 72px);
      pointer-events:none;
    }
    .hero .container{position:relative;z-index:2}
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 12px;
      border-radius:var(--radius-pill);
      font-size:13px;
      font-weight:750;
      color:#f7fff9;
      background:rgba(255,255,255,.13);
      border:1px solid rgba(255,255,255,.24);
      backdrop-filter:blur(10px);
      margin-bottom:18px;
    }
    .eyebrow::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 0 5px rgba(255,122,26,.18);
    }
    h1{
      font-size:clamp(34px,5vw,56px);
      line-height:1.12;
      font-weight:850;
      letter-spacing:-.04em;
      margin:0 0 18px;
    }
    .hero-lead{
      color:rgba(255,255,255,.84);
      font-size:18px;
      line-height:1.85;
      max-width:650px;
      margin-bottom:28px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:12px;margin-bottom:26px}
    .hero-tags{display:flex;flex-wrap:wrap;gap:10px}
    .pill{
      display:inline-flex;
      align-items:center;
      gap:6px;
      border-radius:var(--radius-pill);
      padding:7px 12px;
      font-size:13px;
      font-weight:700;
      color:var(--primary);
      background:rgba(31,138,76,.10);
      border:1px solid rgba(31,138,76,.16);
    }
    .hero .pill{
      color:#fff;
      background:rgba(255,255,255,.12);
      border-color:rgba(255,255,255,.22);
    }
    .insight-board{
      background:rgba(255,253,247,.94);
      color:var(--ink);
      border:1px solid rgba(255,255,255,.55);
      border-radius:var(--radius-xl);
      padding:18px;
      box-shadow:0 30px 80px rgba(0,0,0,.24);
      backdrop-filter:blur(12px);
    }
    .board-cover{
      position:relative;
      overflow:hidden;
      border-radius:22px;
      min-height:210px;
      margin-bottom:14px;
    }
    .board-cover img{
      width:100%;
      height:240px;
      object-fit:cover;
      transform:scale(1.02);
    }
    .board-cover::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(16,37,27,.12),rgba(16,37,27,.70));
    }
    .board-cover-text{
      position:absolute;
      left:18px;
      right:18px;
      bottom:16px;
      z-index:2;
      color:#fff;
    }
    .board-cover-text h2{
      font-size:24px;
      line-height:1.25;
      font-weight:800;
      margin:8px 0 4px;
    }
    .mini-badge{
      display:inline-flex;
      align-items:center;
      border-radius:var(--radius-pill);
      padding:5px 9px;
      font-size:12px;
      font-weight:800;
      color:#8a3a04;
      background:#fff0df;
    }
    .board-list{display:grid;gap:10px}
    .board-item{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding:12px;
      border-radius:18px;
      background:#fff;
      border:1px solid rgba(31,138,76,.12);
    }
    .board-item strong{display:block;font-size:15px;line-height:1.35}
    .board-item span{font-size:13px;color:var(--muted)}
    .board-item em{font-style:normal;color:var(--accent);font-weight:850}
    .section{
      padding:84px 0;
      position:relative;
    }
    .section-soft{background:linear-gradient(180deg,rgba(242,248,241,.76),rgba(250,244,232,.62))}
    .section-title{
      max-width:760px;
      margin-bottom:34px;
    }
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      color:var(--primary);
      font-size:13px;
      font-weight:850;
      letter-spacing:.08em;
      margin-bottom:10px;
    }
    .section-kicker::before{
      content:"";
      width:24px;
      height:2px;
      border-radius:2px;
      background:var(--accent);
    }
    h2{
      font-size:clamp(28px,3.6vw,40px);
      line-height:1.22;
      font-weight:850;
      letter-spacing:-.035em;
      margin:0 0 12px;
    }
    .section-desc{
      color:var(--muted);
      font-size:17px;
      max-width:760px;
      margin:0;
    }
    .feature-story{
      position:relative;
      overflow:hidden;
      height:100%;
      min-height:520px;
      border-radius:var(--radius-xl);
      box-shadow:var(--shadow);
      border:1px solid rgba(31,138,76,.14);
      background:#fff;
    }
    .feature-story img{
      width:100%;
      height:100%;
      min-height:520px;
      object-fit:cover;
      transition:transform .35s ease;
    }
    .feature-story:hover img{transform:scale(1.04)}
    .feature-story::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,rgba(16,37,27,.02),rgba(16,37,27,.86));
    }
    .feature-content{
      position:absolute;
      z-index:2;
      left:28px;
      right:28px;
      bottom:26px;
      color:#fff;
    }
    .feature-content h3{
      font-size:30px;
      line-height:1.24;
      font-weight:850;
      margin:12px 0 12px;
    }
    .feature-content p{color:rgba(255,255,255,.84);margin:0 0 18px}
    .quick-feed{
      display:grid;
      gap:14px;
    }
    .quick-card,.data-card,.article-card,.step-card,.subscribe-card,.faq-wrap{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(31,138,76,.14);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow);
      transition:transform .24s ease,box-shadow .24s ease,border .24s ease;
    }
    .quick-card{
      padding:18px;
      display:grid;
      grid-template-columns:82px 1fr;
      gap:16px;
      align-items:center;
    }
    .quick-card:hover,.data-card:hover,.article-card:hover,.step-card:hover{
      transform:translateY(-4px);
      box-shadow:var(--shadow-hover);
      border-color:rgba(31,138,76,.26);
    }
    .quick-time{
      min-height:82px;
      border-radius:18px;
      display:flex;
      flex-direction:column;
      justify-content:center;
      align-items:center;
      color:var(--primary-dark);
      background:linear-gradient(180deg,var(--primary-soft),#fff);
      border:1px solid rgba(31,138,76,.14);
      font-weight:850;
      line-height:1.25;
    }
    .quick-time span{font-size:12px;color:var(--muted);font-weight:750}
    .quick-card h3{
      font-size:18px;
      font-weight:820;
      line-height:1.35;
      margin:0 0 6px;
    }
    .quick-card p{font-size:14px;color:var(--muted);line-height:1.65;margin:0}
    .tag-row{display:flex;flex-wrap:wrap;gap:8px;margin-top:10px}
    .tag-orange{color:#9a4106;background:var(--accent-soft);border-color:rgba(255,122,26,.18)}
    .data-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr 1fr 1fr;
      gap:18px;
      align-items:stretch;
    }
    .data-card{
      padding:22px;
      min-height:230px;
      position:relative;
      overflow:hidden;
    }
    .data-card.large{
      grid-column:span 2;
      color:#fff;
      background:linear-gradient(135deg,var(--primary-dark),#1f6f45);
      border-color:rgba(255,255,255,.20);
    }
    .data-card.large::after{
      content:"";
      position:absolute;
      width:210px;
      height:210px;
      right:-70px;
      bottom:-80px;
      border-radius:50%;
      border:28px solid rgba(255,255,255,.08);
    }
    .data-number{
      font-size:44px;
      line-height:1;
      font-weight:900;
      letter-spacing:-.05em;
      color:var(--primary);
      margin:14px 0 8px;
    }
    .data-card.large .data-number{color:#fff}
    .data-card h3{
      font-size:21px;
      font-weight:850;
      margin:0 0 8px;
    }
    .data-card p{
      color:var(--muted);
      margin:0;
      font-size:15px;
    }
    .data-card.large p{color:rgba(255,255,255,.78)}
    .meter{
      height:9px;
      border-radius:var(--radius-pill);
      background:rgba(31,138,76,.12);
      overflow:hidden;
      margin-top:18px;
    }
    .meter span{
      display:block;
      height:100%;
      border-radius:inherit;
      background:linear-gradient(90deg,var(--primary),var(--accent));
    }
    .article-layout{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:24px;
      align-items:start;
    }
    .topic-stack{
      display:grid;
      gap:16px;
      position:sticky;
      top:24px;
    }
    .topic-card{
      overflow:hidden;
      border-radius:var(--radius-xl);
      background:#fff;
      border:1px solid rgba(31,138,76,.14);
      box-shadow:var(--shadow);
    }
    .topic-card img{
      width:100%;
      height:240px;
      object-fit:cover;
    }
    .topic-body{padding:22px}
    .topic-body h3{font-size:24px;font-weight:850;line-height:1.25;margin:10px 0}
    .topic-body p{color:var(--muted);margin:0 0 16px}
    .article-list{display:grid;gap:16px}
    .article-card{
      padding:16px;
      display:grid;
      grid-template-columns:170px 1fr;
      gap:18px;
      align-items:center;
    }
    .article-card img{
      width:170px;
      height:126px;
      object-fit:cover;
      border-radius:18px;
    }
    .article-card h3{font-size:20px;font-weight:850;line-height:1.35;margin:0 0 8px}
    .article-card p{font-size:15px;color:var(--muted);line-height:1.7;margin:0 0 10px}
    .article-meta{
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      color:var(--muted);
      font-size:13px;
    }
    .process{
      background:
        linear-gradient(135deg,rgba(16,37,27,.96),rgba(31,138,76,.88)),
        url('/assets/images/backpic/back-1.webp');
      background-size:cover;
      background-position:center;
      color:#fff;
    }
    .process .section-desc{color:rgba(255,255,255,.78)}
    .step-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:16px;
      counter-reset:step;
    }
    .step-card{
      padding:22px;
      background:rgba(255,255,255,.10);
      border-color:rgba(255,255,255,.16);
      box-shadow:none;
      backdrop-filter:blur(8px);
      min-height:220px;
      color:#fff;
      counter-increment:step;
    }
    .step-card::before{
      content:"0" counter(step);
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:44px;
      height:44px;
      border-radius:16px;
      margin-bottom:18px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.22);
      color:#fff;
      font-weight:900;
    }
    .step-card h3{font-size:19px;font-weight:850;margin:0 0 10px}
    .step-card p{color:rgba(255,255,255,.76);font-size:15px;line-height:1.75;margin:0}
    .faq-wrap{
      padding:10px;
      background:#fff;
    }
    .accordion{display:grid;gap:12px}
    .accordion-item{
      border:1px solid rgba(31,138,76,.14)!important;
      border-radius:18px!important;
      overflow:hidden;
      background:#fff;
    }
    .accordion-button{
      border-radius:18px!important;
      background:#fff;
      color:var(--ink);
      font-weight:800;
      font-size:17px;
      padding:18px 20px;
      box-shadow:none!important;
    }
    .accordion-button:not(.collapsed){
      color:var(--primary-dark);
      background:linear-gradient(180deg,var(--primary-soft),#fff);
    }
    .accordion-button::after{
      width:24px;
      height:24px;
      border-radius:50%;
      background-color:rgba(31,138,76,.10);
      background-position:center;
      background-size:14px;
      padding:12px;
    }
    .accordion-body{
      color:var(--muted);
      padding:0 20px 20px;
      line-height:1.85;
    }
    .subscribe-section{
      padding:84px 0 92px;
      background:
        radial-gradient(circle at 84% 18%,rgba(255,122,26,.14),transparent 24%),
        linear-gradient(180deg,var(--sand),var(--bg));
    }
    .subscribe-card{
      padding:34px;
      overflow:hidden;
      position:relative;
    }
    .subscribe-card::after{
      content:"";
      position:absolute;
      width:260px;
      height:260px;
      right:-100px;
      top:-100px;
      border-radius:50%;
      background:rgba(31,138,76,.08);
    }
    .form-label{
      font-weight:750;
      color:var(--ink);
      margin-bottom:7px;
    }
    .form-control,.form-select{
      border:1px solid rgba(31,138,76,.18);
      border-radius:16px;
      min-height:50px;
      padding:12px 14px;
      color:var(--ink);
      background:#fff;
      box-shadow:none!important;
    }
    textarea.form-control{min-height:128px;resize:vertical}
    .form-control:focus,.form-select:focus{
      border-color:var(--primary);
      box-shadow:0 0 0 4px rgba(31,138,76,.12)!important;
    }
    .contact-list{
      display:grid;
      gap:12px;
      margin-top:22px;
    }
    .contact-item{
      display:flex;
      gap:12px;
      align-items:flex-start;
      padding:14px;
      border-radius:18px;
      background:rgba(31,138,76,.08);
      border:1px solid rgba(31,138,76,.12);
    }
    .contact-icon{
      width:34px;
      height:34px;
      border-radius:13px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      color:#fff;
      background:var(--primary);
      font-weight:900;
      flex:0 0 auto;
    }
    .contact-item strong{display:block;line-height:1.35}
    .contact-item span{display:block;color:var(--muted);font-size:14px;line-height:1.6}
    .site-footer{
      color:rgba(255,255,255,.78);
      background:var(--primary-dark);
      padding:64px 0 28px;
    }
    .site-footer .footer-brand{color:#fff;font-size:20px;margin-bottom:14px}
    .footer-text{
      max-width:360px;
      color:rgba(255,255,255,.70);
      margin:0;
      line-height:1.75;
    }
    .footer-title{
      color:#fff;
      font-weight:850;
      margin-bottom:14px;
    }
    .footer-links{
      list-style:none;
      padding:0;
      margin:0;
      display:grid;
      gap:9px;
    }
    .footer-links a{
      color:rgba(255,255,255,.70);
      font-size:14px;
    }
    .footer-links a:hover{color:#fff}
    .footer-contact{
      font-size:14px;
      line-height:1.8;
      color:rgba(255,255,255,.70);
      word-break:break-all;
    }
    .footer-bottom{
      margin-top:42px;
      padding-top:22px;
      border-top:1px solid rgba(255,255,255,.12);
      text-align:center;
      color:rgba(255,255,255,.62);
      font-size:13px;
      line-height:1.9;
    }
    .footer-bottom a{color:rgba(255,255,255,.76)}
    .footer-bottom a:hover{color:#fff}
    @media (max-width:1199.98px){
      .data-grid{grid-template-columns:repeat(2,1fr)}
      .step-grid{grid-template-columns:repeat(2,1fr)}
      .nav-search{width:132px}
    }
    @media (max-width:991.98px){
      .site-header{top:12px;padding:0 12px}
      .navbar-shell{
        width:calc(100vw - 24px);
        border-radius:24px;
        padding:10px 12px;
      }
      .navbar-collapse{
        margin-top:12px;
        padding:14px;
        border-radius:20px;
        background:rgba(16,37,27,.90);
        border:1px solid rgba(255,255,255,.12);
      }
      .navbar-nav .nav-link{margin:3px 0}
      .nav-search{width:100%;margin-bottom:10px}
      .hero{padding:132px 0 70px}
      .insight-board{margin-top:26px}
      .article-layout{grid-template-columns:1fr}
      .topic-stack{position:static}
      .feature-story,.feature-story img{min-height:430px}
    }
    @media (max-width:767.98px){
      body{line-height:1.75}
      .section,.subscribe-section{padding:58px 0}
      .hero{min-height:auto;padding:122px 0 56px}
      .hero-lead{font-size:16px}
      .hero-actions .btn-main,.hero-actions .btn-ghost{width:100%}
      .board-item{align-items:flex-start;flex-direction:column}
      .quick-card{grid-template-columns:1fr}
      .quick-time{min-height:auto;align-items:flex-start;padding:12px 14px}
      .data-grid{grid-template-columns:1fr}
      .data-card.large{grid-column:auto}
      .article-card{grid-template-columns:1fr}
      .article-card img{width:100%;height:210px}
      .step-grid{grid-template-columns:1fr}
      .subscribe-card{padding:24px}
      .feature-content{left:20px;right:20px;bottom:20px}
      .feature-content h3{font-size:24px}
    }
    @media (max-width:520px){
      .brand-mark{width:34px;height:34px;border-radius:13px}
      .navbar-brand{font-size:16px}
      h1{font-size:33px}
      h2{font-size:28px}
      .hero-tags{gap:8px}
      .pill{font-size:12px;padding:6px 10px}
      .board-cover img{height:210px}
      .section-title{margin-bottom:24px}
      .data-number{font-size:38px}
      .footer-bottom{font-size:12px}
    }
