.page-home {
  background: var(--c-canvas);
  color: var(--c-dark);
}

/* ---------- 首页前奏 ---------- */
.page-home .home-intro {
  padding: 32px 0 48px;
}

.page-home .home-intro__layout {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}

@media (min-width: 900px) {
  .page-home .home-intro__layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 48px;
    align-items: start;
  }
}

.page-home .home-intro__edition {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 14px;
  background: var(--c-deep);
  color: var(--c-white);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.1em;
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--c-orange);
}

.page-home .home-intro__title {
  margin: 0 0 18px;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4.6vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
  color: var(--c-deep);
}

.page-home .home-intro__lead {
  max-width: 620px;
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-gray);
}

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

.page-home .home-intro__index {
  position: relative;
  overflow: hidden;
  padding: 26px 24px 18px;
  background: var(--c-deep);
  color: var(--c-white);
  border-radius: var(--radius-lg);
}

.page-home .home-intro__index::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, transparent 0 48%, var(--c-orange) 48%);
}

.page-home .home-intro__index-label {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--c-gray);
}

.page-home .home-intro__index-list {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,0.16);
}

.page-home .home-intro__index-list li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-home .home-intro__index-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 2px;
  color: var(--c-white);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 14px;
  transition: color 0.25s var(--ease), padding-left 0.25s var(--ease);
}

@media (hover: hover) {
  .page-home .home-intro__index-list a:hover {
    color: var(--c-orange);
    padding-left: 8px;
  }
}

/* ---------- 章节标题通用 ---------- */
.page-home .home-section-head {
  position: relative;
  margin-bottom: 30px;
}

.page-home .home-section-head__meta {
  margin: 0 0 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  color: var(--c-orange);
}

.page-home .home-section-head__title {
  margin: 0;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  color: var(--c-deep);
}

.page-home .home-section-head__note {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-gray);
}

.page-home .home-section-head--inverse .home-section-head__title {
  color: var(--c-white);
}

.page-home .home-section-head--inverse .home-section-head__note {
  color: rgba(255,255,255,0.66);
}

/* ---------- 01 比赛日 ---------- */
.page-home .home-matchday {
  position: relative;
  margin-top: 16px;
  padding: 56px 0 64px;
  overflow: hidden;
  background: var(--c-deep);
  color: var(--c-white);
}

.page-home .home-matchday::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 26px;
  background: linear-gradient(115deg, var(--c-orange) 0 14%, rgba(255,107,0,0.35) 14% 24%, transparent 24%);
}

.page-home .home-matchday::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(0,230,118,0.22), transparent 68%);
  pointer-events: none;
}

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

@media (min-width: 900px) {
  .page-home .home-matchday__layout {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 40px;
    align-items: start;
  }
}

.page-home .home-matchday__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .match-card {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 16px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), background 0.25s var(--ease);
}

@media (hover: hover) {
  .page-home .match-card:hover {
    border-color: rgba(255,107,0,0.55);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
  }
}

.page-home .match-card__time {
  flex: 0 0 54px;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-orange);
}

.page-home .match-card__teams {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex: 1 1 220px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.page-home .match-card__vs {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.38);
}

.page-home .match-card__status {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255,255,255,0.78);
}

.page-home .live-dot {
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 rgba(0,230,118,0.5);
  animation: homeLivePulse 1.8s var(--ease) infinite;
}

@keyframes homeLivePulse {
  0% { box-shadow: 0 0 0 0 rgba(0,230,118,0.45); }
  70% { box-shadow: 0 0 0 8px rgba(0,230,118,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,230,118,0); }
}

.page-home .match-card__save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  padding: 8px 14px;
  border: 1px solid rgba(0,230,118,0.42);
  border-radius: 999px;
  background: transparent;
  color: var(--c-green);
  font-family: var(--font-mono);
  font-size: 12px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

@media (hover: hover) {
  .page-home .match-card__save:hover {
    background: var(--c-green);
    color: var(--c-deep);
  }
}

.page-home .match-card__save:focus-within {
  outline: 2px solid var(--c-green);
  outline-offset: 2px;
}

.page-home .match-card__save-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-home .match-card__save-input:checked + span {
  background: var(--c-green);
  border-color: var(--c-green);
  color: var(--c-deep);
}

.page-home .home-matchday__spotlight {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 14px;
  padding: 14px;
  background: rgba(255,255,255,0.035);
  border: 1px dashed rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
}

.page-home .home-matchday__spotlight img {
  display: block;
  width: 112px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

.page-home .home-matchday__chip {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  background: var(--c-orange);
  color: var(--c-deep);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.page-home .home-matchday__spotlight h3 {
  margin: 0 0 6px;
  font-family: var(--font-head);
  font-size: 16px;
}

.page-home .home-matchday__spotlight p {
  margin: 0 0 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255,255,255,0.68);
}

.page-home .home-matchday__spotlight a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-green);
  text-decoration: none;
}

.page-home .home-matchday__aside {
  position: relative;
}

.page-home .home-matchday__panel {
  padding: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
}

@media (min-width: 900px) {
  .page-home .home-matchday__panel {
    position: sticky;
    top: 96px;
  }
}

.page-home .home-matchday__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  padding: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
}

.page-home .home-matchday__tab-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.page-home .home-matchday__tab-label {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 13px;
  white-space: nowrap;
  color: rgba(255,255,255,0.68);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.page-home .home-matchday__tab-input:checked + .home-matchday__tab-label {
  background: var(--c-orange);
  color: var(--c-deep);
  font-weight: 700;
}

.page-home .home-matchday__tab-input:focus-visible + .home-matchday__tab-label {
  outline: 2px solid var(--c-soft-orange);
  outline-offset: 2px;
}

.page-home .home-matchday__panel-content {
  display: none;
}

.page-home #tab-standings:checked ~ .home-matchday__panel-content--standings,
.page-home #tab-lineups:checked ~ .home-matchday__panel-content--lineups {
  display: block;
}

.page-home .home-matchday__standings {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  counter-reset: homeStanding;
}

.page-home .home-matchday__standings li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 2px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.page-home .home-matchday__standings li::before {
  counter-increment: homeStanding;
  content: counter(homeStanding, decimal-leading-zero);
  width: 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-gray);
}

.page-home .home-matchday__standings li span {
  font-size: 14px;
  color: var(--c-white);
}

.page-home .home-matchday__standings li strong {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--c-green);
}

.page-home .home-matchday__lineup-title {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
}

.page-home .home-matchday__lineups {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.page-home .home-matchday__lineups li {
  margin-bottom: 8px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.page-home .home-matchday__lineup-note {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
}

/* ---------- 02 专题 ---------- */
.page-home .home-theme {
  padding: 56px 0 64px;
}

.page-home .home-theme__layout {
  display: grid;
  gap: 30px;
}

@media (min-width: 960px) {
  .page-home .home-theme__layout {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 44px;
    align-items: stretch;
  }
}

.page-home .home-theme__image {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 40px rgba(10,31,68,0.12);
}

.page-home .home-theme__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

@media (hover: hover) {
  .page-home .home-theme__image:hover img {
    transform: scale(1.03);
  }
}

.page-home .home-theme__image figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 5px 14px;
  background: rgba(10,31,68,0.82);
  color: var(--c-white);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.page-home .home-theme__list {
  counter-reset: homeTheme;
}

.page-home .theme-card {
  position: relative;
  margin-bottom: 16px;
  padding: 20px 22px 18px 26px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

@media (hover: hover) {
  .page-home .theme-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(10,31,68,0.1);
  }
}

.page-home .theme-card::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 26px;
  width: 5px;
  height: 38px;
  background: var(--c-orange);
  border-radius: 0 999px 999px 0;
}

.page-home .home-theme__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  background: var(--c-canvas);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--c-gray);
}

.page-home .theme-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-head);
  font-size: 18px;
  line-height: 1.4;
  color: var(--c-deep);
}

.page-home .theme-card h3::before {
  counter-increment: homeTheme;
  content: "T" counter(homeTheme, decimal-leading-zero) "  ";
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-orange);
}

.page-home .theme-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-gray);
}

.page-home .theme-card__link {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-orange);
  text-decoration: none;
}

/* ---------- 03 专家复盘 ---------- */
.page-home .home-review {
  position: relative;
  margin-top: 12px;
  padding: 60px 0 68px;
  overflow: hidden;
  background: var(--c-deep);
  color: var(--c-white);
}

.page-home .home-review::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 32px;
  background: linear-gradient(115deg, var(--c-orange) 0 22%, rgba(255,107,0,0.32) 22% 36%, transparent 36%);
}

.page-home .home-review::after {
  content: "";
  position: absolute;
  top: 90px;
  right: -70px;
  width: 200px;
  height: 200px;
  border: 36px solid rgba(0,230,118,0.16);
  border-radius: 50%;
  pointer-events: none;
}

.page-home .home-review__layout {
  display: grid;
  gap: 28px;
}

@media (min-width: 960px) {
  .page-home .home-review__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 44px;
    align-items: center;
  }
}

.page-home .home-review__hero {
  position: relative;
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 44px rgba(0,0,0,0.2);
}

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

.page-home .home-review__content {
  position: relative;
  z-index: 1;
}

.page-home .home-review__card {
  padding: 24px 26px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
}

.page-home .home-review__echo {
  margin: 0 0 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--c-green);
}

.page-home .home-review__card h3 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 22px;
  line-height: 1.3;
}

.page-home .home-review__card p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

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

.page-home .home-review__archives li {
  padding: 10px 0 10px 2px;
  border-bottom: 1px dashed rgba(255,255,255,0.14);
}

.page-home .home-review__archives li::before {
  content: "#";
  margin-right: 8px;
  font-family: var(--font-mono);
  color: var(--c-orange);
}

.page-home .home-review__archives a {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

@media (hover: hover) {
  .page-home .home-review__archives a:hover {
    color: var(--c-soft-orange);
  }
}

/* ---------- 04 2024秋季版检索 ---------- */
.page-home .home-search {
  position: relative;
  padding: 56px 0 64px;
}

.page-home .home-search::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 0;
  width: 26%;
  height: 10px;
  background: var(--c-orange);
  border-radius: 999px 0 0 999px;
}

.page-home .home-search__layout {
  display: grid;
  gap: 30px;
}

@media (min-width: 960px) {
  .page-home .home-search__layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 44px;
    align-items: center;
  }
}

.page-home .home-search__figure {
  position: relative;
  min-height: 260px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--c-deep);
  box-shadow: 0 18px 40px rgba(10,31,68,0.12);
}

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

.page-home .home-search__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(10,31,68,0.62), rgba(255,107,0,0.18) 55%, transparent);
  pointer-events: none;
}

.page-home .home-search__lead {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--c-gray);
}

.page-home .home-search__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

.page-home .home-search__chips li {
  padding: 7px 14px;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--c-gray);
}

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

.page-home .home-search__points li {
  position: relative;
  padding: 7px 0 7px 28px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-dark);
}

.page-home .home-search__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px;
  height: 5px;
  border-radius: 999px;
  background: var(--c-orange);
}

.page-home .home-search__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

/* ---------- 结尾品牌区块 ---------- */
.page-home .home-outro {
  position: relative;
  padding: 48px 0 56px;
  overflow: hidden;
  background: var(--c-deep);
  color: var(--c-white);
}

.page-home .home-outro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--c-orange) 0 46%, var(--c-green) 46% 100%);
}

.page-home .home-outro::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 40px solid rgba(255,107,0,0.14);
  border-radius: 50%;
}

.page-home .home-outro__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

@media (min-width: 900px) {
  .page-home .home-outro__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 44px;
    align-items: start;
  }
}

.page-home .home-outro h2 {
  margin: 0 0 12px;
  font-family: var(--font-head);
  font-size: 26px;
}

.page-home .home-outro__brand p {
  max-width: 360px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.68);
}

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

.page-home .home-outro__stat {
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
}

.page-home .home-outro__stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 24px;
  line-height: 1.15;
  color: var(--c-orange);
}

.page-home .home-outro__stat span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.68);
}

.page-home .home-outro__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-outro__links a {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  font-size: 14px;
  text-align: center;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

@media (hover: hover) {
  .page-home .home-outro__links a:hover {
    background: var(--c-orange);
    color: var(--c-deep);
  }
}

/* ---------- 入场动效 ---------- */
@media (prefers-reduced-motion: no-preference) {
  .page-home .home-intro__title {
    animation: homeTitleIn 0.7s var(--ease) both;
  }
}

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