.page-home {
  --hero-min-height: 85vh;
  --diagonal-angle: -6deg;
  --card-radius: 2px;
  --badge-size: 48px;
  --stat-min-height: 140px;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
}

/* ---- 首屏 章节预览 ---- */
.page-home .home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: var(--hero-min-height);
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-accent) 70%, var(--bg-secondary) 100%);
  overflow: hidden;
  margin-bottom: 0;
}
.page-home .hero-visual {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}
.page-home .hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% 50%;
  display: block;
  filter: grayscale(0.3) contrast(1.1) brightness(0.7);
}
.page-home .hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,13,13,0.85) 20%, rgba(13,13,13,0.3) 60%, transparent 85%);
  pointer-events: none;
}
.page-home .hero-content {
  position: relative;
  z-index: 2;
  padding: 32px 20px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-home .hero-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0;
}
.page-home .hero-title .mono {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  display: block;
  color: var(--brand-primary);
  margin-bottom: 4px;
}
.page-home .hero-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  margin: 0;
  letter-spacing: 0.06em;
}
.page-home .hero-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.page-home .preview-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  text-decoration: none;
  color: var(--text-primary);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}
.page-home .preview-card:hover,
.page-home .preview-card:focus-visible {
  background: rgba(229,57,53,0.08);
  border-color: var(--brand-primary);
  transform: translateY(-2px);
}
.page-home .preview-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--brand-primary);
  letter-spacing: 0.05em;
}
.page-home .preview-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}
.page-home .preview-brief {
  font-family: var(--font-body);
  line-height: 1.3;
}

/* ---- section 通用 ---- */
.page-home .section {
  padding: 56px 0;
}
.page-home .section-header {
  margin-bottom: 32px;
}
.page-home .section-title {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin: 0 0 8px;
  text-transform: uppercase;
}
.page-home .section-desc {
  font-family: var(--font-body);
  margin: 0;
  line-height: 1.5;
}

/* ---- 实时伤停面板 ---- */
.page-home .home-injury {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.page-home .injury-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.page-home .tab-btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.04em;
}
.page-home .tab-btn:hover,
.page-home .tab-btn:focus-visible {
  border-color: var(--brand-primary);
  color: var(--text-primary);
}
.page-home .tab-btn.active {
  background: var(--brand-primary);
  border-color: var(--brand-primary);
  color: #fff;
}
.page-home .injury-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.page-home .injury-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 14px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.page-home .injury-card:hover {
  border-color: var(--brand-secondary);
  background: var(--bg-accent);
}
.page-home .injury-club {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-home .club-badge {
  width: var(--badge-size);
  height: var(--badge-size);
  object-fit: contain;
  border-radius: 50%;
  background: var(--bg-accent);
  flex-shrink: 0;
}
.page-home .club-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.page-home .injury-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.page-home .injury-player {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--neutral-light);
}
.page-home .injury-status {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
.page-home .injury-note {
  font-family: var(--font-body);
  line-height: 1.3;
}
.page-home .injury-chart {
  margin-top: 8px;
}
.page-home .chart-img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  display: block;
}

/* ---- 战报时间轴 ---- */
.page-home .home-reports {
  background: var(--bg-primary);
}
.page-home .timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.page-home .timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border-subtle);
  display: none;
}
.page-home .timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 28px;
  border-left: 1px solid var(--border-subtle);
  padding-left: 20px;
  margin-left: 12px;
  position: relative;
}
.page-home .timeline-item:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}
.page-home .timeline-marker {
  position: relative;
}
.page-home .marker-round {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--brand-primary);
  background: var(--bg-primary);
  padding: 2px 12px 2px 0;
  display: inline-block;
}
.page-home .timeline-item::before {
  content: '';
  position: absolute;
  left: -5px;
  top: 6px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand-primary);
  border: 2px solid var(--bg-primary);
  display: block;
}
.page-home .timeline-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.page-home .timeline-card:hover {
  border-color: var(--brand-primary);
  background: var(--bg-accent);
}
.page-home .timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.page-home .timeline-league {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.page-home .timeline-date {
  font-family: var(--font-body);
}
.page-home .timeline-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  color: var(--text-primary);
}
.page-home .timeline-brief {
  font-family: var(--font-body);
  line-height: 1.5;
  margin: 0;
}
.page-home .timeline-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--brand-primary);
  background: rgba(229,57,53,0.1);
  padding: 2px 10px;
  border-radius: var(--card-radius);
  align-self: flex-start;
}
.page-home .reports-cta {
  margin-top: 32px;
  text-align: center;
}
.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 12px 32px;
  border-radius: var(--card-radius);
  text-decoration: none;
  transition: all var(--transition-fast);
  cursor: pointer;
}
.page-home .btn-outline {
  background: transparent;
  border: 1px solid var(--brand-primary);
  color: var(--brand-primary);
}
.page-home .btn-outline:hover,
.page-home .btn-outline:focus-visible {
  background: var(--brand-primary);
  color: #fff;
}

/* ---- 球队档案网格 ---- */
.page-home .home-clubs {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.page-home .club-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.page-home .filter-btn {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 6px 16px;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-fast);
  letter-spacing: 0.04em;
}
.page-home .filter-btn:hover,
.page-home .filter-btn:focus-visible {
  border-color: var(--brand-secondary);
  color: var(--text-primary);
}
.page-home .filter-btn.active {
  background: var(--brand-secondary);
  border-color: var(--brand-secondary);
  color: #fff;
}
.page-home .club-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.page-home .club-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--bg-primary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  text-align: center;
  transition: border-color var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
  cursor: default;
}
.page-home .club-card:hover {
  border-color: var(--brand-secondary);
  background: var(--bg-accent);
  transform: scale(1.03);
}
.page-home .club-card .club-badge {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: var(--bg-accent);
  border-radius: 50%;
}
.page-home .club-card .club-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.page-home .club-card .club-league {
  font-family: var(--font-body);
  line-height: 1.2;
}
.page-home .clubs-cta {
  margin-top: 32px;
  text-align: center;
}

/* ---- 数据追踪亮点 ---- */
.page-home .home-stats {
  background: var(--bg-primary);
}
.page-home .stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 36px;
}
.page-home .stat-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 16px;
  min-height: var(--stat-min-height);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  justify-content: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.page-home .stat-card:hover {
  border-color: var(--brand-primary);
  background: var(--bg-accent);
}
.page-home .stat-value {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-home .stat-value.brand-blue {
  color: var(--brand-secondary);
}
.page-home .stat-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--neutral-light);
}
.page-home .stat-desc {
  font-family: var(--font-body);
  line-height: 1.4;
}
.page-home .stats-screen {
  text-align: center;
}
.page-home .screen-img {
  width: 100%;
  height: auto;
  max-height: 340px;
  object-fit: cover;
  border: 1px solid var(--border-subtle);
  border-radius: var(--card-radius);
  display: block;
  margin: 0 auto;
}
.page-home .screen-caption {
  font-family: var(--font-body);
  margin-top: 12px;
  line-height: 1.4;
}

/* ---- 响应式 桌面端 ---- */
@media (min-width: 768px) {
  .page-home .container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 32px;
  }
  .page-home .home-hero {
    flex-direction: row;
    min-height: 80vh;
  }
  .page-home .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .page-home .hero-bg-img {
    object-position: 40% 50%;
  }
  .page-home .hero-content {
    width: 50%;
    max-width: 620px;
    padding: 80px 48px 80px 64px;
    margin-left: auto;
    gap: 28px;
    background: linear-gradient(90deg, rgba(13,13,13,0.92) 30%, rgba(13,13,13,0.6) 80%, transparent);
    z-index: 1;
    align-self: center;
  }
  .page-home .hero-title {
    font-size: 3rem;
  }
  .page-home .hero-title .mono {
    font-size: 1.1rem;
  }
  .page-home .hero-desc {
    font-size: 1.1rem;
  }
  .page-home .hero-preview-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .page-home .preview-card {
    padding: 20px 18px;
  }
  .page-home .preview-label {
    font-size: 1.15rem;
  }

  .page-home .section {
    padding: 80px 0;
  }
  .page-home .section-title {
    font-size: 1.75rem;
  }

  .page-home .injury-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .page-home .injury-card {
    padding: 20px 18px;
  }
  .page-home .injury-chart {
    margin-top: 16px;
  }
  .page-home .chart-img {
    max-height: 360px;
    object-position: center;
  }

  .page-home .timeline {
    padding-left: 0;
  }
  .page-home .timeline-item {
    flex-direction: row;
    gap: 20px;
    padding-bottom: 32px;
    border-left: none;
    padding-left: 0;
    margin-left: 0;
  }
  .page-home .timeline-item::before {
    left: -1px;
    top: 18px;
  }
  .page-home .timeline-marker {
    width: 100px;
    flex-shrink: 0;
    padding-top: 12px;
  }
  .page-home .marker-round {
    font-size: 0.85rem;
  }
  .page-home .timeline-card {
    flex: 1;
    padding: 20px 24px;
  }
  .page-home .timeline-title {
    font-size: 1.1rem;
  }

  .page-home .club-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .page-home .club-card {
    padding: 24px 16px;
  }
  .page-home .club-card .club-badge {
    width: 60px;
    height: 60px;
  }

  .page-home .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .page-home .stat-card {
    padding: 24px 20px;
    min-height: 160px;
  }
  .page-home .stat-value {
    font-size: 2.4rem;
  }
  .page-home .screen-img {
    max-height: 440px;
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-content {
    padding: 100px 64px 100px 80px;
  }
  .page-home .hero-title {
    font-size: 3.6rem;
  }
  .page-home .hero-preview-grid {
    gap: 20px;
  }
  .page-home .injury-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .club-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .page-home .stats-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .timeline-marker {
    width: 120px;
  }
}
</PAGE_CSS>
