.page-home {
  --home-display: "Arial Black", "DIN Condensed", var(--font-display);
  --home-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: var(--bg-deep);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
}

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

.page-home .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  padding-bottom: 0;
  font-size: 14px;
  color: var(--text-dim);
}

.page-home .breadcrumbs a {
  color: var(--blue);
  text-decoration: none;
}

.page-home .breadcrumbs a:hover {
  text-decoration: underline;
}

.page-home .breadcrumbs__sep {
  color: rgba(245, 247, 250, 0.4);
}

.page-home .section-head {
  margin-bottom: 28px;
  padding-left: 16px;
  border-left: 3px solid var(--blue);
}

.page-home .section-head__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.page-home .section-head .eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
}

.page-home .section-index {
  font-family: var(--home-display);
  font-weight: 900;
  font-size: 20px;
  line-height: 1;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.page-home .section-index::after {
  content: "";
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--orange);
  margin-left: 10px;
  vertical-align: middle;
}

.page-home .section-head h2 {
  margin: 0 0 10px;
  font-family: var(--home-display);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

.page-home .section-head p {
  margin: 0;
  max-width: 48em;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
}

/* ---------- 框景首屏 ---------- */
.page-home .hero-frame {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 56px 0 52px;
  background: var(--bg-deep);
}

.page-home .hero-frame::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--violet) 45%, var(--orange) 100%);
}

.page-home .hero-frame__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-home .hero-frame__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.page-home .hero-frame__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(11, 15, 25, 0.96) 0%, rgba(11, 15, 25, 0.82) 48%, rgba(138, 43, 226, 0.42) 100%);
}

.page-home .hero-frame__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .hero-frame__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home .hero-frame__meta .eyebrow {
  display: inline-block;
  padding: 6px 12px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(0, 216, 255, 0.08);
  border: 1px solid rgba(0, 216, 255, 0.35);
  border-left-width: 4px;
  font-weight: 700;
}

.page-home .hero-frame__edition {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(245, 247, 250, 0.7);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
}

.page-home .hero-frame h1 {
  margin: 0 0 18px;
  font-family: var(--home-display);
  font-size: clamp(44px, 8vw, 96px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
  color: var(--text-main);
}

@supports (-webkit-background-clip: text) {
  .page-home .hero-frame h1 {
    background: linear-gradient(135deg, #F5F7FA 20%, #00D8FF 72%, #8A2BE2 115%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.page-home .hero-frame__lede {
  margin: 0 0 28px;
  max-width: 38em;
  font-size: 16px;
  line-height: 1.8;
  color: #B7C0D4;
}

.page-home .hero-frame__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .hero-frame__side {
  position: relative;
}

.page-home .hero-frame__scorecard {
  position: relative;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-glow);
  border-right: 4px solid var(--orange);
  padding: 20px;
  box-shadow: var(--home-shadow);
}

.page-home .hero-frame__scorecard::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 84px;
  height: 4px;
  background: var(--gradient);
}

.page-home .hero-frame__scorecard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.page-home .hero-frame__round {
  font-size: 12px;
  letter-spacing: 0.38em;
  color: var(--text-dim);
}

.page-home .hero-frame__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.page-home .hero-frame__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(11, 15, 25, 0.6);
  padding: 16px 8px;
  border-radius: 4px;
}

.page-home .hero-frame__team-name {
  font-size: 14px;
  color: var(--text-dim);
  text-align: center;
}

.page-home .hero-frame__team-score {
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  color: var(--text-main);
}

.page-home .hero-frame__vs {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--orange);
}

.page-home .season-progress__track {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.page-home .season-progress__bar {
  height: 100%;
  width: 68%;
  background: linear-gradient(135deg, #00D8FF, #8A2BE2);
}

.page-home .season-progress__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
  font-size: 13px;
  color: var(--text-dim);
}

.page-home .season-progress__meta strong {
  font-size: 18px;
  color: var(--blue);
}

.page-home .hero-frame__scale {
  display: flex;
  gap: 12px;
  align-items: stretch;
  height: 18px;
  margin-top: 18px;
}

.page-home .hero-frame__scale-cell {
  flex: 1;
  border-top: 2px solid rgba(0, 216, 255, 0.5);
  position: relative;
}

.page-home .hero-frame__scale-cell::after {
  content: "";
  position: absolute;
  left: 0;
  top: -6px;
  width: 2px;
  height: 6px;
  background: rgba(0, 216, 255, 0.5);
}

.page-home .hero-frame__stripe {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 8px;
  height: 100%;
  background: linear-gradient(180deg, var(--blue), var(--violet), var(--orange));
}

/* ---------- 最新战报 ---------- */
.page-home .report-pulse {
  position: relative;
  padding: 68px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-raise) 100%);
}

.page-home .report-pulse::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, transparent 55%, var(--orange) 100%);
}

.page-home .report-pulse__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .report-pulse__feed {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .report-card {
  background: var(--bg-raise);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.page-home .report-card__media {
  position: relative;
}

.page-home .report-card__media img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-home .report-card__media .tag {
  position: absolute;
  top: 14px;
  left: 14px;
}

.page-home .report-card__body {
  padding: 18px 20px 22px;
}

.page-home .report-card__body h3 {
  margin: 0 0 10px;
  font-family: var(--home-display);
  font-size: 22px;
  line-height: 1.2;
}

.page-home .report-card__summary {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
}

.page-home .report-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 16px;
}

.page-home .report-card__stats div {
  background: rgba(245, 247, 250, 0.04);
  padding: 10px 12px;
  border-radius: 4px;
}

.page-home .report-card__stats dt {
  font-size: 12px;
  color: var(--text-dim);
}

.page-home .report-card__stats dd {
  margin: 4px 0 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
}

.page-home .report-card--compact .report-card__body {
  border-left: 4px solid var(--orange);
}

.page-home .report-pulse__side {
  display: grid;
  gap: 16px;
  align-content: start;
}

.page-home .pulse-stats {
  background: rgba(255, 255, 255, 0.04);
  border-top: 4px solid var(--blue);
  padding: 20px;
}

.page-home .pulse-stats h3 {
  margin: 0 0 14px;
  font-size: 16px;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.page-home .pulse-stats__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .pulse-stats__row span {
  font-size: 14px;
  color: var(--text-dim);
}

.page-home .pulse-stats__row strong {
  font-size: 18px;
  color: var(--text-main);
}

.page-home .pulse-note {
  padding: 18px 20px;
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid rgba(138, 43, 226, 0.3);
}

.page-home .pulse-note p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.7;
  color: #C9B8E8;
}

/* ---------- 赛程统计对照 ---------- */
.page-home .matchup-zone {
  position: relative;
  padding: 68px 0;
  background: var(--bg-deep);
}

.page-home .matchup-zone::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 62%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.page-home .matchup-zone__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .table-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
}

.page-home .table-toolbar__label {
  font-size: 14px;
  color: var(--text-dim);
  white-space: nowrap;
}

.page-home .table-toolbar__select {
  flex: 1;
  max-width: 200px;
  padding: 8px 12px;
  background: var(--bg-deep);
  color: var(--text-main);
  border: 1px solid rgba(0, 216, 255, 0.3);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 14px;
}

.page-home .scoresheet {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-raise);
  border: 1px solid rgba(0, 216, 255, 0.25);
}

.page-home .scoresheet th {
  text-align: left;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  background: rgba(0, 216, 255, 0.06);
  border-bottom: 1px solid rgba(0, 216, 255, 0.2);
}

.page-home .scoresheet__item > td {
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .scoresheet__main-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  padding: 14px 16px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.page-home .scoresheet__main-row:hover {
  background: rgba(0, 216, 255, 0.06);
}

.page-home .scoresheet__cell--round {
  order: 1;
  font-size: 13px;
  color: var(--text-dim);
  background: rgba(255, 255, 255, 0.04);
  padding: 2px 8px;
  border-radius: 2px;
}

.page-home .scoresheet__cell--score {
  order: 2;
  margin-left: auto;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--blue);
}

.page-home .scoresheet__arrow {
  order: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--orange);
  border: 1px solid rgba(255, 106, 0, 0.4);
  border-radius: 50%;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.page-home .scoresheet__arrow-icon {
  display: inline-block;
  width: 10px;
  height: 10px;
  position: relative;
  transition: transform 0.25s ease;
}

.page-home .scoresheet__arrow-icon::before,
.page-home .scoresheet__arrow-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: background 0.25s ease;
}

.page-home .scoresheet__arrow-icon::before {
  left: 0;
  top: 50%;
  width: 10px;
  height: 2px;
  transform: translateY(-50%);
}

.page-home .scoresheet__arrow-icon::after {
  top: 0;
  left: 50%;
  width: 2px;
  height: 10px;
  transform: translateX(-50%);
}

.page-home .scoresheet__cell--match {
  order: 4;
  flex-basis: 100%;
  font-weight: 700;
  font-size: 15px;
  color: var(--text-main);
}

.page-home .scoresheet__cell--status {
  order: 5;
  margin-left: auto;
}

.page-home .scoresheet__item[data-open] .scoresheet__arrow-icon {
  transform: rotate(45deg);
}

.page-home .scoresheet__item[data-open] .scoresheet__arrow {
  background: rgba(0, 216, 255, 0.15);
  border-color: rgba(0, 216, 255, 0.7);
}

.page-home .scoresheet__detail-panel {
  display: none;
  padding: 16px;
  background: rgba(0, 216, 255, 0.04);
}

.page-home .scoresheet__item[data-open] .scoresheet__detail-panel {
  display: block;
}

.page-home .scoresheet__detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.page-home .scoresheet__detail-grid div {
  background: rgba(11, 15, 25, 0.6);
  padding: 10px 12px;
  border-radius: 4px;
}

.page-home .scoresheet__detail-grid span {
  display: block;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.page-home .scoresheet__detail-grid strong {
  font-size: 16px;
  color: var(--text-main);
}

.page-home .table-hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-dim);
}

.page-home .matchup-zone__info {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.page-home .matchup-zone__info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 48px;
  background: var(--orange);
}

.page-home .matchup-zone__info-media {
  overflow: hidden;
  border-radius: 6px;
}

.page-home .matchup-zone__info-media img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-home .matchup-zone__info h3 {
  margin: 16px 0 10px;
  font-family: var(--home-display);
  font-size: 22px;
}

.page-home .matchup-zone__info p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
}

.page-home .matchup-steps {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.page-home .matchup-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  font-size: 15px;
  color: var(--text-main);
}

.page-home .matchup-steps span {
  font-family: var(--home-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--orange);
}

/* ---------- 主队生态 ---------- */
.page-home .home-ecosystem {
  padding: 68px 0;
  background: linear-gradient(180deg, var(--bg-raise) 0%, var(--bg-deep) 100%);
}

.page-home .home-ecosystem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .ecosystem-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  position: relative;
}

.page-home .ecosystem-card--feature {
  display: grid;
  gap: 18px;
}

.page-home .ecosystem-card__media {
  overflow: hidden;
  border-radius: 6px;
}

.page-home .ecosystem-card__media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-home .ecosystem-card h3 {
  margin: 12px 0 10px;
  font-family: var(--home-display);
  font-size: 24px;
  line-height: 1.2;
}

.page-home .ecosystem-card p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
}

.page-home .ecosystem-card__list {
  margin: 0 0 18px;
  padding-left: 20px;
}

.page-home .ecosystem-card__list li {
  padding: 4px 0;
  font-size: 14px;
  color: var(--text-main);
}

.page-home .ecosystem-card--credential {
  border-top: 4px solid var(--orange);
}

.page-home .credential-list {
  display: grid;
  gap: 10px;
  margin: 16px 0;
}

.page-home .credential-list div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: rgba(11, 15, 25, 0.5);
  padding: 10px 14px;
  border-left: 3px solid var(--blue);
}

.page-home .credential-list dt {
  font-size: 13px;
  color: var(--text-dim);
}

.page-home .credential-list dd {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  text-align: right;
}

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

/* ---------- 动效 ---------- */
@media (prefers-reduced-motion: no-preference) {
  .page-home .hero-frame__content {
    animation: homeHeroFadeUp 0.8s ease both;
  }

  .page-home .hero-frame__side {
    animation: homeHeroFadeUp 0.8s 0.15s ease both;
  }

  @keyframes homeHeroFadeUp {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* ---------- 桌面端 ---------- */
@media (min-width: 1024px) {
  .page-home .hero-frame {
    min-height: 92vh;
    padding: 48px 0 64px;
  }

  .page-home .hero-frame__container {
    grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.6fr);
    align-items: center;
    gap: 48px;
  }

  .page-home .hero-frame__lede {
    font-size: 17px;
  }

  .page-home .hero-frame__actions .btn {
    padding: 14px 28px;
  }

  .page-home .report-pulse__layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.5fr);
    align-items: start;
  }

  .page-home .report-pulse__feed {
    gap: 20px;
  }

  .page-home .report-card__media img {
    height: 260px;
  }

  .page-home .matchup-zone__layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
    align-items: start;
  }

  .page-home .scoresheet__main-row {
    display: grid;
    grid-template-columns: 64px 1fr 56px 72px 24px;
    gap: 8px;
    align-items: center;
    padding: 15px 16px;
  }

  .page-home .scoresheet__cell--match {
    flex: none;
    order: 2;
    font-size: 15px;
  }

  .page-home .scoresheet__cell--score {
    order: 3;
    margin-left: 0;
  }

  .page-home .scoresheet__cell--status {
    order: 4;
    margin-left: 0;
  }

  .page-home .scoresheet__arrow {
    order: 5;
  }

  .page-home .scoresheet__detail-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .page-home .matchup-zone__info-media img {
    height: 220px;
  }

  .page-home .home-ecosystem__grid {
    grid-template-columns: 1.3fr 0.7fr;
    align-items: stretch;
  }

  .page-home .ecosystem-card--feature {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
  }

  .page-home .ecosystem-card__content {
    padding-right: 8px;
  }
}
