.page-home {
  --home-green: #10B981;
  overflow-x: hidden;
}

/* ===== Hero 首屏 ===== */
.page-home .home-hero {
  position: relative;
  background: var(--navy-950);
  color: var(--white);
  padding: 56px 0 88px;
  overflow: hidden;
}

.page-home .hero-orbit {
  position: absolute;
  left: -80px;
  top: 40px;
  width: 420px;
  height: 420px;
  opacity: 0.7;
  pointer-events: none;
}

.page-home .hero-orbit svg {
  width: 100%;
  height: 100%;
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.page-home .hero-kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-400);
  margin: 0 0 14px;
}

.page-home .hero-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.18;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
  max-width: 620px;
}

.page-home .hero-lead {
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 0 28px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .hero-actions .badge {
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid var(--orange-500);
  color: var(--white);
  background: rgba(255, 107, 44, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-home .hero-actions .badge:hover,
.page-home .hero-actions .badge:focus-visible {
  background: var(--orange-500);
  border-color: var(--orange-500);
  transform: translateY(-2px);
}

.page-home .hero-visual {
  position: relative;
  z-index: 1;
  max-width: 420px;
  margin: 0 auto;
}

.page-home .hero-image-frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
}

.page-home .hero-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
}

.page-home .hero-medal {
  position: absolute;
  top: -20px;
  left: -18px;
  width: 148px;
  height: 148px;
  background: var(--orange-500);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 12px 36px rgba(255, 107, 44, 0.4);
  text-align: center;
  line-height: 1.1;
}

.page-home .hero-medal__num {
  font-family: var(--font-mono);
  font-size: 40px;
  font-weight: 700;
}

.page-home .hero-medal__text {
  font-size: 12px;
  font-weight: 600;
  padding: 0 16px;
  margin-top: 4px;
}

.page-home .hero-statusbar {
  position: relative;
  z-index: 2;
  margin-top: 44px;
  padding: 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .hero-statusbar__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.25);
  animation: home-pulse 2s ease-in-out infinite;
}

.page-home .hero-statusbar__time {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--white);
}

.page-home .hero-statusbar__divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.2);
}

.page-home .hero-statusbar__stat {
  font-family: var(--font-mono);
  color: var(--orange-400);
}

.page-home .hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 64px;
  display: block;
  z-index: 1;
}

@keyframes home-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ===== 今日战报与主客场战绩 ===== */
.page-home .home-daily {
  background: var(--gray-100);
  padding: 64px 0;
}

.page-home .daily-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
}

.page-home .daily-reports__head {
  margin-bottom: 20px;
}

.page-home .daily-reports__kicker,
.page-home .standings-head__kicker,
.page-home .catalog-copy__kicker,
.page-home .archive-content__kicker,
.page-home .commute-copy__kicker {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--orange-500);
}

.page-home .daily-reports__title,
.page-home .standings-head__title,
.page-home .catalog-copy__title,
.page-home .archive-content__title,
.page-home .commute-copy__title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.page-home .daily-reports__desc,
.page-home .standings-head__desc,
.page-home .catalog-copy__desc,
.page-home .archive-content__desc,
.page-home .commute-copy__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-700);
  margin: 0;
}

/* 标签切换 */
.page-home .report-tabs {
  margin-bottom: 22px;
}

.page-home .report-tabs__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-home .report-tabs__labels {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--gray-300);
  margin-bottom: 18px;
}

.page-home .report-tabs__label {
  cursor: pointer;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s ease, border-color 0.2s ease;
  user-select: none;
}

.page-home .report-tabs__label:hover {
  color: var(--orange-500);
}

.page-home #tab-football:checked ~ .report-tabs__labels label[for="tab-football"],
.page-home #tab-basketball:checked ~ .report-tabs__labels label[for="tab-basketball"],
.page-home #tab-tennis:checked ~ .report-tabs__labels label[for="tab-tennis"] {
  color: var(--orange-500);
  border-bottom-color: var(--orange-500);
}

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

.page-home .report-panel {
  display: none;
}

.page-home #tab-football:checked ~ .report-tabs__panels .report-panel--football,
.page-home #tab-basketball:checked ~ .report-tabs__panels .report-panel--basketball,
.page-home #tab-tennis:checked ~ .report-tabs__panels .report-panel--tennis {
  display: grid;
  gap: 14px;
}

/* 战报卡片 */
.page-home .report-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .report-card:hover {
  border-color: var(--orange-500);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(8, 19, 46, 0.08);
}

.page-home .report-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.page-home .report-card__sport {
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-700);
  background: var(--gray-100);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

.page-home .report-card__score {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange-500);
}

.page-home .report-card__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 6px;
}

.page-home .report-card__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

/* 战报配图媒体 */
.page-home .daily-reports__media {
  position: relative;
  margin-top: 22px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-300);
}

.page-home .daily-reports__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 220px;
  object-fit: cover;
}

.page-home .daily-reports__media-note {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy-950);
  color: var(--white);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.page-home .media-note__num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  color: var(--orange-500);
}

.page-home .media-note__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
}

/* 主客场战绩 */
.page-home .daily-standings {
  padding-top: 8px;
}

.page-home .standings-head__title {
  font-size: 26px;
}

.page-home .standings-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.page-home .standing-card {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  padding: 16px 18px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .standing-card:hover {
  border-color: var(--orange-500);
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(8, 19, 46, 0.08);
}

.page-home .standing-card__team {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.page-home .standing-card__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
}

.page-home .standing-card__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray-700);
}

.page-home .standing-card__form {
  display: grid;
  gap: 8px;
}

.page-home .form-line {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-home .form-line__label {
  width: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  flex-shrink: 0;
}

.page-home .form-line__bars {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.page-home .form-bar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  transition: transform 0.2s ease;
}

.page-home .form-bar--win {
  background: var(--orange-500);
}

.page-home .form-bar--loss {
  background: var(--navy-700);
}

.page-home .form-bar--draw {
  background: var(--gray-300);
  color: var(--gray-700);
}

.page-home .standing-card:hover .form-bar:last-child {
  transform: scale(1.18);
}

.page-home .standings-more {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-500);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-home .standings-more:hover {
  border-bottom-color: var(--orange-500);
}

/* ===== 安卓升级版内容目录 ===== */
.page-home .home-catalog {
  background: var(--navy-900);
  color: var(--white);
  padding: 64px 0;
}

.page-home .catalog-copy__kicker {
  color: var(--orange-400);
}

.page-home .catalog-copy__title {
  color: var(--white);
}

.page-home .catalog-copy__desc {
  color: rgba(255, 255, 255, 0.72);
}

.page-home .catalog-copy .button--ghost {
  margin-top: 22px;
  display: inline-block;
  color: var(--white);
  border: 1px solid var(--orange-400);
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.page-home .catalog-copy .button--ghost:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  transform: translateY(-2px);
}

.page-home .catalog-copy {
  margin-bottom: 28px;
}

.page-home .catalog-tree {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px;
}

.page-home .catalog-tree__root {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-400);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.page-home .catalog-node {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: background 0.2s ease;
  border-radius: 8px;
}

.page-home .catalog-node:last-child {
  border-bottom: none;
}

.page-home .catalog-node:hover {
  background: rgba(255, 107, 44, 0.06);
}

.page-home .catalog-node__icon {
  color: var(--orange-500);
  font-size: 12px;
  margin-top: 5px;
  flex-shrink: 0;
}

.page-home .catalog-node__body {
  flex: 1;
}

.page-home .catalog-node__name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 4px;
}

.page-home .catalog-node__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.page-home .catalog-node__freq {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange-400);
  background: rgba(255, 107, 44, 0.1);
  border: 1px solid rgba(255, 107, 44, 0.22);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ===== 旧版本资料索引 ===== */
.page-home .home-archive {
  background: var(--white);
  padding: 64px 0;
}

.page-home .archive-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-home .archive-content__kicker {
  color: var(--orange-500);
}

.page-home .archive-steps {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .archive-step {
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  border: 1px solid var(--gray-300);
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .archive-step:hover {
  border-color: var(--orange-500);
  transform: translateY(-2px);
}

.page-home .archive-step__num {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  color: var(--orange-500);
  flex-shrink: 0;
  line-height: 1.4;
}

.page-home .archive-step__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin: 0 0 4px;
}

.page-home .archive-step__desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-700);
  margin: 0;
}

.page-home .archive-links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.page-home .archive-links__item {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-500);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.page-home .archive-links__item:hover {
  border-bottom-color: var(--orange-500);
}

.page-home .archive-visual {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--gray-300);
  box-shadow: 0 16px 48px rgba(8, 19, 46, 0.12);
}

.page-home .archive-visual__img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
}

/* ===== 通勤刷战报 ===== */
.page-home .home-commute {
  position: relative;
  padding: 72px 0 44px;
  overflow: hidden;
  background: var(--navy-950);
}

.page-home .commute-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .commute-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-home .commute-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 19, 46, 0.94) 0%, rgba(11, 27, 63, 0.82) 55%, rgba(255, 107, 44, 0.18) 100%);
}

.page-home .commute-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.page-home .commute-copy__kicker {
  color: var(--orange-400);
}

.page-home .commute-copy__title {
  color: var(--white);
}

.page-home .commute-copy__desc {
  color: rgba(255, 255, 255, 0.75);
}

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

.page-home .commute-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 20px 28px;
  min-width: 160px;
  backdrop-filter: blur(4px);
}

.page-home .commute-stat__num {
  font-family: var(--font-mono);
  font-size: 42px;
  font-weight: 700;
  color: var(--orange-500);
  line-height: 1;
  display: block;
}

.page-home .commute-stat__unit {
  font-size: 20px;
  margin-left: 2px;
}

.page-home .commute-stat__label {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  line-height: 1.4;
}

.page-home .commute-links {
  position: relative;
  z-index: 2;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.page-home .commute-link {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .commute-link:hover {
  color: var(--orange-400);
}

.page-home .commute-link__sep {
  color: rgba(255, 255, 255, 0.25);
  font-size: 12px;
}

/* ===== 响应式 ===== */
@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 72px 0 96px;
  }

  .page-home .hero-title {
    font-size: 48px;
  }

  .page-home .hero-lead {
    font-size: 18px;
  }

  .page-home .hero-visual {
    max-width: 440px;
  }

  .page-home .hero-statusbar {
    flex-wrap: nowrap;
  }

  .page-home .daily-layout {
    gap: 40px;
  }

  .page-home .catalog-layout {
    gap: 40px;
  }

  .page-home .archive-layout {
    gap: 40px;
  }

  .page-home .commute-stats {
    gap: 20px;
  }

  .page-home .commute-stat {
    min-width: 180px;
  }
}

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

  .page-home .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }

  .page-home .hero-copy {
    flex: 1.1;
  }

  .page-home .hero-visual {
    flex: 0.9;
    max-width: none;
    margin: 0;
  }

  .page-home .hero-title {
    font-size: 56px;
    margin-bottom: 24px;
  }

  .page-home .hero-lead {
    font-size: 19px;
    margin-bottom: 32px;
  }

  .page-home .hero-medal {
    width: 170px;
    height: 170px;
    top: -24px;
    left: -28px;
  }

  .page-home .hero-medal__num {
    font-size: 46px;
  }

  .page-home .hero-statusbar {
    margin-top: 56px;
  }

  .page-home .home-daily,
  .page-home .home-catalog,
  .page-home .home-archive {
    padding: 88px 0;
  }

  .page-home .daily-layout {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }

  .page-home .catalog-layout {
    grid-template-columns: 5fr 7fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .catalog-copy {
    margin-bottom: 0;
  }

  .page-home .catalog-tree {
    padding: 32px;
  }

  .page-home .archive-layout {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }

  .page-home .archive-steps {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .page-home .archive-step {
    padding: 18px 20px;
  }

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

  .page-home .commute-copy {
    max-width: 54%;
  }

  .page-home .commute-stats {
    max-width: 46%;
    justify-content: flex-end;
  }
}
</PAGE_CSS>
