.page-home {
  width: 100%;
  overflow-x: hidden;
}

/* ===== 首页分割带 ===== */
.page-home .section-divider {
  position: relative;
  height: 1px;
  margin: 2rem auto;
  max-width: 1200px;
  background: linear-gradient(90deg, transparent, var(--gold-soft) 20%, var(--gold) 50%, var(--gold-soft) 80%, transparent);
}
.page-home .section-divider::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 12%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ===== 首屏框景 ===== */
.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 1.25rem 3rem;
  overflow: hidden;
  background: linear-gradient(118deg, rgba(13, 31, 28, 0.98) 0%, rgba(10, 17, 16, 0.92) 48%, rgba(13, 31, 28, 0.98) 100%);
  color: var(--text-main);
}
.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.16;
  mix-blend-mode: luminosity;
  z-index: 0;
}
.page-home .home-hero__corner {
  position: absolute;
  width: 56px;
  height: 56px;
  border-color: var(--gold);
  z-index: 0;
  pointer-events: none;
}
.page-home .home-hero__corner--tl {
  top: 0;
  left: 0;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  width: 100%;
}
.page-home .home-hero__crumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.page-home .home-hero__crumb a {
  color: var(--text-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color 0.2s;
}
.page-home .home-hero__crumb a:hover {
  color: var(--gold);
}
.page-home .home-hero__crumb span {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.page-home .home-hero__title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.5rem, 7vw, 4.8rem);
  line-height: 0.95;
  color: var(--text-main);
  margin: 0.6rem 0 1.2rem;
  letter-spacing: 0.01em;
}
.page-home .home-hero__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--gold);
  margin-top: 1.2rem;
}
.page-home .home-hero__lead {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-main);
  max-width: 34rem;
  margin: 0;
}
.page-home .home-hero__keyword {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  text-transform: uppercase;
  color: var(--gold);
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  letter-spacing: 0.04em;
  border: 1px solid var(--border-hair);
  background: rgba(212, 168, 83, 0.08);
  padding: 0.15em 0.5em;
  margin-bottom: 0.3em;
  line-height: 1.3;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}
.page-home .home-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  margin: 2.5rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-hair);
}
.page-home .home-hero__stats-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.page-home .home-hero__stats-item dt {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.page-home .home-hero__stats-item dd {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2rem;
  color: var(--gold);
  margin: 0;
}

/* ===== 首屏时间轴 ===== */
.page-home .home-hero__timeline {
  position: relative;
}
.page-home .home-hero__timeline-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  margin: 0.4rem 0 1.5rem;
  color: var(--text-main);
}
.page-home .home-hero__track {
  position: relative;
  display: grid;
  gap: 1rem;
  padding-left: 1.5rem;
}
.page-home .home-hero__track::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gold) 20%, rgba(212, 168, 83, 0.3) 100%);
}
.page-home .hero-round {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0.85rem;
  padding: 0.75rem;
  align-items: center;
  background: linear-gradient(90deg, rgba(13, 31, 28, 0.6) 0%, rgba(19, 33, 30, 0.9) 100%);
  border: 1px solid var(--border-hair);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.page-home .hero-round:hover {
  transform: translateX(4px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}
.page-home .hero-round::before {
  content: "";
  position: absolute;
  left: -1.7rem;
  top: 50%;
  width: 10px;
  height: 10px;
  background: var(--gold);
  transform: translateY(-50%) rotate(45deg);
  box-shadow: 0 0 0 3px rgba(212, 168, 83, 0.15);
}
.page-home .hero-round__pic {
  width: 80px;
  height: 80px;
  overflow: hidden;
  border: 1px solid var(--gold-soft);
  background: linear-gradient(135deg, var(--bg-panel), var(--bg-deep));
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home .hero-round__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .hero-round__pic--plain span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 2.2rem;
  opacity: 0.7;
}
.page-home .hero-round__top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.page-home .hero-round__no {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.page-home .hero-round__match {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-main);
  margin: 0.35rem 0 0.3rem;
  flex-wrap: wrap;
}
.page-home .hero-round__score {
  color: var(--gold);
  font-family: var(--font-mono);
  font-weight: 700;
}
.page-home .hero-round__note {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== 轮次赛程中心 ===== */
.page-home .schedule-section {
  padding-top: 0;
}
.page-home .schedule-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.page-home .schedule-section__head .section-desc {
  margin-bottom: 1.75rem;
}
.page-home .round-track {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.25rem;
}
.page-home .round-card {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.9rem;
  padding: 1.1rem 1.1rem 1.1rem 1.25rem;
  background: var(--bg-panel);
  border: 1px solid var(--border-hair);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.page-home .round-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.page-home .round-card[data-file]::after {
  content: "档案 #" attr(data-file);
  position: absolute;
  top: -1px;
  right: -1px;
  padding: 0.25em 0.7em;
  background: var(--gold);
  color: #0A1110;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  clip-path: polygon(0 0, 100% 0, 100% 68%, 86% 100%, 0 100%);
}
.page-home .round-card__round {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border-hair);
}
.page-home .round-card__no {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold);
  line-height: 1;
}
.page-home .round-card__unit {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.page-home .round-card__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.page-home .round-card__tag {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
}
.page-home .round-card__teams {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1rem;
  margin: 0.5rem 0 0.35rem;
  color: var(--text-main);
}
.page-home .round-card__score {
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 1.05rem;
}
.page-home .round-card__meta {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 0;
}

/* ===== 焕新版战报专栏 ===== */
.page-home .reports-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.page-home .reports-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.page-home .report-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-panel);
  border: 1px solid var(--border-hair);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.page-home .report-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.page-home .report-card__thumb {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: linear-gradient(120deg, var(--bg-deep), var(--bg-panel));
}
.page-home .report-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-home .report-card__thumb--plain {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-home .report-card__thumb--plain::before {
  content: "战报";
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  border: 1px solid var(--gold-soft);
  padding: 0.2em 0.6em;
}
.page-home .report-card__thumb--plain span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 3.5rem;
  color: var(--gold);
  opacity: 0.85;
}
.page-home .report-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 1.1rem 1.1rem;
}
.page-home .report-card__top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.page-home .report-card__status {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.page-home .report-card__title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text-main);
  margin: 0;
}
.page-home .report-card__excerpt {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
.page-home .report-card__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(212, 168, 83, 0.18);
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* ===== 多联赛覆盖 ===== */
.page-home .leagues-section__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.page-home .leagues-wall {
  overflow: hidden;
  border: 1px solid var(--border-hair);
  box-shadow: var(--shadow-card);
}
.page-home .leagues-wall img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  aspect-ratio: 3 / 2;
}
.page-home .league-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.page-home .league-badges li {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-main);
  background: rgba(212, 168, 83, 0.08);
  border: 1px solid var(--border-hair);
  padding: 0.32em 0.65em;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.page-home .league-badges li:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.page-home .league-badges li:nth-child(6n) {
  border-color: var(--gold-soft);
}

/* ===== 移动端下载 ===== */
.page-home .download-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 1.5rem;
  background: linear-gradient(135deg, rgba(13, 31, 28, 0.95), rgba(10, 17, 16, 0.98));
}
.page-home .download-card__body {
  max-width: 560px;
}
.page-home .download-card__desc {
  color: var(--text-main);
  line-height: 1.9;
  margin: 1rem 0 1.5rem;
}
.page-home .download-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.65rem;
}
.page-home .download-card__features li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text-main);
  font-size: 0.95rem;
}
.page-home .download-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
}
.page-home .download-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.page-home .download-card__qr {
  text-align: center;
  padding: 1.25rem;
  border: 1px solid var(--border-hair);
  background: var(--bg-panel);
  box-shadow: var(--shadow-card);
}
.page-home .download-card__qrimg {
  width: 180px;
  max-width: 100%;
  margin: 0 auto;
  border: 4px solid #F2EFE9;
  background: #F2EFE9;
}
.page-home .download-card__qrimg img {
  width: 100%;
  height: auto;
  display: block;
}
.page-home .download-card__qr p {
  margin: 0.75rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ===== 按钮脉冲 ===== */
.page-home .btn--pulse {
  position: relative;
  animation: homePulse 2.4s var(--ease) infinite;
}
@keyframes homePulse {
  0% {
    box-shadow: 0 0 0 0 rgba(212, 168, 83, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(212, 168, 83, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(212, 168, 83, 0);
  }
}

/* ===== 底部信任条 ===== */
.page-home .trust-strip {
  border-top: 1px solid var(--border-hair);
  background: linear-gradient(90deg, var(--bg-deep), var(--bg-primary));
}
.page-home .trust-strip__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.page-home .trust-strip__text {
  color: var(--text-main);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.8;
}
.page-home .trust-strip__text a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-soft);
  transition: border-color 0.2s;
}
.page-home .trust-strip__text a:hover {
  border-color: var(--gold);
}

/* ===== 响应式布局 ===== */
@media (min-width: 640px) {
  .page-home .round-track {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .reports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 880px) {
  .page-home .download-card {
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
  }
  .page-home .download-card__qr {
    padding: 1.5rem;
  }
}

@media (min-width: 960px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 4rem;
    align-items: center;
  }
  .page-home .hero-round {
    grid-template-columns: 88px 1fr;
  }
  .page-home .hero-round__pic {
    width: 88px;
    height: 88px;
  }
}

@media (min-width: 1024px) {
  .page-home .schedule-section__grid {
    grid-template-columns: 340px 1fr;
    gap: 4rem;
  }
  .page-home .reports-section__grid {
    grid-template-columns: 340px 1fr;
    gap: 4rem;
  }
  .page-home .leagues-section__content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

@media (min-width: 1100px) {
  .page-home .reports-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .page-home .round-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .btn--pulse {
    animation: none;
  }
  .page-home .hero-round,
  .page-home .round-card,
  .page-home .report-card {
    transition: none;
  }
}
