/* roulang page: index */
:root {
  --bs-primary: #0F8A5F;
  --bs-secondary: #F27A18;
  --bs-dark: #0C1F17;
  --bs-light: #F5F7F4;
  --mk-primary: #0F8A5F;
  --mk-primary-dark: #0B6B4A;
  --mk-primary-light: rgba(15, 138, 95, 0.08);
  --mk-secondary: #F27A18;
  --mk-secondary-dark: #D96A10;
  --mk-dark: #0C1F17;
  --mk-dark-2: #132E22;
  --mk-light: #F5F7F4;
  --mk-gold: #D9A441;
  --mk-red: #E23744;
  --mk-title: #13261D;
  --mk-body: #3D4F47;
  --mk-muted: #6B7A72;
  --mk-disabled: #A0AAA4;
  --mk-border: rgba(12, 31, 23, 0.08);
  --mk-border-strong: rgba(15, 138, 95, 0.35);
  --mk-radius-lg: 20px;
  --mk-radius-md: 12px;
  --mk-radius-pill: 999px;
  --mk-shadow: 0 2px 8px rgba(12, 31, 23, 0.06);
  --mk-shadow-hover: 0 8px 24px rgba(12, 31, 23, 0.12);
  --mk-shadow-gold: 0 4px 14px rgba(15, 138, 95, 0.25);
  --mk-gradient: linear-gradient(135deg, #0F8A5F 0%, #F27A18 100%);
  --mk-font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--mk-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--mk-body);
  background: var(--mk-light);
  padding-top: 72px;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 991.98px) {
  body { padding-top: 64px; padding-bottom: 76px; }
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: var(--mk-primary); transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease; }
a:hover { color: var(--mk-secondary); }
button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; }
.btn { border-radius: var(--mk-radius-md); font-weight: 600; padding: 10px 24px; border: 2px solid transparent; transition: all 0.25s ease; }
.btn:focus, .form-control:focus, .form-select:focus { outline: none; box-shadow: 0 0 0 3px rgba(15, 138, 95, 0.2); border-color: var(--mk-primary); }
.btn-gradient { background: var(--mk-gradient); color: #fff; border: none; padding: 12px 28px; border-radius: var(--mk-radius-md); font-weight: 700; box-shadow: var(--mk-shadow-gold); }
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(242, 122, 24, 0.35); color: #fff; }
.btn-gradient:active { transform: translateY(0); }
.btn-outline-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); border-radius: var(--mk-radius-md); padding: 12px 28px; font-weight: 600; }
.btn-outline-light:hover { border-color: var(--mk-primary); color: var(--mk-primary); background: rgba(255,255,255,0.08); }
.btn-outline-primary { background: transparent; color: var(--mk-primary); border: 1.5px solid var(--mk-primary); border-radius: var(--mk-radius-md); padding: 10px 24px; font-weight: 600; }
.btn-outline-primary:hover { background: var(--mk-primary); color: #fff; }
.container { max-width: 1200px; padding-inline: 24px; }
@media (max-width: 575.98px) { .container { padding-inline: 16px; } }
.section-pad { padding-block: 80px; }
@media (max-width: 991.98px) { .section-pad { padding-block: 48px; } }
.section-head { margin-bottom: 40px; }
.section-head .label { display: inline-block; font-size: 13px; font-weight: 700; color: var(--mk-primary); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 8px; }
.section-head h2 { font-size: clamp(22px, 2.2vw, 28px); font-weight: 700; color: var(--mk-title); line-height: 1.3; margin-bottom: 12px; }
.section-head .section-line { display: block; width: 48px; height: 4px; border-radius: 4px; background: var(--mk-gradient); }
.section-head.text-center .section-line { margin-inline: auto; }
.badge { border-radius: var(--mk-radius-pill); font-weight: 600; font-size: 13px; padding: 4px 16px; line-height: 1.5; }
.badge-live { background: var(--mk-red); color: #fff; display: inline-flex; align-items: center; gap: 4px; }
.badge-live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: #fff; display: inline-block; }
.badge-green { background: rgba(15, 138, 95, 0.15); color: var(--mk-primary); }
.badge-orange { background: rgba(242, 122, 24, 0.15); color: var(--mk-secondary); }
.badge-gold { background: rgba(217, 164, 65, 0.15); color: #a5711f; }

/* ===== Top Navigation ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1040;
  background: rgba(12, 31, 23, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  height: 72px;
  display: flex; align-items: center;
}
@media (max-width: 991.98px) {
  .site-header { height: 64px; }
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand-logo { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--mk-gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(15, 138, 95, 0.3);
}
.brand-mark i { color: #fff; font-size: 20px; }
.brand-text { font-size: 22px; font-weight: 700; color: #fff; letter-spacing: 0.5px; line-height: 1.2; }
.brand-text span { color: var(--mk-secondary); }
.main-nav { display: flex; align-items: center; gap: 4px; margin-inline: auto; }
@media (max-width: 991.98px) { .main-nav { display: none; } }
.main-nav a {
  color: #AFC5B8; font-size: 15px; font-weight: 500;
  padding: 8px 18px; border-radius: var(--mk-radius-md);
  position: relative; transition: color 0.25s ease;
}
.main-nav a:hover { color: #fff; }
.main-nav a.active { color: #fff; font-weight: 600; }
.main-nav a.active::after {
  content: ""; position: absolute; left: 18px; right: 18px; bottom: 2px;
  height: 2px; border-radius: 2px; background: var(--mk-primary);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 8px 20px; font-size: 14px; border-radius: var(--mk-radius-md); }
.nav-cta .btn-gradient { background: var(--mk-gradient); color: #fff; border: none; font-weight: 600; }
.nav-cta .btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(242, 122, 24, 0.35); color: #fff; }
@media (max-width: 991.98px) { .nav-cta { display: none; } }

/* ===== Mobile Bottom Tab ===== */
.bottom-tab-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050;
  height: 64px;
  background: var(--mk-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  justify-content: space-around; align-items: center;
  padding: 0 env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
@media (max-width: 991.98px) {
  .bottom-tab-nav { display: flex; }
}
.bottom-tab-nav .tab-item {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #8FA399; font-size: 11px; font-weight: 500;
  gap: 2px; flex: 1; height: 100%;
  transition: color 0.2s ease;
}
.bottom-tab-nav .tab-item i { font-size: 20px; line-height: 1; }
.bottom-tab-nav .tab-item.active { color: var(--mk-primary); font-weight: 700; }
.bottom-tab-nav .tab-item:not(.active):hover { color: #C4D4CB; }
@media (min-width: 992px) {
  .bottom-tab-nav { display: none !important; }
}

/* ===== Hero ===== */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgba(12, 31, 23, 0.82), rgba(18, 46, 34, 0.85)), url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero-section::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,31,23,0.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; gap: 48px;
  padding-block: 72px;
}
@media (max-width: 991.98px) { .hero-inner { padding-block: 48px; gap: 32px; } }
@media (max-width: 767.98px) { .hero-inner { flex-direction: column; text-align: center; } }
.hero-main { flex: 1; min-width: 0; }
.hero-flag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(15, 138, 95, 0.25);
  border: 1px solid rgba(15, 138, 95, 0.45);
  color: #8FE3C0;
  font-size: 13px; font-weight: 600;
  padding: 6px 18px; border-radius: var(--mk-radius-pill);
  margin-bottom: 20px;
}
.hero-flag i { color: var(--mk-secondary); }
.hero-title {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 700; line-height: 1.25;
  color: #fff; margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.hero-title span { color: var(--mk-secondary); }
.hero-subtitle {
  font-size: clamp(15px, 1.4vw, 17px);
  color: #D5E2DB;
  max-width: 560px;
  line-height: 1.8;
  margin-bottom: 28px;
}
@media (max-width: 767.98px) {
  .hero-subtitle { margin-inline: auto; }
}
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px;
}
@media (max-width: 767.98px) {
  .hero-stats { justify-content: center; }
}
.hero-stat {
  background: rgba(15, 138, 95, 0.2);
  border: 1px solid rgba(15, 138, 95, 0.35);
  border-radius: var(--mk-radius-pill);
  padding: 10px 20px;
  display: flex; flex-direction: column; align-items: center;
  min-width: 110px;
}
.hero-stat .num {
  font-size: 20px; font-weight: 800; color: var(--mk-gold);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}
.hero-stat .label {
  font-size: 12px; color: #AFC5B8; margin-top: 2px;
}
.hero-broadcast {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--mk-radius-pill);
  padding: 10px 20px;
  color: #fff;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  max-width: 100%;
}
.hero-broadcast:hover { background: rgba(15, 138, 95, 0.2); border-color: var(--mk-primary); color: #fff; }
.hero-broadcast .live-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mk-red); flex-shrink: 0; }
.hero-broadcast .match-name { font-weight: 600; font-size: 14px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hero-broadcast .match-time { font-size: 13px; color: var(--mk-gold); font-weight: 700; flex-shrink: 0; }
.hero-broadcast .bi-arrow-right { color: var(--mk-secondary); flex-shrink: 0; }
.hero-side {
  flex-shrink: 0; width: 300px;
}
@media (max-width: 1199.98px) { .hero-side { display: none; } }
.hero-cover-card {
  position: relative;
  border-radius: var(--mk-radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  height: 420px;
  background: var(--mk-dark-2);
}
.hero-cover-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-cover-card .cover-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(12,31,23,0.85));
}
.hero-cover-card .cover-content {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  color: #fff;
}
.hero-cover-card .cover-content .next-label {
  font-size: 12px; color: var(--mk-gold); font-weight: 700;
  display: flex; align-items: center; gap: 6px;
}
.hero-cover-card .cover-content h4 { font-size: 17px; font-weight: 700; margin: 6px 0 2px; }
.hero-cover-card .cover-content p { font-size: 13px; color: #C4D4CB; margin: 0; }
.hero-cover-card .next-badge {
  position: absolute; top: 16px; left: 16px;
  background: rgba(242, 122, 24, 0.92); color: #fff;
  font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: var(--mk-radius-pill);
  display: flex; align-items: center; gap: 4px;
}

/* ===== Countdown ===== */
.countdown-section { background: var(--mk-dark); color: #fff; }
.countdown-wrap {
  background: linear-gradient(135deg, rgba(15,138,95,0.12), rgba(12,31,23,0.4));
  border: 1px solid rgba(15,138,95,0.3);
  border-radius: 24px;
  padding: 40px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 28px;
}
@media (max-width: 767.98px) {
  .countdown-wrap { padding: 28px; flex-direction: column; text-align: center; }
}
.countdown-left { flex: 1; min-width: 260px; }
.countdown-left .label {
  font-size: 13px; color: var(--mk-gold); font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.countdown-left .label::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--mk-secondary); }
.countdown-left h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 16px; }
.countdown-digits {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .countdown-digits { justify-content: center; }
}
.count-digit {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--mk-radius-md);
  padding: 16px 22px;
  text-align: center;
  min-width: 72px;
}
.count-digit .val {
  font-size: 44px; font-weight: 800; color: var(--mk-secondary);
  line-height: 1.1; font-variant-numeric: tabular-nums;
}
@media (max-width: 767.98px) { .count-digit .val { font-size: 36px; } }
.count-digit .unit { font-size: 12px; color: #AFC5B8; margin-top: 4px; display: block; }
.countdown-right { display: flex; gap: 14px; flex-wrap: wrap; }
@media (max-width: 767.98px) {
  .countdown-right { justify-content: center; width: 100%; }
}
.countdown-right .btn { min-width: 130px; }

/* ===== Match / Spotlight Cards ===== */
.match-section { background: var(--mk-light); }
.match-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 767.98px) { .match-grid { grid-template-columns: 1fr; } }
.match-card {
  background: #fff;
  border-radius: var(--mk-radius-lg);
  box-shadow: var(--mk-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.match-card:hover { transform: translateY(-4px); box-shadow: var(--mk-shadow-hover); }
.match-card .match-cover {
  position: relative; overflow: hidden; aspect-ratio: 16 / 9;
}
.match-card .match-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.match-card:hover .match-cover img { transform: scale(1.03); }
.match-card .match-cover .match-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(12, 31, 23, 0.82); color: #fff;
  font-size: 12px; font-weight: 600;
  padding: 4px 16px; border-radius: var(--mk-radius-pill);
  backdrop-filter: blur(4px);
}
.match-card .match-body { padding: 20px 22px 18px; flex: 1; display: flex; flex-direction: column; }
.match-card .match-body h3 { font-size: 17px; font-weight: 700; color: var(--mk-title); margin-bottom: 6px; line-height: 1.4; }
.match-card .match-body .match-time { font-size: 12px; color: var(--mk-muted); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.match-card .match-body p { font-size: 14px; color: var(--mk-body); line-height: 1.7; flex: 1; margin-bottom: 14px; }
.match-card .match-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 10px; border-top: 1px solid var(--mk-border); }
.match-card .match-footer .badge { font-size: 12px; padding: 3px 12px; }
.match-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 14px; font-weight: 600; color: var(--mk-primary);
}
.match-link:hover { color: var(--mk-secondary); }
.match-link i { transition: transform 0.2s ease; }
.match-link:hover i { transform: translateX(4px); }

/* ===== Subscribe / CTA ===== */
.subscribe-section { background: var(--mk-light); }
.subscribe-box {
  background: rgba(15, 138, 95, 0.08);
  border: 1px solid rgba(15, 138, 95, 0.15);
  border-radius: var(--mk-radius-lg);
  padding: 32px 40px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
@media (max-width: 767.98px) {
  .subscribe-box { padding: 24px; flex-direction: column; text-align: center; }
}
.subscribe-text h3 { font-size: 22px; font-weight: 700; color: var(--mk-title); margin-bottom: 6px; }
.subscribe-text p { font-size: 15px; color: var(--mk-muted); margin: 0; }
.subscribe-form { display: flex; gap: 12px; flex-wrap: wrap; }
@media (max-width: 575.98px) {
  .subscribe-form { flex-direction: column; width: 100%; }
}
.subscribe-form .form-control {
  width: 240px; border-radius: var(--mk-radius-md);
  border: 1px solid rgba(12, 31, 23, 0.15);
  padding: 12px 18px; font-size: 14px;
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
@media (max-width: 575.98px) { .subscribe-form .form-control { width: 100%; } }
.subscribe-form .form-control:focus { border-color: var(--mk-primary); box-shadow: 0 0 0 3px rgba(15, 138, 95, 0.15); }
.subscribe-form .btn-subscribe {
  background: var(--mk-secondary); color: #fff; border: none;
  border-radius: var(--mk-radius-md); padding: 12px 30px;
  font-weight: 600; cursor: pointer;
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}
.subscribe-form .btn-subscribe:hover { background: var(--mk-secondary-dark); transform: translateY(-1px); }

/* ===== Replay Cards ===== */
.replay-section { background: #fff; }
.replay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 991.98px) { .replay-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .replay-grid { grid-template-columns: 1fr; } }
.replay-card {
  background: #fff;
  border-radius: var(--mk-radius-lg);
  overflow: hidden;
  border: 1px solid var(--mk-border);
  box-shadow: var(--mk-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: block;
}
.replay-card:hover { transform: translateY(-4px); box-shadow: var(--mk-shadow-hover); }
.replay-card .replay-cover {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  background: var(--mk-light);
}
.replay-card .replay-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.replay-card:hover .replay-cover img { transform: scale(1.03); }
.replay-card .replay-cover .replay-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--mk-dark); color: var(--mk-secondary);
  font-size: 12px; font-weight: 700;
  padding: 3px 12px; border-radius: var(--mk-radius-pill);
  display: flex; align-items: center; gap: 4px;
}
.replay-card .replay-body { padding: 16px 18px 18px; }
.replay-card .replay-body h3 { font-size: 15px; font-weight: 700; color: var(--mk-title); margin-bottom: 6px; line-height: 1.4; }
.replay-card .replay-body .views { font-size: 13px; color: var(--mk-muted); display: flex; align-items: center; gap: 6px; }
.replay-card .replay-body .views i { font-size: 14px; }

/* ===== News List ===== */
.news-section { background: var(--mk-light); }
.news-list { display: flex; flex-direction: column; gap: 0; }
.news-card {
  display: flex; align-items: center; gap: 20px;
  background: #fff;
  border-radius: var(--mk-radius-lg);
  padding: 20px 24px;
  box-shadow: var(--mk-shadow);
  margin-bottom: 12px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.news-card:hover { box-shadow: var(--mk-shadow-hover); transform: translateY(-2px); }
@media (max-width: 575.98px) {
  .news-card { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px; }
}
.news-date {
  flex-shrink: 0; text-align: center;
  background: rgba(15, 138, 95, 0.08);
  border-radius: var(--mk-radius-md);
  padding: 10px 16px;
  min-width: 64px;
}
.news-date .news-day { display: block; font-size: 24px; font-weight: 800; color: var(--mk-primary); line-height: 1.2; font-variant-numeric: tabular-nums; }
.news-date .news-month { display: block; font-size: 12px; color: var(--mk-muted); font-weight: 600; }
.news-content { flex: 1; min-width: 0; }
.news-content h3 { font-size: 16px; font-weight: 600; color: var(--mk-title); margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.news-content h3 a { color: var(--mk-title); }
.news-content h3 a:hover { color: var(--mk-primary); }
.news-content .news-desc { font-size: 13px; color: var(--mk-muted); margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-meta { display: flex; align-items: center; gap: 10px; }
.news-meta .badge { font-size: 12px; padding: 2px 12px; }
.news-meta .news-source { font-size: 12px; color: var(--mk-muted); }
.news-link { flex-shrink: 0; font-size: 14px; font-weight: 600; color: var(--mk-primary); display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.news-link:hover { color: var(--mk-secondary); }
.news-link i { transition: transform 0.2s ease; }
.news-link:hover i { transform: translateX(4px); }
.news-empty {
  background: rgba(12, 31, 23, 0.04);
  border-radius: var(--mk-radius-lg);
  padding: 48px 20px;
  text-align: center;
  color: var(--mk-muted);
  font-size: 14px;
}
.news-empty i { font-size: 32px; color: var(--mk-disabled); display: block; margin-bottom: 12px; }

/* ===== FAQ ===== */
.faq-section { background: #fff; }
.faq-accordion .accordion-item {
  border: 1px solid var(--mk-border);
  border-radius: var(--mk-radius-md) !important;
  margin-bottom: 12px;
  overflow: hidden;
  box-shadow: none;
  background: #fff;
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--mk-primary);
}
.faq-accordion .accordion-button {
  font-size: 15px; font-weight: 600; color: var(--mk-title);
  background: #fff; padding: 18px 22px;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--mk-primary); background: rgba(15, 138, 95, 0.04); }
.faq-accordion .accordion-button:focus { box-shadow: none; border-color: var(--mk-primary); }
.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F8A5F'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-body { padding: 0 22px 20px; font-size: 14px; color: var(--mk-muted); line-height: 1.8; }
.faq-accordion .accordion-body p { margin: 0; }

/* ===== Footer ===== */
.site-footer {
  background: var(--mk-dark);
  color: #AFC5B8;
  padding-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
}
@media (max-width: 991.98px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 575.98px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-brand .brand-text { font-size: 20px; color: #fff; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: #8FA399; margin-top: 14px; max-width: 320px; }
.footer-col h4 {
  font-size: 15px; font-weight: 700; color: #fff;
  margin-bottom: 18px; position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 28px; height: 2px; border-radius: 2px;
  background: var(--mk-primary);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: #8FA399; font-size: 14px; transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-col ul li a:hover { color: var(--mk-primary); padding-left: 4px; }
.footer-col .footer-contact li { display: flex; align-items: center; gap: 10px; color: #8FA399; font-size: 14px; }
.footer-col .footer-contact li i { color: var(--mk-primary); font-size: 15px; width: 18px; text-align: center; }
.footer-subscribe p { font-size: 14px; color: #8FA399; margin-bottom: 14px; }
.footer-subscribe .subscribe-mini { display: flex; gap: 8px; }
.footer-subscribe .subscribe-mini .form-control {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--mk-radius-md); color: #fff; padding: 10px 16px; font-size: 14px;
}
.footer-subscribe .subscribe-mini .form-control::placeholder { color: #6B7A72; }
.footer-subscribe .subscribe-mini .btn {
  background: var(--mk-secondary); color: #fff; border: none;
  border-radius: var(--mk-radius-md); padding: 10px 18px; font-weight: 600;
}
.footer-subscribe .subscribe-mini .btn:hover { background: var(--mk-secondary-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: 20px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #6B7A72;
}
@media (max-width: 575.98px) {
  .footer-bottom { flex-direction: column; text-align: center; }
}
.footer-bottom .copyright span { color: #8FA399; }
.footer-bottom a { color: #8FA399; }
.footer-bottom a:hover { color: var(--mk-primary); }

/* ===== Scroll to top ===== */
.scroll-top {
  position: fixed; right: 24px; bottom: 90px; z-index: 100;
  width: 42px; height: 42px;
  background: var(--mk-dark); color: #fff;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(12,31,23,0.3);
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); color: var(--mk-secondary); }
@media (max-width: 991.98px) { .scroll-top { bottom: 80px; right: 16px; } }

/* ===== Misc ===== */
.bg-dark-soft { background: var(--mk-dark); }
.text-gold { color: var(--mk-gold); }
.fade-up { animation: fadeUp 0.6s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

/* roulang page: article */
:root {
  --bs-primary: #0F8A5F;
  --bs-secondary: #F27A18;
  --bs-dark: #0C1F17;
  --bs-light: #F5F7F4;
  --bs-body-bg: #F5F7F4;
  --bs-body-color: #3D4F47;
  --bs-border-radius: 12px;
  --bs-font-sans-serif: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  --bs-gutter-x: 24px;
  --title-color: #13261D;
  --text-color: #3D4F47;
  --muted-color: #6B7A72;
  --border-color: rgba(12,31,23,0.08);
  --gold: #D9A441;
  --red: #E23744;
  --radius-lg: 20px;
  --radius-md: 12px;
  --shadow-sm: 0 2px 8px rgba(12,31,23,0.06);
  --shadow-md: 0 8px 24px rgba(12,31,23,0.12);
  --shadow-brand: 0 4px 14px rgba(15,138,95,0.25);
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, sans-serif;
  background: #F5F7F4;
  color: #3D4F47;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; vertical-align: middle; }
a { text-decoration: none; transition: color .2s ease, background .25s ease, border-color .2s ease, box-shadow .25s ease, transform .25s ease; }
.btn { border-radius: 12px; font-weight: 600; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  background: rgba(12,31,23,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.site-header .container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 28px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, #0F8A5F, #F27A18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(242,122,24,0.28);
}
.brand-mark i { color: #fff; font-size: 20px; line-height: 1; }
.brand-text { color: #fff; font-size: 20px; font-weight: 700; letter-spacing: .5px; }
.brand-text span { color: #F27A18; }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a {
  position: relative;
  display: inline-block;
  padding: 10px 16px;
  color: #AFC5B8;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: color .25s, background .25s;
}
.main-nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.main-nav a.active { color: #fff; font-weight: 600; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  border-radius: 2px;
  background: #0F8A5F;
}
.nav-cta { flex-shrink: 0; }
.btn-gradient {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0F8A5F, #F27A18);
  color: #fff !important;
  border: 0;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(15,138,95,0.25);
  transition: transform .25s, box-shadow .25s, filter .25s;
}
.btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(15,138,95,0.35); filter: brightness(1.05); }

/* ===== Mobile Tabbar ===== */
.mobile-tabbar { display: none; }

/* ===== Article Hero ===== */
.article-hero {
  position: relative;
  background:
    linear-gradient(100deg, rgba(12,31,23,0.92) 0%, rgba(12,31,23,0.78) 60%, rgba(15,138,95,0.35) 100%),
    url('/assets/images/backpic/back-1.webp') center / cover no-repeat;
  padding: 56px 0 64px;
}
.article-hero .breadcrumb {
  margin-bottom: 18px;
  --bs-breadcrumb-divider: '/';
}
.article-hero .breadcrumb-item a {
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}
.article-hero .breadcrumb-item a:hover { color: #fff; }
.article-hero .breadcrumb-item.active { color: #F27A18; font-size: 13px; }
.article-title {
  color: #fff;
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  max-width: 820px;
  margin-bottom: 18px;
  letter-spacing: .5px;
}
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: #F27A18; }
.article-meta i { margin-right: 4px; color: #F27A18; }

/* ===== Article Main ===== */
.article-main { padding: 0 0 80px; }
.article-layout { max-width: 860px; margin: 0 auto; }
.article-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(12,31,23,0.08);
  box-shadow: 0 2px 8px rgba(12,31,23,0.06);
  padding: 40px 48px;
  margin-top: -32px;
  position: relative;
}
.article-body { color: #3D4F47; font-size: 16px; line-height: 1.9; overflow-wrap: break-word; }
.article-body p { margin-bottom: 1.5em; }
.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  color: #13261D;
  border-left: 4px solid #0F8A5F;
  padding-left: 14px;
  margin: 2em 0 1em;
  line-height: 1.4;
}
.article-body h3 { font-size: 20px; font-weight: 700; color: #13261D; margin: 1.6em 0 .8em; }
.article-body h4 { font-size: 18px; font-weight: 700; color: #13261D; margin: 1.5em 0 .8em; }
.article-body img { border-radius: 12px; margin: 1.2em 0; height: auto; }
.article-body blockquote {
  background: rgba(15,138,95,0.07);
  border-left: 4px solid #0F8A5F;
  border-radius: 0 12px 12px 0;
  padding: 18px 22px;
  margin: 1.8em 0;
  color: #3D4F47;
}
.article-body ul, .article-body ol { padding-left: 1.5em; margin-bottom: 1.5em; }
.article-body li { margin-bottom: .6em; }
.article-body a { color: #0F8A5F; text-decoration: underline; text-underline-offset: 3px; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5em 0; }
.article-body table th, .article-body table td { border: 1px solid rgba(12,31,23,0.1); padding: 10px 14px; }
.article-body table th { background: rgba(15,138,95,0.06); color: #13261D; font-weight: 600; }
.article-body code { background: rgba(15,138,95,0.08); color: #0d7a53; padding: 2px 8px; border-radius: 6px; font-size: .9em; }

/* ===== Tags ===== */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(12,31,23,0.08);
}
.tags-label { display: inline-flex; align-items: center; gap: 6px; color: #6B7A72; font-size: 13px; font-weight: 600; }
.tag-chip {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(15,138,95,0.1);
  color: #0F8A5F;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  transition: background .2s;
}
.tag-chip:hover { background: rgba(15,138,95,0.18); color: #0d7a53; }

/* ===== Article CTA ===== */
.article-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(12,31,23,0.08);
}
.article-cta .btn {
  padding: 11px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-brand {
  background: transparent;
  border: 1.5px solid #0F8A5F;
  color: #0F8A5F;
}
.btn-outline-brand:hover { background: rgba(15,138,95,0.08); color: #0d7a53; }
.btn-primary-brand {
  background: #0F8A5F;
  border: 1.5px solid #0F8A5F;
  color: #fff;
  box-shadow: 0 4px 14px rgba(15,138,95,0.25);
}
.btn-primary-brand:hover { background: #0d7a53; box-shadow: 0 8px 20px rgba(15,138,95,0.35); transform: translateY(-2px); }

/* ===== Related ===== */
.related-section { margin-top: 56px; }
.section-head { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; }
.section-title { font-size: 26px; font-weight: 700; color: #13261D; margin: 0; letter-spacing: .5px; }
.section-line { width: 44px; height: 4px; background: linear-gradient(90deg, #0F8A5F, #F27A18); border-radius: 4px; }
.related-card {
  display: block;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(12,31,23,0.08);
  box-shadow: 0 2px 8px rgba(12,31,23,0.06);
  overflow: hidden;
  height: 100%;
  transition: transform .25s, box-shadow .25s;
}
.related-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(12,31,23,0.12); }
.related-cover { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #E8ECE7; }
.related-cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.related-card:hover .related-cover img { transform: scale(1.05); }
.badge-related {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(12,31,23,0.85);
  color: #F27A18;
  border: 1px solid rgba(242,122,24,0.5);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}
.related-info { padding: 18px 20px 20px; }
.related-info h3 {
  font-size: 16px;
  font-weight: 600;
  color: #13261D;
  line-height: 1.5;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-meta { color: #F27A18; font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.related-card:hover .related-meta { gap: 8px; }
.related-meta i { transition: transform .2s; }

/* ===== Subscribe CTA ===== */
.subscribe-cta { margin-top: 56px; }
.subscribe-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  background: rgba(15,138,95,0.08);
  border: 1px solid rgba(15,138,95,0.18);
  border-radius: 20px;
  padding: 28px 32px;
}
.subscribe-text h2 { font-size: 22px; font-weight: 700; color: #13261D; margin-bottom: 6px; }
.subscribe-text p { margin: 0; color: #6B7A72; font-size: 14px; }
.subscribe-form { display: flex; gap: 10px; flex-wrap: wrap; }
.subscribe-form .form-control {
  width: 240px;
  border: 1px solid rgba(12,31,23,0.15);
  border-radius: 12px;
  padding: 11px 16px;
  font-size: 14px;
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.subscribe-form .form-control:focus {
  border-color: #0F8A5F;
  box-shadow: 0 0 0 3px rgba(15,138,95,0.15);
  outline: none;
}
.btn-subscribe {
  background: #F27A18;
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-subscribe:hover { background: #D96A10; transform: translateY(-2px); box-shadow: 0 6px 16px rgba(242,122,24,0.3); }

/* ===== Not Found ===== */
.article-notfound {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(12,31,23,0.08);
  box-shadow: 0 2px 8px rgba(12,31,23,0.06);
  text-align: center;
  padding: 80px 24px;
  margin-top: -32px;
}
.article-notfound i { font-size: 48px; color: #A0AAA4; display: block; margin-bottom: 16px; }
.article-notfound h3 { font-size: 24px; color: #13261D; margin-bottom: 12px; }
.article-notfound p { color: #6B7A72; margin-bottom: 24px; }
.article-notfound .btn { border: 1.5px solid #0F8A5F; color: #0F8A5F; border-radius: 12px; padding: 10px 24px; font-weight: 600; }
.article-notfound .btn:hover { background: rgba(15,138,95,0.08); color: #0d7a53; }

/* ===== Footer ===== */
.site-footer { background: #0C1F17; color: #AFC5B8; padding: 64px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .brand-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; color: #8FA399; margin: 0; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 18px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { color: #8FA399; font-size: 14px; }
.footer-col ul a:hover { color: #0F8A5F; }
.footer-contact li { display: flex; align-items: center; gap: 8px; color: #8FA399; font-size: 14px; }
.footer-contact i { color: #F27A18; }
.footer-subscribe p { font-size: 14px; color: #8FA399; line-height: 1.7; margin-bottom: 14px; }
.subscribe-mini { display: flex; gap: 8px; }
.subscribe-mini .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 9px 14px;
  color: #fff;
  font-size: 14px;
  flex: 1;
  min-width: 0;
}
.subscribe-mini .form-control::placeholder { color: #8FA399; }
.subscribe-mini .form-control:focus {
  border-color: #0F8A5F;
  box-shadow: 0 0 0 3px rgba(15,138,95,0.2);
  outline: none;
  background: rgba(255,255,255,0.1);
}
.subscribe-mini .btn { background: #0F8A5F; color: #fff; border: none; border-radius: 10px; padding: 9px 14px; }
.subscribe-mini .btn:hover { background: #0d7a53; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.copyright { color: #8FA399; font-size: 13px; }
.footer-links a { color: #8FA399; font-size: 13px; }
.footer-links a:hover { color: #0F8A5F; }
.footer-links span { color: rgba(255,255,255,0.2); }

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .site-header { height: 60px; }
  .site-header .container { height: 60px; justify-content: center; }
  .main-nav, .nav-cta { display: none; }
  .mobile-tabbar {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    background: rgba(12,31,23,0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.07);
    height: 64px;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .tabbar-inner { display: flex; height: 64px; }
  .mobile-tabbar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #8FA399;
    font-size: 10px;
    font-weight: 500;
  }
  .mobile-tabbar a i { font-size: 20px; line-height: 1; }
  .mobile-tabbar a.active { color: #0F8A5F; font-weight: 600; }
  body { padding-bottom: 70px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 767.98px) {
  .article-hero { padding: 40px 0 52px; }
  .article-title { font-size: 28px; }
  .article-card { padding: 24px 20px; border-radius: 16px; margin-top: -24px; }
  .article-body { font-size: 15px; }
  .article-cta { flex-direction: column; align-items: stretch; }
  .article-cta .btn { justify-content: center; }
  .subscribe-box { padding: 24px 20px; }
  .subscribe-form { width: 100%; }
  .subscribe-form .form-control { width: 100%; }
  .btn-subscribe { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section-title { font-size: 22px; }
}
@media (min-width: 992px) {
  .site-footer { margin-top: 64px; }
}

/* roulang page: category1 */
:root {
  --ms-primary: #0F8A5F;
  --ms-primary-dark: #0B6D4C;
  --ms-secondary: #F27A18;
  --ms-secondary-dark: #D96A10;
  --ms-dark: #0C1F17;
  --ms-light: #F5F7F4;
  --ms-gold: #D9A441;
  --ms-red: #E23744;
  --ms-title: #13261D;
  --ms-body: #3D4F47;
  --ms-muted: #6B7A72;
  --ms-disabled: #A0AAA4;
  --ms-border: rgba(12,31,23,0.08);
  --ms-border-strong: rgba(15,138,95,0.35);
  --ms-radius-lg: 20px;
  --ms-radius-md: 12px;
  --ms-radius-pill: 999px;
  --ms-shadow-sm: 0 2px 8px rgba(12,31,23,0.06);
  --ms-shadow-lg: 0 8px 24px rgba(12,31,23,0.12);
  --ms-gradient: linear-gradient(135deg, #0F8A5F 0%, #F27A18 100%);
  --ms-font: "PingFang SC","Microsoft YaHei","Noto Sans SC",system-ui,sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ms-font);
  background: var(--ms-light);
  color: var(--ms-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--ms-primary); text-decoration: none; }
a:hover { color: var(--ms-secondary); }
img { max-width: 100%; }
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid rgba(15,138,95,.35);
  outline-offset: 2px;
  border-radius: 4px;
}
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0s; }
}

/* 顶部导航 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(12,31,23,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 32px;
}
.brand-logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--ms-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(15,138,95,.35);
  flex-shrink: 0;
}
.brand-text { color: #fff; font-weight: 700; font-size: 19px; letter-spacing: .3px; line-height: 1; }
.brand-text span { color: var(--ms-secondary); }
.main-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.main-nav a {
  color: #AFC5B8;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 16px;
  position: relative;
  border-radius: 8px;
  transition: color .25s;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 4px;
  height: 2px;
  background: var(--ms-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .25s;
}
.main-nav a:hover { color: #fff; }
.main-nav a.active { color: #fff; }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 8px; }
.btn-gradient {
  background: var(--ms-gradient);
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--ms-radius-md);
  display: inline-flex;
  align-items: center;
  transition: transform .25s, box-shadow .25s, filter .25s;
}
.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15,138,95,.4);
  filter: brightness(1.06);
  color: #fff;
}

/* 移动端底部 Tab */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  height: 64px;
  background: var(--ms-dark);
  display: none;
  justify-content: space-around;
  align-items: stretch;
  padding-bottom: env(safe-area-inset-bottom, 0);
  border-top: 1px solid rgba(255,255,255,.06);
}
.mobile-bottom-nav .tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #8FA399;
  text-decoration: none;
  font-size: 10px;
  transition: color .2s, background .2s;
}
.mobile-bottom-nav .tab-item i { font-size: 20px; line-height: 1; }
.mobile-bottom-nav .tab-item.active { color: var(--ms-primary); font-weight: 700; }
.mobile-bottom-nav .tab-item.active i { color: var(--ms-primary); }
.mobile-bottom-nav .tab-item:hover { color: #fff; }

/* 页面页头 */
.page-hero {
  background:
    linear-gradient(rgba(12,31,23,0.82), rgba(12,31,23,0.82)),
    url('/assets/images/backpic/back-2.webp') center center / cover no-repeat;
  padding: 64px 0 72px;
  color: #fff;
  position: relative;
}
.page-hero .breadcrumb {
  --bs-breadcrumb-divider: '/';
  margin-bottom: 20px;
}
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }
.page-hero .breadcrumb-item a { color: #AFC5B8; text-decoration: none; transition: color .2s; }
.page-hero .breadcrumb-item a:hover { color: #fff; }
.page-hero .breadcrumb-item.active { color: var(--ms-gold); }
.page-hero h1 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: .5px;
  line-height: 1.25;
}
.page-hero .hero-divider {
  width: 56px;
  height: 4px;
  background: var(--ms-primary);
  border-radius: 4px;
  margin-bottom: 20px;
}
.page-hero .hero-sub {
  color: #C9D8D0;
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
  margin: 0;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15,138,95,0.2);
  border: 1px solid var(--ms-border-strong);
  color: #fff;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--ms-radius-pill);
}
.hero-chip i { color: var(--ms-secondary); }

/* 通用板块 */
.section-block { padding-block: 48px; }
@media (min-width: 992px) {
  .section-block { padding-block: 80px; }
}
.features-section, .flow-section, .faq-section { background: #fff; border-top: 1px solid var(--ms-border); border-bottom: 1px solid var(--ms-border); }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 32px; flex-wrap: wrap; }
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ms-primary);
  background: rgba(15,138,95,0.08);
  padding: 4px 14px;
  border-radius: var(--ms-radius-pill);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.section-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ms-title);
  position: relative;
  padding-left: 16px;
  margin: 0;
  line-height: 1.3;
}
.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--ms-primary);
  border-radius: 4px;
}
.section-note { font-size: 13px; color: var(--ms-muted); white-space: nowrap; }
.section-note i { color: var(--ms-secondary); }

/* 今日直播时间轴 */
.timeline { position: relative; }
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: linear-gradient(180deg, rgba(15,138,95,0.4), rgba(15,138,95,0.05));
  border-radius: 2px;
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--ms-border);
  border-radius: 18px;
  padding: 20px 24px 20px 16px;
  box-shadow: var(--ms-shadow-sm);
  margin-bottom: 14px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.timeline-item:hover {
  box-shadow: var(--ms-shadow-lg);
  transform: translateY(-2px);
  border-color: var(--ms-border-strong);
}
.tl-rail { width: 24px; flex-shrink: 0; display: flex; justify-content: center; padding-top: 26px; }
.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(12,31,23,0.25);
}
.dot-waiting { background: var(--ms-gold); }
.dot-live { background: var(--ms-red); box-shadow: 0 0 0 4px rgba(226,55,68,0.15); }
.dot-done { background: var(--ms-disabled); }
.tl-time {
  min-width: 96px;
  font-size: 20px;
  font-weight: 700;
  color: var(--ms-title);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
  padding-top: 2px;
}
.tl-main { flex: 1; min-width: 200px; }
.tl-league { font-size: 12px; color: var(--ms-muted); margin-bottom: 3px; letter-spacing: .5px; }
.tl-match { font-size: 17px; font-weight: 700; color: var(--ms-title); margin-bottom: 3px; }
.tl-meta { font-size: 13px; color: var(--ms-disabled); }
.badge-status {
  font-size: 12px;
  padding: 6px 14px;
  border-radius: var(--ms-radius-pill);
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  margin-top: 6px;
}
.status-waiting { background: rgba(242,122,24,.12); color: var(--ms-secondary); border: 1px solid rgba(242,122,24,.25); }
.status-live { background: rgba(226,55,68,.1); color: var(--ms-red); border: 1px solid rgba(226,55,68,.22); }
.status-live::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--ms-red); margin-right: 6px; }
.status-done { background: rgba(160,170,164,.12); color: var(--ms-muted); border: 1px solid rgba(160,170,164,.25); }
.timeline-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ms-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.timeline-note i { color: var(--ms-primary); }

/* 频道能力卡片 */
.feature-card {
  background: #fff;
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-lg);
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--ms-shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
  position: relative;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--ms-shadow-lg); border-color: var(--ms-border-strong); }
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(15,138,95,0.1);
  color: var(--ms-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  transition: background .25s, color .25s;
}
.feature-card:hover .feature-icon { background: var(--ms-primary); color: #fff; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--ms-title); margin-bottom: 10px; }
.feature-card p { font-size: 14px; color: var(--ms-muted); line-height: 1.7; margin: 0; }

/* 赛事覆盖 */
.sport-card {
  position: relative;
  border-radius: var(--ms-radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
  display: block;
  box-shadow: var(--ms-shadow-sm);
  text-decoration: none;
  background: var(--ms-dark);
}
.sport-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.sport-card:hover img { transform: scale(1.05); }
.sport-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,31,23,0.1) 30%, rgba(12,31,23,0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  transition: background .25s;
}
.sport-card:hover .sport-overlay { background: linear-gradient(180deg, rgba(15,138,95,0.2) 30%, rgba(12,31,23,0.9) 100%); }
.sport-overlay h3 { font-size: 19px; font-weight: 700; margin-bottom: 4px; }
.sport-overlay p { font-size: 13px; color: rgba(255,255,255,0.85); margin: 0; }

/* 观赛流程 */
.step-card {
  background: #fff;
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-lg);
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--ms-shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.step-card:hover { transform: translateY(-4px); box-shadow: var(--ms-shadow-lg); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border-radius: var(--ms-radius-pill);
  background: rgba(217,164,65,.16);
  color: #A97910;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}
.step-card h3 { font-size: 17px; font-weight: 700; color: var(--ms-title); margin-bottom: 8px; }
.step-card p { font-size: 14px; color: var(--ms-muted); line-height: 1.7; margin: 0; }

/* 订阅 CTA */
.cta-subscribe {
  background: rgba(15,138,95,0.08);
  border: 1px solid rgba(15,138,95,0.18);
  border-radius: var(--ms-radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-copy { display: flex; align-items: flex-start; gap: 16px; flex: 1 1 320px; }
.cta-ico {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--ms-gradient);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(15,138,95,.3);
}
.cta-copy h2 { font-size: 22px; font-weight: 700; color: var(--ms-title); margin-bottom: 6px; }
.cta-copy p { margin: 0; color: var(--ms-muted); font-size: 14px; line-height: 1.7; }
.subscribe-form { display: flex; gap: 12px; flex: 0 1 440px; }
.subscribe-form .form-control {
  border-radius: var(--ms-radius-md);
  border: 1px solid rgba(12,31,23,.15);
  padding: 12px 16px;
  font-size: 14px;
  background: #fff;
  color: var(--ms-title);
  height: auto;
  box-shadow: none;
}
.subscribe-form .form-control:focus { border-color: var(--ms-primary); box-shadow: 0 0 0 3px rgba(15,138,95,.15); }
.btn-subscribe {
  background: var(--ms-secondary);
  color: #fff;
  border: none;
  border-radius: var(--ms-radius-md);
  padding: 12px 22px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-subscribe:hover { background: var(--ms-secondary-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 16px rgba(217,106,16,.3); }

/* FAQ 手风琴 */
.faq-accordion { max-width: 880px; }
.faq-accordion .accordion-item {
  border: 1px solid var(--ms-border);
  border-radius: var(--ms-radius-md);
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
  box-shadow: var(--ms-shadow-sm);
}
.faq-accordion .accordion-item:has(.accordion-button:not(.collapsed)) { border-color: var(--ms-border-strong); }
.faq-accordion .accordion-button {
  background: #fff;
  color: var(--ms-title);
  font-family: var(--ms-font);
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px;
  box-shadow: none;
}
.faq-accordion .accordion-button:focus { box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { background: rgba(15,138,95,0.04); color: var(--ms-primary); }
.faq-accordion .accordion-button::after { background-size: 1rem; opacity: .55; }
.faq-accordion .accordion-body { padding: 0 20px 18px; color: var(--ms-muted); font-size: 14px; line-height: 1.8; }

/* 页脚 */
.site-footer { background: var(--ms-dark); color: #AFC5B8; padding: 56px 0 24px; margin-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 40px; }
.footer-brand p { font-size: 14px; color: #8FA399; line-height: 1.8; margin: 16px 0 0; max-width: 340px; }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 600; margin: 0 0 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #8FA399; text-decoration: none; font-size: 14px; transition: color .2s; }
.footer-col ul li a:hover { color: var(--ms-primary); }
.footer-contact li { font-size: 14px; color: #8FA399; display: flex; align-items: flex-start; gap: 8px; }
.footer-contact i { color: var(--ms-primary); margin-top: 4px; }
.footer-subscribe p { font-size: 14px; color: #8FA399; margin-bottom: 12px; }
.subscribe-mini { display: flex; gap: 8px; }
.subscribe-mini .form-control {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  padding: 10px 14px;
  height: auto;
  box-shadow: none;
}
.subscribe-mini .form-control::placeholder { color: #6B7A72; }
.subscribe-mini .form-control:focus { border-color: var(--ms-primary); box-shadow: 0 0 0 3px rgba(15,138,95,.2); }
.subscribe-mini .btn { background: var(--ms-primary); color: #fff; border: none; border-radius: 10px; padding: 10px 16px; transition: background .2s; }
.subscribe-mini .btn:hover { background: var(--ms-primary-dark); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 40px;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #8FA399;
}
.footer-links a { color: #8FA399; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--ms-primary); }

/* 响应式 */
@media (min-width: 992px) {
  .mobile-bottom-nav { display: none; }
}
@media (max-width: 991.98px) {
  body { padding-bottom: 80px; }
  .site-header { height: 60px; }
  .site-header .container { height: 60px; gap: 12px; }
  .main-nav { display: none; }
  .nav-cta { display: none; }
  .site-header .container { justify-content: space-between; }
  .mobile-bottom-nav { display: flex; }
  .page-hero { padding: 48px 0 56px; }
  .site-footer { margin-top: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 767.98px) {
  .page-hero h1 { font-size: 28px; }
  .page-hero .hero-sub { font-size: 15px; }
  .section-title { font-size: 22px; }
  .feature-card { padding: 24px 20px; }
  .step-card { padding: 24px 20px; }
  .cta-subscribe { padding: 24px; }
}
@media (max-width: 575.98px) {
  .page-hero { padding: 40px 0 48px; }
  .hero-chip { font-size: 12px; padding: 6px 12px; }
  .timeline-item { flex-wrap: wrap; gap: 8px 16px; padding: 18px 16px; }
  .tl-rail { order: 1; }
  .tl-time { order: 1; min-width: 0; font-size: 18px; }
  .badge-status { order: 2; margin-left: auto; margin-top: 0; }
  .tl-main { order: 3; flex: 1 1 100%; min-width: 0; }
  .section-head { margin-bottom: 24px; }
  .subscribe-form { flex-direction: column; }
  .subscribe-form .form-control, .subscribe-form .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* roulang page: category3 */
:root {
  --bs-primary: #0F8A5F;
  --bs-secondary: #F27A18;
  --bs-dark: #0C1F17;
  --bs-light: #F5F7F4;
  --gold: #D9A441;
  --live-red: #E23744;
  --heading: #13261D;
  --body-text: #3D4F47;
  --muted-text: #6B7A72;
  --border-color: rgba(12,31,23,0.08);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 8px rgba(12,31,23,0.06);
  --shadow-hover: 0 8px 24px rgba(12,31,23,0.12);
  --gradient-main: linear-gradient(135deg, #0F8A5F 0%, #F27A18 100%);
  --font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--bs-light);
  color: var(--body-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  padding: 0;
}

a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--bs-secondary);
}
img {
  max-width: 100%;
  height: auto;
}
button,
input {
  font-family: inherit;
}
.container {
  max-width: 1200px;
}

/* 按钮 */
.btn {
  border-radius: var(--radius-md);
  font-weight: 600;
  padding: 10px 22px;
  border: none;
  transition: all 0.25s ease;
  font-size: 15px;
}
.btn:focus,
.btn:active:focus {
  box-shadow: 0 0 0 3px rgba(15,138,95,0.2);
}
.btn-gradient {
  background: var(--gradient-main);
  color: #fff;
}
.btn-gradient:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(15,138,95,0.25);
}
.btn-outline-light {
  border: 1.5px solid rgba(255,255,255,0.6);
  color: #fff;
  background: transparent;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: #fff;
}
.btn-secondary-solid {
  background: var(--bs-secondary);
  color: #fff;
}
.btn-secondary-solid:hover {
  background: #D96A10;
  color: #fff;
  transform: translateY(-2px);
}

/* 导航 */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(12,31,23,0.92);
  backdrop-filter: blur(8px);
  height: 72px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--gradient-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(15,138,95,0.3);
}
.brand-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.brand-text span {
  color: #7CD4A8;
  font-weight: 400;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  color: #AFC5B8;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.main-nav a:hover {
  color: #fff;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--bs-primary);
  transition: width 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}
.main-nav a.active {
  color: #fff;
}
.nav-cta .btn {
  padding: 8px 20px;
  font-size: 14px;
}

/* 页头 */
.page-hero {
  position: relative;
  background: url('/assets/images/backpic/back-1.webp') center / cover no-repeat;
  padding: 72px 0 64px;
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,31,23,0.88) 0%, rgba(12,31,23,0.72) 55%, rgba(15,138,95,0.35) 100%);
  z-index: 1;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 18px;
}
.breadcrumb-wrap a {
  color: rgba(255,255,255,0.75);
}
.breadcrumb-wrap a:hover {
  color: var(--bs-secondary);
}
.breadcrumb-wrap .current {
  color: rgba(255,255,255,0.95);
}
.page-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 1px;
}
.hero-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 640px;
  margin: 0;
  line-height: 1.8;
}
.hero-line {
  display: block;
  width: 48px;
  height: 4px;
  background: var(--gradient-main);
  border-radius: var(--radius-pill);
  margin-top: 20px;
}

/* 区块公共 */
.section-pad {
  padding: 72px 0;
}
.section-head {
  margin-bottom: 36px;
}
.section-head h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 12px;
  letter-spacing: 0.5px;
}
.section-line {
  display: block;
  width: 40px;
  height: 4px;
  background: var(--bs-primary);
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.section-head p {
  font-size: 15px;
  color: var(--muted-text);
  margin: 0;
  max-width: 640px;
}

/* 统计卡片 */
.stat-section {
  padding: 72px 0 24px;
}
.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: var(--gradient-main);
  border-radius: var(--radius-pill);
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.stat-num {
  font-size: 44px;
  font-weight: 700;
  color: var(--heading);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  margin-bottom: 8px;
  background: linear-gradient(135deg, #0F8A5F, #F27A18);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 6px;
}
.stat-desc {
  font-size: 13px;
  color: var(--muted-text);
  margin: 0;
}

/* 卡片网格 */
.grid-section {
  padding: 64px 0 72px;
}
.content-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.content-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.content-card .card-img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.content-card:hover .card-img {
  transform: scale(1.03);
}
.card-img-wrap {
  overflow: hidden;
  position: relative;
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(12,31,23,0.78);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
}
.content-card .card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--bs-primary);
  background: rgba(15,138,95,0.1);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  align-self: flex-start;
}
.card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 10px;
  line-height: 1.4;
}
.card-desc {
  font-size: 14px;
  color: var(--body-text);
  line-height: 1.7;
  margin: 0 0 16px;
  flex: 1;
}
.card-meta {
  font-size: 12px;
  color: var(--muted-text);
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}
.card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--bs-primary);
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}
.card-link:hover {
  color: var(--bs-secondary);
}

/* 流程区 */
.process-section {
  background: var(--bs-dark);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(15,138,95,0.15) 0%, transparent 70%);
}
.process-section .section-head h2 {
  color: #fff;
}
.process-section .section-head p {
  color: rgba(255,255,255,0.6);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.process-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  position: relative;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.process-step:hover {
  background: rgba(15,138,95,0.1);
  border-color: rgba(15,138,95,0.4);
}
.step-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  margin-bottom: 14px;
  display: block;
}
.step-title {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
  display: block;
}
.step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin: 0;
  line-height: 1.7;
}

/* 数据整合区 */
.merge-section {
  padding: 72px 0;
  background: #fff;
}
.merge-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.merge-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.merge-img img {
  width: 100%;
  display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.merge-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 12px;
}
.merge-content .section-line {
  margin-bottom: 18px;
}
.merge-content p {
  font-size: 15px;
  color: var(--body-text);
  margin-bottom: 24px;
  line-height: 1.85;
}
.merge-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.merge-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--body-text);
  margin-bottom: 14px;
  line-height: 1.6;
}
.merge-list li i {
  color: var(--bs-primary);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* FAQ */
.faq-section {
  padding: 72px 0;
  background: var(--bs-light);
}
.accordion {
  max-width: 860px;
  margin: 0 auto;
}
.accordion-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-bottom: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(12,31,23,0.03);
}
.accordion-button {
  background: #fff;
  color: var(--heading);
  font-weight: 600;
  font-size: 15px;
  padding: 20px 22px;
  line-height: 1.5;
}
.accordion-button:not(.collapsed) {
  background: rgba(15,138,95,0.05);
  color: var(--bs-primary);
  box-shadow: none;
}
.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(15,138,95,0.12);
  border-color: rgba(15,138,95,0.3);
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F8A5F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.25s ease;
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
}
.accordion-body {
  padding: 0 22px 22px;
  color: var(--body-text);
  font-size: 14px;
  line-height: 1.85;
  border-top: 1px solid rgba(12,31,23,0.04);
}

/* CTA */
.cta-section {
  padding: 72px 0;
  background: #fff;
}
.cta-box {
  background: linear-gradient(135deg, rgba(15,138,95,0.08), rgba(242,122,24,0.08));
  border: 1px solid rgba(15,138,95,0.15);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(15,138,95,0.12), transparent 70%);
}
.cta-box h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--heading);
  margin: 0 0 10px;
}
.cta-box p {
  font-size: 15px;
  color: var(--muted-text);
  margin: 0 0 26px;
}
.cta-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  max-width: 440px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.cta-form .form-control {
  flex: 1;
  min-width: 220px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(12,31,23,0.15);
  padding: 12px 16px;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.cta-form .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(15,138,95,0.12);
  outline: none;
}

/* 页脚 */
.site-footer {
  background: var(--bs-dark);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 0;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer-brand .brand-text {
  font-size: 20px;
}
.footer-brand p {
  margin: 16px 0 0;
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}
.footer-col ul a:hover {
  color: var(--bs-primary);
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.footer-contact li i {
  color: var(--bs-primary);
  font-size: 16px;
}
.footer-subscribe p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 14px;
}
.subscribe-mini {
  display: flex;
  gap: 8px;
}
.subscribe-mini .form-control {
  flex: 1;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  padding: 10px 14px;
  font-size: 13px;
}
.subscribe-mini .form-control::placeholder {
  color: rgba(255,255,255,0.35);
}
.subscribe-mini .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(15,138,95,0.2);
  outline: none;
}
.subscribe-mini .btn {
  background: var(--bs-secondary);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-md);
}
.subscribe-mini .btn:hover {
  background: #D96A10;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.footer-links a:hover {
  color: var(--bs-primary);
}

/* 移动端底部 Tab */
.bottom-tab-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: var(--bs-dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  z-index: 1100;
  align-items: center;
  justify-content: space-around;
  padding: 0 8px;
}
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #8FA399;
  font-size: 10px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: var(--radius-md);
  transition: color 0.2s ease, background 0.2s ease;
  text-decoration: none;
}
.tab-item i {
  font-size: 20px;
  line-height: 1;
}
.tab-item:hover {
  color: #fff;
}
.tab-item.active {
  color: var(--bs-primary);
}
.tab-item.active i {
  font-weight: 700;
}
.tab-item.active span {
  font-weight: 700;
}

/* 响应式 */
@media (max-width: 991.98px) {
  .site-header {
    height: 60px;
  }
  .main-nav,
  .nav-cta {
    display: none;
  }
  .bottom-tab-nav {
    display: flex;
  }
  body {
    padding-bottom: 72px;
  }
  .page-hero {
    padding: 48px 0 44px;
  }
  .page-hero h1 {
    font-size: 30px;
  }
  .section-pad {
    padding: 52px 0;
  }
  .stat-section {
    padding: 52px 0 20px;
  }
  .grid-section {
    padding: 44px 0 52px;
  }
  .process-section {
    padding: 52px 0;
  }
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .merge-section {
    padding: 52px 0;
  }
  .merge-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .faq-section {
    padding: 52px 0;
  }
  .cta-section {
    padding: 52px 0;
  }
  .cta-box {
    padding: 32px 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 767.98px) {
  .page-hero h1 {
    font-size: 26px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  .section-head h2 {
    font-size: 22px;
  }
  .stat-num {
    font-size: 34px;
  }
  .stat-section {
    padding: 40px 0 16px;
  }
  .grid-section {
    padding: 36px 0 44px;
  }
  .content-card .card-img {
    height: 160px;
  }
  .card-title {
    font-size: 17px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-step {
    padding: 22px 18px;
  }
  .step-num {
    font-size: 26px;
  }
  .merge-content h2 {
    font-size: 22px;
  }
  .cta-form {
    flex-direction: column;
    align-items: stretch;
  }
  .cta-form .form-control {
    min-width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-brand p {
    max-width: 100%;
  }
}

@media (min-width: 992px) {
  .bottom-tab-nav {
    display: none;
  }
}

/* roulang page: category2 */
:root {
  --bs-primary: #0F8A5F;
  --bs-secondary: #F27A18;
  --bs-dark: #0C1F17;
  --bs-light: #F5F7F4;
  --gold: #D9A441;
  --red: #E23744;
  --text-heading: #13261D;
  --text-body: #3D4F47;
  --text-muted: #6B7A72;
  --text-disabled: #A0AAA4;
  --border-main: rgba(12, 31, 23, 0.08);
  --border-accent: rgba(15, 138, 95, 0.35);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-card: 0 2px 8px rgba(12, 31, 23, 0.06);
  --shadow-hover: 0 8px 24px rgba(12, 31, 23, 0.12);
  --shadow-brand: 0 4px 14px rgba(15, 138, 95, 0.25);
  --gradient-brand: linear-gradient(135deg, #0F8A5F 0%, #F27A18 100%);
  --font-body: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui, -apple-system, sans-serif;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background-color: var(--bs-light);
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  margin: 0 0 0.5rem;
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.3;
}
p {
  margin: 0 0 1rem;
}
a {
  color: var(--bs-primary);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--bs-secondary);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
input {
  font-family: inherit;
}
.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 992px) {
  .container {
    padding-inline: 24px;
  }
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1050;
  background: rgba(12, 31, 23, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 72px;
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--gradient-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(15, 138, 95, 0.35);
}
.brand-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.brand-text span {
  color: var(--bs-secondary);
}
.main-nav {
  display: none;
  align-items: center;
  gap: 8px;
}
.main-nav a {
  padding: 8px 16px;
  color: #AFC5B8;
  font-size: 15px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}
.main-nav a.active {
  color: #fff;
  font-weight: 600;
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  background: var(--bs-primary);
  border-radius: 2px;
}
.nav-cta {
  display: none;
  flex-shrink: 0;
}
.btn {
  border-radius: var(--radius-md);
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  transition: all 0.25s ease;
}
.btn-gradient {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-gradient:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 138, 95, 0.35);
  opacity: 0.95;
}
@media (min-width: 992px) {
  .main-nav {
    display: flex;
  }
  .nav-cta {
    display: block;
  }
}

/* ===== Mobile Tab Bar ===== */
.mobile-tab-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: #0C1F17;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  height: 64px;
}
.mobile-tab-bar .tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 10px;
  color: #8FA399;
  transition: color 0.2s;
}
.mobile-tab-bar .tab-item i {
  font-size: 22px;
  line-height: 1;
}
.mobile-tab-bar .tab-item span {
  font-weight: 500;
}
.mobile-tab-bar .tab-item.active {
  color: var(--bs-primary);
  font-weight: 700;
}
.mobile-tab-bar .tab-item.active i {
  color: var(--bs-primary);
}
.mobile-tab-bar .tab-item:hover {
  color: #fff;
}
@media (min-width: 992px) {
  .mobile-tab-bar {
    display: none;
  }
  main {
    padding-bottom: 0;
  }
}
@media (max-width: 991.98px) {
  body {
    padding-bottom: 64px;
  }
}

/* ===== Page Hero ===== */
.page-hero {
  background: linear-gradient(135deg, rgba(12, 31, 23, 0.9) 0%, rgba(12, 31, 23, 0.74) 55%, rgba(15, 138, 95, 0.45) 100%), url('/assets/images/backpic/back-2.webp') center center / cover no-repeat;
  color: #fff;
  padding-block: 40px;
  position: relative;
}
.breadcrumb-nav {
  margin-bottom: 28px;
}
.breadcrumb {
  margin: 0;
  font-size: 13px;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}
.breadcrumb-item a {
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb-item a:hover {
  color: #fff;
}
.breadcrumb-item.active {
  color: var(--bs-secondary);
}
.hero-top-row {
  display: grid;
  gap: 32px;
}
.hero-main h1 {
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
  font-weight: 700;
}
.hero-subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  max-width: 640px;
  margin-bottom: 20px;
  line-height: 1.8;
}
.hero-divider {
  width: 64px;
  height: 4px;
  background: var(--gradient-brand);
  border-radius: 4px;
}
@media (min-width: 768px) {
  .hero-main h1 {
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .page-hero {
    padding-block: 64px;
  }
  .hero-top-row {
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .hero-main h1 {
    font-size: 44px;
  }
}

/* ===== Top Replay List ===== */
.top-replay {
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(4px);
}
.top-replay-title {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.top-replay-title i {
  color: var(--gold);
  font-size: 18px;
}
.top-replay-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.top-replay-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border-left: 3px solid rgba(217, 164, 65, 0.6);
  transition: background 0.2s, border-color 0.2s;
}
.top-replay-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-left-color: var(--gold);
}
.top-rank {
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 48px;
  text-align: center;
}
.top-info h3 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 4px;
  font-weight: 600;
  line-height: 1.4;
}
.top-info p {
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Section Common ===== */
.section-block {
  padding-block: 48px;
}
@media (min-width: 992px) {
  .section-block {
    padding-block: 80px;
  }
}
.section-head {
  margin-bottom: 32px;
}
.section-head h2 {
  font-size: 24px;
  color: var(--text-heading);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 4px;
  background: var(--bs-primary);
  border-radius: 4px;
}
.section-head p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0;
}

/* ===== Replay Grid ===== */
.replay-grid-section {
  background: var(--bs-light);
}
.replay-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-main);
  box-shadow: var(--shadow-card);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.replay-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.replay-thumb {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #e8eee9;
}
.replay-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.replay-card:hover .replay-thumb img {
  transform: scale(1.05);
}
.replay-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(12, 31, 23, 0.85);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.5px;
  border: 1px solid rgba(217, 164, 65, 0.4);
}
.duration-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(12, 31, 23, 0.75);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 999px;
  font-variant-numeric: tabular-nums;
}
.replay-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.replay-cat {
  display: inline-block;
  font-size: 12px;
  color: var(--bs-primary);
  background: rgba(15, 138, 95, 0.1);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 10px;
  width: fit-content;
}
.replay-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--text-heading);
}
.replay-meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

/* ===== Feature Section ===== */
.feature-section {
  background: #fff;
}
.feature-grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.feature-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-main);
  background: var(--bs-light);
  transition: box-shadow 0.25s, transform 0.25s;
}
.feature-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--gradient-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin-bottom: 18px;
  box-shadow: var(--shadow-brand);
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-heading);
}
.feature-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===== Process Section ===== */
.process-section {
  background: var(--bs-dark);
  color: #fff;
}
.process-section .section-head h2 {
  color: #fff;
}
.process-section .section-head h2::after {
  background: var(--bs-secondary);
}
.process-section .section-head p {
  color: rgba(255, 255, 255, 0.6);
}
.process-steps {
  display: grid;
  gap: 28px;
  counter-reset: step;
}
@media (min-width: 768px) {
  .process-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}
.process-step {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: background 0.25s, border-color 0.25s;
}
.process-step:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(15, 138, 95, 0.5);
}
.step-num {
  font-size: 34px;
  font-weight: 800;
  color: var(--bs-secondary);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.process-step h3 {
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.process-step p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bs-light);
}
.faq-wrap {
  max-width: 860px;
}
.accordion-item {
  background: #fff;
  border: 1px solid var(--border-main);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.accordion-item:has(.accordion-button:not(.collapsed)) {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(15, 138, 95, 0.08);
}
.accordion-button {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
  background: #fff;
  padding: 18px 22px;
  box-shadow: none;
  border: none;
}
.accordion-button:not(.collapsed) {
  color: var(--bs-primary);
  background: rgba(15, 138, 95, 0.03);
}
.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(15, 138, 95, 0.15);
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230F8A5F'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transition: transform 0.25s;
}
.accordion-button:not(.collapsed)::after {
  filter: none;
}
.accordion-body {
  padding: 0 22px 20px;
  color: var(--text-body);
  font-size: 14px;
  line-height: 1.8;
  border-top: 1px solid rgba(12, 31, 23, 0.04);
}

/* ===== CTA ===== */
.cta-section {
  padding-block: 48px;
}
.cta-box {
  background: rgba(15, 138, 95, 0.08);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.cta-box h2 {
  font-size: 24px;
  color: var(--text-heading);
  margin-bottom: 8px;
}
.cta-box p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 440px;
}
.cta-form .form-control {
  border-radius: var(--radius-md);
  border: 1px solid rgba(12, 31, 23, 0.15);
  padding: 12px 16px;
  font-size: 15px;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.cta-form .form-control:focus {
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 4px rgba(15, 138, 95, 0.12);
  outline: none;
}
.btn-subscribe {
  background: var(--bs-secondary);
  color: #fff;
  border-radius: var(--radius-md);
  font-weight: 600;
  padding: 12px 28px;
  width: fit-content;
  transition: all 0.2s;
}
.btn-subscribe:hover {
  background: #D96A10;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(242, 122, 24, 0.3);
}
@media (min-width: 768px) {
  .cta-box {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 36px 40px;
  }
  .cta-form {
    flex-direction: row;
    width: auto;
  }
  .cta-form .form-control {
    width: 240px;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: #0C1F17;
  color: rgba(255, 255, 255, 0.7);
  padding-top: 60px;
  font-size: 14px;
}
.site-footer .footer-grid {
  display: grid;
  gap: 36px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 32px;
  }
}
.site-footer .brand-logo {
  margin-bottom: 16px;
}
.site-footer .footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.8;
  font-size: 14px;
}
.footer-col h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 3px;
  background: var(--bs-primary);
  border-radius: 3px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s, padding-left 0.2s;
}
.footer-col ul li a:hover {
  color: var(--bs-primary);
  padding-left: 4px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}
.footer-contact li i {
  color: var(--bs-secondary);
}
.footer-subscribe .form-control {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-size: 14px;
}
.footer-subscribe .form-control:focus {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--bs-primary);
  box-shadow: 0 0 0 3px rgba(15, 138, 95, 0.18);
  color: #fff;
}
.footer-subscribe .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.subscribe-mini {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}
.subscribe-mini .btn {
  background: var(--bs-secondary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 10px 16px;
  flex-shrink: 0;
}
.subscribe-mini .btn:hover {
  background: #D96A10;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-block: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom .copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.footer-links a:hover {
  color: var(--bs-primary);
}
@media (max-width: 991.98px) {
  .site-footer {
    padding-bottom: 64px;
  }
}

/* ===== Page Hero Responsive ===== */
@media (max-width: 575px) {
  .hero-main h1 {
    font-size: 28px;
  }
  .top-replay {
    padding: 18px;
  }
  .top-rank {
    font-size: 26px;
  }
  .top-info h3 {
    font-size: 13px;
  }
  .feature-card {
    padding: 24px 16px;
  }
  .process-step {
    padding: 22px 18px;
  }
}
