/* roulang page: index */
/* ============================================================
   华体育网站 UI 设计系统
   ============================================================ */
:root {
  --paper: #F5F2EA;
  --surface: #FFFFFF;
  --surface-2: #E7EEE8;
  --ink: #10261D;
  --text: #24382F;
  --muted: #667E73;
  --line: rgba(16, 38, 29, 0.1);
  --brand-lime: #B3F245;
  --brand-green: #0E9F6E;
  --brand-green-deep: #0B5C46;
  --accent: #FF6B45;
  --gold: #F3B937;
  --grad-primary: linear-gradient(135deg, #B3F245 0%, #0E9F6E 100%);
  --grad-dark: linear-gradient(135deg, #13382B 0%, #0B261D 100%);
  --round-lg: 28px;
  --round-md: 18px;
  --shadow-card: 0 12px 30px rgba(18, 38, 29, 0.08);
  --shadow-hover: 0 18px 42px rgba(18, 38, 29, 0.12);
  --font-cn: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--font-cn);
  line-height: 1.75;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(255, 107, 69, .4);
  outline-offset: 2px;
}

img {
  max-width: 100%;
}

p {
  margin-top: 0;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--ink);
  line-height: 1.25;
  font-weight: 800;
  margin: 0 0 .3em;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  letter-spacing: .5px;
  margin-bottom: .35em;
}

.container-lg {
  max-width: 1320px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

@media (max-width: 576px) {
  .container-lg {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  border: 1.5px solid transparent;
  transition: background .25s, box-shadow .25s, transform .25s, border-color .2s;
  justify-content: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 38, 29, .14);
}

.btn-accent {
  background: var(--accent);
  color: #10261D !important;
  border-color: var(--accent);
}

.btn-accent i {
  font-size: .95em;
}

.btn-dark-green {
  background: var(--brand-green-deep);
  color: #fff !important;
  border-color: var(--brand-green-deep);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--brand-green);
  color: var(--brand-green-deep);
  background: rgba(14, 159, 110, .06);
}

.btn-lime {
  background: var(--brand-lime);
  color: var(--ink) !important;
  border: none;
}

.btn-lime i {
  color: var(--ink);
}

/* ============ 页头公共区 ============ */
.site-header-wrap {
  position: sticky;
  top: 0;
  z-index: 1040;
  background: rgba(245, 242, 234, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  height: 76px;
}

.site-header {
  height: 76px;
}

.header__row {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: 12px;
  flex-shrink: 0;
}

.brand__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--brand-lime);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transform: rotate(-6deg);
  flex-shrink: 0;
}

.brand__text {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: 0;
  white-space: nowrap;
}

.brand__text small {
  display: none;
}

.header__center {
  flex: 1;
  display: flex;
  align-items: center;
}

.segment-nav {
  display: flex;
  gap: 6px;
  align-items: center;
  margin: 0 auto;
  background: rgba(231, 238, 232, .65);
  padding: 5px;
  border-radius: 999px;
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, box-shadow .2s;
}

.chip:hover {
  background: rgba(14, 159, 110, .14);
  color: var(--brand-green-deep);
}

.chip.is-active {
  background: var(--brand-green-deep);
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(11, 92, 70, .24);
}

.chip.is-active i {
  color: var(--brand-lime);
}

.chip i {
  font-size: 14px;
  margin-right: 5px;
  color: var(--brand-green);
}

.header__right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn.header-cta {
  padding: 10px 24px;
  font-size: 15px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 0;
  font-size: 1.25rem;
  color: var(--ink);
  justify-content: center;
  align-items: center;
  transition: background .2s;
}

.menu-toggle:hover {
  background: rgb(179, 242, 69, .58);
}

/* 移动导航抽屉 */
.header-cta--mobile {
  display: none;
}

/* ============ Hero 首屏 ============ */
.hero {
  min-height: 92vh;
  padding: 130px 0 80px;
  background:
    linear-gradient(96deg, rgba(11, 37, 29, .96) 0%, rgba(17, 47, 36, .89) 42%, rgba(11, 30, 24, .55) 100%),
    radial-gradient(900px 520px at 80% 20%, rgba(179, 242, 69, .22), transparent 60%),
    url('/assets/images/backpic/back-1.png') center 40% / cover no-repeat;
  position: relative;
  color: #fff;
}

.hero .brand-tag {
  display: inline-block;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: .4px;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.hero-title .title-line {
  display: block;
}

.hero-title .highlight-lime {
  color: var(--brand-lime);
}

.hero-sub {
  font-size: 1.2rem;
  line-height: 1.85;
  color: rgba(244, 250, 246, .88);
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 54px;
}

/* Hero 浮动信息徽章 */
.hero-metrics {
  position: relative;
  height: 340px;
}

@media (min-width: 992px) {
  .hero-metric-card {
    position: absolute;
    width: 160px;
    padding: 20px 16px 18px;
    background: rgba(255, 255, 255, .11);
    border: 1px solid rgba(255, 255, 255, .18);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
  }

  .hero-metric-card .metric-num {
    font-size: 2.3rem;
    font-weight: 900;
    color: var(--brand-lime);
    font-variant-numeric: tabular-nums;
    line-height: 1;
    display: block;
    margin-bottom: 6px;
  }

  .hero-metric-card .metric-label {
    font-size: 14px;
    color: rgba(255, 255, 255, .78);
    font-weight: 500;
  }

  .metric-card-a {
    top: 0;
    right: 6%;
  }

  .metric-card-b {
    top: 150px;
    right: 28%;
    transform: translateX(24px);
  }

  .metric-card-c {
    bottom: -10px;
    right: 0;
    background: rgba(255, 255, 255, .92);
    color: var(--ink);
    border-color: transparent;
  }

  .metric-card-c .metric-num {
    color: var(--brand-green);
  }

  .metric-card-c .metric-label {
    color: var(--muted);
  }
}

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 38px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-radius: 999px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 12px;
}

.hero-scroll::after {
  content: "";
  width: 4px;
  height: 8px;
  background: var(--brand-lime);
  border-radius: 4px;
  animation: scroll-hint 1.6s ease-in-out infinite;
}

@keyframes scroll-hint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(18px); opacity: 0; }
  100% { opacity: 0; }
}

/* ============ 通用区块 ============ */
.section-common {
  padding: clamp(56px, 9vh, 110px) 0;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 42px;
}

.section-head h2 {
  margin-bottom: 0;
}

.section-head p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 560px;
}

.eyebrow {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--brand-green);
  margin-bottom: 8px;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--brand-green-deep);
  border-bottom: 2px solid var(--brand-lime);
  padding-bottom: 2px;
  white-space: nowrap;
}

.section-link:hover {
  color: var(--accent);
}

.section-link i {
  transition: transform .2s;
}

.section-link:hover i {
  transform: translateX(4px);
}

/* ============ 玩法介绍 ============ */
.play-section {
  background: var(--paper);
  position: relative;
}

.play-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 42px;
  align-items: stretch;
}

.play-card {
  background: var(--surface);
  border-radius: var(--round-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(16, 38, 29, .05);
}

.play-card .play-card-media {
  margin: -36px -36px 24px;
  height: 226px;
  background: url('/assets/images/coverpic/cover-1.webp') center / cover no-repeat;
  min-height: 220px;
}

.play-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.play-card p {
  color: var(--muted);
  flex: 1;
}

.play-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.play-tag {
  display: inline-flex;
  align-items: center;
  background: var(--surface-2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-green-deep);
  gap: 5px;
}

/* 步骤列表 */
.steps-box {
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.step-item {
  display: flex;
  gap: 22px;
  padding-bottom: 32px;
  margin-bottom: 28px;
  position: relative;
}

.step-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.step-item::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 66px;
  bottom: -8px;
  width: 2px;
  background: linear-gradient(180deg, var(--brand-green), rgba(14, 159, 110, .16));
  border-radius: 4px;
}

.step-item:last-child::before {
  display: none;
}

.step-num {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 20px;
  background: var(--surface);
  border: 2px solid var(--brand-lime);
  box-shadow: 0 8px 20px rgba(18, 38, 29, .08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  font-weight: 900;
  color: var(--brand-green-deep);
  font-size: 1.4rem;
  line-height: 1;
}

.step-num small {
  font-size: 9px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .5px;
  margin-top: 3px;
}

.step-body {
  padding-top: 4px;
}

.step-title {
  font-size: 1.24rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--ink);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.step-badge {
  display: inline-block;
  background: rgba(179, 242, 69, .22);
  color: var(--brand-green-deep);
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 2px 9px;
  letter-spacing: .3px;
}

.step-body p {
  color: var(--muted);
  margin: 0;
  font-size: 15px;
}

.play-link-more {
  margin-top: 28px;
}

/* ============ 奖励预览（深色） ============ */
.reward-section {
  background: var(--grad-dark);
  color: rgba(255, 255, 255, .8);
}

.reward-section .section-head h2 {
  color: #fff;
}

.reward-section .section-head .eyebrow {
  color: var(--brand-lime);
}

.reward-section .section-head p {
  color: rgba(255, 255, 255, .62);
}

.reward-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.12fr .94fr .94fr;
  align-items: stretch;
}

.reward-card {
  border-radius: var(--round-lg);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0;
  transition: transform .25s ease, background .25s ease;
}

.reward-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .1);
}

.reward-card .card-media {
  height: 160px;
  margin-bottom: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: 0;
}

.reward-card.is-main .card-media {
  height: 210px;
}

.reward-media-1 {
  background-image: url('/assets/images/coverpic/cover-5.webp');
}

.reward-media-2 {
  background-image: url('/assets/images/coverpic/cover-7.webp');
}

.reward-media-3 {
  background-image: url('/assets/images/coverpic/cover-8.webp');
}

.card-media .media-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  background: linear-gradient(0deg, rgba(11, 38, 29, .7), transparent);
}

.media-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(16, 38, 29, .78);
  backdrop-filter: blur(6px);
  color: #FFF;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 5px 12px;
  display: inline-flex;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, .15);
}

.media-badge i {
  color: var(--brand-lime);
}

.reward-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.reward-name-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.reward-name {
  font-size: 1.28rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.reward-value {
  background: var(--gold);
  color: #10261D;
  font-size: 13px;
  font-weight: 900;
  border-radius: 999px;
  padding: 5px 13px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.reward-card p {
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  margin: 0;
}

.reward-condition {
  margin-top: auto;
}

.condition-title {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255, 255, 255, .68);
  font-weight: 600;
  margin-bottom: 7px;
}

.condition-title .value {
  color: var(--brand-lime);
}

.progress {
  height: 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .16);
  overflow: hidden;
}

.progress-bar {
  background: var(--grad-primary);
}

.reward-note {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.reward-note i {
  color: var(--brand-lime);
}

/* ============ 任务进度区域 ============ */
.task-section {
  background: var(--paper);
}

.task-panel {
  background: var(--surface);
  border-radius: var(--round-lg);
  border: 1px solid rgba(16, 38, 29, .06);
  box-shadow: var(--shadow-card);
  padding: clamp(26px, 4vw, 42px);
}

.task-panel h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 1.3rem;
}

.task-panel h3 small {
  font-size: 14px;
  background: var(--surface-2);
  border-radius: 999px;
  padding: 4px 12px;
  font-weight: 700;
  color: var(--brand-green-deep);
  white-space: nowrap;
}

.task-progress-top {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  margin-top: 22px;
  margin-bottom: 28px;
}

.progress-label {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}

.ring-wrap {
  flex-shrink: 0;
}

.ring-bg {
  fill: none;
  stroke: var(--surface-2);
  stroke-width: 10;
}

.ring-progress {
  fill: none;
  stroke: var(--brand-green);
  stroke-width: 10;
  stroke-linecap: round;
}

.ring-number {
  font-size: 26px;
  font-weight: 900;
  fill: var(--ink);
  font-variant-numeric: tabular-nums;
}

.ring-sub {
  font-size: 12px;
  fill: var(--muted);
  font-weight: 600;
  letter-spacing: 1px;
}

.task-progress-note p {
  color: var(--muted);
  margin: 4px 0 0;
  max-width: 560px;
  font-size: 15px;
}

.task-progress-note .note-strong {
  color: var(--accent);
  font-weight: 800;
}

.task-divider {
  border: 0;
  border-top: 1px dashed var(--line);
  margin: 24px 0;
}

.task-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.task-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 20px;
  transition: box-shadow .2s ease;
}

.task-row:hover {
  box-shadow: 0 8px 24px rgba(18, 38, 29, .06);
}

.task-check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.task-check.done {
  background: var(--brand-lime);
  color: var(--ink);
}

.task-check.lock {
  background: var(--surface-2);
  color: var(--muted);
}

.task-info {
  flex: 1 1 230px;
}

.task-info .task-name {
  font-weight: 800;
  color: var(--ink);
  font-size: 15px;
}

.task-info .task-desc {
  font-size: 13.5px;
  color: var(--muted);
  margin: 2px 0 0;
}

.task-progress-mini {
  width: 190px;
}

.task-progress-mini .progress {
  height: 7px;
}

.task-action-link {
  color: var(--brand-green-deep);
  font-weight: 700;
  font-size: 14px;
  text-decoration: underline dotted 1.5px;
  text-underline-offset: 3px;
  white-space: nowrap;
}

.task-action-link:hover {
  color: var(--accent);
}

/* ============ CTA 横幅 ============ */
.cta-section {
  background: var(--brand-lime);
}

.cta-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--brand-lime);
  border-radius: 34px;
  padding: clamp(28px, 5.4vw, 60px);
}

.cta-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--ink);
  margin: 0 0 10px;
}

.cta-card p {
  color: #305640;
  max-width: 580px;
  margin: 0;
  font-weight: 500;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ============ 最新资讯 / CMS 区域 ============ */
.news-section {
  background: var(--paper);
  padding: clamp(56px, 9vh, 110px) 0;
}

.news-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
}

/* 头条大卡 */
.news-feature {
  background: var(--surface);
  border-radius: var(--round-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s;
}

.news-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.news-feature .feature-thumb {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.news-feature .feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 28, 20, 0) 40%, rgba(10, 28, 20, .72));
}

.feature-content {
  padding: 18px 24px 24px;
  position: relative;
  margin-top: -30px;
}

.feature-cat {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: 999px;
  padding: 4px 13px;
  margin-bottom: 12px;
}

.feature-content h3 {
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.45;
}

.feature-content p {
  color: var(--muted);
  margin-bottom: 16px;
  font-size: 14.5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feature-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 14px;
}

.feature-foot .read-link {
  color: var(--brand-green-deep);
  font-weight: 700;
}

/* 右侧列表 */
.news-right {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.news-list-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: flex;
  gap: 15px;
  align-items: center;
  padding: 12px 12px;
  height: 100%;
  transition: transform .2s ease, box-shadow .2s ease;
}

.news-list-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.news-list-item .list-thumb {
  width: 104px;
  height: 86px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 14px;
}

.news-list-body {
  min-width: 0;
  flex: 1;
}

.news-list-body .news-cat {
  font-size: 12px;
  color: var(--brand-green);
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}

.news-list-body h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.5;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-list-body p {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-list-foot {
  display: flex;
  gap: 20px;
  font-size: 12.5px;
  color: var(--muted);
  align-items: center;
}

.news-date {
  font-variant-numeric: tabular-nums;
}

.news-list-item .arrow-link {
  color: var(--brand-green-deep);
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  font-size: 13px;
  transition: background .2s ease;
}

.news-list-item:hover .arrow-link {
  background: var(--brand-lime);
}

/* 空状态 */
.empty-state {
  border: 2px dashed rgba(16, 38, 29, .25);
  background: rgba(255, 255, 255, .6);
  border-radius: var(--round-lg);
  padding: 40px 24px;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.empty-state .empty-icon {
  display: block;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: var(--brand-green);
}

/* ============ FAQ ============ */
.faq-section {
  background: #fff;
  padding: clamp(56px, 9vh, 100px) 0;
}

.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
  transition: background .2s ease;
}

.faq-item.is-open {
  background: var(--surface-2);
  border-color: rgba(14, 159, 110, .25);
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}

.faq-q::-webkit-details-marker,
.faq-q summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(14, 159, 110, .12);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  margin-left: auto;
  transition: transform .25s ease, background .25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--ink);
}

.faq-a {
  padding: 0 22px 20px;
  color: var(--text);
  font-size: 15px;
}

/* ============ 页脚 ============ */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .72);
  padding: 0;
  position: relative;
}

.footer-topline {
  height: 5px;
  background: linear-gradient(90deg, var(--brand-lime), var(--brand-green), var(--accent));
}

.footer-main {
  padding-top: clamp(40px, 7vh, 74px);
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .9fr .9fr 1.3fr;
  gap: 34px;
}

.footer h4 {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 18px;
  font-weight: 800;
}

.footer .footer-brand {
  font-size: 1.45rem;
  font-weight: 900;
  color: #fff;
  white-space: nowrap;
}

.footer .footer-brand i {
  color: var(--brand-lime);
  margin-right: 7px;
}

.footer-about {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.9;
  max-width: 380px;
}

.footer-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  transition: background .2s ease, transform .2s ease;
}

.footer-social a:hover {
  background: var(--brand-lime);
  color: var(--ink);
  transform: translateY(-4px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  transition: color .2s, padding-left .2s;
}

.footer-links a:hover {
  color: var(--brand-lime);
  padding-left: 5px;
}

.footer-contact p {
  font-size: 14px;
  margin: 0 0 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, .66);
}

.footer-contact i {
  color: var(--brand-lime);
  width: 22px;
  text-align: center;
}

.footer-contact-small {
  background: rgba(255, 255, 255, .05);
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-top: 16px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, .46);
}

.footer-bottom a {
  color: rgba(255, 255, 255, .38);
}

.footer-bottom a:hover {
  color: var(--brand-lime);
}

.copyright-domain {
  color: rgba(255, 255, 255, .68);
}

/* ============ 响应式 ============ */
@media (min-width: 992px) {
  .header-cta--mobile {
    display: none;
  }

  .menu-toggle {
    display: none;
  }

  .segment-nav .chip.is-active {
    background: var(--brand-green-deep);
  }
}

@media (max-width: 991.98px) {
  .site-header {
    height: 64px;
  }

  .site-header-wrap,
  .header__row {
    height: 64px;
  }

  .header__row {
    position: relative;
  }

  .brand__icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .brand__text {
    font-size: 1.2rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header__center {
    position: absolute;
    top: calc(100% + 14px);
    left: 14px;
    right: 14px;
    background: var(--surface);
    box-shadow: 0 30px 70px rgba(16, 38, 29, .16);
    border-radius: 22px;
    padding: 16px;
    border: 1px solid var(--line);
    display: none;
    pointer-events: none;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .header__center.show {
    display: block;
    pointer-events: auto;
    opacity: 1;
    transform: none;
  }

  .header__left {
    flex: 1;
  }

  .segment-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    background: var(--surface-2);
    border-radius: 16px;
    padding: 10px;
    margin-bottom: 12px;
  }

  .chip {
    padding: 9px 12px;
    font-size: 15px;
    justify-content: flex-start;
    border-radius: 12px;
  }

  .chip.is-active {
    background: var(--brand-green-deep);
  }

  .header-cta--mobile {
    display: flex;
    width: 100%;
    border-radius: 14px;
  }

  .header-cta--desktop {
    display: none !important;
  }

  .hero {
    padding: 105px 0 70px;
    min-height: 0;
  }

  .hero-sub {
    font-size: 1.05rem;
  }

  .hero-metrics {
    margin-top: 48px;
    display: flex;
    gap: 12px;
  }

  .hero-metric-card {
    flex: 1;
    padding: 18px 12px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .17);
    backdrop-filter: blur(8px);
    border-radius: 18px;
    color: #fff;
    max-width: 150px;
  }

  .hero-metric-card .metric-num {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--brand-lime);
    display: block;
    line-height: 1.2;
  }

  .hero-metric-card .metric-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
  }

  .metric-card-c {
    background: rgba(255, 255, 255, .88);
    color: var(--ink);
  }

  .metric-card-c .metric-num {
    color: var(--brand-green);
  }

  .play-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .reward-grid {
    grid-template-columns: 1fr;
  }

  .reward-card.is-main {
    grid-row: auto;
  }

  .task-panel h3 {
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  .section-common {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero .brand-tag {
    font-size: 12px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    padding: 10px 20px;
    font-size: 15px;
  }

  .hero-metrics {
    display: block;
    position: relative;
    height: 174px;
    gap: 0;
  }

  .hero-metric-card {
    position: absolute;
    padding: 12px 12px;
    max-width: 130px;
    border-radius: 16px;
  }

  .hero-metric-card .metric-num {
    font-size: 1.25rem;
  }

  .hero-metric-card .metric-label {
    font-size: 11px;
  }

  .metric-card-a {
    left: 0;
    top: 12px;
  }

  .metric-card-b {
    right: 0;
    top: 12px;
  }

  .metric-card-c {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    max-width: 170px;
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
  }

  .metric-card-c .metric-num {
    color: var(--brand-green);
  }

  .hero-scroll {
    display: none;
  }

  .read-link {
    font-size: 13px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-list-item .list-thumb {
    width: 90px;
    height: 76px;
  }

  .cta-card {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
    padding: 26px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-about-col {
    grid-column: 1 / -1;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .play-card .play-card-media {
    height: 260px;
  }
}

@media (max-width: 575.98px) {
  .brand__text {
    font-size: 1.05rem;
  }

  .brand__icon {
    width: 34px;
    height: 34px;
  }

  .btn {
    padding: 11px 18px;
    font-size: 15px;
  }

  .hero {
    padding-top: 96px;
    padding-bottom: 60px;
  }

  .hero-title {
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .cta-section {
    border-radius: 0;
  }

  .cta-card {
    border-radius: 24px;
  }

  .step-item {
    gap: 14px;
  }

  .step-body p {
    font-size: 14px;
  }

  .step-num {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 1.1rem;
  }

  .step-item::before {
    left: 23px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-main {
    padding-top: 36px;
  }

  .header-cta--desktop {
    display: none !important;
  }

  .news-feature {
    flex-direction: column;
  }

  .news-feature .feature-thumb {
    height: 190px;
  }

  .feature-content {
    padding: 14px 18px 18px;
  }

  .news-list-item {
    align-items: flex-start;
  }

  .news-list-item .arrow-link {
    display: none;
  }
}

/* roulang page: article */
:root {
            --paper: #F5F2EA;
            --surface: #FFFFFF;
            --surface-2: #E7EEE8;
            --ink: #10261D;
            --text: #24382F;
            --muted: #667E73;
            --line: rgba(16, 38, 29, .1);
            --brand-lime: #B3F245;
            --brand-green: #0E9F6E;
            --brand-green-deep: #0B5C46;
            --accent: #FF6B45;
            --gold: #F3B937;
            --grad-primary: linear-gradient(135deg, #B3F245 0%, #0E9F6E 100%);
            --grad-dark: linear-gradient(135deg, #13382B 0%, #0B261D 100%);
            --round-lg: 28px;
            --round-md: 18px;
            --shadow-card: 0 12px 30px rgba(18, 38, 29, .08);
            --shadow-hover: 0 18px 42px rgba(18, 38, 29, .12);
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
            font-size: 16px;
            line-height: 1.7;
            background-color: var(--paper);
            color: var(--text);
            -webkit-font-smoothing: antialiased;
        }
        a {
            text-decoration: none;
            transition: all .25s ease;
        }
        a:hover {
            text-decoration: none;
        }
        img {
            max-width: 100%;
            height: auto;
        }
        .container-lg {
            max-width: 1320px;
            padding-left: 24px;
            padding-right: 24px;
        }
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1030;
            background: rgba(245, 242, 234, .85);
            backdrop-filter: saturate(140%) blur(18px);
            border-bottom: 1px solid rgba(16, 38, 29, .08);
            box-shadow: 0 6px 20px rgba(16, 38, 29, .05);
            height: 76px;
            display: flex;
            align-items: center;
            transition: all .3s ease;
        }
        .site-header .header__row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            width: 100%;
        }
        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand__icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 12px;
            background: var(--grad-primary);
            color: var(--ink);
            font-size: 17px;
            box-shadow: 0 4px 12px rgba(14, 159, 110, .25);
        }
        .brand__text {
            font-size: 21px;
            font-weight: 800;
            color: var(--ink);
            letter-spacing: .5px;
            line-height: 1.2;
        }
        .header__center {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .segment-nav {
            display: flex;
            align-items: center;
            gap: 6px;
            background: var(--surface-2);
            padding: 5px;
            border-radius: 999px;
            list-style: none;
        }
        .segment-nav .chip {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            padding: 8px 18px;
            border-radius: 999px;
            font-size: 14.5px;
            font-weight: 600;
            color: var(--text);
            background: transparent;
            border: 1px solid transparent;
            line-height: 1.4;
            transition: all .25s ease;
            white-space: nowrap;
        }
        .segment-nav .chip i {
            font-size: 13px;
            opacity: .85;
        }
        .segment-nav .chip:hover {
            background: rgba(14, 159, 110, .12);
            color: var(--brand-green-deep);
            transform: translateY(-1px);
        }
        .segment-nav .chip.is-active {
            background: var(--grad-primary);
            color: #fff;
            font-weight: 700;
            box-shadow: 0 4px 14px rgba(14, 159, 110, .3);
        }
        .segment-nav .chip.is-active i {
            color: var(--ink);
        }
        .header-cta {
            flex-shrink: 0;
        }
        .header-cta--desktop {
            display: inline-flex;
            margin-left: 12px;
        }
        .header-cta--mobile {
            display: none;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: 999px;
            font-weight: 600;
            padding: 11px 26px;
            border: 1px solid transparent;
            font-size: 15px;
            transition: all .28s ease;
            cursor: pointer;
            line-height: 1.4;
        }
        .btn:focus-visible {
            outline: 3px solid rgba(255, 107, 69, .4);
            outline-offset: 2px;
        }
        .btn-accent {
            background: var(--accent);
            color: #10261D;
            border-color: var(--accent);
            box-shadow: 0 6px 18px rgba(255, 107, 69, .3);
        }
        .btn-accent:hover {
            background: #ff8a5a;
            border-color: #ff8a5a;
            color: #10261D;
            transform: translateY(-3px);
            box-shadow: 0 12px 24px rgba(255, 107, 69, .35);
        }
        .btn-outline-light {
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, .65);
            color: #fff;
        }
        .btn-outline-light:hover {
            background: rgba(255, 255, 255, .16);
            border-color: #fff;
            color: #fff;
            transform: translateY(-3px);
        }
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 28px;
            color: var(--ink);
            cursor: pointer;
            width: 48px;
            height: 48px;
            border-radius: 14px;
            align-items: center;
            justify-content: center;
            transition: all .2s ease;
        }
        .menu-toggle:hover {
            background: rgba(14, 159, 110, .1);
        }
        .menu-toggle:focus-visible {
            outline: 3px solid rgba(255, 107, 69, .4);
        }
        .article-page-main {
            padding: 60px 0 90px;
            min-height: calc(100vh - 300px);
        }
        .breadcrumb-wrap {
            padding: 30px 0 25px;
        }
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            font-size: 14px;
            color: var(--muted);
            gap: 6px;
            margin: 0;
            list-style: none;
            padding: 0;
        }
        .breadcrumb-nav li {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb-nav li+li:before {
            content: "›";
            font-size: 18px;
            color: #B7C6BC;
            margin-right: 6px;
            line-height: 1;
        }
        .breadcrumb-nav a {
            color: var(--muted);
            font-weight: 500;
        }
        .breadcrumb-nav a:hover {
            color: var(--brand-green);
        }
        .breadcrumb-nav .now {
            color: var(--text);
            color: #24382F;
            opacity: .75;
            max-width: 300px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }
        .article-card-wrap {
            background: var(--surface);
            border-radius: 32px;
            padding: 48px;
            box-shadow: var(--shadow-card);
            border: 1px solid rgba(16, 38, 29, .05);
            margin-bottom: 40px;
        }
        .article-title {
            font-size: clamp(1.8rem, 3.6vw, 2.65rem);
            font-weight: 840;
            line-height: 1.25;
            letter-spacing: -0.4px;
            color: var(--ink);
            margin-bottom: 20px;
        }
        .article-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
            padding: 18px 0;
            border-top: 1px solid var(--line);
            border-bottom: 1px solid var(--line);
            margin-bottom: 36px;
            color: var(--muted);
            font-size: 14px;
        }
        .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 7px;
        }
        .meta-item i {
            color: var(--brand-green);
            font-size: 14px;
        }
        .category-link {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(14, 159, 110, .1);
            color: var(--brand-green-deep);
            border-radius: 99px;
            padding: 6px 18px;
            font-weight: 600;
            font-size: 13px;
            border: 1px solid rgba(14, 159, 110, .25);
        }
        .article-content {
            font-size: 17px;
            line-height: 1.95;
            color: var(--text);
            max-width: 760px;
        }
        .article-content img {
            border-radius: 18px;
            margin: 26px 0;
            box-shadow: 0 10px 26px rgba(16, 38, 29, .08);
        }
        .article-content h2,
        .article-content h3,
        .article-content h4 {
            color: var(--ink);
            font-weight: 800;
            margin-top: 32px;
            margin-bottom: 14px;
            line-height: 1.4;
        }
        .article-content h2 {
            font-size: 26px;
            padding-bottom: 12px;
            position: relative;
        }
        .article-content h2:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 42px;
            height: 4px;
            background: var(--grad-primary);
            border-radius: 999px;
        }
        .article-content h3 {
            font-size: 22px;
        }
        .article-content p {
            margin-bottom: 22px;
        }
        .article-content blockquote {
            background: var(--surface-2);
            border-left: 4px solid var(--brand-green);
            border-radius: 0 16px 16px 0;
            padding: 24px 28px;
            margin: 30px 0;
            color: var(--ink);
            font-style: normal;
            font-weight: 500;
            position: relative;
        }
        .article-content blockquote p {
            margin-bottom: 0;
            color: var(--ink);
        }
        .article-content ul {
            margin: 18px 0 20px;
            padding-left: 24px;
        }
        .article-content ul li {
            margin-bottom: 10px;
        }
        .article-content ul li::marker {
            color: var(--brand-green);
        }
        .article-content ol {
            margin: 18px 0 20px;
            padding-left: 24px;
        }
        .article-content ol li {
            margin-bottom: 10px;
        }
        .article-content ol li::marker {
            font-weight: 700;
            color: var(--brand-green-deep);
        }
        .article-content strong {
            color: var(--ink);
            font-weight: 700;
        }
        .article-content a {
            color: var(--brand-green);
            border-bottom: 1px solid rgba(14, 159, 110, .35);
        }
        .article-content a:hover {
            color: var(--accent);
            border-color: rgba(255, 107, 69, .5);
        }
        .article-content table {
            width: 100%;
            border-collapse: collapse;
            margin: 28px 0;
            background: #fff;
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid var(--line);
        }
        .article-content table th {
            background: rgba(14, 159, 110, .06);
            font-weight: 700;
            color: var(--ink);
            padding: 12px 18px;
            font-size: 15px;
            text-align: left;
        }
        .article-content table td {
            padding: 12px 18px;
            font-size: 15px;
            border-top: 1px solid var(--line);
        }
        .article-content code {
            background: var(--surface-2);
            color: #20573e;
            border-radius: 6px;
            padding: 3px 10px;
            font-size: .88em;
            font-family: "SFMono-Regular", Consolas, monospace;
        }
        .article-tags {
            margin: 48px 0 0;
            border-top: 1px solid var(--line);
            padding-top: 36px;
            display: flex;
            align-items: flex-start;
            gap: 32px;
            flex-wrap: nowrap;
        }
        .tag-cloud {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .article-tags .badge-tag {
            font-size: 13px;
            color: var(--brand-green-deep);
            background: rgba(14, 159, 110, .08);
            border-radius: 99px;
            padding: 6px 16px;
            font-weight: 500;
            border: 1px solid rgba(14, 159, 110, .1);
        }
        .article-actions {
            margin-top: 24px;
            display: flex;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }
        .article-actions .btn {
            border-radius: 999px;
            padding: 9px 24px;
            font-size: 14px;
        }
        .sidebar-widget {
            background: var(--surface);
            border-radius: var(--round-lg);
            padding: 30px;
            border: 1px solid rgba(16, 38, 29, 0.04);
            box-shadow: 0 10px 28px rgba(16, 38, 29, .03);
            margin-bottom: 26px;
        }
        .widget-title {
            font-size: 19px;
            font-weight: 800;
            color: var(--ink);
            position: relative;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--line);
            margin-bottom: 22px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .widget-title span {
            display: inline-block;
            width: 34px;
            height: 4px;
            background: var(--grad-primary);
            border-radius: 99px;
            flex-shrink: 0;
            margin-left: 12px;
        }
        .related-list .item {
            display: flex;
            align-items: center;
            gap: 12px;
            border-radius: 14px;
            padding: 14px;
            transition: all .25s ease;
            border: 1px solid transparent;
            margin-bottom: 8px;
        }
        .related-list .item:hover {
            background: var(--surface-2);
            transform: translateY(-2px);
            border-color: rgba(14, 159, 110, 0.12);
        }
        .related-cvr {
            width: 68px;
            height: 60px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
        }
        .related-txt {
            overflow: hidden;
        }
        .related-txt h6 {
            font-size: 14px;
            font-weight: 700;
            color: var(--ink);
            margin-bottom: 5px;
            line-height: 1.4;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .related-txt small {
            color: var(--muted);
            font-size: 12px;
        }
        .cat-chip {
            display: inline-block;
            padding: 7px 16px;
            background: rgba(14, 159, 110, 0.08);
            color: var(--brand-green-deep);
            border-radius: 99px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid rgba(14, 159, 110, 0.16);
            transition: all .2s;
        }
        .cat-chip:hover {
            background: var(--brand-green);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(14, 159, 110, .2);
        }
        .mini-card-cta {
            background: var(--ink);
            border-radius: 24px;
            padding: 28px;
            color: #fff;
            position: relative;
            overflow: hidden;
            margin-bottom: 0;
        }
        .mini-card-cta:after {
            content: '';
            position: absolute;
            right: -18px;
            top: -38px;
            width: 120px;
            height: 200px;
            border-radius: 60px;
            background: linear-gradient(135deg, rgba(179, 242, 69, .25), rgba(255, 107, 69, .2));
            transform: rotate(18deg);
        }
        .mini-card-cta .mini-cta--icon {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            background: var(--accent);
            color: var(--ink);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-bottom: 18px;
        }
        .mini-card-cta h5 {
            color: #fff;
            font-weight: 800;
            font-size: 19px;
            line-height: 1.4;
            margin-bottom: 8px;
        }
        .mini-card-cta p {
            color: rgba(255, 255, 255, .76);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 18px;
            position: relative;
            z-index: 2;
        }
        .mini-card-cta .btn-accent {
            background: var(--brand-lime);
            color: var(--ink);
            border: 1px solid var(--brand-lime);
            padding: 10px 20px;
            font-size: 14.5px;
            position: relative;
            z-index: 2;
        }
        .mini-card-cta .btn-accent:hover {
            background: #c8fa6b;
            border-color: #c8fa6b;
        }
        .next-prev-block {
            display: flex;
            justify-content: space-between;
            gap: 20px;
            margin: 45px 0;
            flex-wrap: wrap;
        }
        .np-item {
            flex: 1;
            min-width: 250px;
            background: var(--surface);
            border-radius: 18px;
            padding: 20px 24px;
            border: 1px solid var(--line);
            transition: all .3s;
            max-width: 48%;
        }
        .np-item:hover {
            border-color: rgba(14, 159, 110, 0.45);
            box-shadow: var(--shadow-card);
            transform: translateY(-3px);
        }
        .np-item .label {
            font-size: 12px;
            color: var(--muted);
            display: flex;
            align-items: center;
            gap: 7px;
            margin-bottom: 9px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .np-item .label i {
            color: var(--brand-green);
            font-size: 15px;
        }
        .np-item p {
            font-size: 15px;
            font-weight: 700;
            color: var(--ink);
            margin: 0;
            max-width: 98%;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .np-item p:hover {
            color: var(--brand-green-deep);
        }
        .footer {
            background: var(--ink);
            color: rgba(255, 255, 255, .75);
            margin-top: 0;
        }
        .footer-topline {
            height: 6px;
            background: linear-gradient(90deg, var(--brand-lime), var(--brand-green), var(--accent), var(--gold));
            opacity: .9;
        }
        .footer-main {
            padding: 64px 0 36px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1.1fr 1.1fr 1.4fr;
            gap: 40px;
        }
        .footer-brand {
            color: #fff;
            font-size: 22px;
            font-weight: 800;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .footer-brand i {
            background: var(--grad-primary);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-size: 22px;
        }
        .footer-about {
            color: rgba(255, 255, 255, .58);
            font-size: 14px;
            line-height: 1.8;
            max-width: 340px;
            margin-bottom: 10px;
        }
        .footer-social {
            display: flex;
            gap: 12px;
            margin-top: 18px;
        }
        .footer-social a {
            width: 38px;
            height: 38px;
            border-radius: 12px;
            background: rgba(255, 255, 255, .08);
            color: rgba(255, 255, 255, .68);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
            transition: all .3s;
            border: 1px solid rgba(255, 255, 255, .04);
        }
        .footer-social a:hover {
            background: rgba(179, 242, 69, .2);
            color: var(--brand-lime);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, .2);
        }
        .footer h4 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 22px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer h4:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 28px;
            height: 3px;
            background: var(--brand-lime);
            border-radius: 99px;
        }
        .footer-links {
            list-style: none;
            padding-left: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, .6);
            font-size: 14.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all .25s;
        }
        .footer-links a:before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-green);
            opacity: .7;
            transition: all .25s;
        }
        .footer-links a:hover {
            color: var(--brand-lime);
            transform: translateX(4px);
        }
        .footer-links a:hover:before {
            background: var(--brand-lime);
            box-shadow: 0 0 0 4px rgba(179, 242, 69, .18);
        }
        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, .62);
        }
        .footer-contact p i {
            color: var(--brand-lime);
            font-size: 15px;
        }
        .footer-contact-small {
            background: rgba(179, 242, 69, .06);
            border: 1px solid rgba(179, 242, 69, .18);
            border-radius: 12px;
            font-size: 13px;
            color: rgba(255, 255, 255, .62);
            line-height: 1.7;
            padding: 12px 16px;
            margin-top: 22px;
        }
        .footer-contact-small i {
            color: var(--gold);
            margin-right: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding: 22px 0;
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            font-size: 14px;
            color: rgba(255, 255, 255, .45);
            justify-content: center;
        }
        .footer-bottom .copyright-domain {
            color: rgba(255, 255, 255, .7);
            font-weight: 600;
        }
        @media (max-width: 1199px) {
            .segment-nav .chip {
                padding: 8px 13px;
                font-size: 13.5px;
            }
            .header__row {
                gap: 14px;
            }
            .article-card-wrap {
                padding: 36px 34px;
            }
            .footer-grid {
                grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
                gap: 28px;
            }
        }
        @media (max-width: 991px) {
            .site-header {
                height: auto;
                min-height: 70px;
            }
            .site-header .header__row {
                flex-wrap: wrap;
                padding: 10px 0;
            }
            .header__center {
                order: 3;
                width: 100%;
                justify-content: center;
                flex-wrap: wrap;
                gap: 12px;
                max-height: 0;
                overflow: hidden;
                transition: .35s ease;
                position: absolute;
                top: 66px;
                left: 0;
                right: 0;
                background: var(--paper);
                border: 1px solid rgba(16, 38, 29, .08);
                border-radius: 0 0 24px 24px;
                padding: 0 20px;
                box-shadow: 0 30px 50px rgba(16, 38, 29, .12);
                flex-direction: column;
                z-index: 1029;
                opacity: 0;
                visibility: hidden;
            }
            .header__center.is-open {
                max-height: 580px;
                opacity: 1;
                visibility: visible;
                padding: 20px;
                transition: .35s ease;
            }
            .segment-nav {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
                background: transparent;
                padding: 0;
                border-radius: 0;
                width: 100%;
            }
            .segment-nav .chip {
                justify-content: flex-start;
                background: var(--surface);
                border: 1px solid rgba(16, 38, 29, .08);
                border-radius: 14px;
                padding: 12px 18px;
                white-space: nowrap;
                font-size: 15px;
                font-weight: 600;
            }
            .segment-nav .chip.is-active {
                background: var(--grad-primary);
                color: #fff;
            }
            .header-cta--desktop {
                display: none;
            }
            .header-cta--mobile {
                display: flex;
                width: 100%;
                justify-content: center;
                margin-top: 10px;
            }
            .menu-toggle {
                display: flex;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
            .article-card-wrap {
                padding: 30px 24px;
            }
            .article-title {
                font-size: 1.9rem;
            }
            .np-item {
                max-width: 100%;
            }
        }
        @media (max-width: 767px) {
            .article-card-wrap {
                border-radius: 20px;
                padding: 24px 16px;
            }
            .article-content {
                font-size: 16px;
                line-height: 1.85;
            }
            .article-tags {
                flex-direction: column;
                gap: 16px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .footer-main {
                padding: 44px 0 30px;
            }
            .breadcrumb-wrap {
                padding: 22px 0 18px;
            }
            .article-meta {
                flex-direction: column;
                gap: 10px;
                margin-bottom: 22px;
            }
            .container-lg {
                padding-left: 16px;
                padding-right: 16px;
            }
        }
        @media (max-width: 575px) {
            .breadcrumb-nav .now {
                max-width: 180px;
            }
            .article-title {
                font-size: 1.4rem;
                line-height: 1.4;
            }
            .sidebar-widget {
                padding: 22px 18px;
            }
            .next-prev-block {
                margin: 30px 0;
            }
            .np-item {
                padding: 16px 18px;
            }
        }

/* roulang page: category1 */
:root {
      --paper: #F5F2EA;
      --surface: #FFFFFF;
      --surface-2: #E7EEE8;
      --ink: #10261D;
      --text: #24382F;
      --muted: #667E73;
      --line: rgba(16, 38, 29, .1);
      --brand-lime: #B3F245;
      --brand-green: #0E9F6E;
      --brand-green-deep: #0B5C46;
      --accent: #FF6B45;
      --gold: #F3B937;
      --grad-primary: linear-gradient(135deg, #B3F245 0%, #0E9F6E 100%);
      --grad-dark: linear-gradient(135deg, #13382B 0%, #0B261D 100%);
      --round-lg: 28px;
      --round-md: 18px;
      --shadow-card: 0 12px 30px rgba(18, 38, 29, .08);
      --shadow-card-hover: 0 18px 42px rgba(18, 38, 29, .13);
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      background: var(--paper);
      color: var(--text);
      font-size: 16px;
      line-height: 1.75;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
    }

    img {
      max-width: 100%;
      display: block;
      object-fit: cover;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s ease, box-shadow .22s ease;
    }

    ul,
    ol {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
      font-weight: 800;
      color: var(--ink);
      line-height: 1.28;
      margin: 0;
    }

    p {
      margin-top: 0;
    }

    .container-lg.container {
      max-width: 1320px;
    }

    a:focus-visible,
    button:focus-visible,
    summary:focus-visible {
      outline: 3px solid rgba(255, 107, 69, .45);
      outline-offset: 3px;
      border-radius: 10px;
    }

    .site-header {
      position: sticky;
      top: 0;
      left: 0;
      z-index: 1080;
      background: var(--surface);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 8px 24px rgba(16, 38, 29, .05);
    }

    .header__row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 76px;
      padding: 10px 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .brand__icon {
      width: 38px;
      height: 38px;
      border-radius: 14px;
      background: var(--grad-primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      font-size: 18px;
      box-shadow: 0 6px 16px rgba(14, 159, 110, .25);
    }

    .brand__text {
      font-size: 20px;
      font-weight: 900;
      color: var(--ink);
      letter-spacing: .02em;
      white-space: nowrap;
    }

    .header__center {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .segment-nav {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border-radius: 999px;
      padding: 8px 16px;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      background: transparent;
      transition: background .22s ease, color .22s ease, transform .18s ease;
      white-space: nowrap;
    }

    .chip i {
      font-size: 13px;
      color: var(--brand-green);
      transition: color .22s ease;
    }

    .chip:hover {
      background: var(--surface-2);
      color: var(--brand-green-deep);
      transform: translateY(-1px);
    }

    .chip:hover i {
      color: var(--accent);
    }

    .chip.is-active {
      background: var(--ink);
      color: #ffffff;
      box-shadow: 0 8px 20px rgba(16, 38, 29, .18);
    }

    .chip.is-active i {
      color: var(--brand-lime);
    }

    .chip.is-active:hover {
      background: var(--brand-green-deep);
      color: #ffffff;
    }

    .header__right {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 14px;
      background: var(--ink);
      color: #ffffff;
      font-size: 18px;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .22s ease;
    }

    .menu-toggle:hover {
      background: var(--brand-green-deep);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      border: 0;
      font-weight: 800;
      font-size: 16px;
      line-height: 1;
      padding: 13px 24px;
      transition: background .22s ease, color .22s ease, transform .2s ease, box-shadow .2s ease, border-color .22s ease;
      text-align: center;
      cursor: pointer;
    }

    .btn-accent {
      background: var(--accent);
      color: var(--ink);
      box-shadow: 0 10px 24px rgba(255, 107, 69, .26);
    }

    .btn-accent:hover {
      background: #ff8366;
      color: var(--ink);
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(255, 107, 69, .32);
    }

    .btn-dark {
      background: var(--ink);
      color: #ffffff;
      border: 1.5px solid var(--ink);
    }

    .btn-dark:hover {
      background: var(--brand-green-deep);
      color: #ffffff;
      border-color: var(--brand-green-deep);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: transparent;
      color: var(--ink);
      border: 1.5px solid rgba(16, 38, 29, .3);
    }

    .btn-ghost:hover {
      border-color: var(--ink);
      background: rgba(16, 38, 29, .04);
      transform: translateY(-2px);
    }

    .btn-ghost--light {
      color: #ffffff;
      border-color: rgba(255, 255, 255, .6);
    }

    .btn-ghost--light:hover {
      color: #ffffff;
      border-color: var(--brand-lime);
      background: rgba(255, 255, 255, .06);
    }

    .header-cta {
      padding: 10px 22px;
      font-size: 15px;
    }

    .category-hero {
      position: relative;
      color: #ffffff;
      background:
        linear-gradient(105deg, rgba(16, 38, 29, .96) 0%, rgba(16, 38, 29, .86) 45%, rgba(16, 38, 29, .62) 100%),
        url("/assets/images/backpic/back-2.webp") center center / cover no-repeat;
      padding: clamp(48px, 7vw, 86px) 0 46px;
      overflow: hidden;
    }

    .category-hero::after {
      content: "";
      position: absolute;
      right: -120px;
      top: -120px;
      width: 360px;
      height: 360px;
      border: 66px solid rgba(179, 242, 69, .08);
      border-radius: 50%;
      pointer-events: none;
    }

    .category-hero__inner {
      position: relative;
      z-index: 2;
    }

    .breadcrumb-line {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: rgba(255, 255, 255, .68);
      margin-bottom: 28px;
      flex-wrap: wrap;
    }

    .breadcrumb-line a {
      color: rgba(255, 255, 255, .74);
    }

    .breadcrumb-line a:hover {
      color: var(--brand-lime);
    }

    .breadcrumb-line .sep {
      opacity: .5;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .12em;
      color: var(--brand-lime);
      margin-bottom: 10px;
    }

    .hero-kicker::before {
      content: "";
      width: 26px;
      height: 2px;
      border-radius: 999px;
      background: var(--accent);
    }

    .category-hero h1 {
      font-size: clamp(2.3rem, 5vw, 4rem);
      font-weight: 900;
      color: #ffffff;
      line-height: 1.08;
      margin-bottom: 18px;
    }

    .hero-lead {
      max-width: 680px;
      font-size: 17px;
      line-height: 1.85;
      color: rgba(255, 255, 255, .82);
      margin-bottom: 0;
    }

    .hero-stats__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 48px;
      position: relative;
      z-index: 2;
    }

    .stat-card {
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .14);
      border-radius: 24px;
      padding: 24px 20px 20px;
      position: relative;
      transition: background .22s ease, transform .22s ease;
      box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
      backdrop-filter: blur(2px);
    }

    .stat-card:hover {
      background: rgba(255, 255, 255, .16);
      transform: translateY(-4px);
    }

    .stat-card__num {
      font-size: clamp(1.9rem, 3vw, 2.7rem);
      font-weight: 900;
      color: var(--brand-lime);
      line-height: 1;
      font-variant-numeric: tabular-nums;
    }

    .stat-card__label {
      margin-top: 8px;
      font-size: 15px;
      color: rgba(255, 255, 255, .78);
      font-weight: 700;
    }

    .stat-card__tag {
      position: absolute;
      right: 14px;
      top: 14px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 4px rgba(255, 107, 69, .22);
    }

    .section {
      padding: clamp(56px, 8vw, 96px) 0;
    }

    .section-topics {
      background: var(--paper);
      padding-top: clamp(48px, 7vw, 80px);
      padding-bottom: 0;
    }

    .section-listing {
      background: var(--paper);
      padding-bottom: clamp(56px, 8vw, 96px);
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 20px;
      margin-bottom: 30px;
    }

    .section-head__kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
      color: var(--brand-green);
      text-transform: uppercase;
    }

    .section-head__kicker i {
      color: var(--accent);
    }

    .section-head h2 {
      font-size: clamp(1.8rem, 3.4vw, 2.7rem);
      font-weight: 900;
      color: var(--ink);
      margin: 6px 0 0;
    }

    .section-head__desc {
      max-width: 420px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
      margin: 0;
    }

    .featured-card {
      display: grid;
      grid-template-columns: 1.12fr 1fr;
      background: var(--surface);
      border: 1px solid rgba(16, 38, 29, .06);
      border-radius: var(--round-lg);
      box-shadow: var(--shadow-card);
      overflow: hidden;
      transition: box-shadow .25s ease, transform .25s ease;
    }

    .featured-card:hover {
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-4px);
    }

    .featured-card__cover {
      position: relative;
      min-height: 320px;
      overflow: hidden;
    }

    .featured-card__cover img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      transition: transform .6s ease;
    }

    .featured-card:hover .featured-card__cover img {
      transform: scale(1.04);
    }

    .featured-card__cover::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(16, 38, 29, 0) 45%, rgba(16, 38, 29, .28) 100%);
    }

    .featured-card__badge {
      position: absolute;
      left: 20px;
      top: 20px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--accent);
      padding: 7px 14px;
      border-radius: 999px;
      color: var(--ink);
      font-weight: 800;
      font-size: 13px;
      box-shadow: 0 8px 20px rgba(255, 107, 69, .3);
    }

    .featured-card__body {
      padding: clamp(24px, 4vw, 42px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

    .featured-card__meta {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 14px;
      font-weight: 700;
      color: var(--muted);
      margin-bottom: 14px;
    }

    .featured-card__meta span {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .featured-card__body h3 {
      font-size: clamp(1.35rem, 2.2vw, 1.85rem);
      font-weight: 900;
      line-height: 1.32;
      margin-bottom: 14px;
    }

    .featured-card__body h3 a {
      color: var(--ink);
    }

    .featured-card__body h3 a:hover {
      color: var(--brand-green);
    }

    .featured-card__desc {
      color: var(--muted);
      font-size: 16px;
      line-height: 1.75;
      margin-bottom: 20px;
    }

    .featured-card__foot {
      margin-top: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      width: 100%;
      flex-wrap: wrap;
    }

    .label-round {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--surface-2);
      color: var(--brand-green-deep);
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 13px;
      font-weight: 800;
    }

    .label-round i {
      color: var(--accent);
    }

    .news-card-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .news-row {
      display: grid;
      grid-template-columns: 148px 1fr auto;
      gap: 20px;
      background: var(--surface);
      border: 1px solid rgba(16, 38, 29, .05);
      border-radius: 22px;
      padding: 14px;
      transition: transform .2s ease, box-shadow .22s ease;
      align-items: center;
    }

    .news-row:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-card);
    }

    .news-row__thumb {
      border-radius: 15px;
      overflow: hidden;
      height: 112px;
      position: relative;
    }

    .news-row__thumb img {
      width: 100%;
      height: 100%;
      border-radius: 15px;
      transition: transform .5s ease;
    }

    .news-row:hover .news-row__thumb img {
      transform: scale(1.06);
    }

    .news-row__body {
      min-width: 0;
      padding: 4px 0;
    }

    .news-row__cat {
      display: inline-block;
      padding: 3px 12px;
      background: var(--surface-2);
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      color: var(--brand-green-deep);
      margin-bottom: 8px;
    }

    .news-row__body h3 {
      font-size: 17px;
      font-weight: 800;
      line-height: 1.45;
      margin-bottom: 6px;
    }

    .news-row__body h3 a {
      color: var(--ink);
    }

    .news-row__body h3 a:hover {
      color: var(--brand-green);
    }

    .news-row__desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
      max-width: 720px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .news-row__aside {
      text-align: right;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      min-height: 100px;
    }

    .news-row__date {
      font-size: 13px;
      color: var(--muted);
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .news-row__date i {
      color: var(--brand-green);
    }

    .arrow-link {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid var(--line);
      color: var(--brand-green-deep);
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    .arrow-link:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--ink);
      transform: translateX(4px);
    }

    .score-band {
      background: var(--grad-dark);
      color: #ffffff;
      padding: clamp(54px, 8vw, 90px) 0;
      position: relative;
      overflow: hidden;
    }

    .score-band::before {
      content: "";
      position: absolute;
      left: -120px;
      bottom: -180px;
      width: 500px;
      height: 500px;
      border: 90px solid rgba(179, 242, 69, .05);
      border-radius: 50%;
      pointer-events: none;
    }

    .score-band__head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 20px;
      margin-bottom: 32px;
      flex-wrap: wrap;
    }

    .score-band__head .section-head__kicker {
      color: var(--brand-lime);
    }

    .score-band__head h2 {
      color: #ffffff;
      font-size: clamp(1.8rem, 3.6vw, 2.7rem);
    }

    .score-band__note {
      color: rgba(255, 255, 255, .65);
    }

    .score-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      position: relative;
      z-index: 2;
    }

    .score-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 24px;
      padding: 22px 18px;
      transition: background .2s ease, transform .2s ease;
    }

    .score-card:hover {
      background: rgba(255, 255, 255, .12);
      transform: translateY(-4px);
    }

    .score-card__sport {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
      font-size: 14px;
      font-weight: 800;
      color: rgba(255, 255, 255, .55);
    }

    .score-card__sport i {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(179, 242, 69, .13);
      color: var(--brand-lime);
      font-size: 16px;
    }

    .score-card__teams {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .score-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: #ffffff;
      font-size: 15px;
    }

    .score-line strong {
      font-size: 24px;
      font-weight: 900;
      color: var(--brand-lime);
      font-variant-numeric: tabular-nums;
      min-width: 38px;
      text-align: right;
    }

    .score-card__status {
      margin-top: 16px;
      font-size: 12px;
      color: var(--gold);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .score-card__status .dot {
      width: 6px;
      height: 6px;
      background: var(--accent);
      border-radius: 50%;
    }

    .cta-section {
      background: var(--brand-lime);
      padding: clamp(52px, 8vw, 88px) 0;
    }

    .cta-panel {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      background: var(--brand-lime);
      border-radius: var(--round-lg);
      padding: 0;
      flex-wrap: wrap;
    }

    .cta-panel__content {
      flex: 1 1 460px;
    }

    .cta-panel__content .kicker-mini {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--brand-green-deep);
      font-weight: 900;
      font-size: 14px;
      margin-bottom: 8px;
    }

    .cta-panel__content h2 {
      font-size: clamp(1.8rem, 3.6vw, 2.8rem);
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .cta-panel__content p {
      color: rgba(16, 38, 29, .72);
      font-size: 16px;
      max-width: 560px;
      margin-bottom: 0;
    }

    .cta-panel__actions {
      display: flex;
      align-items: center;
      gap: 14px;
      flex-wrap: wrap;
    }

    .cta-panel__actions .btn-dark {
      background: var(--ink);
      color: #ffffff;
    }

    .cta-panel__actions .btn-dark:hover {
      background: var(--brand-green-deep);
    }

    .faq-section {
      background: var(--surface);
      padding: clamp(54px, 8vw, 90px) 0;
    }

    .faq-layout {
      display: grid;
      grid-template-columns: 0.82fr 1.18fr;
      gap: 44px;
      align-items: start;
    }

    .faq-layout__head {
      position: sticky;
      top: 100px;
    }

    .faq-layout__head .section-head__kicker {
      color: var(--accent);
    }

    .faq-layout__head h2 {
      font-size: clamp(1.8rem, 3.4vw, 2.7rem);
      margin: 8px 0 16px;
    }

    .faq-layout__head p {
      color: var(--muted);
      max-width: 380px;
      margin-bottom: 24px;
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-card {
      border: 1px solid var(--line);
      border-radius: 18px;
      background: var(--surface);
      overflow: hidden;
      transition: background .22s ease, border-color .22s ease;
    }

    .faq-card[open] {
      background: var(--surface-2);
      border-color: rgba(14, 159, 110, .25);
    }

    .faq-card summary {
      list-style: none;
      cursor: pointer;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 16px;
      font-weight: 800;
      color: var(--ink);
      transition: color .2s ease;
    }

    .faq-card summary::-webkit-details-marker {
      display: none;
    }

    .faq-card summary:hover {
      color: var(--brand-green);
    }

    .faq-card__icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--surface-2);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-green-deep);
      transition: transform .25s ease, background .2s ease;
      flex-shrink: 0;
    }

    .faq-card[open] .faq-card__icon {
      transform: rotate(45deg);
      background: var(--accent);
      color: var(--ink);
    }

    .faq-card__body {
      padding: 0 22px 20px;
    }

    .faq-card__body p {
      color: var(--text);
      font-size: 15px;
      line-height: 1.8;
      margin: 0;
      max-width: 720px;
    }

    .footer {
      background: var(--ink);
      color: rgba(255, 255, 255, .78);
      position: relative;
    }

    .footer-topline {
      height: 4px;
      background: linear-gradient(90deg, var(--brand-lime), var(--brand-green), var(--accent));
    }

    .footer-main {
      padding: 64px 0 36px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.3fr;
      gap: 36px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 22px;
      font-weight: 900;
      color: #ffffff;
      letter-spacing: .02em;
    }

    .footer-brand i {
      width: 36px;
      height: 36px;
      border-radius: 13px;
      background: var(--grad-primary);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--ink);
      font-size: 17px;
    }

    .footer-about {
      font-size: 14px;
      line-height: 1.8;
      color: rgba(255, 255, 255, .55);
      max-width: 360px;
      margin-bottom: 20px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 14px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .08);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .7);
      font-size: 16px;
      transition: background .2s ease, color .2s ease, transform .2s ease;
    }

    .footer-social a:hover {
      background: var(--brand-lime);
      color: var(--ink);
      transform: translateY(-3px);
    }

    .footer h4 {
      color: #ffffff;
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 18px;
      margin-top: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .55);
      font-size: 14px;
      transition: color .2s ease, padding-left .2s ease;
    }

    .footer-links a:hover {
      color: var(--brand-lime);
      padding-left: 3px;
    }

    .footer-contact p {
      margin: 0 0 12px;
      color: rgba(255, 255, 255, .62);
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-contact p i {
      color: var(--brand-lime);
      width: 18px;
    }

    .footer-contact-small {
      margin-top: 18px;
      padding: 14px 16px;
      background: rgba(255, 255, 255, .05);
      border-radius: 16px;
      font-size: 13px;
      color: rgba(255, 255, 255, .48);
      line-height: 1.65;
    }

    .footer-contact-small i {
      color: var(--accent);
      margin-right: 4px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding: 22px 0;
      font-size: 13px;
      color: rgba(255, 255, 255, .4);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
    }

    .footer-bottom .copyright-domain {
      color: rgba(255, 255, 255, .58);
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
      }
    }

    @media (max-width: 1199.98px) {
      .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
      }
    }

    @media (max-width: 991.98px) {
      .header__row {
        min-height: 64px;
      }

      .segment-nav {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        width: 100%;
      }

      .chip {
        justify-content: flex-start;
        padding: 13px 16px;
        width: 100%;
      }

      .header-cta--desktop {
        display: none !important;
      }

      .menu-toggle {
        display: inline-flex;
      }

      .header__center {
        position: fixed;
        top: 0;
        right: 0;
        width: min(88vw, 360px);
        height: 100vh;
        background: var(--surface);
        padding: 28px 22px;
        box-shadow: -16px 0 50px rgba(16, 38, 29, .18);
        transform: translateX(104%);
        transition: transform .28s ease;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        overflow-y: auto;
      }

      .header__center.is-open {
        transform: translateX(0);
      }

      .header__center::before {
        content: "";
        width: 44px;
        height: 5px;
        border-radius: 999px;
        background: var(--line);
        align-self: center;
        margin-bottom: 14px;
      }

      #mobileNav .header-cta {
        display: flex;
        margin-top: 24px;
      }

      .brand__text {
        font-size: 18px;
      }

      .news-row {
        grid-template-columns: 120px 1fr;
      }

      .news-row__thumb {
        height: 95px;
      }

      .news-row__aside {
        grid-column: 2;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        min-height: auto;
      }

      .news-row__desc {
        -webkit-line-clamp: 2;
      }

      .score-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .faq-layout {
        grid-template-columns: 1fr;
      }

      .faq-layout__head {
        position: static;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 767.98px) {
      .section {
        padding: 48px 0;
      }

      .hero-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-top: 34px;
      }

      .stat-card {
        padding: 18px 16px 16px;
      }

      .stat-card__num {
        font-size: 1.8rem;
      }

      .featured-card {
        grid-template-columns: 1fr;
      }

      .featured-card__cover,
      .featured-card__cover img {
        min-height: 220px;
      }

      .news-row {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .news-row__thumb {
        height: 160px;
        width: 100%;
      }

      .news-row__thumb img {
        height: 160px;
        width: 100%;
      }

      .news-row__aside {
        grid-column: auto;
        width: 100%;
        justify-content: space-between;
      }

      .score-grid {
        grid-template-columns: 1fr;
      }

      .cta-panel {
        flex-direction: column;
        align-items: flex-start;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .footer-main {
        padding: 44px 0 22px;
      }
    }

    @media (max-width: 575.98px) {
      .header__row {
        gap: 8px;
      }

      .brand__icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
      }

      .brand__text {
        font-size: 17px;
      }

      .btn {
        font-size: 15px;
        padding: 11px 18px;
      }

      .category-hero {
        padding: 40px 0 38px;
      }

      .breadcrumb-line {
        font-size: 13px;
        margin-bottom: 22px;
      }

      .hero-lead {
        font-size: 15px;
      }

      .hero-stats__grid {
        grid-template-columns: 1fr 1fr;
      }

      .section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 22px;
      }

      .section-head__desc {
        font-size: 14px;
      }

      .featured-card__body {
        padding: 22px;
      }

      .featured-card__desc {
        font-size: 14px;
      }

      .featured-card__foot {
        flex-direction: column;
        align-items: flex-start;
      }

      .news-row {
        padding: 10px;
        border-radius: 18px;
      }

      .news-row__thumb {
        height: 150px;
      }

      .news-row__thumb img {
        height: 150px;
      }

      .news-row__body h3 {
        font-size: 16px;
      }

      .faq-card summary {
        font-size: 15px;
        padding: 16px;
      }

      .faq-card__body {
        padding: 0 16px 16px;
      }

      .cta-panel__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
      }

      .cta-panel__actions .btn {
        width: 100%;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
      }
    }

/* roulang page: category2 */
:root{
  --paper:#F5F2EA;
  --surface:#FFFFFF;
  --surface-2:#E7EEE8;
  --ink:#10261D;
  --text:#24382F;
  --muted:#667E73;
  --line:rgba(16,38,29,.1);
  --brand-lime:#B3F245;
  --brand-green:#0E9F6E;
  --brand-green-deep:#0B5C46;
  --accent:#FF6B45;
  --gold:#F3B937;
  --grad-primary:linear-gradient(135deg,#B3F245 0%,#0E9F6E 100%);
  --grad-dark:linear-gradient(135deg,#13382B 0%,#0B261D 100%);
  --round-lg:28px;
  --round-md:18px;
  --shadow-card:0 12px 30px rgba(18,38,29,.08);
  --shadow-hover:0 18px 42px rgba(18,38,29,.13);
  --header-h:76px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--paper);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;height:auto;display:block}
a{color:var(--brand-green-deep);text-decoration:none}
ul,ol{padding-left:0;margin-bottom:0;list-style:none}
p{margin:0}
button,input{font-family:inherit}
.container-lg{
  width:100%;
  max-width:1320px;
  margin:0 auto;
  padding-left:24px;
  padding-right:24px;
}
section{position:relative}

a:focus-visible,button:focus-visible{
  outline:3px solid rgba(255,107,69,.42);
  outline-offset:2px;
  border-radius:8px;
}
::selection{background:var(--brand-lime);color:var(--ink)}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:999px;
  border:2px solid transparent;
  font-weight:800;
  line-height:1.2;
  padding:14px 28px;
  font-size:1rem;
  transition:transform .24s ease,box-shadow .24s ease,background .24s ease,color .24s ease,border-color .24s ease;
  cursor:pointer;
  white-space:nowrap;
}
.btn-lg{padding:16px 34px;font-size:1.06rem}
.btn-accent{
  background:var(--accent);
  color:#10261D;
  box-shadow:0 10px 24px rgba(255,107,69,.28);
}
.btn-accent:hover,.btn-accent:focus{
  background:#ff825f;
  color:#10261D;
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(255,107,69,.34);
}
.btn-ghost{
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.96);
  border-color:rgba(255,255,255,.68);
}
.btn-ghost:hover,.btn-ghost:focus{
  background:rgba(255,255,255,.14);
  color:#fff;
  border-color:#fff;
  transform:translateY(-2px);
}
.btn-outline-dark{
  background:transparent;
  color:var(--ink);
  border-color:rgba(16,38,29,.55);
}
.btn-outline-dark:hover{
  background:var(--ink);
  color:#fff;
  transform:translateY(-2px);
}
.btn-outline-light{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.7);
}
.btn-outline-light:hover{
  background:#fff;
  color:var(--ink);
}

/* site header */
.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:1050;
  height:var(--header-h);
  background:transparent;
  transition:background .3s ease,box-shadow .3s ease,border-color .3s ease;
  border-bottom:1px solid transparent;
}
.site-header.is-scrolled{
  background:rgba(245,242,234,.94);
  border-color:var(--line);
  box-shadow:0 10px 30px rgba(16,38,29,.07);
}
.site-header.menu-open{background:var(--paper)}
.header__row{
  display:flex;
  align-items:center;
  height:var(--header-h);
  gap:18px;
}
.brand{
  display:inline-flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.brand__icon{
  width:42px;
  height:42px;
  border-radius:15px;
  background:var(--brand-lime);
  color:var(--ink);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:19px;
  box-shadow:0 8px 18px rgba(179,242,69,.22);
}
.brand__text{
  font-size:21px;
  font-weight:900;
  letter-spacing:.4px;
  color:#fff;
  transition:color .25s;
}
.site-header.is-scrolled .brand__text,
.site-header.menu-open .brand__text{color:var(--ink)}
.header__center{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  min-width:0;
}
.segment-nav{
  display:flex;
  align-items:center;
  gap:6px;
  padding:4px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  transition:border-color .25s ease,background .25s ease;
}
.site-header.is-scrolled .segment-nav,
.site-header.menu-open .segment-nav{
  background:rgba(16,38,29,.05);
  border-color:var(--line);
}
.chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:9px 17px;
  border-radius:999px;
  color:#fff;
  font-weight:700;
  font-size:15px;
  line-height:1;
  transition:background .2s,color .2s,transform .2s,box-shadow .2s;
  white-space:nowrap;
}
.chip i{font-size:14px}
.chip:hover{color:#fff;transform:translateY(-1px);background:rgba(255,255,255,.11)}
.chip:focus-visible{outline-color:rgba(179,242,69,.75);color:#fff}
.chip.is-active{
  background:var(--brand-lime);
  color:var(--ink);
  box-shadow:0 8px 18px rgba(16,38,29,.16);
}
.chip.is-active:hover{color:var(--ink);background:var(--brand-lime)}
.site-header.is-scrolled .chip,
.site-header.menu-open .chip{color:var(--ink)}
.site-header.is-scrolled .chip:hover,
.site-header.menu-open .chip:hover{color:var(--ink);background:rgba(16,38,29,.08)}
.site-header.is-scrolled .chip.is-active,
.site-header.menu-open .chip.is-active{
  background:var(--ink);
  color:#fff;
  box-shadow:0 8px 18px rgba(16,38,29,.2);
}
.header__right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-shrink:0;
}
.header-cta{
  padding:11px 22px;
  font-size:15px;
  border-radius:999px;
}
.header-cta--mobile{display:none}
.menu-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.05);
  color:#fff;
  font-size:20px;
  cursor:pointer;
  transition:all .2s;
}
.site-header.is-scrolled .menu-toggle,
.site-header.menu-open .menu-toggle{
  border-color:var(--line);
  background:var(--surface);
  color:var(--ink);
}
.menu-toggle:hover{transform:translateY(-1px)}
@media(max-width:991.98px){
  .header-cta--desktop{display:none!important}
  .menu-toggle{display:inline-flex}
  .header-cta--mobile{
    display:inline-flex;
    margin-top:12px;
    width:100%;
    justify-content:center;
  }
  .header__center{
    position:fixed;
    top:calc(var(--header-h) + 10px);
    left:12px;
    right:12px;
    display:block;
    padding:16px;
    background:var(--paper);
    border:1px solid var(--line);
    border-radius:26px;
    box-shadow:0 24px 60px rgba(16,38,29,.18);
    visibility:hidden;
    opacity:0;
    transform:translateY(-10px);
    transition:opacity .22s,transform .22s,visibility .22s;
  }
  .site-header.menu-open .header__center{
    visibility:visible;
    opacity:1;
    transform:translateY(0);
  }
  .segment-nav{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    padding:6px;
    border-radius:18px;
    background:rgba(16,38,29,.04);
    border-color:var(--line);
  }
  .chip{justify-content:center;padding:10px 12px}
  .brand__text{font-size:19px}
}

/* hero */
.category-hero{
  position:relative;
  overflow:hidden;
  min-height:560px;
  padding:170px 0 86px;
  background:var(--grad-dark);
  isolation:isolate;
}
.category-hero__bg{
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(95deg,rgba(8,30,21,.92) 0%,rgba(8,30,21,.68) 42%,rgba(8,30,21,.4) 100%),
    url('/assets/images/backpic/back-2.webp');
  background-size:cover;
  background-position:center;
  z-index:-2;
}
.category-hero__bg::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-120px;
  bottom:-140px;
  background:radial-gradient(circle,rgba(179,242,69,.26),transparent 66%);
  border-radius:50%;
}
.category-hero__grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) 350px;
  gap:56px;
  align-items:center;
}
.hero-kickers{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}
.hero-kickers span{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:7px 15px;
  border-radius:999px;
  font-size:13px;
  font-weight:800;
  letter-spacing:.5px;
  background:rgba(255,255,255,.1);
  color:#fff;
  border:1px solid rgba(255,255,255,.18);
}
.hero-kickers span:first-child{background:var(--brand-lime);color:var(--ink);border-color:transparent}
.category-hero h1{
  margin:0 0 18px;
  font-size:clamp(3rem,6vw,4.4rem);
  font-weight:900;
  line-height:1.08;
  letter-spacing:-1px;
  color:#fff;
}
.category-hero h1 em{
  font-style:normal;
  background:linear-gradient(120deg,#B3F245,#F3B937);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.category-hero .lead{
  max-width:660px;
  margin:0 0 32px;
  color:rgba(255,255,255,.88);
  font-size:1.08rem;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:14px}
.hero-actions .btn{min-height:54px}
.hero-mini-card{
  background:rgba(245,242,234,.97);
  color:var(--ink);
  border-radius:30px;
  padding:22px;
  box-shadow:0 22px 48px rgba(3,14,9,.26);
  border:1px solid rgba(255,255,255,.35);
}
.mini-card-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-bottom:12px;
  border-bottom:1px solid var(--line);
  font-weight:900;
  color:var(--ink);
  font-size:15px;
}
.mini-card-head i{color:var(--accent)}
.mini-card-list{padding:8px 0 4px}
.mini-card-list li{
  display:flex;
  align-items:center;
  gap:12px;
  padding:12px 0;
  border-bottom:1px dashed rgba(16,38,29,.1);
  color:var(--ink);
}
.mini-card-list li:last-child{border-bottom:0}
.mini-card-list .state-dot{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--brand-green);
  flex:0 0 auto;
}
.mini-card-list .state-dot--warn{background:var(--gold)}
.mini-card-list b{font-weight:800}
.mini-card-list small{margin-left:auto;color:var(--muted)}
.mini-card-foot{
  margin-top:8px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  color:var(--muted);
}
.mini-card-foot a{font-weight:800;color:var(--brand-green-deep)}
.hero-scroll{
  position:absolute;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--ink);
  background:var(--brand-lime);
  font-size:18px;
  opacity:.95;
  box-shadow:0 10px 26px rgba(16,38,29,.24);
  z-index:5;
  transition:all .25s;
}
.hero-scroll:hover{transform:translateX(-50%) translateY(4px);color:var(--ink)}
@media(max-width:991.98px){
  .category-hero{min-height:520px;padding:130px 0 76px}
  .category-hero__grid{grid-template-columns:1fr;gap:28px}
  .category-hero__aside{display:none}
}
@media(max-width:575.98px){
  .hero-actions .btn{width:100%}
  .category-hero .lead{font-size:1rem}
}

/* metrics */
.quick-metrics{
  padding:52px 0 72px;
  background:var(--paper);
}
.metrics-panel{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:32px;
  box-shadow:var(--shadow-card);
  padding:12px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.metric-item{
  padding:26px 22px;
  border-radius:24px;
  background:var(--paper);
  text-align:center;
  transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
  border:1px solid transparent;
}
.metric-item:hover{transform:translateY(-4px);box-shadow:var(--shadow-card);border-color:var(--line)}
.metric-item .metric-num{
  display:block;
  font-size:2.5rem;
  font-weight:900;
  color:var(--brand-green-deep);
  font-variant-numeric:tabular-nums;
  line-height:1;
  letter-spacing:-.5px;
}
.metric-item .metric-num small{font-size:1.4rem;color:var(--accent)}
.metric-item .metric-label{
  display:block;
  margin-top:10px;
  color:var(--muted);
  font-weight:700;
  font-size:14px;
}
@media(max-width:991.98px){
  .metrics-panel{grid-template-columns:repeat(2,1fr)}
}
@media(max-width:575.98px){
  .quick-metrics{padding:40px 0 58px}
  .metrics-panel{grid-template-columns:1fr 1fr;padding:10px}
  .metric-item{padding:22px 14px}
}

/* topic featured */
.topic-feature{
  padding:78px 0 94px;
  background:linear-gradient(180deg,var(--surface) 0%,#FBF9F3 100%);
  overflow:hidden;
}
.section-header{
  display:grid;
  grid-template-columns:1fr 380px;
  gap:30px;
  align-items:end;
  margin-bottom:56px;
}
.section-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand-green);
  font-weight:900;
  font-size:14px;
  letter-spacing:1.5px;
  margin-bottom:12px;
  padding-left:14px;
  position:relative;
}
.section-kicker::before{
  content:"";
  position:absolute;
  left:0;top:50%;
  width:6px;
  height:6px;
  border-radius:50%;
  background:var(--accent);
  transform:translateY(-50%);
}
.section-header h2{
  margin:0;
  font-size:clamp(2rem,3.5vw,3rem);
  font-weight:900;
  color:var(--ink);
  line-height:1.18;
  letter-spacing:-.5px;
}
.section-header p{margin:0;color:var(--muted);font-size:1rem}
.topic-feature-list{
  display:flex;
  flex-direction:column;
  gap:56px;
}
.topic-tile{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
  align-items:center;
  gap:clamp(28px,5vw,68px);
  padding:20px;
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:36px;
  box-shadow:var(--shadow-card);
  transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
}
.topic-tile:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow-hover);
  border-color:rgba(14,159,110,.28);
}
.topic-tile .topic-tile__media{order:1}
.topic-tile .topic-tile__body{order:2}
.topic-tile--mirrored .topic-tile__media{order:2}
.topic-tile--mirrored .topic-tile__body{order:1}
.topic-tile__media{
  position:relative;
  border-radius:28px;
  overflow:hidden;
  min-height:310px;
  aspect-ratio:4/3;
  background:var(--surface-2);
  box-shadow:0 14px 28px rgba(16,38,29,.08);
}
.topic-tile__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .55s ease;
}
.topic-tile:hover .topic-tile__media img{transform:scale(1.035)}
.media-badges{
  position:absolute;
  top:16px;
  left:16px;
  right:16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.media-status{
  padding:7px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  background:rgba(255,255,255,.92);
  color:var(--ink);
  box-shadow:0 5px 14px rgba(16,38,29,.15);
}
.media-status.is-open{background:var(--brand-lime);color:#10261D}
.media-status.is-stop{background:rgba(255,107,69,.95);color:#10261D}
.media-date{
  padding:7px 14px;
  border-radius:999px;
  font-size:13px;
  font-weight:900;
  background:rgba(16,38,29,.85);
  color:#fff;
  display:inline-flex;
  align-items:center;
  gap:7px;
  box-shadow:0 5px 14px rgba(16,38,29,.15);
}
.topic-tile__body{
  padding:18px;
}
.topic-tile__number{
  display:inline-flex;
  color:var(--brand-green);
  font-weight:900;
  font-size:13px;
  letter-spacing:1px;
}
.topic-tile h3{
  margin:10px 0 14px;
  font-size:clamp(1.4rem,2.3vw,2rem);
  font-weight:900;
  color:var(--ink);
  line-height:1.28;
  letter-spacing:-.3px;
}
.topic-tile__desc{
  color:var(--text);
  margin:0 0 20px;
  font-size:1rem;
}
.topic-meta{
  border-top:1px dashed rgba(16,38,29,.16);
  margin:0 0 18px;
}
.topic-meta li{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 0;
  color:var(--text);
  border-bottom:1px dashed rgba(16,38,29,.09);
  font-size:15px;
}
.topic-meta li:last-child{border-bottom:0}
.topic-meta i{width:18px;color:var(--brand-green);font-size:15px}
.topic-meta .meta-label{display:inline-block;width:46px;color:var(--muted);font-weight:700;flex:0 0 auto}
.topic-tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:20px;
}
.tag-chip{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 12px;
  background:var(--surface-2);
  color:var(--brand-green-deep);
  border-radius:999px;
  font-size:13px;
  font-weight:700;
}
.topic-link{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-weight:800;
  color:var(--ink);
  border-bottom:2px solid var(--brand-lime);
  padding-bottom:3px;
  transition:gap .22s,color .22s;
}
.topic-link:hover{color:var(--brand-green);gap:13px}
@media(max-width:991.98px){
  .section-header{grid-template-columns:1fr}
  .topic-tile{grid-template-columns:1fr}
  .topic-tile .topic-tile__media{order:1}
  .topic-tile .topic-tile__body{order:2}
  .topic-tile--mirrored .topic-tile__media{order:1}
  .topic-tile--mirrored .topic-tile__body{order:2}
  .topic-tile__media{min-height:230px;aspect-ratio:16/10}
  .topic-tile__body{padding:8px}
}
@media(max-width:575.98px){
  .topic-feature{padding:52px 0 64px}
  .topic-tile{padding:10px;border-radius:26px}
  .topic-tile__media{border-radius:20px;min-height:210px}
}

/* process */
.road-join{
  background:var(--ink);
  color:#fff;
  padding:clamp(70px,8vw,120px) 0 96px;
}
.road-join::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:var(--grad-primary);
  opacity:.85;
}
.road-join .section-kicker{color:var(--brand-lime)}
.road-join .section-kicker::before{background:var(--accent)}
.road-wrap{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:clamp(36px,6vw,90px);
  align-items:center;
}
.road-intro h2{
  margin:0 0 20px;
  color:#fff;
  font-size:clamp(2rem,3.6vw,3rem);
  font-weight:900;
  line-height:1.2;
  letter-spacing:-.5px;
}
.road-intro p{
  color:rgba(255,255,255,.78);
  margin-bottom:26px;
}
.road-steps{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.step-card{
  display:block;
  min-height:180px;
  padding:18px 18px 18px 18px;
  border-radius:24px;
  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.1);
  color:#fff;
  transition:transform .25s ease,background .25s ease,border-color .25s;
}
.step-card:hover{
  transform:translateY(-3px);
  background:rgba(255,255,255,.08);
  border-color:rgba(179,242,69,.45);
}
.step-card__num{
  font-size:2rem;
  font-weight:900;
  color:var(--brand-lime);
  font-variant-numeric:tabular-nums;
  line-height:1;
  display:block;
  margin-bottom:14px;
}
.step-card h3{
  font-size:1.08rem;
  font-weight:900;
  margin:0 0 8px;
  color:#fff;
}
.step-card p{
  color:rgba(255,255,255,.7);
  font-size:.94rem;
  line-height:1.7;
}
.road-cta{
  margin-top:38px;
  display:flex;
  gap:12px;
  align-items:center;
  flex-wrap:wrap;
}
@media(max-width:991.98px){
  .road-wrap{grid-template-columns:1fr}
  .road-steps{grid-template-columns:1fr 1fr}
}
@media(max-width:575.98px){
  .road-steps{grid-template-columns:1fr}
}

/* final cta */
.end-cta{
  background:var(--paper);
  padding:clamp(64px,7vw,104px) 0;
}
.end-cta__card{
  position:relative;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  background:var(--accent);
  color:var(--ink);
  border-radius:38px;
  padding:54px 58px;
  box-shadow:0 22px 50px rgba(255,107,69,.28);
}
.end-cta__card::before{
  content:"";
  position:absolute;
  right:-60px;
  top:-90px;
  width:280px;
  height:280px;
  border-radius:50%;
  background:rgba(179,242,69,.4);
}
.end-cta__card::after{
  content:"";
  position:absolute;
  right:90px;
  bottom:-100px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(16,38,29,.12);
}
.end-cta__copy{position:relative;z-index:2}
.end-cta__copy .section-kicker{color:var(--ink)}
.end-cta__copy .section-kicker::before{background:var(--ink)}
.end-cta__copy h2{
  font-size:clamp(1.9rem,3.4vw,2.9rem);
  font-weight:900;
  margin:6px 0 12px;
  line-height:1.18;
  letter-spacing:-.4px;
  color:var(--ink);
}
.end-cta__copy p{
  max-width:620px;
  color:rgba(16,38,29,.8);
  font-weight:500;
}
.end-cta__actions{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:14px;
  flex-shrink:0;
}
@media(max-width:991.98px){
  .end-cta__card{flex-direction:column;padding:42px 30px}
  .end-cta__actions{flex-direction:row;flex-wrap:wrap}
}
@media(max-width:575.98px){
  .end-cta__card{border-radius:28px;text-align:left}
  .end-cta__actions{flex-direction:column;width:100%}
  .end-cta__actions .btn{width:100%}
}

/* faq */
.faq-area{
  background:var(--surface);
  padding:clamp(70px,8vw,110px) 0;
}
.faq-wrap{
  display:grid;
  grid-template-columns:.95fr 1.35fr;
  gap:clamp(36px,6vw,90px);
}
.faq-intro .section-kicker{color:var(--brand-green)}
.faq-intro h2{
  margin:0 0 16px;
  color:var(--ink);
  font-size:clamp(1.9rem,3.4vw,2.8rem);
  font-weight:900;
  line-height:1.2;
  letter-spacing:-.4px;
}
.faq-intro p{color:var(--muted);margin-bottom:14px}
.faq-intro .text-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  color:var(--brand-green-deep);
  border-bottom:2px solid var(--brand-lime);
  padding-bottom:3px;
}
.faq-list{display:flex;flex-direction:column;gap:14px}
.faq-item{
  border:1px solid var(--line);
  border-radius:20px;
  background:var(--paper);
  overflow:hidden;
  transition:background .22s,border-color .22s;
}
.faq-item:has(.faq-btn[aria-expanded="true"]){
  background:var(--surface-2);
  border-color:rgba(14,159,110,.35);
}
.faq-btn{
  display:flex;
  align-items:center;
  gap:14px;
  width:100%;
  text-align:left;
  background:none;
  border:0;
  color:var(--ink);
  font-weight:800;
  font-size:1.02rem;
  padding:20px 24px;
  cursor:pointer;
}
.faq-btn .faq-icon{
  width:30px;
  height:30px;
  flex:0 0 auto;
  border-radius:50%;
  background:var(--brand-lime);
  color:var(--ink);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  transition:transform .26s ease,background .26s;
}
.faq-btn[aria-expanded="true"] .faq-icon{
  transform:rotate(45deg);
  background:var(--accent);
}
.faq-collapse{padding:0 24px 22px 68px}
.faq-answer{
  color:var(--text);
  font-size:.96rem;
  border-top:1px solid rgba(16,38,29,.09);
  padding-top:14px;
}
@media(max-width:991.98px){
  .faq-wrap{grid-template-columns:1fr}
}
@media(max-width:575.98px){
  .faq-collapse{padding:0 18px 20px 20px}
}

/* footer */
.footer{
  position:relative;
  background:var(--ink);
  color:rgba(255,255,255,.74);
  padding-top:64px;
}
.footer-topline{
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:4px;
  background:linear-gradient(90deg,var(--brand-lime),var(--brand-green),var(--accent));
}
.footer-main{padding:10px 0 44px}
.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.15fr;
  gap:46px;
}
.footer-brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#fff;
  font-size:22px;
  font-weight:900;
}
.footer-brand i{
  width:38px;
  height:38px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--brand-lime);
  color:var(--ink);
  border-radius:13px;
  font-size:17px;
}
.footer-about{
  color:rgba(255,255,255,.66);
  max-width:360px;
  font-size:.95rem;
  line-height:1.85;
}
.footer-social{
  display:flex;
  gap:10px;
  margin-top:20px;
}
.footer-social a{
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.24);
  border-radius:14px;
  color:#fff;
  font-size:17px;
  transition:all .22s;
}
.footer-social a:hover{
  background:var(--brand-lime);
  border-color:var(--brand-lime);
  color:var(--ink);
}
.footer h4{
  color:#fff;
  font-size:15px;
  font-weight:800;
  margin:0 0 18px;
  letter-spacing:.4px;
}
.footer-links li{margin-bottom:10px}
.footer-links a{
  color:rgba(255,255,255,.72);
  transition:color .2s,padding-left .2s;
}
.footer-links a:hover{color:var(--brand-lime);padding-left:5px}
.footer-contact p{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin-bottom:12px;
  color:rgba(255,255,255,.72);
  font-size:.94rem;
}
.footer-contact i{
  color:var(--brand-lime);
  width:18px;
  margin-top:4px;
}
.footer-contact-small{
  margin-top:18px;
  font-size:.88rem;
  padding:14px 16px;
  background:rgba(255,255,255,.05);
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.68);
}
.footer-contact-small i{color:var(--brand-lime);margin-right:6px}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.12);
  padding:22px 0 26px;
  color:rgba(255,255,255,.58);
  font-size:.88rem;
  text-align:center;
  line-height:1.9;
}
.copyright-domain{
  color:rgba(255,255,255,.9);
  font-weight:700;
}
@media(max-width:991.98px){
  .footer-grid{grid-template-columns:1fr 1fr;gap:38px}
}
@media(max-width:575.98px){
  .footer{padding-top:48px}
  .footer-grid{grid-template-columns:1fr;gap:32px}
  .footer-bottom{text-align:left;padding-left:24px}
}

/* roulang page: category3 */
:root {
  --paper: #F5F2EA;
  --surface: #FFFFFF;
  --surface-2: #E7EEE8;
  --ink: #10261D;
  --text: #24382F;
  --muted: #667E73;
  --line: rgba(16, 38, 29, .10);
  --brand-lime: #B3F245;
  --brand-green: #0E9F6E;
  --brand-green-deep: #0B5C46;
  --accent: #FF6B45;
  --gold: #F3B937;
  --grad-primary: linear-gradient(135deg, #B3F245 0%, #0E9F6E 100%);
  --grad-dark: linear-gradient(135deg, #13382B 0%, #0B261D 100%);
  --round-lg: 28px;
  --round-md: 18px;
  --shadow-card: 0 12px 30px rgba(18, 38, 29, .08);
  --shadow-card-hover: 0 18px 42px rgba(18, 38, 29, .12);
  --font-stack: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-stack);
  font-size: 16px;
  line-height: 1.75;
  background: var(--paper);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5 {
  margin: 0;
  color: var(--ink);
  line-height: 1.25;
}

[id] {
  scroll-margin-top: 96px;
}

.container-lg,
.container {
  --bs-gutter-x: 24px;
}

section[id] {
  scroll-margin-top: 84px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1080;
  background: rgba(245, 242, 234, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(16, 38, 29, .08);
}

.header__row {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: var(--grad-primary);
  color: var(--ink);
  font-size: 19px;
  box-shadow: 0 8px 20px rgba(14, 159, 110, .22);
}

.brand__text {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: .01em;
  color: var(--ink);
}

.header__center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.segment-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(16, 38, 29, .08);
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(18, 38, 29, .06);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  border: 1px solid transparent;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.chip:hover {
  background: var(--surface-2);
  color: var(--ink);
  transform: translateY(-1px);
}

.chip.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 8px 18px rgba(16, 38, 29, .18);
}

.chip:focus-visible,
.btn:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(255, 107, 69, .4);
  outline-offset: 2px;
}

.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
  position: relative;
  z-index: 1075;
}

.header-cta--mobile {
  display: none;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-size: 18px;
  transition: transform .25s ease, background .25s ease;
}

.menu-toggle:hover {
  background: var(--surface-2);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}

.btn-accent {
  background: var(--accent);
  color: #10261D;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(255, 107, 69, .2);
}

.btn-accent:hover {
  background: #ff5a34;
  color: #10261D;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(255, 107, 69, .28);
}

.btn-lime {
  background: var(--brand-lime);
  color: #10261D;
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(179, 242, 69, .2);
}

.btn-lime:hover {
  background: #c6ff65;
  color: #10261D;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(179, 242, 69, .28);
}

.btn-outline-light {
  border: 1.5px solid rgba(255, 255, 255, .85);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* Hero */
.venue-hero {
  position: relative;
  padding: clamp(78px, 10vw, 132px) 0 clamp(66px, 8vw, 108px);
  background:
    linear-gradient(105deg, rgba(16, 38, 29, .97) 0%, rgba(11, 53, 43, .88) 48%, rgba(16, 38, 29, .38) 100%),
    url('/assets/images/backpic/back-2.webp') center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.venue-hero::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -80px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 242, 69, .22) 0%, rgba(179, 242, 69, 0) 70%);
  pointer-events: none;
}

.venue-hero .container-lg,
.venue-hero .container {
  position: relative;
  z-index: 3;
}

.inline-crumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 22px;
}

.inline-crumb a {
  color: rgba(255, 255, 255, .76);
}

.inline-crumb a:hover {
  color: var(--brand-lime);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(179, 242, 69, .14);
  border: 1px solid rgba(179, 242, 69, .36);
  color: var(--brand-lime);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.venue-hero h1 {
  color: #fff;
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-lead {
  max-width: 720px;
  color: rgba(255, 255, 255, .86);
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions .btn {
  padding: 13px 28px;
  font-size: 16px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 28px;
  padding: 26px 22px;
  backdrop-filter: blur(2px);
}

.metric-item {
  text-align: center;
  padding: 8px 6px;
}

.metric-item strong {
  display: block;
  font-size: 34px;
  font-weight: 900;
  color: var(--brand-lime);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.metric-item span {
  display: block;
  margin-top: 9px;
  font-size: 13px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.4;
}

.metric-item + .metric-item {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

/* Section layout */
.section {
  padding: clamp(64px, 9vh, 110px) 0;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-green);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
}

.section-desc {
  color: var(--muted);
  max-width: 620px;
}

/* Service scope */
.service-scope {
  background: var(--paper);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}

.bento-main {
  grid-column: span 7;
}

.bento-dark {
  grid-column: span 5;
}

.scope-card {
  border-radius: var(--round-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  padding: clamp(28px, 3.5vw, 48px);
  min-height: 100%;
}

.scope-card--ink {
  background: var(--grad-dark);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 20px 44px rgba(16, 38, 29, .2);
}

.scope-card--ink h3,
.scope-card--ink h4 {
  color: #fff;
}

.scope-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.scope-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--surface-2);
  color: var(--brand-green-deep);
  font-size: 22px;
  flex-shrink: 0;
}

.scope-card--ink .scope-icon-badge {
  background: rgba(179, 242, 69, .16);
  color: var(--brand-lime);
}

.scope-card h3 {
  font-size: 25px;
  font-weight: 900;
  margin-bottom: 8px;
}

.scope-card__head p {
  color: var(--muted);
}

.scope-card--ink .scope-card__head p {
  color: rgba(255, 255, 255, .7);
}

.scope-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.scope-point {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px 18px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.scope-point:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.scope-point i {
  color: var(--brand-green);
  font-size: 20px;
  margin-bottom: 12px;
}

.scope-point h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.scope-point p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

.scope-dark-list {
  margin-top: 14px;
}

.scope-dark-list li {
  display: flex;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  font-size: 15px;
  color: rgba(255, 255, 255, .86);
}

.scope-dark-list li i {
  color: var(--brand-lime);
  margin-top: 4px;
}

.scope-dark-list li:last-child {
  border-bottom: 0;
}

.scope-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 22px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.scope-card--ink .tag {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .16);
  color: #fff;
}

/* Process */
.process-area {
  background: var(--grad-dark);
  color: #fff;
  padding: clamp(68px, 9vh, 112px) 0;
}

.process-area .container-lg,
.process-area .container {
  position: relative;
  z-index: 2;
}

.process-area .eyebrow {
  color: var(--brand-lime);
}

.process-title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.process-intro {
  color: rgba(255, 255, 255, .76);
  max-width: 520px;
  margin-bottom: 36px;
}

.steps-list {
  display: flex;
  flex-direction: column;
}

.steps-list li {
  position: relative;
  padding: 0 0 32px 66px;
}

.steps-list li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 25px;
  top: 52px;
  bottom: 2px;
  width: 2px;
  background: rgba(179, 242, 69, .24);
}

.step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-lime);
  color: #10261D;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 0 0 6px rgba(179, 242, 69, .12);
  font-variant-numeric: tabular-nums;
}

.steps-list h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 5px;
}

.steps-list p {
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.7;
}

.process-gallery {
  height: 100%;
}

.process-gallery__main {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .28);
}

.process-gallery__main img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.side-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.side-stack .gallery-card {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
}

.side-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Venue scenes */
.venue-scenes {
  background: var(--surface);
}

.scenes-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
}

.feature-scene {
  background: var(--paper);
  border-radius: var(--round-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.feature-scene img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.feature-scene__body {
  padding: 26px;
}

.feature-scene .badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.feature-scene h3 {
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 8px;
}

.feature-scene p {
  color: var(--muted);
  margin-bottom: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--brand-green-deep);
}

.text-link i {
  transition: transform .25s ease;
}

.text-link:hover i {
  transform: translateX(4px);
}

.scene-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.scene-mini {
  background: var(--paper);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.scene-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.scene-mini img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.scene-mini__body {
  padding: 18px 20px 20px;
}

.scene-mini h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}

.scene-mini p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

/* Standard strip */
.standard-strip {
  position: relative;
  margin-top: 30px;
  background: var(--ink);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 50px);
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 1fr);
  gap: 30px;
  box-shadow: 0 18px 44px rgba(16, 38, 29, .18);
  overflow: hidden;
}

.standard-strip::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  right: -70px;
  top: -100px;
  background: radial-gradient(circle, rgba(179, 242, 69, .2) 0%, rgba(179, 242, 69, 0) 70%);
}

.standard-title {
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.standard-title span {
  color: var(--brand-lime);
}

.standard-title p {
  color: rgba(255, 255, 255, .68);
  font-size: 15px;
  margin: 6px 0 0;
}

.standard-item {
  position: relative;
  padding-left: 18px;
}

.standard-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 30px;
  border-radius: 999px;
  background: var(--brand-lime);
}

.standard-item h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 4px;
}

.standard-item p {
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Contact CTA */
.cta-section {
  background: var(--paper);
  padding: 30px 0 clamp(64px, 9vh, 100px);
}

.cta-panel {
  background: linear-gradient(120deg, #bed75d 0%, #B3F245 46%, #7de2a5 100%);
  border-radius: 32px;
  padding: clamp(34px, 5vw, 68px);
  color: #10261D;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(26, 72, 42, .18);
}

.cta-panel::after {
  content: "\f46b";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: -20px;
  bottom: -30px;
  font-size: 180px;
  color: rgba(16, 38, 29, .08);
}

.cta-panel h2 {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  color: #10261D;
}

.cta-panel p {
  max-width: 680px;
  color: rgba(16, 38, 29, .75);
  margin-bottom: 26px;
}

.cta-link {
  color: #10261D;
  border-bottom: 2px solid #10261D;
  font-weight: 800;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* FAQ */
.faq-section {
  background: var(--surface-2);
  padding: clamp(64px, 9vh, 110px) 0;
}

.faq-section .container-lg,
.faq-section .container {
  max-width: 940px;
}

.faq-list {
  margin-top: 20px;
}

.faq-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(18, 38, 29, .04);
  transition: background .25s ease, border-color .25s ease;
}

.faq-card summary {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 800;
  color: var(--ink);
  transition: background .25s ease;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary:hover {
  background: rgba(231, 238, 232, .6);
}

.faq-card[open] summary {
  background: var(--surface-2);
}

.faq-card .faq-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.faq-card .faq-text {
  flex: 1;
  font-size: 16px;
  line-height: 1.4;
}

.faq-card .faq-plus {
  margin-left: auto;
  color: var(--brand-green-deep);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-card[open] .faq-plus {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 4px 24px 22px 72px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.faq-answer p {
  margin: 0;
}

/* Footer */
.footer {
  background: var(--ink);
  color: #c6d3cc;
  padding-top: 0;
}

.footer-topline {
  height: 4px;
  background: var(--grad-primary);
}

.footer-main {
  padding: 62px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 38px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
}

.footer-brand i {
  color: var(--brand-lime);
}

.footer-about {
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  max-width: 380px;
  line-height: 1.8;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .16);
  color: rgba(255, 255, 255, .78);
  transition: all .25s ease;
}

.footer-social a:hover {
  background: var(--brand-lime);
  border-color: var(--brand-lime);
  color: var(--ink);
  transform: translateY(-2px);
}

.footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 18px;
}

.footer-links li {
  margin-bottom: 9px;
}

.footer-links a {
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  transition: color .2s ease, padding-left .2s ease;
}

.footer-links a:hover {
  color: var(--brand-lime);
  padding-left: 6px;
}

.footer-contact p,
.footer-contact-small {
  color: rgba(255, 255, 255, .64);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact i {
  width: 20px;
  color: var(--brand-lime);
}

.footer-contact-small {
  border-left: 2px solid rgba(179, 242, 69, .45);
  padding-left: 14px;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px 0 28px;
  color: rgba(255, 255, 255, .48);
  font-size: 13px;
}

.copyright-domain {
  color: rgba(255, 255, 255, .6);
}

/* Responsive */
@media (min-width: 1200px) {
  .container-lg,
  .container {
    max-width: 1320px;
  }
}

@media (max-width: 1199.98px) {
  .scope-points {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 991.98px) {
  .site-header {
    min-height: 64px;
  }

  .header__row {
    min-height: 64px;
    gap: 10px;
  }

  .header__center {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1070;
    width: min(370px, 88vw);
    display: block;
    background: var(--paper);
    border-left: 1px solid var(--line);
    box-shadow: -20px 0 50px rgba(16, 38, 29, .2);
    padding: 96px 24px 28px;
    transform: translateX(105%);
    transition: transform .35s ease;
    overflow-y: auto;
  }

  .header__center.is-open {
    transform: translateX(0);
  }

  .segment-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px;
    background: transparent;
    border: 0;
    box-shadow: none;
    border-radius: 20px;
  }

  .chip {
    justify-content: flex-start;
    padding: 13px 18px;
    font-size: 16px;
  }

  .header-cta--mobile {
    display: inline-flex;
    width: 100%;
    margin-top: 20px;
    justify-content: center;
  }

  .header-cta--desktop {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu-toggle.is-open i::before {
    content: "\f00d";
  }

  .hero-metrics {
    margin-top: 26px;
  }

  .bento-main,
  .bento-dark {
    grid-column: span 12;
  }

  .process-gallery {
    margin-top: 44px;
  }

  .process-gallery__main img {
    min-height: 260px;
  }

  .side-stack {
    flex-direction: row;
  }

  .side-stack .gallery-card {
    min-height: 180px;
  }

  .scenes-grid {
    grid-template-columns: 1fr;
  }

  .scene-list {
    grid-template-columns: 1fr 1fr;
  }

  .standard-strip {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .section {
    padding: 56px 0;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 28px;
  }

  .brand__text {
    font-size: 20px;
  }

  .brand__icon {
    width: 35px;
    height: 35px;
  }

  .venue-hero {
    padding: 52px 0 56px;
  }

  .venue-hero h1 {
    font-size: clamp(2.6rem, 16vw, 3.8rem);
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 20px;
  }

  .metric-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: right;
    padding: 10px 0;
  }

  .metric-item strong {
    font-size: 28px;
  }

  .metric-item + .metric-item {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, .14);
  }

  .scope-points {
    grid-template-columns: 1fr;
  }

  .process-gallery__main img {
    min-height: 200px;
  }

  .side-stack {
    flex-direction: column;
  }

  .side-stack .gallery-card {
    min-height: 140px;
  }

  .feature-scene img {
    height: 240px;
  }

  .scene-list {
    grid-template-columns: 1fr;
  }

  .scene-mini img {
    height: 200px;
  }

  .standard-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cta-panel {
    padding: 28px 22px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .faq-answer {
    padding: 0 18px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 575.98px) {
  .hero-actions .btn {
    width: 100%;
  }

  .footer-bottom span {
    display: block;
    margin-bottom: 6px;
  }
}

/* roulang page: category4 */
:root {
      --paper: #F5F2EA;
      --surface: #FFFFFF;
      --surface-2: #E7EEE8;
      --ink: #10261D;
      --text: #24382F;
      --muted: #667E73;
      --line: rgba(16, 38, 29, .1);
      --brand-lime: #B3F245;
      --brand-green: #0E9F6E;
      --brand-green-deep: #0B5C46;
      --accent: #FF6B45;
      --gold: #F3B937;
      --grad-primary: linear-gradient(135deg, #B3F245 0%, #0E9F6E 100%);
      --grad-dark: linear-gradient(135deg, #13382B 0%, #0B261D 100%);
      --round-lg: 28px;
      --round-md: 18px;
      --shadow-card: 0 12px 30px rgba(18, 38, 29, .08);
      --shadow-hover: 0 18px 42px rgba(18, 38, 29, .12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
      background: var(--paper);
      color: var(--text);
      font-size: 16px;
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5, h6 {
      color: var(--ink);
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: .55em;
    }

    h1 {
      font-size: clamp(2rem, 5vw, 3.4rem);
      font-weight: 900;
      letter-spacing: .02em;
    }

    h2 {
      font-size: clamp(1.7rem, 3.8vw, 2.6rem);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: color .2s, background .2s, border .2s, box-shadow .2s, transform .2s;
    }

    ul, ol, p {
      margin: 0 0 1rem;
    }

    button, input, select, textarea {
      font-family: inherit;
    }

    ::selection {
      background: var(--brand-lime);
      color: var(--ink);
    }

    .container, .container-lg {
      max-width: 1320px;
    }

    .section {
      padding: clamp(56px, 9vh, 110px) 0;
    }

    .section-paper {
      background: var(--paper);
    }

    .section-white {
      background: var(--surface);
    }

    .section-tint {
      background: var(--surface-2);
    }

    .section-ink {
      background: var(--ink);
      color: rgba(255, 255, 255, .82);
    }

    .section-ink h2 {
      color: #fff;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: .08em;
      color: var(--brand-green-deep);
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-ink .eyebrow {
      color: var(--brand-lime);
    }

    .section-desc {
      color: var(--muted);
      max-width: 780px;
      font-size: 17px;
    }

    .section-ink .section-desc {
      color: rgba(255, 255, 255, .74);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: .72rem 1.6rem;
      border-radius: 999px;
      font-weight: 700;
      font-size: 16px;
      border: 0;
      line-height: 1.3;
      transition: transform .2s, box-shadow .2s, background .2s, color .2s;
    }

    .btn-accent {
      background: var(--accent);
      color: var(--ink);
    }

    .btn-accent:hover {
      background: #ff805c;
      color: var(--ink);
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(255, 107, 69, .28);
    }

    .btn-outline-clean {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, .82);
    }

    .btn-outline-clean:hover {
      border-color: var(--brand-lime);
      color: var(--brand-lime);
      transform: translateY(-2px);
    }

    .btn-dark-green {
      background: var(--brand-green-deep);
      color: #fff;
    }

    .btn-dark-green:hover {
      background: var(--ink);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 15px 28px rgba(16, 38, 29, .16);
    }

    .btn:focus-visible {
      outline: 3px solid rgba(255, 107, 69, .4);
      outline-offset: 2px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 1040;
      background: rgba(245, 242, 234, .94);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--line);
    }

    .header__row {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 20px;
      min-height: 76px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 11px;
      flex-shrink: 0;
    }

    .brand__icon {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      display: grid;
      place-items: center;
      background: var(--ink);
      color: var(--brand-lime);
      font-size: 19px;
      border-radius: 14px;
      box-shadow: 0 8px 18px rgba(16, 38, 29, .14);
    }

    .brand__text {
      font-size: 20px;
      font-weight: 900;
      letter-spacing: .03em;
      color: var(--ink);
      white-space: nowrap;
    }

    .header__center {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
    }

    .header__right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
    }

    .segment-nav {
      display: flex;
      align-items: center;
      gap: 5px;
      background: rgba(16, 38, 29, .05);
      border: 1px solid rgba(16, 38, 29, .05);
      padding: 5px;
      border-radius: 999px;
      max-width: 100%;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .segment-nav::-webkit-scrollbar {
      display: none;
    }

    .chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 8px 17px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text);
      white-space: nowrap;
      flex-shrink: 0;
      transition: background .2s, color .2s, transform .2s;
    }

    .chip i {
      font-size: 14px;
    }

    .chip:hover {
      background: rgba(14, 159, 110, .14);
      color: var(--brand-green-deep);
    }

    .chip.is-active {
      background: var(--brand-green-deep);
      color: #fff;
      box-shadow: 0 6px 14px rgba(11, 92, 70, .20);
    }

    .header-cta {
      flex-shrink: 0;
      padding: .62rem 1.45rem;
    }

    .header-cta--mobile {
      display: none;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      background: var(--surface);
      color: var(--ink);
      border: 1px solid var(--line);
      border-radius: 14px;
      font-size: 18px;
      cursor: pointer;
    }

    .hero-badge-dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      background: var(--brand-lime);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(179, 242, 69, .18);
    }

    .page-hero {
      position: relative;
      display: flex;
      align-items: center;
      min-height: 430px;
      padding: 76px 0 84px;
      background-color: var(--ink);
      background-image:
        linear-gradient(100deg, rgba(7, 22, 17, .92) 0%, rgba(16, 38, 29, .7) 56%, rgba(14, 159, 110, .18) 100%),
        url("/assets/images/backpic/back-2.webp");
      background-size: cover;
      background-position: center;
      color: #fff;
    }

    .page-hero::after {
      content: "";
      position: absolute;
      right: -90px;
      bottom: -90px;
      width: 280px;
      height: 280px;
      border: 42px solid rgba(179, 242, 69, .08);
      border-radius: 50%;
    }

    .page-hero .container {
      position: relative;
      z-index: 2;
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(179, 242, 69, .13);
      border: 1px solid rgba(179, 242, 69, .25);
      color: var(--brand-lime);
      padding: 8px 16px;
      border-radius: 999px;
      font-weight: 600;
      font-size: 14px;
      margin-bottom: 20px;
    }

    .page-hero h1 {
      color: #fff;
      margin-bottom: 18px;
    }

    .page-hero .hero-lead {
      max-width: 780px;
      font-size: 18px;
      line-height: 1.9;
      color: rgba(255, 255, 255, .84);
      margin-bottom: 28px;
    }

    .hero-meta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .hero-stat-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .16);
      backdrop-filter: blur(6px);
      padding: 10px 16px;
      border-radius: 999px;
      color: #fff;
      font-size: 14px;
      font-weight: 600;
    }

    .hero-stat-pill strong {
      color: var(--brand-lime);
      font-size: 18px;
      font-variant-numeric: tabular-nums;
    }

    .about-intro {
      padding-top: clamp(60px, 10vh, 120px);
    }

    .about-intro__copy p {
      font-size: 17px;
      line-height: 1.9;
      color: var(--text);
      margin-bottom: 20px;
    }

    .about-intro__visual {
      position: relative;
    }

    .img-frame {
      border-radius: var(--round-lg);
      overflow: hidden;
      background: var(--surface-2);
      border: 1px solid var(--line);
      box-shadow: var(--shadow-card);
    }

    .img-frame img {
      width: 100%;
      height: 440px;
      object-fit: cover;
    }

    .float-note {
      position: absolute;
      left: 18px;
      bottom: 18px;
      right: 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(255, 255, 255, .9);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, .72);
      color: var(--ink);
      border-radius: 18px;
      padding: 14px 18px;
      box-shadow: 0 14px 34px rgba(16, 38, 29, .14);
    }

    .float-note i {
      color: var(--brand-green);
      font-size: 24px;
    }

    .float-note span {
      font-weight: 700;
    }

    .stat-band {
      background: var(--grad-dark);
      color: #fff;
    }

    .stat-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .stat-item {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 24px;
      padding: 24px 26px;
      position: relative;
      overflow: hidden;
    }

    .stat-item::after {
      content: "";
      position: absolute;
      width: 54px;
      height: 54px;
      right: -18px;
      top: -18px;
      background: rgba(179, 242, 69, .12);
      border-radius: 50%;
    }

    .stat-num {
      font-size: clamp(2rem, 4.4vw, 3rem);
      font-weight: 900;
      color: var(--brand-lime);
      line-height: 1.15;
      font-variant-numeric: tabular-nums;
    }

    .stat-num small {
      font-size: .48em;
      font-weight: 800;
      margin-left: 5px;
      color: #fff;
    }

    .stat-label {
      margin-top: 8px;
      color: rgba(255, 255, 255, .68);
      font-size: 14px;
    }

    .channel-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .channel-card {
      position: relative;
      display: flex;
      gap: 0;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--shadow-card);
      transition: transform .25s, box-shadow .25s;
    }

    .channel-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .channel-thumb {
      width: 168px;
      flex-shrink: 0;
      min-height: 180px;
      background: var(--surface-2);
      overflow: hidden;
    }

    .channel-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .35s;
    }

    .channel-card:hover .channel-thumb img {
      transform: scale(1.04);
    }

    .channel-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      padding: 22px 22px 18px;
    }

    .channel-title {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 20px;
      font-weight: 900;
      color: var(--ink);
      margin-bottom: 8px;
    }

    .channel-title i {
      color: var(--accent);
      font-size: 17px;
    }

    .channel-desc {
      color: var(--muted);
      font-size: 14.5px;
      line-height: 1.75;
      margin-top: auto;
    }

    .channel-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-weight: 700;
      font-size: 14px;
      color: var(--brand-green-deep);
      margin-top: 14px;
    }

    .channel-link i {
      transition: transform .2s;
    }

    .channel-card:hover .channel-link i {
      transform: translateX(4px);
    }

    .timeline-wrap {
      max-width: 880px;
      margin: 0 auto;
    }

    .timeline-list {
      display: grid;
      gap: 14px;
      margin-top: 36px;
    }

    .timeline-item {
      position: relative;
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 18px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 24px 26px;
      transition: transform .25s, box-shadow .25s;
    }

    .timeline-item:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    .tl-num {
      width: 50px;
      height: 50px;
      display: grid;
      place-items: center;
      background: var(--brand-lime);
      color: var(--ink);
      font-weight: 900;
      border-radius: 50%;
      font-size: 16px;
      font-variant-numeric: tabular-nums;
    }

    .timeline-item h3 {
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 6px;
      color: var(--ink);
    }

    .timeline-item p {
      margin: 0;
      font-size: 15px;
      color: var(--muted);
      line-height: 1.8;
    }

    .coop-copy {
      max-width: 760px;
      color: var(--text);
      font-size: 17px;
      line-height: 1.9;
    }

    .badge-zone {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .coop-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 12px 20px;
      font-weight: 700;
      color: var(--ink);
      box-shadow: var(--shadow-card);
      transition: border .2s, background .2s, transform .2s;
    }

    .coop-badge i {
      color: var(--brand-green);
    }

    .coop-badge:hover {
      transform: translateY(-2px);
      border-color: rgba(14, 159, 110, .28);
      background: var(--surface-2);
    }

    .faq-list {
      max-width: 880px;
      margin: 0 auto;
      display: grid;
      gap: 14px;
    }

    .faq-item {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 20px;
      overflow: hidden;
      transition: border .2s, background .2s;
    }

    .faq-item[open] {
      background: var(--surface-2);
      border-color: rgba(14, 159, 110, .28);
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      list-style: none;
      cursor: pointer;
      padding: 20px 24px;
      font-weight: 800;
      color: var(--ink);
      font-size: 17px;
    }

    .faq-item summary::-webkit-details-marker {
      display: none;
    }

    .faq-item summary .plus-icon {
      width: 32px;
      height: 32px;
      flex: 0 0 32px;
      display: grid;
      place-items: center;
      background: var(--brand-green-deep);
      color: #fff;
      border-radius: 50%;
      transition: transform .25s, background .2s;
    }

    .faq-item[open] summary .plus-icon {
      transform: rotate(45deg);
      background: var(--accent);
      color: var(--ink);
    }

    .faq-answer {
      padding: 0 24px 22px;
      color: var(--text);
      font-size: 15.5px;
      line-height: 1.85;
    }

    .final-cta {
      padding: clamp(56px, 9vh, 100px) 0;
      background: var(--paper);
    }

    .cta-panel {
      position: relative;
      background: linear-gradient(130deg, #F7FFE7 0%, #c9f26e 52%, #a3dc63 100%);
      border-radius: 40px;
      padding: clamp(32px, 6vw, 70px);
      overflow: hidden;
      box-shadow: 0 24px 60px rgba(32, 70, 44, .12);
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      width: 200px;
      height: 200px;
      right: -50px;
      top: -50px;
      border: 36px solid rgba(255, 255, 255, .28);
      border-radius: 50%;
    }

    .cta-panel h2 {
      font-weight: 900;
      color: var(--ink);
      max-width: 600px;
    }

    .cta-panel p {
      max-width: 650px;
      color: #274A3B;
      font-size: 17px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      margin-top: 28px;
      position: relative;
      z-index: 2;
    }

    .footer {
      background: var(--ink);
      color: rgba(255, 255, 255, .72);
      font-size: 14.5px;
    }

    .footer-topline {
      height: 4px;
      background: linear-gradient(90deg, var(--brand-lime) 0%, var(--brand-green) 52%, var(--accent) 100%);
    }

    .footer-main {
      padding: 62px 0 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
      gap: 36px;
    }

    .footer-brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      font-size: 22px;
      font-weight: 900;
    }

    .footer-brand i {
      color: var(--brand-lime);
      font-size: 22px;
    }

    .footer-about {
      color: rgba(255, 255, 255, .6);
      max-width: 380px;
      line-height: 1.85;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 12px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, .16);
      border-radius: 12px;
      color: #fff;
      background: rgba(255, 255, 255, .04);
      transition: background .2s, border .2s, transform .2s, color .2s;
    }

    .footer-social a:hover {
      background: var(--brand-lime);
      border-color: var(--brand-lime);
      color: var(--ink);
      transform: translateY(-3px);
    }

    .footer h4 {
      color: #fff;
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 16px;
      padding-bottom: 10px;
      position: relative;
    }

    .footer h4::before {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 26px;
      height: 3px;
      background: var(--brand-lime);
      border-radius: 999px;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, .68);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: color .2s, transform .2s;
    }

    .footer-links a::before {
      content: "\f105";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 13px;
      color: var(--brand-lime);
    }

    .footer-links a:hover {
      color: var(--brand-lime);
      transform: translateX(3px);
    }

    .footer-contact p {
      margin: 0 0 10px;
      display: flex;
      align-items: flex-start;
      gap: 9px;
      color: rgba(255, 255, 255, .68);
    }

    .footer-contact i {
      color: var(--brand-lime);
      margin-top: 4px;
    }

    .footer-contact-small {
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      padding: 12px 14px;
      border-radius: 16px;
      color: rgba(255, 255, 255, .58);
      line-height: 1.7;
    }

    .footer-contact-small i {
      color: var(--brand-lime);
      margin-right: 6px;
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding: 20px 0 24px;
      text-align: center;
      color: rgba(255, 255, 255, .48);
    }

    .copyright-domain {
      color: rgba(255, 255, 255, .8);
    }

    @media (max-width: 1199.98px) {
      .chip {
        padding: 8px 14px;
        font-size: 14px;
      }

      .channel-thumb {
        width: 140px;
      }
    }

    @media (max-width: 991.98px) {
      .header__center {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(360px, 88vw);
        background: var(--paper);
        box-shadow: -20px 0 50px rgba(16, 38, 29, .14);
        padding: 36px 24px 26px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 18px;
        transform: translateX(105%);
        transition: transform .28s ease;
        z-index: 1045;
      }

      .header__center.is-open {
        transform: translateX(0);
      }

      .header__center .segment-nav {
        flex-direction: column;
        width: 100%;
        background: transparent;
        border: 0;
        border-radius: 0;
        padding: 0;
        overflow: visible;
      }

      .header__center .chip {
        width: 100%;
        justify-content: flex-start;
        padding: 15px 18px;
        border-radius: 18px;
        font-size: 16px;
      }

      .header__center .chip.is-active {
        background: var(--brand-green-deep);
        color: #fff;
      }

      .header-cta--mobile {
        display: inline-flex;
        width: 100%;
        margin-top: 4px;
      }

      .header-cta--desktop {
        display: none;
      }

      .menu-toggle {
        display: inline-grid;
      }

      .header__row {
        min-height: 68px;
        gap: 12px;
      }

      .brand__text {
        font-size: 18px;
      }

      .brand__icon {
        width: 38px;
        height: 38px;
        border-radius: 12px;
      }

      .stat-grid {
        grid-template-columns: 1fr 1fr;
      }

      .channel-thumb {
        width: 150px;
      }
    }

    @media (max-width: 767.98px) {
      .page-hero {
        min-height: 400px;
        padding-top: 60px;
        padding-bottom: 70px;
      }

      .logo-img-frame img {
        height: 340px;
      }

      .img-frame img {
        height: 320px;
      }

      .channel-grid {
        grid-template-columns: 1fr;
      }

      .channel-thumb {
        width: 130px;
        min-height: 150px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
      }

      .footer-about-col {
        grid-column: 1 / -1;
      }

      .cta-actions .btn {
        width: 100%;
      }
    }

    @media (max-width: 575.98px) {
      .header__row {
        min-height: 62px;
      }

      .brand__text {
        font-size: 17px;
      }

      .brand__icon {
        width: 34px;
        height: 34px;
        border-radius: 11px;
        font-size: 16px;
      }

      .header__center {
        width: 90vw;
      }

      .page-hero {
        min-height: auto;
        padding: 56px 0 60px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .img-frame img {
        height: 260px;
      }

      .channel-card {
        flex-direction: column;
      }

      .channel-thumb {
        width: 100%;
        min-height: 160px;
      }

      .timeline-item {
        grid-template-columns: 48px 1fr;
        gap: 14px;
        padding: 20px;
      }

      .tl-num {
        width: 42px;
        height: 42px;
        font-size: 14px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 26px;
      }

      .cta-panel {
        border-radius: 28px;
        padding: 30px 22px;
      }

      .footer-main {
        padding: 44px 0 28px;
      }
    }
