.page-home {
  --home-gold-glow: rgba(245, 179, 0, 0.16);
  --home-line-blue: rgba(176, 196, 222, 0.26);
  --home-deep-bg: #0D2440;
  font-family: var(--font-sans);
  background: var(--sky-deep);
  color: var(--cloud);
  overflow-x: hidden;
}

/* ===== 首屏：改版声明 + 目录 ===== */
.page-home .home-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 88vh;
  padding: calc(var(--header-h) + 32px) 0 48px;
  overflow: hidden;
  border-bottom: 1px solid var(--home-line-blue);
}

.page-home .home-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
  z-index: 0;
}

.page-home .home-hero__orbit {
  position: absolute;
  right: -60px;
  top: 20px;
  width: 260px;
  height: 260px;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
  display: none;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  width: 100%;
}

.page-home .home-hero__intro {
  max-width: 760px;
}

.page-home .home-hero__title {
  margin-top: 16px;
  font-size: 44px;
  line-height: 1.06;
  letter-spacing: 0.02em;
  background: linear-gradient(120deg, var(--star-gold) 0%, #FFD700 42%, var(--cloud) 108%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .home-hero__lead {
  max-width: 600px;
  margin-top: 20px;
  color: var(--moon-blue);
  font-size: 16px;
  line-height: 1.8;
}

.page-home .home-hero__cta {
  margin-top: 28px;
}

.page-home .home-hero__toc {
  border-left: 2px solid var(--star-gold);
  padding: 8px 0 8px 20px;
}

.page-home .home-hero__toc h2 {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--moon-blue);
}

.page-home .home-hero__toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-hero__toc a {
  display: inline-flex;
  gap: 10px;
  color: var(--cloud);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s var(--ease);
}

.page-home .home-hero__toc a span {
  color: var(--star-gold);
  font-weight: 700;
}

.page-home .home-hero__toc a:hover {
  color: var(--star-gold);
}

/* ===== 核心栏目导航 ===== */
.page-home .core-nav {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--sky-deep) 0%, var(--sky-layer) 130%);
}

.page-home .core-nav__head {
  max-width: 720px;
}

.page-home .core-nav__head > p {
  margin: 14px 0 0;
  color: var(--moon-blue);
  line-height: 1.8;
}

.page-home .core-nav__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 36px;
}

.page-home .core-nav__list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--home-line-blue);
}

.page-home .core-nav__item {
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 16px;
  row-gap: 6px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--home-line-blue);
  color: var(--cloud);
  text-decoration: none;
  transition: background-color 0.3s var(--ease), padding 0.3s var(--ease);
}

.page-home .core-nav__item:hover {
  background: var(--home-gold-glow);
  padding-left: 16px;
}

.page-home .core-nav__num {
  grid-row: 1;
  grid-column: 1;
  color: var(--star-gold);
  font-size: 13px;
  font-weight: 900;
}

.page-home .core-nav__name {
  grid-row: 1;
  grid-column: 2;
  font-size: 18px;
  font-weight: 700;
}

.page-home .core-nav__meta {
  grid-row: 2;
  grid-column: 2;
  color: var(--moon-blue);
  font-size: 13px;
  line-height: 1.5;
}

.page-home .core-nav__figure {
  margin: 0;
  border: 1px solid var(--home-line-blue);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
}

.page-home .core-nav__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
}

.page-home .core-nav__figure p {
  margin: 12px 4px 4px;
  color: var(--moon-blue);
  font-size: 13px;
  line-height: 1.6;
}

.page-home .core-nav__hint {
  margin: 24px 0 0;
  padding: 14px 18px;
  border-left: 3px solid var(--star-gold);
  background: rgba(245, 179, 0, 0.08);
  color: var(--cloud);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== 数据更新节奏 ===== */
.page-home .data-rhythm {
  position: relative;
  padding: 72px 0;
  background:
    linear-gradient(rgba(10, 25, 48, 0.92), rgba(10, 25, 48, 0.92)),
    repeating-linear-gradient(135deg, rgba(46, 94, 78, 0.18) 0 2px, transparent 2px 14px);
}

.page-home .data-rhythm__head {
  max-width: 760px;
}

.page-home .data-rhythm__head > p {
  margin: 14px 0 0;
  color: var(--moon-blue);
  line-height: 1.8;
}

.page-home .data-rhythm__grid {
  margin-top: 40px;
}

.page-home .data-rhythm__card {
  padding: 28px 24px;
}

.page-home .data-rhythm__value {
  display: inline-block;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.1;
  color: var(--star-gold);
  margin-bottom: 14px;
}

.page-home .data-rhythm__card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
}

.page-home .data-rhythm__card p {
  margin: 0;
  color: var(--moon-blue);
  font-size: 14px;
  line-height: 1.75;
}

.page-home .data-rhythm__banner {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px dashed rgba(245, 179, 0, 0.5);
  border-radius: var(--radius);
  color: var(--cloud);
  font-size: 14px;
  line-height: 1.8;
  background: rgba(245, 179, 0, 0.06);
}

/* ===== 热门赛事战报 ===== */
.page-home .match-reports {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--sky-layer) 0%, var(--sky-deep) 120%);
}

.page-home .match-reports__head {
  max-width: 720px;
}

.page-home .match-reports__head > p {
  margin: 14px 0 0;
  color: var(--moon-blue);
  line-height: 1.8;
}

.page-home .match-reports__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 36px;
}

.page-home .report-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--home-line-blue);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.page-home .report-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 179, 0, 0.55);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.38);
}

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

.page-home .report-card__body {
  padding: 24px;
}

.page-home .report-card__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  background: rgba(230, 57, 70, 0.16);
  color: var(--flame-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
}

.page-home .report-card__body h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.page-home .report-card__body p {
  margin: 0 0 18px;
  color: var(--moon-blue);
  font-size: 14px;
  line-height: 1.75;
}

/* ===== 会员权益对照 ===== */
.page-home .member-benefits {
  padding: 72px 0;
}

.page-home .member-benefits__head {
  max-width: 760px;
}

.page-home .member-benefits__head > p {
  margin: 14px 0 0;
  color: var(--moon-blue);
  line-height: 1.8;
}

.page-home .member-benefits__img {
  margin: 28px 0 32px;
  border: 1px solid var(--home-line-blue);
  border-radius: var(--radius);
  overflow: hidden;
}

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

.page-home .member-benefits__table {
  overflow-x: auto;
  border: 1px solid var(--home-line-blue);
  border-radius: var(--radius);
}

.page-home .benefits-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.03);
}

.page-home .benefits-table th,
.page-home .benefits-table td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid var(--home-line-blue);
  font-size: 14px;
}

.page-home .benefits-table th:first-child,
.page-home .benefits-table td:first-child {
  text-align: left;
  font-weight: 700;
}

.page-home .benefits-table thead th {
  background: var(--sky-layer);
  color: var(--cloud);
  font-weight: 700;
}

.page-home .benefits-table tbody tr:last-child td,
.page-home .benefits-table tbody tr:last-child th {
  border-bottom: none;
}

.page-home .benefits-table td {
  color: var(--moon-blue);
}

.page-home .benefits-table td:first-child {
  color: var(--cloud);
}

.page-home .member-benefits__foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  align-items: flex-start;
}

.page-home .member-benefits__foot p {
  margin: 0;
  color: var(--moon-blue);
  font-size: 14px;
  line-height: 1.7;
}

/* ===== 反馈与服务 ===== */
.page-home .feedback {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--sky-deep), var(--home-deep-bg));
  border-top: 1px solid var(--home-line-blue);
}

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

.page-home .feedback__main > p {
  margin: 14px 0 0;
  color: var(--moon-blue);
  line-height: 1.8;
  max-width: 640px;
}

.page-home .feedback__main h3 {
  margin: 28px 0 8px;
  font-size: 18px;
  font-weight: 700;
}

.page-home .feedback__honor {
  display: inline-block;
  margin: 18px 0 0;
  padding: 6px 12px;
  border: 1px solid var(--star-gold);
  border-radius: 999px;
  color: var(--star-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-home .feedback__side {
  border-left: 2px solid var(--star-gold);
  padding-left: 24px;
}

.page-home .feedback__side h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
}

.page-home .feedback__side ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .feedback__side a {
  color: var(--moon-blue);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s var(--ease);
}

.page-home .feedback__side a:hover {
  color: var(--star-gold);
}

/* ===== 桌面端布局调整 ===== */
@media (min-width: 1025px) {
  .page-home .home-hero {
    min-height: 92vh;
    padding-bottom: 72px;
  }

  .page-home .home-hero__orbit {
    display: block;
  }

  .page-home .home-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 64px;
  }

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

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

  .page-home .core-nav__body {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
  }

  .page-home .core-nav__item {
    grid-template-columns: 48px 1fr auto;
    align-items: center;
    gap: 0 20px;
  }

  .page-home .core-nav__num {
    grid-row: auto;
    grid-column: auto;
  }

  .page-home .core-nav__name {
    grid-row: auto;
    grid-column: auto;
  }

  .page-home .core-nav__meta {
    grid-row: auto;
    grid-column: auto;
    text-align: right;
  }

  .page-home .match-reports__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

  .page-home .report-card--featured .report-card__img {
    height: 280px;
  }

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

  .page-home .feedback__inner {
    grid-template-columns: 1fr 0.4fr;
    gap: 72px;
  }
}
