/* roulang page: index */
:root {
  --primary: #101828;
  --primary-light: #1d2939;
  --accent: #f97316;
  --accent-hover: #ea580c;
  --accent-light: #fff7ed;
  --gold: #fbbf24;
  --bg: #f9fafb;
  --card-bg: #ffffff;
  --text: #111827;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 16px 40px rgba(0,0,0,.12);
  --transition: .3s ease;
  --header-height: 76px;
  --section-gap: 96px;
  --font-sans: -apple-system,BlinkMacSystemFont,"Segoe UI","PingFang SC","Hiragino Sans GB","Microsoft YaHei",sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; border: none; outline: none; }
ul, ol { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: var(--section-gap) 0; }
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== 导航 ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255,255,255,.95);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--border);
}
.header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
  letter-spacing: .3px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px rgba(249,115,22,.2);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 18px;
  border-radius: 100px;
  transition: var(--transition);
  line-height: 1.4;
}
.nav-links a:hover {
  background: rgba(0,0,0,.06);
}
.nav-links a.active {
  background: var(--text);
  color: #fff;
  font-weight: 600;
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-header {
  font-size: 14.5px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: 100px;
  background: var(--accent);
  color: #fff;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-header:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(249,115,22,.35);
}
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  z-index: 1100;
}
.nav-toggle span {
  width: 20px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  background: linear-gradient(rgba(16,24,40,.72), rgba(16,24,40,.78)), url('/assets/images/backpic/back-1.png') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(transparent, rgba(249,250,251,0));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 720px;
  padding: 48px 0 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(255,255,255,.18);
}
.hero-badge .badge-pulse {
  width: 8px; height: 8px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(52,211,153,.5); }
  50% { box-shadow: 0 0 0 6px rgba(52,211,153,0); }
}
.hero h1 {
  font-size: clamp(34px, 6vw, 62px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero h1 .highlight {
  color: var(--gold);
  position: relative;
}
.hero-desc {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  border-radius: 100px;
  font-size: 15.5px;
  font-weight: 600;
  transition: all var(--transition);
  line-height: 1.2;
  cursor: pointer;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(249,115,22,.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(249,115,22,.45);
}
.btn-outline {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.2);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,.7);
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hero-stat {
  text-align: left;
}
.hero-stat .num {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  display: block;
  letter-spacing: -.01em;
}
.hero-stat .label {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  margin-top: 2px;
}

/* 实时状态条 */
.ticker-bar {
  position: relative;
  z-index: 10;
  background: var(--primary);
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
  overflow: hidden;
}
.ticker-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-label i { font-size: 14px; }
.ticker-text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  animation: tickerScroll 22s linear infinite;
}
@keyframes tickerScroll {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}

/* ===== 核心说明 ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform .6s ease;
}
.about-media:hover img {
  transform: scale(1.04);
}
.about-media::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(transparent, rgba(0,0,0,.45));
}
.about-caption {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  color: #fff;
  z-index: 2;
  font-size: 15px;
  font-weight: 500;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.about-content .section-eyebrow { margin-bottom: 12px; }
.about-content h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
}
.about-content p {
  font-size: 15.5px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 18px;
}
.feature-list {
  margin-top: 24px;
  display: grid;
  gap: 14px;
}
.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15px;
  color: var(--text);
}
.feature-list li i {
  color: var(--accent);
  margin-top: 5px;
  flex-shrink: 0;
}

/* ===== 分类卡片 ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.cat-card-image {
  width: 140px;
  height: 140px;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.cat-card-body { flex: 1; }
.cat-card-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-light);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}
.cat-card h3 {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}
.cat-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 14px;
}
.cat-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.cat-link:hover { gap: 12px; }

/* ===== 最新资讯 ===== */
.news-section {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.news-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
  background: var(--bg);
}
.news-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.news-card:hover .news-card-img img {
  transform: scale(1.05);
}
.news-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.news-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.news-card h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-card-footer {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-light);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.news-card-footer a {
  color: var(--accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.news-card-footer a:hover { gap: 10px; }

/* ===== 信息展示 ===== */
.info-block {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.info-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(249,115,22,.2);
  filter: blur(60px);
}
.info-block::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(251,191,36,.15);
  filter: blur(50px);
}
.info-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 32px;
}
.info-item {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
  transition: var(--transition);
}
.info-item:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-4px);
}
.info-item .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.1);
}
.info-item .value {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 6px;
}
.info-item .label {
  font-size: 14px;
  color: rgba(255,255,255,.6);
}

/* ===== 资料/指南 ===== */
.guide-section {
  background: url('/assets/images/backpic/back-2.png') center/cover no-repeat fixed;
  position: relative;
}
.guide-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(249,250,251,.96);
}
.guide-inner { position: relative; z-index: 2; }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.guide-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 32px;
  transition: var(--transition);
}
.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.guide-icon {
  width: 52px; height: 52px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 22px;
}
.guide-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.guide-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.75;
}

/* ===== FAQ ===== */
.faq-section { background: #fff; }
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  background: var(--card-bg);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 26px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
}
.faq-question i {
  color: var(--accent);
  font-size: 18px;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-item.active .faq-question i {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer-inner {
  padding: 0 26px 22px;
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== CTA ===== */
.cta-section {
  background: url('/assets/images/backpic/back-3.png') center/cover no-repeat;
  position: relative;
  padding: 100px 0;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16,24,40,.92), rgba(249,115,22,.48));
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: #fff;
}
.cta-content h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.cta-content p {
  font-size: 17px;
  opacity: .85;
  margin-bottom: 36px;
}

/* ===== 页脚 ===== */
.footer {
  background: #0f172a;
  color: rgba(255,255,255,.65);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo {
  color: #fff;
  font-size: 22px;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  opacity: .7;
  max-width: 320px;
}
.footer h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-links {
  display: grid;
  gap: 10px;
}
.footer-links a {
  font-size: 14px;
  opacity: .7;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--accent);
  transform: translateX(4px);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13.5px;
  opacity: .6;
  text-align: center;
  align-items: center;
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .section { --section-gap: 72px; }
  .about-grid { gap: 40px; }
  .about-media img { height: 400px; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card { flex-direction: column; align-items: flex-start; }
  .cat-card-image { width: 100%; height: 200px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { --section-gap: 64px; }
  .header .container { flex-wrap: nowrap; }
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: min(340px, 80vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 40px 28px;
    gap: 6px;
    box-shadow: -20px 0 40px rgba(0,0,0,.15);
    transition: right .45s cubic-bezier(.4,0,.2,1);
    z-index: 1050;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    font-size: 18px;
    padding: 16px 20px;
    border-radius: 12px;
  }
  .nav-links a.active {
    background: var(--accent-light);
    color: var(--accent);
  }
  .header-cta { gap: 8px; }
  .btn-header { padding: 10px 16px; font-size: 13.5px; display: none; }
  .hero { min-height: auto; padding-top: var(--header-height); padding-bottom: 40px; }
  .hero h1 { font-size: 36px; }
  .hero-desc { font-size: 16px; }
  .hero-stats { gap: 24px; margin-top: 36px; }
  .hero-stat .num { font-size: 22px; }
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-media img { height: 300px; }
  .cat-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .guide-grid { grid-template-columns: 1fr; }
  .info-block { padding: 32px 24px; }
  .info-grid { grid-template-columns: 1fr; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-brand p { margin: 0 auto; }
  .footer-links { align-items: center; }
  .section-header { margin-bottom: 40px; }
  .ticker-inner { gap: 12px; }
}
@media (max-width: 520px) {
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .cat-card { padding: 20px; }
  .news-card-img { height: 190px; }
  .info-item .value { font-size: 26px; }
  .section-title { font-size: 26px; }
}

/* roulang page: category1 */
:root {
  --primary: #1e3a5f;
  --primary-dark: #142a47;
  --primary-light: #3b6fa5;
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --bg: #f4f7fb;
  --bg-dark: #0e1a2b;
  --text: #1e293b;
  --text-weak: #64748b;
  --border: #e2e8f0;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.10);
  --transition: all 0.3s ease;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "PingFang SC", "Microsoft YaHei", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

.grid-container {
  max-width: 1240px;
  padding-left: 24px;
  padding-right: 24px;
}

.grid-x.grid-margin-x > .cell {
  margin-bottom: 28px;
}

/* 导航 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 72px;
  background: rgba(14, 26, 43, 0.35);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.22);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  position: relative;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  transition: var(--transition);
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.btn-header:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 4px;
  background: #fff;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  border-bottom-color: transparent;
}

.header.scrolled .logo {
  color: var(--text);
}

.header.scrolled .nav-links a {
  color: var(--text);
}

.header.scrolled .nav-links a:hover {
  background: rgba(30, 58, 95, 0.08);
  color: var(--primary);
}

.header.scrolled .nav-links a.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(30, 58, 95, 0.28);
}

.header.scrolled .btn-header {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.header.scrolled .btn-header:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

.header.scrolled .nav-toggle {
  background: rgba(30, 58, 95, 0.08);
  border-color: rgba(30, 58, 95, 0.2);
}

.header.scrolled .nav-toggle span {
  background: var(--primary);
}

/* Hero */
.page-hero {
  position: relative;
  padding: 190px 0 110px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 20, 35, 0.86) 30%, rgba(30, 50, 75, 0.68) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.hero-badge i {
  color: var(--accent);
  font-size: 8px;
}

.page-hero h1 {
  margin-top: 22px;
  font-size: 52px;
  line-height: 1.25;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 1px;
}

.page-hero .hero-desc {
  margin: 20px auto 0;
  max-width: 660px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.82);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 28px rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  background: #d97706;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.4);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  min-height: 64px;
}

.stats-inner span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 34px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-inner span:last-child {
  border-right: none;
}

.stats-inner strong {
  font-size: 18px;
  color: #fff;
  font-weight: 800;
}

/* 动态条 */
.ticker-bar {
  background: var(--primary);
  padding: 12px 0;
}

.ticker-inner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ticker-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

.ticker-label i {
  color: var(--accent-light);
}

.ticker-track {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 通用章节 */
.section {
  padding: 96px 0;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 30px;
  background: rgba(30, 58, 95, 0.08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.section-head h2 {
  margin-top: 18px;
  font-size: 38px;
  line-height: 1.3;
  font-weight: 800;
  color: var(--text);
}

.section-head p {
  margin-top: 14px;
  font-size: 16px;
  color: var(--text-weak);
  line-height: 1.8;
}

/* 核心信息卡 */
.section-cards {
  background: var(--bg);
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 58, 95, 0.2);
}

.info-card:hover::after {
  opacity: 1;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(30, 58, 95, 0.08);
  color: var(--primary);
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.info-card:hover .card-icon {
  background: var(--primary);
  color: #fff;
  transform: scale(1.05);
}

.info-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}

.info-card p {
  font-size: 14px;
  color: var(--text-weak);
  line-height: 1.75;
}

/* 指南步骤 */
.section-guide {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  overflow: hidden;
}

.guide-wrap {
  display: flex;
  align-items: center;
  gap: 60px;
}

.guide-media {
  flex: 0 0 46%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.guide-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.guide-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 20, 35, 0.6));
}

.guide-media .media-note {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-size: 14px;
  line-height: 1.7;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.guide-content {
  flex: 1;
}

.guide-content .section-tag {
  margin-bottom: 16px;
}

.guide-content h2 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 14px;
}

.guide-content .guide-lead {
  font-size: 15px;
  color: var(--text-weak);
  margin-bottom: 28px;
  line-height: 1.8;
}

.guide-step {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.guide-step:last-child {
  border-bottom: none;
}

.guide-step:hover {
  padding-left: 10px;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(30, 58, 95, 0.22);
}

.step-content h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-weak);
  line-height: 1.7;
}

/* 数据统计 */
.section-stats {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.section-stats::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(59, 111, 165, 0.3);
  filter: blur(80px);
  top: -120px;
  left: -80px;
}

.section-stats::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.18);
  filter: blur(80px);
  bottom: -100px;
  right: -60px;
}

.section-stats .grid-container {
  position: relative;
  z-index: 2;
}

.section-stats .section-head h2 {
  color: #fff;
}

.section-stats .section-head p {
  color: rgba(255, 255, 255, 0.65);
}

.section-stats .section-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.stat-block {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.stat-block:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
}

.stat-block .stat-icon {
  font-size: 26px;
  color: var(--accent-light);
  margin-bottom: 14px;
}

.stat-num {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.stat-block p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

/* 内容列表 */
.section-latest {
  background: var(--bg);
}

.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 58, 95, 0.18);
}

.post-thumb {
  position: relative;
  overflow: hidden;
  height: 210px;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-thumb img {
  transform: scale(1.05);
}

.post-thumb .post-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(30, 58, 95, 0.85);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}

.post-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--text-weak);
  margin-bottom: 12px;
}

.post-meta i {
  margin-right: 4px;
  color: var(--accent);
}

.post-body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  transition: var(--transition);
}

.post-card:hover .post-body h3 {
  color: var(--primary);
}

.post-body p {
  font-size: 14px;
  color: var(--text-weak);
  line-height: 1.7;
  flex: 1;
}

.post-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.post-link i {
  transition: transform 0.3s ease;
}

.post-link:hover i {
  transform: translateX(6px);
}

/* FAQ */
.section-faq {
  background: #ffffff;
}

.faq-wrap {
  max-width: 820px;
  margin: 0 auto;
}

.accordion {
  background: transparent;
  border: none;
}

.accordion-item {
  margin-bottom: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  background: var(--white);
}

.accordion-item:hover {
  border-color: rgba(30, 58, 95, 0.25);
  box-shadow: var(--shadow);
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  background: var(--white);
  border: none;
  position: relative;
}

.accordion-title::before {
  content: "\f059";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  color: var(--primary);
  font-size: 16px;
}

.accordion-title::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--text-weak);
  font-size: 14px;
  position: absolute;
  right: 22px;
  transition: var(--transition);
}

.accordion-item.is-active .accordion-title::after {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 24px 22px 54px;
  color: var(--text-weak);
  font-size: 15px;
  line-height: 1.8;
}

/* CTA */
.section-cta {
  padding: 80px 0;
}

.cta-box {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #0e1a2b 100%);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  filter: blur(60px);
  top: -80px;
  right: -40px;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(50px);
  bottom: -80px;
  left: 20px;
}

.cta-box > * {
  position: relative;
  z-index: 2;
}

.cta-box h2 {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.cta-box p {
  max-width: 560px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.btn-white:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(245, 158, 11, 0.3);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--primary);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: var(--bg-dark);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  font-size: 21px;
}

.footer-brand p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.8;
  max-width: 340px;
}

.footer-grid h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-light);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 0;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* 响应式 */
@media screen and (max-width: 1024px) {
  .page-hero {
    padding: 170px 0 100px;
  }

  .page-hero h1 {
    font-size: 42px;
  }

  .guide-wrap {
    gap: 36px;
  }

  .guide-media {
    flex-basis: 42%;
  }

  .guide-media img {
    height: 360px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: stretch;
    padding: 18px 24px;
    gap: 6px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: none;
    max-height: 320px;
    overflow-y: auto;
    border-radius: 0 0 20px 20px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 18px;
    color: var(--text);
    border-radius: 10px;
    font-size: 15px;
  }

  .nav-links a:hover {
    background: rgba(30, 58, 95, 0.08);
    color: var(--primary);
  }

  .nav-links a.active {
    background: var(--primary);
    color: #fff;
  }

  .header .nav-links a {
    color: var(--text);
  }

  .header:not(.scrolled) .nav-links a {
    color: var(--text);
  }

  .header:not(.scrolled) .nav-links a.active {
    background: var(--primary);
    color: #fff;
  }

  .header:not(.scrolled) .nav-links {
    background: rgba(255, 255, 255, 0.97);
  }

  .nav-toggle {
    display: flex;
  }

  .header-cta .btn-header {
    display: none;
  }

  .page-hero {
    padding: 150px 0 100px;
  }

  .page-hero h1 {
    font-size: 36px;
  }

  .page-hero .hero-desc {
    font-size: 16px;
  }

  .stats-inner span {
    padding: 12px 18px;
    border-right: none;
  }

  .ticker-track {
    white-space: normal;
  }

  .guide-wrap {
    flex-direction: column;
  }

  .guide-media {
    flex-basis: auto;
    width: 100%;
  }

  .guide-media img {
    height: 300px;
  }

  .section {
    padding: 70px 0;
  }

  .section-head h2 {
    font-size: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media screen and (max-width: 520px) {
  .grid-container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .logo {
    font-size: 16px;
  }

  .page-hero h1 {
    font-size: 30px;
  }

  .page-hero .hero-desc {
    font-size: 15px;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 14px 20px;
  }

  .stats-inner {
    gap: 4px;
  }

  .stats-inner span {
    font-size: 13px;
    padding: 10px 12px;
  }

  .stats-inner strong {
    font-size: 16px;
  }

  .section-head h2 {
    font-size: 26px;
  }

  .info-card,
  .stat-block,
  .post-body,
  .cta-box {
    padding: 24px 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .guide-media img {
    height: 240px;
  }

  .guide-content h2 {
    font-size: 26px;
  }

  .cta-box {
    padding: 44px 24px;
  }

  .cta-box h2 {
    font-size: 26px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .accordion-title {
    font-size: 15px;
    padding: 18px 18px;
    padding-right: 44px;
  }

  .accordion-content {
    padding: 0 18px 18px 46px;
    font-size: 14px;
  }
}

/* 焦点状态 */
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(245, 158, 11, 0.6);
  outline-offset: 2px;
}

/* 辅助 */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 8px;
}

/* roulang page: article */
:root {
  --primary: #E9482B;
  --primary-dark: #C93616;
  --primary-light: #FF7B5E;
  --accent: #FFD23F;
  --navy: #0B1524;
  --navy-2: #16283C;
  --bg: #F5F7FA;
  --bg-deep: #0D1420;
  --text: #1A2438;
  --muted: #5E6D82;
  --border: #DDE5EC;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 14px rgba(0,0,0,.06);
  --shadow: 0 10px 30px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.16);
  --transition: all .3s ease;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans SC",sans-serif;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; }
input { border: none; outline: none; font-family: inherit; }
::selection { background: rgba(233,72,43,.18); color: var(--primary-dark); }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.grid-container {
  max-width: 1240px;
}

.btn-primary,
.btn-outline-light,
.btn-header,
.btn-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 10px 22px;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(233,72,43,.32);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(233,72,43,.42);
  color: #fff;
}
.btn-primary.btn-lg {
  padding: 15px 34px;
  font-size: 16px;
}
.btn-primary.btn-sm {
  padding: 8px 18px;
  font-size: 13px;
}
.btn-block {
  width: 100%;
}
.btn-outline-light {
  padding: 14px 30px;
  font-size: 14px;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(6px);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.5);
  color: #fff;
  transform: translateY(-2px);
}
.btn-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 9px 21px;
  font-size: 13px;
  box-shadow: 0 5px 15px rgba(233,72,43,.30);
}
.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(233,72,43,.42);
  color: #fff;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,.62);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: var(--transition);
}
.header.scrolled {
  padding: 9px 0;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 30px rgba(15,23,42,.08);
}
.header.menu-open {
  background: #fff;
  box-shadow: var(--shadow);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .5px;
  white-space: nowrap;
}
.logo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(233,72,43,.15);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: #334E68;
  padding: 6px 2px;
  position: relative;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #F1F5F9;
  transition: var(--transition);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #253549;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Page Hero ---------- */
.page-hero {
  position: relative;
  padding: 178px 0 72px;
  background: url('/assets/images/backpic/back-2.png') center center / cover no-repeat;
  color: #fff;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,21,36,.90) 0%, rgba(20,30,48,.72) 55%, rgba(233,72,43,.26) 100%);
}
.page-hero > .grid-container {
  position: relative;
  z-index: 2;
}
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  font-size: 13px;
  margin-bottom: 24px;
  width: fit-content;
}
.breadcrumbs a { color: #BFC7D4; transition: var(--transition); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs .sep { color: #8A9CB0; }
.breadcrumbs span:last-child { color: #fff; font-weight: 600; }
.hero-live-bar {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  background: rgba(233,72,43,.18);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: #FFE0D6;
  margin-bottom: 18px;
  backdrop-filter: blur(4px);
}
.hero-live-bar a {
  color: #FFC7B8;
  font-weight: 700;
  margin-left: 4px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: var(--transition);
}
.hero-live-bar a:hover { color: #fff; }
.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF4D4D;
  box-shadow: 0 0 0 4px rgba(255,77,77,.24);
  animation: pulseDot 1.6s infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255,77,77,.24); }
  50% { box-shadow: 0 0 0 7px rgba(255,77,77,.08); }
}
.hero-title-wrap h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.32;
  max-width: 880px;
  margin: 4px 0 18px;
  letter-spacing: .5px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: #C7D2E0;
}
.meta-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.meta-item i { color: var(--primary-light); }
.meta-item strong { color: #fff; font-weight: 600; }

/* ---------- Article Shell ---------- */
.article-shell {
  padding: 56px 0 80px;
  background: var(--bg);
}
.article-main-col { margin-bottom: 34px; }
.article-main {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #E8EDF2;
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
  padding: 42px;
}
.article-body {
  font-size: 16px;
  line-height: 1.95;
  color: #293A4E;
}
.article-body h1,
.article-body h2,
.article-body h3,
.article-body h4 {
  margin: 30px 0 14px;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.4;
}
.article-body h1 { font-size: 28px; }
.article-body h2 { font-size: 24px; }
.article-body h3 { font-size: 20px; }
.article-body h4 { font-size: 17px; }
.article-body p { margin: 0 0 18px; }
.article-body img {
  border-radius: 12px;
  margin: 24px 0;
  box-shadow: var(--shadow);
}
.article-body ul,
.article-body ol {
  margin: 0 0 18px;
  padding-left: 22px;
}
.article-body ul li { list-style: disc; margin-bottom: 8px; }
.article-body ol li { list-style: decimal; margin-bottom: 8px; }
.article-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  background: #FFF6F3;
  margin: 24px 0;
  border-radius: 0 12px 12px 0;
  color: #3D4D63;
}
.article-body blockquote p { margin: 0; }
.article-body a {
  color: var(--primary);
  font-weight: 600;
}
.article-body a:hover { text-decoration: underline; }
.article-info-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px dashed var(--border);
}
.article-author-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article-author-badge .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #FF8A6B);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
}
.article-author-badge .author-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.article-author-badge .author-role {
  font-size: 12px;
  color: var(--muted);
}
.article-share {
  margin-left: auto;
  display: flex;
  gap: 8px;
}
.article-share a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F1F5F9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5E6D82;
  font-size: 14px;
  transition: var(--transition);
}
.article-share a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.article-tags span {
  background: #F5F7FA;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid #E8EDF2;
  transition: var(--transition);
}
.article-tags span:hover {
  background: rgba(233,72,43,.08);
  color: var(--primary);
  border-color: rgba(233,72,43,.25);
}

/* ---------- Sidebar ---------- */
.article-sidebar {
  position: sticky;
  top: 96px;
}
.side-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  padding: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.side-card:hover { box-shadow: var(--shadow); }
.side-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.side-card h3 i { color: var(--primary); }
.info-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #F1F5F9;
  font-size: 14px;
}
.info-list li:last-child { border-bottom: none; }
.info-list li span { color: var(--muted); }
.info-list li strong { color: var(--text); font-weight: 600; }
.guide-quick p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.7;
}
.guide-quick a {
  font-size: 14px;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-item {
  background: #F5F7FA;
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid #EDF1F5;
  transition: var(--transition);
}
.tag-item:hover {
  background: rgba(233,72,43,.08);
  color: var(--primary);
  border-color: rgba(233,72,43,.25);
}

/* ---------- Not Found ---------- */
.not-found-box {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 70px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.nf-icon {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(233,72,43,.12), rgba(233,72,43,.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--primary);
  margin: 0 auto 22px;
}
.not-found-box h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.not-found-box p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 26px;
}

/* ---------- Related ---------- */
.related-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid #F0F3F7;
}
.section-head {
  text-align: center;
  margin-bottom: 42px;
}
.section-kicker {
  display: inline-block;
  padding: 5px 16px;
  background: rgba(233,72,43,.08);
  color: var(--primary);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}
.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  margin: 14px 0 8px;
}
.section-head p {
  color: var(--muted);
  font-size: 15px;
}
.related-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid #E6ECF2;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
}
.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(233,72,43,.28);
}
.related-cover {
  height: 168px;
  overflow: hidden;
  background: #EFF3F7;
}
.related-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.related-card:hover .related-cover img { transform: scale(1.06); }
.related-body { padding: 20px 20px 16px; }
.related-body h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.5;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #8A9AAB;
}
.cat-pill {
  background: rgba(233,72,43,.08);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: 80px 0;
  background: var(--bg);
}
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active {
  box-shadow: var(--shadow);
  border-color: rgba(233,72,43,.30);
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  width: 100%;
  text-align: left;
  transition: background .2s;
}
.faq-question:hover { background: #FAFCFE; }
.faq-q-icon {
  color: var(--primary);
  font-size: 15px;
  flex-shrink: 0;
}
.faq-chevron {
  margin-left: auto;
  color: var(--muted);
  font-size: 14px;
  transition: transform .3s;
}
.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-answer-inner {
  padding: 0 24px 22px 52px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

/* ---------- CTA ---------- */
.cta-section {
  padding: 80px 0;
  background: var(--bg-deep);
  position: relative;
}
.cta-box {
  background: linear-gradient(135deg, #16283C, #0B1524);
  border-radius: 24px;
  padding: 52px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255,255,255,.10);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,72,43,.28), transparent 70%);
}
.cta-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,63,.14), transparent 70%);
}
.cta-box > * {
  position: relative;
  z-index: 2;
}
.live-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #FFD9CE;
  margin-bottom: 18px;
}
.cta-box h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-box > p {
  font-size: 15px;
  color: #A9BBCB;
  margin-bottom: 24px;
}
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 24px 0;
}
.cd-item {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 76px;
  backdrop-filter: blur(4px);
}
.cd-item strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
  line-height: 1.1;
}
.cd-item span {
  display: block;
  font-size: 12px;
  color: #8FA3B5;
  margin-top: 4px;
}
.cd-sep {
  font-size: 24px;
  font-weight: 700;
  color: #5E7187;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 18px;
}
.cta-tip {
  font-size: 12px;
  color: #6E8296;
}
.cta-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px auto 0;
  max-width: 520px;
}
.cta-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 13px 20px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  font-size: 14px;
  transition: var(--transition);
}
.cta-form input[type="email"]::placeholder { color: #7E90A3; }
.cta-form input[type="email"]:focus {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.38);
  outline: none;
}
.btn-subscribe {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 13px 28px;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(233,72,43,.35);
}
.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(233,72,43,.45);
  color: #fff;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg-deep);
  color: #9FB2C4;
  padding: 60px 0 30px;
}
.footer .container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo {
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  color: #7E93A6;
  max-width: 320px;
}
.footer h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: #8CA1B5;
  font-size: 14px;
  transition: var(--transition);
}
.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #66798C;
}

/* ---------- Focus / Accessibility ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .nav-links {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    box-shadow: 0 20px 50px rgba(15,23,42,.16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 99;
  }
  .nav-links.nav-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
  }
  .nav-links a.active::after { display: none; }
  .nav-toggle { display: flex; }
  .article-sidebar {
    position: static;
  }
  .page-hero {
    padding: 148px 0 56px;
  }
  .hero-title-wrap h1 {
    font-size: 32px;
  }
  .article-main {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .article-info-line {
    flex-direction: column;
    align-items: flex-start;
  }
  .article-share {
    margin-left: 0;
  }
  .countdown {
    flex-wrap: wrap;
    gap: 8px;
  }
  .cd-item {
    min-width: 64px;
    padding: 10px 12px;
  }
  .cd-item strong {
    font-size: 24px;
  }
  .cta-box {
    padding: 38px 24px;
  }
  .cta-box h2 {
    font-size: 24px;
  }
  .section-head h2 {
    font-size: 26px;
  }
  .related-section,
  .faq-section,
  .cta-section {
    padding: 56px 0;
  }
}
@media (max-width: 560px) {
  .btn-header { display: none; }
  .page-hero {
    padding: 132px 0 42px;
  }
  .hero-title-wrap h1 {
    font-size: 26px;
  }
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .article-main {
    padding: 22px 18px;
  }
  .article-body {
    font-size: 15px;
  }
  .faq-question {
    font-size: 15px;
    padding: 16px 18px;
  }
  .faq-answer-inner {
    padding: 0 18px 18px 40px;
    font-size: 13px;
  }
  .cta-form {
    flex-direction: column;
  }
  .cta-form input[type="email"] {
    width: 100%;
    min-width: 0;
  }
  .btn-subscribe {
    width: 100%;
  }
  .cta-actions {
    flex-direction: column;
  }
  .cta-actions a {
    width: 100%;
  }
}
