.page-home {
  --home-glow-green: rgba(0, 255, 136, 0.1);
  --home-line-blue: rgba(0, 212, 255, 0.45);
  color: var(--text-bright);
  font-family: var(--font-body);
}

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

.page-home .home-crumb {
  padding: 18px 0 0;
}

.page-home .home-crumb .breadcrumb {
  margin: 0;
}

/* ===== 首屏拼贴 ===== */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: 56px 0 72px;
  border-bottom: 1px solid var(--purple-edge);
}

.page-home .hero-pitch-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.page-home .pitch-lines {
  position: absolute;
  top: 8%;
  right: -6%;
  width: 58%;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 32px;
}

.page-home .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  padding: 6px 14px;
  border: 1px solid var(--home-line-blue);
  border-radius: 999px;
  color: var(--electric-blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.page-home .green-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}

.page-home .hero-copy h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 7vw, 68px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--text-bright);
}

.page-home .hero-lead {
  max-width: 560px;
  margin: 0 0 26px;
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-muted);
}

.page-home .hero-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.page-home .hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .hero-stat strong {
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
  color: var(--neon-green);
}

.page-home .hero-stat span {
  font-size: 12px;
  color: var(--text-muted);
}

.page-home .hero-card {
  position: relative;
  border: 1px solid rgba(0, 255, 136, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(18, 24, 32, 0.92);
  box-shadow: var(--shadow-card), 0 0 36px var(--home-glow-green);
  backdrop-filter: blur(6px);
  padding: 20px 22px;
  max-width: 480px;
}

.page-home .hero-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.page-home .hero-card-title {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
}

.page-home .hero-kickoff-list {
  margin: 0 0 12px;
  padding: 0;
  list-style: none;
}

.page-home .hero-kickoff-list li {
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px dashed rgba(138, 145, 153, 0.25);
}

.page-home .hero-kickoff-list li:last-child {
  border-bottom: 0;
}

.page-home .ko-time {
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--electric-blue);
}

.page-home .ko-league {
  font-weight: 700;
  font-size: 14px;
}

.page-home .ko-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: right;
}

.page-home .hero-card-link {
  display: inline-block;
  margin-top: 6px;
  color: var(--neon-green);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease;
}

.page-home .hero-card-link:hover {
  border-bottom-color: var(--neon-green);
}

/* ===== 开球时段 ===== */
.page-home .kickoff-section {
  padding: var(--space-section) 0 0;
}

.page-home .kickoff-grid {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.page-home .kickoff-card {
  position: relative;
  border: 1px solid rgba(123, 47, 247, 0.4);
  border-radius: var(--radius-md);
  background: var(--bg-panel);
  padding: 20px 22px 18px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .kickoff-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--neon-green), var(--electric-blue));
  opacity: 0.7;
}

.page-home .kickoff-card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-green);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 26px rgba(0, 255, 136, 0.12);
}

.page-home .kickoff-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.page-home .league-name {
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: 0.03em;
  color: var(--text-bright);
}

.page-home .kickoff-match-title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-bright);
}

.page-home .kickoff-progress {
  height: 5px;
  border-radius: 99px;
  background: rgba(138, 145, 153, 0.18);
  margin-bottom: 12px;
  overflow: hidden;
}

.page-home .kickoff-progress span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--neon-green), var(--electric-blue));
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.45);
}

.page-home .kickoff-note {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== 阵容确认 ===== */
.page-home .lineup-section {
  padding: var(--space-section) 0 0;
}

.page-home .lineup-content {
  display: grid;
  gap: 40px;
  margin-top: 34px;
}

.page-home .lineup-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .lineup-step {
  display: flex;
  gap: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 212, 255, 0.28);
  border-radius: var(--radius-md);
  background: rgba(18, 24, 32, 0.72);
}

.page-home .step-num {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--neon-green);
  color: var(--neon-green);
  font-family: var(--font-heading);
  font-size: 22px;
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.2);
}

.page-home .step-body h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
}

.page-home .step-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.page-home .lineup-footnote {
  margin: 6px 0 0;
  font-size: 14px;
  color: var(--text-muted);
}

.page-home .lineup-footnote a {
  color: var(--electric-blue);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid var(--electric-blue);
}

.page-home .lineup-phone {
  display: flex;
  justify-content: center;
}

.page-home .phone-frame {
  position: relative;
  max-width: 260px;
  width: 100%;
  padding: 10px 10px 46px;
  border: 2px solid var(--neon-green);
  border-radius: 30px;
  background: var(--bg-panel);
  box-shadow: 0 0 34px rgba(0, 255, 136, 0.16), var(--shadow-card);
}

.page-home .phone-frame img {
  display: block;
  width: 100%;
  border-radius: 20px;
}

.page-home .phone-status {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 700;
  color: var(--neon-green);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ===== 战报专栏 ===== */
.page-home .report-section {
  position: relative;
  padding: var(--space-section) 0 56px;
  overflow: hidden;
}

.page-home .report-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-home .report-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.1;
}

.page-home .report-section .chapter-head,
.page-home .report-timeline,
.page-home .report-cta {
  position: relative;
  z-index: 1;
}

.page-home .report-timeline {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 36px;
  position: relative;
}

.page-home .report-timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 7px;
  width: 2px;
  background: linear-gradient(180deg, var(--neon-green), var(--electric-blue), var(--purple-edge));
  opacity: 0.5;
}

.page-home .timeline-item {
  position: relative;
  padding-left: 34px;
}

.page-home .timeline-dot {
  position: absolute;
  left: 0;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-deep);
  border: 3px solid var(--neon-green);
  box-shadow: 0 0 12px rgba(0, 255, 136, 0.6);
}

.page-home .timeline-card {
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: var(--radius-md);
  background: rgba(18, 24, 32, 0.9);
  padding: 18px 20px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .timeline-card:hover {
  border-color: var(--electric-blue);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.14);
}

.page-home .timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.page-home .timeline-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.page-home .timeline-card p {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: var(--text-muted);
}

.page-home .report-cta {
  margin-top: 34px;
  text-align: center;
}

/* ===== 归档通道 ===== */
.page-home .archive-section {
  padding: 10px 0 70px;
}

.page-home .archive-door {
  position: relative;
  text-align: center;
  padding: 46px 24px 40px;
  border: 1px dashed rgba(138, 145, 153, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(18, 24, 32, 0.4);
}

.page-home .archive-door:hover {
  border-color: var(--electric-blue);
  box-shadow: inset 0 0 46px rgba(0, 212, 255, 0.06);
}

.page-home .archive-icon {
  display: block;
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin: 0 auto 18px;
  border-radius: 16px;
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-home .archive-door:hover .archive-icon {
  opacity: 1;
  transform: scale(1.04);
}

.page-home .archive-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.page-home .archive-door h2 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.1;
}

.page-home .archive-desc {
  max-width: 520px;
  margin: 0 auto 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

.page-home .archive-door .door-link {
  display: inline-block;
  padding: 10px 22px;
  border: 1px solid rgba(0, 212, 255, 0.45);
  border-radius: 999px;
  color: var(--electric-blue);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .archive-door .door-link:hover {
  background: var(--electric-blue);
  color: var(--bg-deep);
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.35);
}

/* ===== 章节头部适配 ===== */
.page-home .chapter-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-home .chapter-index {
  font-family: var(--font-heading);
  font-size: 56px;
  line-height: 1;
  background: linear-gradient(135deg, var(--neon-green), var(--electric-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .chapter-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 36px);
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.page-home .chapter-desc {
  max-width: 640px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}

/* ===== 表格/筛选条 ===== */
.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.page-home .filter-btn {
  padding: 8px 18px;
  border: 1px solid rgba(138, 145, 153, 0.4);
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.page-home .filter-btn.is-active {
  border-color: var(--neon-green);
  background: rgba(0, 255, 136, 0.12);
  color: var(--neon-green);
  box-shadow: 0 0 16px rgba(0, 255, 136, 0.18);
}

/* ===== 中断点适配 ===== */
@media (min-width: 768px) {
  .page-home .hero-inner {
    grid-template-columns: 1.35fr 0.9fr;
    align-items: center;
    gap: 44px;
  }

  .page-home .hero-card {
    justify-self: end;
  }

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

  .page-home .lineup-content {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
    gap: 56px;
  }

  .page-home .lineup-steps {
    order: 1;
  }

  .page-home .lineup-phone {
    order: 2;
  }

  .page-home .report-timeline {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 76px 0 88px;
  }

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

  .page-home .archive-door {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 28px;
    align-items: center;
    text-align: left;
    padding: 44px 48px;
  }

  .page-home .archive-icon {
    grid-row: span 3;
    margin: 0;
  }

  .page-home .archive-eyebrow {
    margin-bottom: 4px;
  }

  .page-home .archive-desc {
    margin: 0;
  }
}
