.page-home {
  position: relative;
  background: var(--c-bg);
  color: var(--c-muted);
  overflow-x: hidden;
}

/* ============ 首屏框景窗口 ============ */
.page-home .hero-frame {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  padding: 70px 0 84px;
  margin: calc(var(--header-top) + var(--header-h) + var(--header-space)) 16px 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  overflow: hidden;
  background: var(--c-bg-panel);
}

.page-home .hero-frame__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .hero-frame__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .hero-frame__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 14, 26, 0.97) 0%, rgba(10, 14, 26, 0.88) 42%, rgba(10, 14, 26, 0.45) 100%),
    linear-gradient(180deg, rgba(10, 14, 26, 0.2) 0%, rgba(10, 14, 26, 0) 45%, rgba(10, 14, 26, 0.86) 100%);
}

.page-home .frame-tick {
  position: absolute;
  width: 26px;
  height: 26px;
  z-index: 3;
  pointer-events: none;
}

.page-home .frame-tick--tl {
  top: 14px;
  left: 14px;
  border-top: 2px solid var(--c-green);
  border-left: 2px solid var(--c-green);
}

.page-home .frame-tick--tr {
  top: 14px;
  right: 14px;
  border-top: 2px solid var(--c-purple);
  border-right: 2px solid var(--c-purple);
}

.page-home .frame-tick--bl {
  bottom: 14px;
  left: 14px;
  border-bottom: 2px solid var(--c-purple);
  border-left: 2px solid var(--c-purple);
}

.page-home .frame-tick--br {
  right: 14px;
  bottom: 14px;
  border-right: 2px solid var(--c-green);
  border-bottom: 2px solid var(--c-green);
}

.page-home .hero-frame::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 24px;
  height: 5px;
  z-index: 2;
  background: repeating-linear-gradient(
    90deg,
    var(--c-green) 0 2px,
    transparent 2px 9px,
    var(--c-blue) 9px 11px,
    transparent 11px 22px
  );
  opacity: 0.55;
  border-radius: 4px;
  pointer-events: none;
}

.page-home .hero-frame__scale {
  position: absolute;
  right: 28px;
  bottom: 38px;
  z-index: 3;
  display: flex;
  gap: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-dim);
  pointer-events: none;
}

.page-home .hero-frame__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-home .hero-frame__breadcrumb {
  margin-bottom: 40px;
}

.page-home .hero-frame__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .hero-frame__eyebrow {
  margin: 0 0 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--c-green);
  text-transform: uppercase;
}

.page-home .hero-frame h1 {
  margin: 0 0 22px;
  font-size: clamp(38px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--c-white);
  letter-spacing: -0.02em;
}

.page-home .hero-frame__title-accent {
  display: block;
  color: var(--c-green);
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .page-home .hero-frame__title-accent {
    background: linear-gradient(90deg, var(--c-green), var(--c-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

.page-home .hero-frame__lead {
  max-width: 620px;
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--c-muted);
}

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

.page-home .hero-frame__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  list-style: none;
  margin: 30px 0 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-dim);
}

.page-home .hero-frame__meta li {
  position: relative;
  padding-left: 16px;
}

.page-home .hero-frame__meta li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--c-purple);
}

.page-home .hero-panel-wrap {
  width: 100%;
}

.page-home .hero-panel {
  padding: 24px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-glass);
}

.page-home .hero-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-line);
}

.page-home .hero-panel__freq {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-muted);
}

.page-home .hero-panel__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}

.page-home .hero-panel__stat {
  padding: 8px 4px;
  text-align: center;
}

.page-home .hero-panel__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  color: var(--c-green);
  line-height: 1.3;
}

.page-home .hero-panel__label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--c-muted);
}

.page-home .hero-panel__divider {
  height: 1px;
  background: linear-gradient(90deg, var(--c-green), transparent 70%);
  opacity: 0.5;
}

.page-home .hero-panel__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
}

.page-home .hero-panel__nav-label {
  font-size: 13px;
  color: var(--c-muted);
}

.page-home .hero-panel__link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-blue);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.page-home .hero-panel__link:hover,
.page-home .hero-panel__link:focus-visible {
  color: var(--c-green);
}

/* ============ 通用分栏与索引 ============ */
.page-home .console-section,
.page-home .dataflow-section,
.page-home .countdown-section,
.page-home .coverage-section,
.page-home .version-section,
.page-home .mobile-section,
.page-home .teams-section {
  padding: 56px 0;
  position: relative;
}

.page-home .section-index {
  display: grid;
  gap: 6px;
  margin-bottom: 30px;
}

.page-home .section-index-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--c-dim);
  text-transform: uppercase;
}

.page-home .section-index-title {
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  color: var(--c-white);
}

/* ============ 极速导航控制台 ============ */
.page-home .console-grid {
  display: grid;
  gap: 16px;
}

.page-home .console-card {
  position: relative;
  padding: 26px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  transition: transform var(--ease-fast), border-color var(--ease-fast), box-shadow var(--ease-fast);
}

.page-home .console-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-line-green);
  box-shadow: var(--glow-green);
}

.page-home .console-card__num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--c-blue);
}

.page-home .console-card__title {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-white);
}

.page-home .console-card__text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .console-card__link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-green);
  text-decoration: none;
}

.page-home .console-card__link:hover,
.page-home .console-card__link:focus-visible {
  color: var(--c-white);
}

/* ============ 实时数据流 ============ */
.page-home .dataflow-section {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, transparent 55%);
}

.page-home .dataflow-layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.page-home .dataflow-list {
  padding: 24px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
}

.page-home .dataflow-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--c-line);
}

.page-home .dataflow-list__title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--c-white);
}

.page-home .dataflow-ticker {
  padding: 6px 0;
}

.page-home .dataflow-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  padding: 14px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background var(--ease-fast);
}

.page-home .dataflow-row:hover {
  background: var(--c-bg-panel);
}

.page-home .dataflow-row:last-child {
  border-bottom: none;
}

.page-home .dataflow-row__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-dim);
  min-width: 34px;
}

.page-home .dataflow-row__name {
  font-size: 14px;
  color: var(--c-white);
  font-weight: 600;
}

.page-home .dataflow-row__score {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-green);
}

.page-home .dataflow-row__ctrl {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-purple);
}

.page-home .dataflow-list__link {
  display: block;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-blue);
  text-decoration: none;
}

.page-home .dataflow-list__link:hover,
.page-home .dataflow-list__link:focus-visible {
  color: var(--c-green);
}

.page-home .dataflow-chart {
  margin: 0;
}

.page-home .dataflow-chart img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--c-line);
}

.page-home .dataflow-chart__caption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-dim);
}

.page-home .dataflow-chart__caption::before {
  content: "◢ ";
  color: var(--c-blue);
}

/* ============ 赛事倒计时 ============ */
.page-home .countdown-section {
  background:
    repeating-linear-gradient(-45deg, rgba(255, 200, 87, 0.03) 0 1px, transparent 1px 14px),
    transparent;
}

.page-home .countdown-layout {
  display: grid;
  gap: 24px;
}

.page-home .countdown-focus {
  padding: 32px 26px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  text-align: left;
}

.page-home .countdown-focus__title {
  margin: 16px 0 4px;
  font-size: 22px;
  font-weight: 900;
  color: var(--c-white);
}

.page-home .countdown-focus__match {
  margin: 0 0 24px;
  font-size: 15px;
  color: var(--c-muted);
}

.page-home .countdown-digits {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
}

.page-home .countdown-digit {
  font-size: clamp(48px, 9vw, 76px);
  font-weight: 700;
  line-height: 1;
  color: var(--c-yellow);
  background: rgba(255, 200, 87, 0.08);
  border: 1px solid rgba(255, 200, 87, 0.22);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.page-home .countdown-sep {
  font-size: 28px;
  color: var(--c-dim);
}

.page-home .countdown-unit {
  display: flex;
  gap: 10px;
  margin: 10px 0 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-dim);
}

.page-home .countdown-unit span {
  min-width: 62px;
  text-align: center;
}

.page-home .countdown-note {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
  font-size: 13px;
  color: var(--c-muted);
}

.page-home .countdown-side {
  padding: 24px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
}

.page-home .countdown-side__title {
  margin: 0 0 14px;
  font-size: 15px;
  font-weight: 800;
  color: var(--c-white);
}

.page-home .countdown-schedule {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .countdown-schedule__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-home .countdown-schedule__item:last-child {
  border-bottom: none;
}

.page-home .countdown-schedule__time {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-blue);
  min-width: 46px;
}

.page-home .countdown-schedule__match {
  flex: 1;
  font-size: 14px;
  color: var(--c-white);
}

/* ============ 数据覆盖概览 ============ */
.page-home .coverage-section {
  background: linear-gradient(135deg, rgba(180, 77, 255, 0.05) 0%, transparent 50%);
}

.page-home .coverage-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .coverage-copy__title {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 900;
  color: var(--c-white);
}

.page-home .coverage-copy__text {
  margin: 0 0 24px;
  line-height: 1.8;
  color: var(--c-muted);
}

.page-home .coverage-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.page-home .coverage-metric {
  padding: 16px;
  background: var(--c-bg-panel);
  border-left: 2px solid var(--c-blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.page-home .coverage-metric__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .coverage-metric__label {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--c-muted);
}

.page-home .coverage-figure {
  margin: 0;
}

.page-home .coverage-figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
  box-shadow: var(--shadow-glass);
}

.page-home .coverage-figure__caption {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-dim);
}

.page-home .coverage-figure__caption::before {
  content: "◢ ";
  color: var(--c-purple);
}

/* ============ 版本与更新 ============ */
.page-home .version-section {
  background: linear-gradient(135deg, rgba(0, 255, 157, 0.04) 0%, transparent 55%);
}

.page-home .version-layout {
  display: grid;
  gap: 32px;
}

.page-home .version-current {
  align-self: start;
  padding: 28px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--c-line);
}

.page-home .version-current__title {
  margin: 16px 0 10px;
  font-size: 34px;
  font-weight: 900;
  font-family: var(--font-mono);
  color: var(--c-green);
}

.page-home .version-current__text {
  margin: 0 0 20px;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .version-timeline {
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0 0 0 26px;
  border-left: 1px solid var(--c-line);
}

.page-home .version-timeline__item {
  position: relative;
  padding: 14px 0 14px 24px;
}

.page-home .version-timeline__item::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-purple);
  box-shadow: 0 0 10px var(--c-purple);
}

.page-home .version-timeline__ver {
  display: inline-block;
  margin-right: 12px;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .version-timeline__year {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-yellow);
}

.page-home .version-timeline__item p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

/* ============ 移动端快捷功能 ============ */
.page-home .mobile-section {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
}

.page-home .mobile-layout {
  display: grid;
  gap: 32px;
  align-items: center;
}

.page-home .mobile-figure {
  margin: 0;
}

.page-home .mobile-figure img {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
}

.page-home .mobile-copy__title {
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 900;
  color: var(--c-white);
}

.page-home .mobile-copy__text {
  margin: 0 0 24px;
  line-height: 1.8;
  color: var(--c-muted);
}

.page-home .mobile-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}

.page-home .mobile-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--c-line);
  font-size: 14px;
  color: var(--c-white);
}

.page-home .mobile-point__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-green);
}

/* ============ 热门球队入口 ============ */
.page-home .teams-section {
  background: linear-gradient(135deg, rgba(180, 77, 255, 0.04) 0%, transparent 45%);
}

.page-home .teams-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.page-home .teams-intro__text {
  margin: 0;
  font-size: 15px;
  color: var(--c-muted);
  max-width: 560px;
}

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

.page-home .team-card {
  display: block;
  padding: 18px;
  background: var(--c-bg-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--ease-fast), border-color var(--ease-fast), transform var(--ease-fast);
}

.page-home .team-card__name {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--c-white);
}

.page-home .team-card__meta {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-muted);
}

.page-home .team-card:hover {
  background: var(--c-glass);
  border-color: var(--c-line-purple);
  transform: translateY(-3px);
}

.page-home .team-card:focus-visible {
  outline: 2px solid var(--c-green);
  outline-offset: 2px;
  border-color: var(--c-green);
}

/* ============ 信任服务条 ============ */
.page-home .trust-section {
  margin: 8px 16px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(90deg, rgba(0, 255, 157, 0.07) 0%, rgba(180, 77, 255, 0.06) 100%);
  border: 1px solid var(--c-line);
  overflow: hidden;
}

.page-home .trust-section__inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 24px;
}

.page-home .trust-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.page-home .trust-badge__dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 14px var(--c-green);
}

.page-home .trust-badge__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-muted);
}

.page-home .trust-badge__text strong {
  color: var(--c-white);
}

.page-home .trust-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-dim);
}

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

.page-home .trust-links a:hover,
.page-home .trust-links a:focus-visible {
  color: var(--c-green);
}

/* ============ 桌面布局 ============ */
@media (min-width: 700px) {
  .page-home .hero-frame__grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 4fr);
    gap: 48px;
  }

  .page-home .section-index {
    grid-template-columns: 200px 1fr;
    gap: 24px;
    align-items: baseline;
    margin-bottom: 40px;
  }

  .page-home .section-index-title {
    font-size: 30px;
  }

  .page-home .console-section,
  .page-home .dataflow-section,
  .page-home .countdown-section,
  .page-home .coverage-section,
  .page-home .version-section,
  .page-home .mobile-section,
  .page-home .teams-section {
    padding: 80px 0;
  }

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

  .page-home .dataflow-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 32px;
  }

  .page-home .dataflow-row {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
  }

  .page-home .dataflow-row__score,
  .page-home .dataflow-row__ctrl {
    margin-left: 0;
  }

  .page-home .dataflow-row__ctrl {
    text-align: right;
  }

  .page-home .countdown-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 32px;
  }

  .page-home .coverage-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
  }

  .page-home .version-layout {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 48px;
  }

  .page-home .mobile-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
  }

  .page-home .teams-intro {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-home .teams-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .page-home .trust-section__inner {
    flex-direction: row;
    align-items: center;
    padding: 24px 32px;
  }
}
