.page-home {
  --ph-hero-cut: 64deg;
  --ph-grid-line: rgba(160, 176, 192, 0.06);
  --ph-speed-line: rgba(200, 255, 0, 0.08);
  --ph-panel-width: 420px;
  position: relative;
}

/* ========== 01 首屏Hero ========== */
.page-home .home-hero {
  position: relative;
  min-height: 92vh;
  background: var(--c-black);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), 0 100%);
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
}

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
  opacity: 0.38;
}

.page-home .home-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 14, 0.92) 0%, rgba(10, 10, 14, 0.72) 40%, rgba(139, 0, 255, 0.22) 100%),
    radial-gradient(circle at 80% 20%, rgba(139, 0, 255, 0.2) 0%, transparent 60%);
}

.page-home .home-hero__speedline {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70%;
  height: 80px;
  background: repeating-linear-gradient(
    -55deg,
    var(--ph-speed-line) 0px,
    var(--ph-speed-line) 2px,
    transparent 2px,
    transparent 14px
  );
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 48px;
  padding-top: 120px;
  padding-bottom: 80px;
}

.page-home .home-hero__content {
  max-width: 780px;
}

.page-home .home-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(48px, 9vw, 88px);
  line-height: 0.98;
  color: var(--c-white);
  margin: 12px 0 20px;
  letter-spacing: -0.02em;
}

.page-home .home-hero__title::after {
  content: "";
  display: block;
  width: 64px;
  height: 8px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--c-neon) 0%, var(--c-purple) 100%);
}

.page-home .home-hero__lead {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--c-silver);
  max-width: 560px;
  margin-bottom: 32px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.page-home .home-hero__entry-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--c-rock);
}

.page-home .hero-entry {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--c-rock);
  text-decoration: none;
  transition: background var(--ease-out) 0.2s, padding-left 0.2s var(--ease-out);
}

.page-home .hero-entry:hover {
  background: linear-gradient(90deg, var(--c-neon-soft) 0%, transparent 60%);
  padding-left: 16px;
}

.page-home .hero-entry__index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-neon);
}

.page-home .hero-entry__text {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--c-white);
}

.page-home .hero-entry__arrow {
  font-family: var(--font-mono);
  color: var(--c-purple);
  font-size: 20px;
}

/* ========== 章节通用 ========== */
.page-home .container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.page-home .section-head {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 16px;
}

.page-home .section-head--compact {
  margin-bottom: 12px;
}

.page-home .section-index {
  font-family: var(--font-mono);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 1;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 2px var(--c-purple);
  letter-spacing: -0.06em;
  flex-shrink: 0;
}

.page-home .mono-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-neon);
  border-left: 3px solid var(--c-neon);
  padding-left: 10px;
}

.page-home .section-title {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 40px);
  color: var(--c-white);
  margin: 10px 0 0;
  line-height: 1.2;
}

.page-home .section-summary {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-silver);
  max-width: 680px;
  margin: 0 0 32px 0;
}

.page-home .metric {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--c-neon);
}

/* ========== 02 实时数据面板 ========== */
.page-home .live-board {
  background: var(--c-black);
  padding: 88px 0;
  border-bottom: 1px solid var(--c-rock);
  background-image:
    linear-gradient(var(--ph-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--ph-grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
}

.page-home .live-board__grid {
  display: grid;
  gap: 16px;
}

.page-home .live-card {
  background: var(--c-ink);
  border: 1px solid var(--c-rock);
  padding: 20px;
  transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.page-home .live-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-neon-line);
}

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

.page-home .live-card__league {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-silver);
}

.page-home .live-card__score {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-home .live-card__team {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.page-home .live-card__team--away {
  text-align: right;
}

.page-home .live-card__abbr {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--c-white);
}

.page-home .live-card__name {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-silver);
}

.page-home .live-card__number {
  font-family: var(--font-mono);
  font-size: 34px;
  font-weight: 700;
  color: var(--c-neon);
}

.page-home .live-card__colon {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--c-rock);
}

.page-home .live-card__foot {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--c-rock-light);
}

.page-home .live-card__status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-moss);
}

.page-home .live-card__status--wait {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-clay);
}

.page-home .live-card__foot .mono-label {
  font-size: 12px;
  color: var(--c-silver);
  border: none;
  padding: 0;
}

/* ========== 03 体育开赛前确认阵容专区 ========== */
.page-home .lineup-zone {
  background: var(--c-black);
  padding: 96px 0 88px;
}

.page-home .lineup-zone__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-home .lineup-zone__visual {
  position: relative;
}

.page-home .lineup-zone__visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--c-purple-line);
}

.page-home .lineup-zone__scan {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 120px;
  height: 120px;
  border-right: 3px solid var(--c-neon);
  border-bottom: 3px solid var(--c-neon);
  pointer-events: none;
}

.page-home .lineup-zone__content {
  max-width: 560px;
}

.page-home .lineup-zone__lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-silver);
  margin: 16px 0 24px;
}

.page-home .lineup-zone__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}

.page-home .lineup-zone__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-white);
}

.page-home .lineup-zone__check {
  color: var(--c-purple);
  font-size: 18px;
  line-height: 1;
  margin-top: 2px;
}

/* ========== 04 回看集锦追比分筛选联赛 ========== */
.page-home .replay-league {
  background: var(--c-ink);
  padding: 88px 0;
  border-top: 3px solid;
  border-image: linear-gradient(90deg, var(--c-neon) 0%, var(--c-purple) 40%, transparent 100%) 1;
}

.page-home .replay-league__grid {
  display: grid;
  gap: 16px;
}

.page-home .league-card {
  background: var(--c-black);
  border: 1px solid var(--c-rock);
  padding: 24px;
  position: relative;
  transition: transform 0.25s var(--ease-out), border-color 0.25s;
}

.page-home .league-card:hover {
  transform: translateY(-4px);
  border-color: var(--c-neon);
}

.page-home .league-card__code {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-purple);
}

.page-home .league-card__name {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--c-white);
  margin: 10px 0 8px;
}

.page-home .league-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-silver);
  margin-bottom: 18px;
}

/* ========== 05 华人浏览器查8868赛程 ========== */
.page-home .schedule-query {
  background: var(--c-black);
  padding: 88px 0;
  background-image:
    radial-gradient(circle at 80% 30%, rgba(139, 0, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(200, 255, 0, 0.05) 0%, transparent 40%);
}

.page-home .schedule-query__grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.page-home .schedule-query__content {
  order: 2;
}

.page-home .schedule-query__lead {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-silver);
  margin: 16px 0 24px;
}

.page-home .schedule-query__points {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 12px;
}

.page-home .schedule-query__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c-white);
}

.page-home .schedule-query__points li::before {
  content: "▣";
  color: var(--c-neon);
  font-size: 14px;
}

.page-home .schedule-query__visual {
  order: 1;
  position: relative;
}

.page-home .schedule-query__visual::before {
  content: "";
  position: absolute;
  top: -16px;
  left: -16px;
  width: 120px;
  height: 120px;
  border-left: 3px solid var(--c-purple);
  border-top: 3px solid var(--c-purple);
  pointer-events: none;
}

.page-home .schedule-query__visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid var(--c-rock);
}

/* ========== 06 战报精选 ========== */
.page-home .report-timeline {
  background: var(--c-black);
  padding: 88px 0;
}

.page-home .report-timeline .tag {
  margin-bottom: 8px;
}

.page-home .report-timeline__list {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid var(--c-rock);
}

.page-home .report-item {
  positions: relative;
  margin-bottom: 40px;
}

.page-home .report-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: var(--c-neon);
  transform: rotate(45deg);
}

.page-home .report-item__time {
  display: block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-silver);
  margin-bottom: 8px;
}

.page-home .report-item__body {
  background: var(--c-ink);
  padding: 24px;
  border: 1px solid var(--c-rock);
  border-left: 4px solid var(--c-purple);
  transition: transform 0.2s var(--ease-out), border-color 0.2s;
}

.page-home .report-item__body:hover {
  transform: translateX(6px);
  border-color: var(--c-neon-line);
}

.page-home .report-item__title {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2.4vw, 24px);
  color: var(--c-white);
  margin: 0 0 8px;
  line-height: 1.4;
}

.page-home .report-item__excerpt {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-silver);
  margin: 0;
}

.page-home .report-timeline__more {
  margin-top: 48px;
  text-align: center;
}

/* ========== 07 品牌信任与更新动态 ========== */
.page-home .trust-update {
  background: var(--c-black);
  padding: 88px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-home .trust-update::before {
  content: "8868";
  position: absolute;
  right: -40px;
  bottom: -80px;
  font-family: var(--font-heading);
  font-size: 240px;
  color: rgba(200, 255, 0, 0.03);
  pointer-events: none;
  letter-spacing: -0.05em;
}

.page-home .trust-update__grid {
  display: grid;
  gap: 48px;
  margin-top: 24px;
}

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

.page-home .trust-stats__item {
  background: var(--c-ink);
  border: 1px solid var(--c-rock);
  padding: 24px 16px;
  text-align: center;
  transition: border-color 0.2s;
}

.page-home .trust-stats__item:hover {
  border-color: var(--c-neon-line);
}

.page-home .trust-stats__num {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
  color: var(--c-neon);
  line-height: 1;
}

.page-home .trust-stats__unit {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--c-silver);
  margin-left: 4px;
}

.page-home .trust-stats__label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-silver);
  margin-top: 8px;
  letter-spacing: 0.03em;
}

.page-home .update-log {
  background: var(--c-ink);
  border: 1px solid var(--c-rock);
  padding: 32px 28px;
}

.page-home .update-log__title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--c-white);
  margin: 0 0 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-rock);
}

.page-home .update-log__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.page-home .update-log__list li {
  position: relative;
  padding-left: 24px;
}

.page-home .update-log__list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 10px;
  color: var(--c-purple);
}

.page-home .update-log__year {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--c-neon);
  margin-right: 12px;
}

.page-home .update-log__text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-white);
}

.page-home .trust-update__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

/* ========== 标签组件（页面内使用） ========== */
.page-home .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  text-transform: uppercase;
}

.page-home .tag--neon {
  color: var(--c-neon);
  border: 1px solid var(--c-neon-line);
  background: var(--c-neon-soft);
}

.page-home .tag--purple {
  color: var(--c-purple);
  border: 1px solid var(--c-purple-line);
  background: var(--c-purple-soft);
}

/* ========== 按钮（页面内使用） ========== */
.page-home .btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 14px 30px;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.page-home .btn:hover {
  transform: translateY(-2px);
}

.page-home .btn--primary {
  background: var(--c-neon);
  color: var(--c-black);
}

.page-home .btn--primary:hover {
  box-shadow: 0 0 24px rgba(200, 255, 0, 0.3);
}

.page-home .btn--ghost {
  background: transparent;
  color: var(--c-white);
  border: 1px solid var(--c-rock);
}

.page-home .btn--ghost:hover {
  border-color: var(--c-purple);
  background: var(--c-purple-soft);
}

/* ========== 平板端 ========== */
@media (min-width: 768px) {
  .page-home .home-hero__inner {
    grid-template-columns: 1fr var(--ph-panel-width);
    gap: 64px;
  }

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

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

  .page-home .schedule-query__grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .lineup-zone__grid {
    grid-template-columns: 1.1fr 1fr;
  }

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

  .page-home .trust-update__grid {
    grid-template-columns: 1.1fr 1fr;
    align-items: start;
  }

  .page-home .live-card__score {
    gap: 12px;
  }
}

/* ========== 桌面端 ========== */
@media (min-width: 1024px) {
  .page-home .replay-league__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .home-hero__title {
    font-size: 88px;
  }

  .page-home .live-board {
    padding: 120px 0;
  }

  .page-home .lineup-zone,
  .page-home .schedule-query,
  .page-home .report-timeline,
  .page-home .trust-update {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  .page-home .schedule-query__content {
    order: 1;
  }

  .page-home .schedule-query__visual {
    order: 2;
  }
}

/* ========== 动效 ========== */
.page-home .live-card__number {
  animation: phFlash 0.9s infinite alternate ease-in-out;
}

.page-home .live-card:nth-child(2) .live-card__number {
  animation-delay: 0.3s;
}

.page-home .live-card:nth-child(3) .live-card__number {
  animation-delay: 0.6s;
}

@keyframes phFlash {
  0% {
    opacity: 1;
    text-shadow: 0 0 0 transparent;
  }
  100% {
    opacity: 0.85;
    text-shadow: 0 0 8px rgba(200, 255, 0, 0.35);
  }
}
