.page-home {
  --home-grad: linear-gradient(135deg, #00FF9D 0%, #00D4FF 100%);
  --home-width: 1180px;
  position: relative;
  background:
    linear-gradient(rgba(0, 255, 157, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  color: #E5E9F0;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}

/* ===== 首屏 ===== */
.page-home .home-hero {
  position: relative;
  padding: 34px 20px 44px;
  border-bottom: 1px solid #2D3748;
  background:
    radial-gradient(ellipse 80% 55% at 90% 15%, rgba(0, 212, 255, 0.10), transparent),
    linear-gradient(180deg, rgba(0, 255, 157, 0.04), transparent 60%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--home-grad);
}

.page-home .home-hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 70% 30%, rgba(0, 255, 157, 0.06), transparent 55%);
  pointer-events: none;
}

.page-home .home-hero-inner {
  position: relative;
  max-width: var(--home-width);
  margin: 0 auto;
}

.page-home .home-hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 28px;
}

.page-home .home-hero-content .section-kicker {
  font-family: "Arial Black", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #00FF9D;
}

.page-home .home-hero h1 {
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
  transform: skew(-2deg);
  margin: 12px 0 18px;
  color: #E5E9F0;
  max-width: 12em;
}

.page-home .home-hero h1::after {
  content: "";
  display: block;
  width: 3.4em;
  height: 4px;
  margin-top: 14px;
  background: var(--home-grad);
  transform: skew(-20deg);
  border-radius: 2px;
}

.page-home .home-hero-desc {
  font-size: 1.05rem;
  line-height: 1.75;
  color: #94A3B8;
  max-width: 38em;
  margin: 0;
}

.page-home .home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.page-home .home-hero-note {
  margin-top: 18px;
  font-size: 0.9rem;
  color: #94A3B8;
  padding-left: 14px;
  border-left: 3px solid rgba(0, 255, 157, 0.5);
}

/* ===== 章节预览 ===== */
.page-home .chapter-preview {
  border: 1px solid #2D3748;
  background: #111827;
  border-radius: 14px;
  padding: 24px 22px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.page-home .chapter-preview::after {
  content: "";
  position: absolute;
  right: -32px;
  top: -32px;
  width: 130px;
  height: 130px;
  background: rgba(0, 255, 157, 0.07);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .chapter-preview-title {
  font-family: "Arial Black", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #00D4FF;
  margin: 0 0 18px;
}

.page-home .chapter-preview-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .chapter-preview-list li + li {
  border-top: 1px solid #2D3748;
}

.page-home .chapter-preview-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 4px;
  text-decoration: none;
  color: #E5E9F0;
  transition: background 0.2s, padding-left 0.2s;
}

.page-home .chapter-preview-list a:hover {
  background: rgba(0, 255, 157, 0.08);
  padding-left: 12px;
}

.page-home .chapter-num {
  font-family: "Arial Black", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 0.8rem;
  color: #00FF9D;
  min-width: 2em;
}

.page-home .chapter-arrow {
  margin-left: auto;
  color: #94A3B8;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* ===== 区块通用 ===== */
.page-home .home-board,
.page-home .home-matches,
.page-home .home-features,
.page-home .home-insights,
.page-home .home-download,
.page-home .home-context {
  padding: 48px 20px;
}

.page-home .home-board-inner,
.page-home .home-matches-inner,
.page-home .home-features-inner,
.page-home .home-insights-inner,
.page-home .home-download-inner,
.page-home .home-context-inner {
  max-width: var(--home-width);
  margin: 0 auto;
}

.page-home .section-head {
  margin-bottom: 32px;
}

.page-home .section-kicker {
  font-family: "Arial Black", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #00FF9D;
  margin: 0;
}

.page-home .section-title {
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(1.8rem, 3.8vw, 2.8rem);
  font-weight: 700;
  transform: skew(-2deg);
  color: #E5E9F0;
  margin: 8px 0 12px;
}

.page-home .section-desc {
  color: #94A3B8;
  line-height: 1.7;
  max-width: 42em;
  margin: 6px 0 0;
}

/* ===== 数据看板 ===== */
.page-home .stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.page-home .stat-card {
  background: #111827;
  border: 1px solid #2D3748;
  border-radius: 14px;
  padding: 22px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.page-home .stat-card:hover {
  border-color: rgba(0, 255, 157, 0.4);
  transform: translateY(-2px);
}

.page-home .stat-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--home-grad);
}

.page-home .stat-value {
  font-family: "Arial Black", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #00FF9D;
  line-height: 1.1;
  display: block;
}

.page-home .stat-unit {
  font-size: 0.7em;
  color: #00D4FF;
}

.page-home .stat-label {
  color: #94A3B8;
  font-size: 0.88rem;
  margin-top: 6px;
  display: block;
}

.page-home .home-board-figure {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #2D3748;
  background: #111827;
}

.page-home .home-board-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .frame-caption {
  font-size: 0.82rem;
  color: #94A3B8;
  padding: 12px 16px;
  border-top: 1px solid #2D3748;
  margin: 0;
}

/* ===== 热门赛事 ===== */
.page-home .home-matches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .match-card {
  position: relative;
  border: 1px solid #2D3748;
  background: #111827;
  border-radius: 14px;
  padding: 22px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.page-home .match-card:hover {
  border-color: rgba(0, 255, 157, 0.45);
  box-shadow: 0 0 0 1px rgba(0, 255, 157, 0.08), 0 10px 32px rgba(0, 0, 0, 0.35);
  transform: translateY(-2px);
}

.page-home .match-card::before {
  content: "";
  position: absolute;
  top: -2px;
  right: 14px;
  width: 64px;
  height: 4px;
  background: var(--home-grad);
  transform: skew(-24deg);
  border-radius: 2px;
}

.page-home .match-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.page-home .match-card h3 {
  font-family: "Arial Black", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 1.15rem;
  margin: 0 0 8px;
  color: #E5E9F0;
}

.page-home .match-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #94A3B8;
  margin: 0 0 14px;
}

.page-home .match-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: #94A3B8;
  border-top: 1px solid #2D3748;
  padding-top: 12px;
}

.page-home .home-chart-figure {
  margin: 28px 0 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #2D3748;
  background: #111827;
}

.page-home .home-chart-figure img {
  width: 100%;
  height: auto;
}

/* ===== 功能亮点 ===== */
.page-home .home-features {
  background: linear-gradient(180deg, rgba(0, 255, 157, 0.03), transparent 40%);
}

.page-home .home-features-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .home-features-list {
  display: grid;
  gap: 14px;
}

.page-home .feature-item {
  display: flex;
  gap: 16px;
  padding: 18px;
  border: 1px solid #2D3748;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.6);
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
}

.page-home .feature-item:hover {
  background: rgba(0, 255, 157, 0.08);
  border-color: rgba(0, 255, 157, 0.25);
  transform: translateX(4px);
}

.page-home .feature-num {
  font-family: "Arial Black", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: #00FF9D;
  font-size: 1.1rem;
  line-height: 1.6;
  min-width: 2em;
}

.page-home .feature-item h3 {
  font-family: "Arial Black", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  font-size: 1.05rem;
  margin: 0 0 6px;
  color: #E5E9F0;
}

.page-home .feature-item p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: #94A3B8;
}

.page-home .home-features-figure {
  margin: 0 auto;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #2D3748;
  max-width: 300px;
}

.page-home .home-features-figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== 行业观察 ===== */
.page-home .home-insights-list {
  display: grid;
  gap: 16px;
}

.page-home .insight-item {
  padding: 20px;
  border-left: 3px solid #00D4FF;
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.04), transparent);
  border-radius: 0 14px 14px 0;
  transition: background 0.2s, border-left-color 0.2s;
}

.page-home .insight-item:hover {
  background: linear-gradient(90deg, rgba(0, 212, 255, 0.08), transparent);
  border-left-color: #00FF9D;
}

.page-home .insight-item h3 {
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: 1.15rem;
  margin: 10px 0 8px;
}

.page-home .insight-item h3 a {
  color: #E5E9F0;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.page-home .insight-item h3 a:hover {
  color: #00FF9D;
  border-bottom-color: #00FF9D;
}

.page-home .insight-item p {
  color: #94A3B8;
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}

.page-home .home-insights-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
  align-items: center;
}

.page-home .home-inline-link {
  color: #00D4FF;
  text-decoration: none;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.4);
  transition: color 0.2s, border-color 0.2s;
}

.page-home .home-inline-link:hover {
  color: #00FF9D;
  border-bottom-color: #00FF9D;
}

/* ===== 下载引导 ===== */
.page-home .home-download {
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.05), rgba(0, 212, 255, 0.04));
  border-top: 1px solid #2D3748;
  border-bottom: 1px solid #2D3748;
}

.page-home .home-download-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding: 28px 22px;
  background: #111827;
  border: 1px solid #2D3748;
  border-radius: 14px;
  position: relative;
  overflow: hidden;
}

.page-home .home-download-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--home-grad);
}

.page-home .home-download-copy h2 {
  font-family: Georgia, "Noto Serif SC", "Songti SC", serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 10px 0 12px;
  transform: skew(-2deg);
  color: #E5E9F0;
}

.page-home .home-download-copy p {
  color: #94A3B8;
  line-height: 1.7;
  max-width: 34em;
  margin: 0;
}

.page-home .home-download-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.page-home .home-download-list li {
  position: relative;
  padding-left: 22px;
  color: #E5E9F0;
  margin: 8px 0;
  font-size: 0.95rem;
}

.page-home .home-download-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  background: #00FF9D;
  transform: rotate(45deg);
  border-radius: 2px;
}

.page-home .home-download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  align-items: center;
}

.page-home .home-qr {
  margin: 0 auto;
  max-width: 220px;
  text-align: center;
  padding: 18px;
  border: 1px solid #2D3748;
  border-radius: 14px;
  background: #111827;
}

.page-home .home-qr img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ===== 底部信任条 ===== */
.page-home .home-context {
  text-align: center;
  font-size: 0.96rem;
  color: #94A3B8;
  line-height: 1.75;
}

.page-home .home-context a {
  color: #00D4FF;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

.page-home .home-context a:hover {
  color: #00FF9D;
  border-bottom-color: #00FF9D;
}

/* ===== 响应式 ===== */
@media (min-width: 640px) {
  .page-home .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-matches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .page-home .home-hero {
    padding: 44px 32px 56px;
  }

  .page-home .home-hero-layout {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: start;
    gap: 48px;
  }

  .page-home .home-features-layout {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
  }

  .page-home .home-download-card {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 36px 40px;
  }

  .page-home .home-insights-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-board,
  .page-home .home-matches,
  .page-home .home-features,
  .page-home .home-insights,
  .page-home .home-download,
  .page-home .home-context {
    padding: 64px 32px;
  }
}
