.page-home {
  --home-gold: #D4A843;
  --home-gold-bright: #EBC87A;
  --home-red: #E63946;
  --home-wine: #7A1E1E;
  --home-bg: #0B1F1A;
  --home-panel: #12352D;
  --home-text: #F4EFE6;
  --home-dim: #8CA69A;
  --home-radius-lg: 28px;
  --home-radius-md: 18px;
  --home-radius-sm: 10px;
  position: relative;
  background: var(--home-bg);
  color: var(--home-text);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

.page-home [id] {
  scroll-margin-top: 84px;
}

/* ===== 首屏：框景体育场 ===== */
.page-home .hero-arena {
  position: relative;
  margin: 0 clamp(12px, 3vw, 40px) clamp(32px, 6vw, 80px);
  border: 4px solid var(--home-gold);
  border-radius: var(--home-radius-lg);
  background:
    linear-gradient(145deg, rgba(18, 53, 45, .92), rgba(11, 31, 26, .98)),
    repeating-linear-gradient(0deg, transparent 0 36px, rgba(244, 239, 230, .04) 36px 38px);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .45), 0 30px 60px rgba(0, 0, 0, .35);
  overflow: hidden;
}

.page-home .hero-arena__mesh {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(244, 239, 230, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 239, 230, .05) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  z-index: 0;
}

.page-home .hero-arena__arch {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 320px;
  border-radius: 50%;
  border: 4px solid rgba(212, 168, 67, .35);
  border-top: 0;
  pointer-events: none;
  z-index: 1;
}

.page-home .hero-arena__speed {
  position: absolute;
  top: 0;
  right: -40px;
  width: 120px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(212, 168, 67, .10), transparent);
  clip-path: polygon(38% 0, 100% 0, 62% 100%, 0 100%);
  pointer-events: none;
  z-index: 1;
}

.page-home .hero-arena__top {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 4px;
  border-bottom: 2px solid rgba(212, 168, 67, .25);
  margin-bottom: 18px;
}

.page-home .hero-arena__crumb {
  margin: 0;
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--home-dim);
  font-family: var(--font-mono);
}

.page-home .hero-arena__crumb span {
  margin: 0 6px;
  color: var(--home-gold);
}

.page-home .hero-arena__live {
  margin: 0;
  font-size: .8rem;
  color: var(--home-dim);
}

.page-home .hero-arena__live .status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.page-home .hero-arena__live .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-teal, #2A9D8F);
  box-shadow: 0 0 0 4px rgba(42, 157, 143, .18);
  animation: pageHomePulse 2.2s infinite;
}

@keyframes pageHomePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(42, 157, 143, .25); }
  50% { box-shadow: 0 0 0 8px rgba(42, 157, 143, .05); }
}

.page-home .hero-arena__layout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 20px;
  padding: 0 18px 20px;
}

.page-home .hero-arena__content {
  min-width: 0;
}

.page-home .hero-arena__kicker {
  margin: 0 0 10px;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--home-gold-bright);
  font-family: var(--font-mono);
}

.page-home .hero-title {
  margin: 0 0 16px;
  font-family: var(--font-headline);
  font-size: clamp(2.6rem, 9vw, 6rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: .92;
  letter-spacing: .01em;
  color: var(--home-text);
}

.page-home .hero-title span {
  color: var(--home-gold);
}

.page-home .hero-arena__lead {
  margin: 0 0 22px;
  font-size: .92rem;
  color: var(--home-dim);
  max-width: 52ch;
}

.page-home .hero-matchlist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
}

.page-home .hero-match {
  position: relative;
  padding: 12px 14px;
  background: rgba(11, 31, 26, .85);
  border: 2px solid rgba(244, 239, 230, .14);
  border-radius: var(--home-radius-sm);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .35);
  transition: transform .2s ease, border-color .2s ease;
}

.page-home .hero-match:hover {
  transform: translate(-2px, -2px);
  border-color: rgba(212, 168, 67, .6);
}

.page-home .hero-match--hot {
  border-color: rgba(230, 57, 70, .65);
  background: linear-gradient(120deg, rgba(122, 30, 30, .28), rgba(11, 31, 26, .9) 55%);
}

.page-home .hero-match__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.page-home .hero-match__league {
  font-size: .72rem;
  color: var(--home-dim);
  font-family: var(--font-mono);
}

.page-home .hero-match__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 0 0 4px;
  font-size: .92rem;
  font-weight: 700;
  letter-spacing: .02em;
}

.page-home .hero-match__score {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--home-gold-bright);
  white-space: nowrap;
}

.page-home .hero-match--hot .hero-match__score {
  color: var(--home-text);
}

.page-home .hero-match__note {
  margin: 0;
  font-size: .72rem;
  color: var(--home-dim);
}

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

.page-home .hero-arena__actions .btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--home-radius-sm);
  font-weight: 700;
  font-size: .88rem;
  border: 2px solid var(--home-gold);
  background: var(--home-gold);
  color: #0B1F1A;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .35);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.page-home .hero-arena__actions .btn:hover {
  background: var(--home-gold-bright);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .4);
}

.page-home .hero-arena__actions .btn-outline {
  background: transparent;
  color: var(--home-gold-bright);
}

.page-home .hero-arena__actions .btn-outline:hover {
  background: rgba(212, 168, 67, .15);
  color: var(--home-text);
}

.page-home .hero-arena__photo {
  position: relative;
  min-height: 260px;
  border-radius: var(--home-radius-md);
  border: 2px solid rgba(212, 168, 67, .4);
  overflow: hidden;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .4);
}

.page-home .hero-arena__img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.15) contrast(1.05);
}

.page-home .hero-arena__photo-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: rgba(11, 31, 26, .88);
  border: 2px solid var(--home-gold);
  border-radius: var(--home-radius-sm);
  font-size: .72rem;
  color: var(--home-text);
}

.page-home .hero-arena__photo-badge .tag {
  font-family: var(--font-mono);
  letter-spacing: .1em;
}

.page-home .hero-arena__panel {
  background: var(--home-panel);
  border: 2px solid rgba(244, 239, 230, .16);
  border-radius: var(--home-radius-md);
  padding: 16px 14px;
  font-size: .8rem;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .35);
}

.page-home .hero-arena__panel-title {
  margin: 0 0 14px;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  color: var(--home-gold);
  text-transform: uppercase;
}

.page-home .hero-arena__status-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(11, 31, 26, .6);
  border-radius: var(--home-radius-sm);
  border: 2px dashed rgba(42, 157, 143, .5);
  margin-bottom: 14px;
}

.page-home .hero-arena__status-card .status-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-teal, #2A9D8F);
  box-shadow: 0 0 12px rgba(42, 157, 143, .7);
}

.page-home .hero-arena__status-main {
  margin: 0;
  font-weight: 700;
  color: var(--home-text);
}

.page-home .hero-arena__status-sub {
  margin: 0;
  font-size: .7rem;
  color: var(--home-dim);
}

.page-home .hero-arena__health {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.page-home .hero-arena__health-row {
  display: grid;
  grid-template-columns: 40px 1fr 30px;
  align-items: center;
  gap: 6px;
  font-size: .68rem;
  color: var(--home-dim);
  font-family: var(--font-mono);
}

.page-home .hero-arena__health-fill {
  display: block;
  height: 6px;
  width: 0;
  background: var(--home-gold);
  border-radius: 99px;
  position: relative;
  overflow: hidden;
}

.page-home .hero-arena__health-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(244, 239, 230, .5), transparent);
  transform: translateX(-100%);
  animation: pageHomeShine 2.4s ease-in-out infinite;
}

@keyframes pageHomeShine {
  0%, 100% { transform: translateX(-100%); }
  35%, 65% { transform: translateX(100%); }
}

.page-home .hero-arena__health-fill--full { width: 100%; }
.page-home .hero-arena__health-fill--mid { width: 65%; }

.page-home .hero-arena__foot {
  padding-top: 12px;
  border-top: 2px solid rgba(212, 168, 67, .25);
  text-align: right;
}

.page-home .hero-arena__foot .tag {
  display: inline-block;
  margin-bottom: 6px;
}

.page-home .hero-arena__foot-number {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 700;
  color: var(--home-gold-bright);
  line-height: 1;
}

.page-home .hero-arena__foot > p:last-child {
  margin: 4px 0 0;
  font-size: .72rem;
  color: var(--home-dim);
}

.page-home .hero-arena__nav {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 6px 18px 18px;
}

.page-home .hero-arena__navitem {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  text-decoration: none;
  color: var(--home-dim);
  font-size: .75rem;
  padding: 6px 10px;
  border: 2px solid transparent;
  border-radius: 999px;
  transition: color .2s ease, border-color .2s ease;
}

.page-home .hero-arena__navitem span {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--home-gold);
}

.page-home .hero-arena__navitem:hover {
  color: var(--home-text);
  border-color: rgba(212, 168, 67, .6);
}

/* ===== 通用区块 ===== */
.page-home .section {
  padding: clamp(28px, 5vw, 68px) clamp(16px, 3vw, 40px);
  scroll-margin-top: 84px;
}

.page-home .section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 26px;
}

.page-home .section-index {
  margin: 0;
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--home-gold);
  letter-spacing: .1em;
}

.page-home .section-title {
  font-family: var(--font-headline);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: .02em;
}

.page-home .section-head-line {
  flex: 1 1 40px;
  min-width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--home-gold), transparent);
}

.page-home .section-head-note {
  margin: 0;
  font-size: .78rem;
  color: var(--home-dim);
  font-family: var(--font-mono);
  width: 100%;
}

/* ===== 每日战报 ===== */
.page-home .daily-report {
  background:
    linear-gradient(120deg, rgba(11, 31, 26, .96), rgba(18, 53, 45, .85)),
    repeating-linear-gradient(-45deg, transparent 0 22px, rgba(244, 239, 230, .03) 22px 24px);
  border-top: 3px solid var(--home-wine);
}

.page-home .daily-report__heat {
  position: relative;
  border-radius: var(--home-radius-md);
  border: 2px solid rgba(212, 168, 67, .3);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .35);
}

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

.page-home .daily-report__legend {
  position: absolute;
  right: 14px;
  top: 10px;
  left: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  color: var(--home-text);
  background: rgba(11, 31, 26, .78);
  border-radius: 999px;
  padding: 4px 12px;
  width: max-content;
  max-width: calc(100% - 28px);
}

.page-home .daily-report__legend span:first-child {
  color: var(--home-gold-bright);
  font-family: var(--font-mono);
  margin-right: 4px;
}

.page-home .daily-report__legend i {
  flex: 1;
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, #2A9D8F, #D4A843, #E63946);
  min-width: 40px;
}

/* ===== 联赛标签页 ===== */
.page-home .league-tabs {
  position: relative;
}

.page-home .league-tab-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.page-home .league-tabbar {
  display: flex;
  gap: 8px;
  padding: 4px 4px 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(212, 168, 67, .4) transparent;
  border-bottom: 2px solid rgba(244, 239, 230, .12);
  margin-bottom: 18px;
}

.page-home .league-tab-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 2px solid rgba(244, 239, 230, .18);
  border-radius: 999px;
  background: rgba(11, 31, 26, .75);
  color: var(--home-dim);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
  flex-shrink: 0;
}

.page-home .league-tab-label svg {
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 4px;
}

.page-home .league-tab-label:hover {
  color: var(--home-text);
  border-color: rgba(212, 168, 67, .6);
}

.page-home .league-tab-input:focus-visible ~ .league-tabbar label[for="league-tab-premier"],
.page-home .league-tab-input:focus-visible ~ .league-tabbar label[for="league-tab-laliga"],
.page-home .league-tab-input:focus-visible ~ .league-tabbar label[for="league-tab-bundesliga"],
.page-home .league-tab-input:focus-visible ~ .league-tabbar label[for="league-tab-seriea"],
.page-home .league-tab-input:focus-visible ~ .league-tabbar label[for="league-tab-ligue1"],
.page-home .league-tab-input:focus-visible ~ .league-tabbar label[for="league-tab-uefa"] {
  outline: 2px solid var(--home-gold-bright);
  outline-offset: 2px;
}

.page-home #league-tab-premier:checked ~ .league-tabbar label[for="league-tab-premier"],
.page-home #league-tab-laliga:checked ~ .league-tabbar label[for="league-tab-laliga"],
.page-home #league-tab-bundesliga:checked ~ .league-tabbar label[for="league-tab-bundesliga"],
.page-home #league-tab-seriea:checked ~ .league-tabbar label[for="league-tab-seriea"],
.page-home #league-tab-ligue1:checked ~ .league-tabbar label[for="league-tab-ligue1"],
.page-home #league-tab-uefa:checked ~ .league-tabbar label[for="league-tab-uefa"] {
  color: var(--home-gold-bright);
  border-color: var(--home-gold);
  background: rgba(212, 168, 67, .12);
  box-shadow: 0 0 16px rgba(212, 168, 67, .12);
}

.page-home .league-panel {
  display: none;
  animation: pageHomeFadeUp .3s ease;
}

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

.page-home #league-tab-premier:checked ~ .league-panel--premier,
.page-home #league-tab-laliga:checked ~ .league-panel--laliga,
.page-home #league-tab-bundesliga:checked ~ .league-panel--bundesliga,
.page-home #league-tab-seriea:checked ~ .league-panel--seriea,
.page-home #league-tab-ligue1:checked ~ .league-panel--ligue1,
.page-home #league-tab-uefa:checked ~ .league-panel--uefa {
  display: block;
}

.page-home .league-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px dashed rgba(212, 168, 67, .3);
}

.page-home .league-panel__head h3 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--home-text);
}

.page-home .league-panel__head p {
  margin: 0;
  font-size: .72rem;
  color: var(--home-dim);
  font-family: var(--font-mono);
}

.page-home .league-match {
  padding: 14px 14px 12px;
  background: rgba(11, 31, 26, .65);
  border: 2px solid rgba(244, 239, 230, .1);
  border-radius: var(--home-radius-sm);
  margin-bottom: 10px;
  transition: border-color .2s ease, transform .2s ease;
}

.page-home .league-match:hover {
  border-color: rgba(212, 168, 67, .5);
  transform: translate(-2px, -2px);
}

.page-home .league-match__status {
  margin: 0 0 6px;
  font-size: .7rem;
  font-family: var(--font-mono);
  color: var(--home-gold);
  letter-spacing: .08em;
}

.page-home .league-match__row {
  margin: 0;
}

.page-home .league-match__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  font-size: .88rem;
}

.page-home .league-match__teams span:first-child {
  text-align: right;
}

.page-home .league-match__score {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  color: var(--home-gold-bright);
  white-space: nowrap;
}

.page-home .league-match__meta {
  display: flex;
  gap: 8px;
  margin: 6px 0 0;
  font-size: .72rem;
  color: var(--home-dim);
  align-items: center;
}

.page-home .league-match__meta .tag {
  flex-shrink: 0;
}

/* ===== 收藏对照 ===== */
.page-home .favorite-section {
  background:
    linear-gradient(160deg, rgba(122, 30, 30, .18), transparent 40%),
    var(--home-bg);
  border-top: 3px solid var(--home-gold);
  border-bottom: 3px solid var(--home-wine);
}

.page-home .favorite-section__intro {
  max-width: 60ch;
  margin: 0 0 26px;
  font-size: .95rem;
  color: var(--home-dim);
}

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

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

.page-home .team-card {
  background: var(--home-panel);
  border: 2px solid rgba(244, 239, 230, .16);
  border-radius: var(--home-radius-md);
  padding: 16px 12px 14px;
  text-align: center;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, .35);
  transition: border-color .2s ease, transform .2s ease;
}

.page-home .team-card:hover {
  transform: translate(-2px, -2px);
  border-color: var(--home-gold);
}

.page-home .team-card.is-favorited {
  border-color: var(--home-gold);
  background: linear-gradient(160deg, rgba(212, 168, 67, .16), var(--home-panel) 55%);
}

.page-home .team-card__crest {
  width: 64px;
  height: 64px;
  margin: 0 auto 8px;
}

.page-home .team-card__crest svg {
  display: block;
  width: 100%;
  height: 100%;
}

.page-home .team-card__name {
  margin: 0 0 6px;
  font-size: .92rem;
  font-weight: 800;
  color: var(--home-text);
  font-family: var(--font-headline);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.page-home .team-card__record,
.page-home .team-card__points {
  margin: 0;
  font-size: .72rem;
  color: var(--home-dim);
}

.page-home .team-card__fav {
  margin-top: 12px;
  padding: 6px 18px;
  font-size: .78rem;
  font-weight: 700;
  border: 2px solid var(--home-gold);
  background: transparent;
  color: var(--home-gold-bright);
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .15s ease;
}

.page-home .team-card__fav:hover {
  background: rgba(212, 168, 67, .15);
  transform: scale(1.04);
}

.page-home .team-card.is-favorited .team-card__fav {
  background: var(--home-gold);
  color: #0B1F1A;
}

.page-home .fav-panel {
  background: var(--home-panel);
  border: 3px solid rgba(212, 168, 67, .35);
  border-radius: var(--home-radius-lg);
  padding: 18px;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, .4);
  position: relative;
  overflow: hidden;
}

.page-home .fav-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--home-red), var(--home-gold));
}

.page-home .fav-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.page-home .fav-panel__head h3 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.page-home .fav-panel__crest {
  display: block;
  width: 130px;
  height: 130px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid var(--home-gold);
  box-shadow: 0 0 24px rgba(212, 168, 67, .2);
  opacity: .88;
}

.page-home .fav-panel__empty {
  margin: 0;
  padding: 18px;
  text-align: center;
  border: 2px dashed rgba(244, 239, 230, .25);
  border-radius: var(--home-radius-sm);
  font-size: .82rem;
  color: var(--home-dim);
  line-height: 1.8;
}

.page-home .fav-panel__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .fav-panel__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  background: rgba(11, 31, 26, .6);
  padding: 8px 12px;
  border-radius: var(--home-radius-sm);
  border: 2px solid rgba(212, 168, 67, .25);
}

.page-home .fav-panel__hint {
  margin: 14px 0 0;
  font-size: .72rem;
  color: var(--home-dim);
  text-align: center;
}

/* ===== 信任数据条 ===== */
.page-home .trust-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 28px clamp(16px, 3vw, 40px);
  background: var(--home-wine);
  border-top: 4px solid var(--home-red);
  border-bottom: 4px solid var(--home-gold);
}

.page-home .trust-strip__item {
  text-align: center;
  padding: 10px 6px;
}

.page-home .trust-strip__item .stat-number {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--home-text);
  font-weight: 700;
  line-height: 1.1;
}

.page-home .trust-strip__item p:last-child {
  margin: 6px 0 0;
  font-size: .74rem;
  color: rgba(244, 239, 230, .8);
}

/* ===== 转会 ===== */
.page-home .transfer-section {
  border-top: 3px solid rgba(212, 168, 67, .35);
}

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

.page-home .transfer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.page-home .transfer-list::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 12px;
  width: 2px;
  background: linear-gradient(180deg, var(--home-gold), var(--home-red));
  opacity: .4;
}

.page-home .transfer-item {
  position: relative;
  padding: 12px 14px 12px 40px;
  background: rgba(18, 53, 45, .6);
  border: 2px solid rgba(244, 239, 230, .12);
  border-radius: var(--home-radius-md);
  transition: border-color .2s ease, transform .2s ease;
}

.page-home .transfer-item:hover {
  border-color: rgba(212, 168, 67, .5);
  transform: translate(-2px, -2px);
}

.page-home .transfer-item::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--home-gold);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, .16);
}

.page-home .transfer-item__team {
  margin: 0 0 4px;
  font-size: .7rem;
  font-family: var(--font-mono);
  color: var(--home-gold);
  letter-spacing: .06em;
}

.page-home .transfer-item h3 {
  margin: 0 0 4px;
  font-size: .95rem;
  font-weight: 800;
  color: var(--home-text);
}

.page-home .transfer-item p:not(.transfer-item__team):not(.transfer-item__meta) {
  margin: 0 0 6px;
  font-size: .82rem;
  color: var(--home-dim);
}

.page-home .transfer-item__meta {
  margin: 0;
  font-size: .68rem;
  color: rgba(140, 166, 154, .8);
  font-family: var(--font-mono);
}

.page-home .transfer-note {
  background: var(--home-panel);
  border: 3px solid rgba(212, 168, 67, .3);
  border-radius: var(--home-radius-lg);
  padding: 24px 18px 22px;
  text-align: center;
  box-shadow: 7px 7px 0 rgba(0, 0, 0, .35);
}

.page-home .transfer-note svg {
  width: 54px;
  height: 54px;
  margin-bottom: 12px;
}

.page-home .transfer-note h3 {
  margin: 0 0 8px;
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.page-home .transfer-note p {
  margin: 0 0 16px;
  font-size: .82rem;
  color: var(--home-dim);
  line-height: 1.8;
}

.page-home .transfer-note .btn {
  text-decoration: none;
  display: inline-block;
  padding: 8px 18px;
  font-size: .8rem;
  border: 2px solid var(--home-gold);
  border-radius: 999px;
  color: var(--home-gold-bright);
  transition: background .2s ease, transform .15s ease;
}

.page-home .transfer-note .btn:hover {
  background: rgba(212, 168, 67, .12);
  transform: translate(-1px, -1px);
}

/* ===== 大屏集锦 ===== */
.page-home .bigscreen-section {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(122, 30, 30, .35), transparent 50%),
    linear-gradient(140deg, rgba(11, 31, 26, .98), rgba(18, 53, 45, .95));
  border-top: 4px solid var(--home-gold);
  border-bottom: 4px solid var(--home-wine);
}

.page-home .bigscreen-frame {
  position: relative;
  border-radius: var(--home-radius-lg);
  border: 4px solid rgba(212, 168, 67, .45);
  overflow: hidden;
  box-shadow: 12px 12px 0 rgba(0, 0, 0, .45);
  margin-bottom: 24px;
}

.page-home .bigscreen-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.page-home .bigscreen-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(11, 31, 26, .35), transparent 45%, rgba(11, 31, 26, .55));
  pointer-events: none;
}

.page-home .bigscreen-frame__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--home-gold);
  box-shadow: 0 0 0 12px rgba(212, 168, 67, .18);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .bigscreen-frame__play span {
  display: block;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #0B1F1A;
  margin-left: 4px;
}

.page-home .bigscreen-frame__tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
}

.page-home .bigscreen-copy .section-index {
  font-size: .8rem;
}

.page-home .bigscreen-copy h2 {
  font-family: var(--font-headline);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
  margin: 6px 0 16px;
}

.page-home .bigscreen-copy__lead {
  font-size: 1rem;
  color: var(--home-text);
  font-weight: 700;
  margin: 0 0 10px;
}

.page-home .bigscreen-copy > p:not(.bigscreen-copy__lead) {
  margin: 0 0 18px;
  font-size: .86rem;
  color: var(--home-dim);
}

.page-home .bigscreen-copy__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.page-home .bigscreen-feature {
  background: rgba(11, 31, 26, .65);
  border: 2px solid rgba(244, 239, 230, .14);
  border-radius: var(--home-radius-sm);
  padding: 12px 8px;
  text-align: center;
}

.page-home .bigscreen-feature .stat-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--home-gold-bright);
  line-height: 1.2;
  margin-bottom: 4px;
}

.page-home .bigscreen-feature p {
  margin: 0;
  font-size: .68rem;
  color: var(--home-dim);
  line-height: 1.4;
}

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

.page-home .bigscreen-copy__actions .btn {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: var(--home-radius-sm);
  font-size: .84rem;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .35);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.page-home .bigscreen-copy__actions .btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .4);
}

.page-home .bigscreen-copy__actions .btn-outline {
  border-color: var(--home-gold);
  color: var(--home-gold-bright);
}

.page-home .bigscreen-copy__actions .btn-outline:hover {
  background: rgba(212, 168, 67, .12);
}

.page-home .bigscreen-copy__actions .btn-red {
  border-color: var(--home-red);
  background: var(--home-red);
  color: #fff;
}

.page-home .bigscreen-copy__actions .btn-red:hover {
  background: #ff4f5a;
}

/* ===== 首页延伸导航 ===== */
.page-home .home-outro {
  border-top: 3px solid var(--home-wine);
}

.page-home .home-outro__lead {
  max-width: 52ch;
  margin: 0 0 26px;
  font-size: .9rem;
  color: var(--home-dim);
}

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

.page-home .outro-card {
  display: block;
  text-decoration: none;
  background: var(--home-panel);
  border: 2px solid rgba(244, 239, 230, .14);
  border-radius: var(--home-radius-md);
  padding: 16px 14px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, .3);
  transition: border-color .2s ease, transform .18s ease, background .2s ease;
}

.page-home .outro-card:hover {
  border-color: var(--home-gold);
  transform: translate(-2px, -2px);
  background: rgba(212, 168, 67, .06);
}

.page-home .outro-card--active {
  border-color: rgba(212, 168, 67, .5);
  background: linear-gradient(150deg, rgba(212, 168, 67, .16), var(--home-panel) 55%);
}

.page-home .outro-card__index {
  margin: 0 0 6px;
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--home-gold);
  font-weight: 700;
}

.page-home .outro-card h3 {
  margin: 0 0 6px;
  font-size: .95rem;
  font-weight: 800;
  font-family: var(--font-headline);
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--home-text);
}

.page-home .outro-card p:last-child {
  margin: 0;
  font-size: .74rem;
  color: var(--home-dim);
  line-height: 1.6;
}

/* ===== 响应式 ===== */
@media (min-width: 640px) {
  .page-home .hero-arena__top {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .page-home .hero-arena__crumb {
    margin-bottom: 0;
  }

  .page-home .hero-arena__layout {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .hero-arena__photo {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-height: 360px;
  }

  .page-home .hero-arena__content {
    grid-column: 1;
  }

  .page-home .hero-arena__panel {
    grid-column: 1;
  }

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

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

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

  .page-home .transfer-item h3 {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .page-home .section {
    padding-left: clamp(24px, 4vw, 60px);
    padding-right: clamp(24px, 4vw, 60px);
  }

  .page-home .hero-arena__layout {
    grid-template-columns: 280px minmax(0, 1fr) 260px;
    gap: 24px;
    padding: 6px 24px 24px;
  }

  .page-home .hero-arena__photo {
    grid-column: 1;
    grid-row: 1;
    min-height: 480px;
    max-height: 640px;
  }

  .page-home .hero-arena__content {
    grid-column: 2;
    grid-row: 1;
    padding-top: 14px;
  }

  .page-home .hero-arena__panel {
    grid-column: 3;
    grid-row: 1;
  }

  .page-home .hero-matchlist {
    max-height: 450px;
    overflow-y: auto;
    padding-right: 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 168, 67, .45) rgba(18, 53, 45, .3);
  }

  .page-home .hero-matchlist::-webkit-scrollbar {
    width: 6px;
  }

  .page-home .hero-matchlist::-webkit-scrollbar-track {
    background: rgba(18, 53, 45, .3);
    border-radius: 99px;
  }

  .page-home .hero-matchlist::-webkit-scrollbar-thumb {
    background: rgba(212, 168, 67, .55);
    border-radius: 99px;
  }

  .page-home .league-tabbar {
    gap: 12px;
  }

  .page-home .league-match {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    align-items: center;
    gap: 14px;
  }

  .page-home .league-match__status {
    margin: 0;
  }

  .page-home .league-match__meta {
    margin: 0;
    justify-content: flex-end;
  }

  .page-home .favorite-section__layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .page-home .fav-panel {
    position: sticky;
    top: 90px;
  }

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

  .page-home .transfer-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }

  .page-home .transfer-note {
    position: sticky;
    top: 90px;
  }

  .page-home .bigscreen-section {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
  }

  .page-home .bigscreen-frame {
    margin-bottom: 0;
  }

  .page-home .bigscreen-copy {
    padding-right: clamp(8px, 2vw, 24px);
  }

  .page-home .bigscreen-copy h2 {
    margin-top: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
