.page-home {
  --home-card-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  overflow-x: hidden;
}

/* ===== 首屏 · 2025认证主站 ===== */
.page-home .home-hero {
  position: relative;
  background: linear-gradient(135deg, #0D3B12 0%, var(--color-field) 58%, var(--color-moss) 130%);
  color: var(--color-white);
  padding: 44px 0 72px;
  overflow: hidden;
}
.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
  opacity: 0.16;
  mix-blend-mode: screen;
}
.page-home .home-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 42px;
  background: var(--color-cream);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 0;
}
.page-home .home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}
.page-home .home-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(192, 192, 192, 0.4);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.page-home .home-hero__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 10px rgba(255, 109, 0, 0.8);
}
.page-home .home-hero__title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 5.4vw, 58px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--color-white);
}
.page-home .home-hero__desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 720px;
  margin: 0 0 22px;
}
.page-home .home-hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 0 0 26px;
  max-width: 560px;
}
.page-home .hero-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(192, 192, 192, 0.22);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
}
.page-home .hero-stat__num {
  display: block;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-white);
}
.page-home .hero-stat__unit {
  font-size: 13px;
  margin-left: 1px;
  color: var(--color-neon);
}
.page-home .hero-stat__label {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.68);
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.page-home .home-hero__ghost-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--color-white);
}
.page-home .home-hero__ghost-btn:hover {
  border-color: var(--color-neon);
  color: var(--color-neon);
}

/* 首屏实时比分面板 */
.page-home .live-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(192, 192, 192, 0.26);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}
.page-home .live-panel__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.page-home .live-panel__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--color-neon);
  background: rgba(255, 109, 0, 0.16);
  padding: 4px 10px;
  border-radius: 999px;
}
.page-home .focus-score {
  background: rgba(27, 94, 32, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
}
.page-home .focus-score__league {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.68);
}
.page-home .focus-score__teams {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: 12px 0 8px;
}
.page-home .focus-score__team {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
}
.page-home .focus-score__nums {
  font-family: var(--font-mono);
  font-size: clamp(34px, 6vw, 48px);
  font-weight: 800;
  color: var(--color-neon);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  text-shadow: 0 0 18px rgba(255, 109, 0, 0.36);
}
.page-home .focus-score__status {
  display: block;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.page-home .mini-scorelist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.page-home .mini-scorelist__item {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--color-white);
}
.page-home .mini-scorelist__num {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--color-white);
}
.page-home .mini-scorelist__status {
  font-size: 11px;
  padding: 2px 6px;
  border-radius: 4px;
}
.page-home .mini-scorelist__status--live {
  color: var(--color-neon);
  background: rgba(255, 109, 0, 0.14);
}
.page-home .mini-scorelist__status--done {
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

/* 比分数字跳动 */
@keyframes phome-tick {
  0% {
    opacity: 0.2;
    transform: translateY(5px);
  }
  40% {
    opacity: 1;
    transform: translateY(-2px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-home .live-num {
  display: inline-block;
  animation: phome-tick 0.8s ease-out both;
}
.page-home .live-row:nth-child(even) .live-num,
.page-home .mini-scorelist__item:nth-child(even) .live-num {
  animation-delay: 0.18s;
}
.page-home .live-row:nth-child(odd) .live-num,
.page-home .mini-scorelist__item:nth-child(odd) .live-num {
  animation-delay: 0.05s;
}

/* ===== 实时比分台 ===== */
.page-home .home-live {
  background: var(--color-cream);
  padding: 54px 0 64px;
}
.page-home .home-live__grid {
  display: grid;
  gap: 34px;
}
.page-home .home-live__board {
  min-width: 0;
}
.page-home .home-live__intro {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.72);
  margin-top: 10px;
  max-width: 560px;
}
.page-home .home-live__tabs-wrap {
  margin-top: 20px;
}
.page-home .home-live__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.page-home .home-live .tabs__btn {
  background: var(--color-white);
  border: 1px solid rgba(55, 71, 79, 0.2);
  color: var(--color-ink);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-home .home-live .tabs__btn[aria-selected="true"] {
  background: var(--color-field);
  border-color: var(--color-field);
  color: var(--color-white);
}
.page-home .home-live .tab-panel {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  padding: 12px;
}
.page-home .live-table {
  display: grid;
  gap: 8px;
}
.page-home .live-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 6px 10px;
  background: var(--color-white);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.page-home .live-row__team {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-ink);
}
.page-home .live-row__team:last-of-type {
  text-align: right;
}
.page-home .live-row__score {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 20px;
  color: var(--color-rock);
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}
.page-home .live-colon {
  font-size: 14px;
  color: rgba(55, 71, 79, 0.5);
}
.page-home .live-row__status {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 12px;
  color: rgba(55, 71, 79, 0.6);
  background: rgba(55, 71, 79, 0.07);
  padding: 3px 8px;
  border-radius: 999px;
  justify-self: center;
}
.page-home .live-row__status--hot {
  color: var(--color-white);
  background: var(--color-terra);
}
.page-home .live-row__status--live {
  color: var(--color-white);
  background: var(--color-field);
}
.page-home .home-live__visual {
  display: grid;
  gap: 12px;
  align-content: start;
}
.page-home .home-live__visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}
.page-home .home-live__caption {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.56);
  text-align: center;
}

/* ===== 12大联赛导航矩阵 ===== */
.page-home .home-leagues {
  position: relative;
  padding: 54px 0 64px;
  background: linear-gradient(155deg, var(--color-field) 0%, var(--color-moss) 62%, var(--color-rock) 140%);
  color: var(--color-white);
  overflow: hidden;
}
.page-home .home-leagues::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 36%;
  background:
    linear-gradient(30deg, transparent 46%, rgba(255, 255, 255, 0.06) 46%, rgba(255, 255, 255, 0.06) 52%, transparent 52%),
    linear-gradient(-30deg, transparent 46%, rgba(255, 255, 255, 0.05) 46%, rgba(255, 255, 255, 0.05) 52%, transparent 52%);
  background-size: 80px 80px;
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  opacity: 0.4;
}
.page-home .home-leagues .container {
  position: relative;
  z-index: 1;
}
.page-home .home-leagues .section__eyebrow {
  color: var(--color-neon);
}
.page-home .home-leagues .section__title {
  color: var(--color-white);
}
.page-home .home-leagues__intro {
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin-top: 10px;
}
.page-home .league-grid {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.page-home .league-card {
  display: grid;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(192, 192, 192, 0.22);
  border-radius: 14px;
  padding: 16px 18px;
  text-decoration: none;
  color: var(--color-white);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.page-home .league-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-neon);
  box-shadow: 0 10px 24px rgba(255, 109, 0, 0.2);
}
.page-home .league-card:focus-visible {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}
.page-home .league-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.page-home .league-card__index {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-neon);
}
.page-home .league-card__name {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-white);
}
.page-home .league-card__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}
.page-home .league-card__arrow {
  font-family: var(--font-mono);
  color: var(--color-neon);
  font-size: 20px;
  transition: transform 0.2s;
}
.page-home .league-card:hover .league-card__arrow {
  transform: translateX(4px);
}

/* ===== 近30天战报精选 ===== */
.page-home .home-reports {
  background: var(--color-white);
  padding: 54px 0 64px;
}
.page-home .home-reports__grid {
  display: grid;
  gap: 36px;
}
.page-home .home-reports__intro {
  font-size: 15px;
  color: rgba(0, 0, 0, 0.72);
  margin-top: 10px;
  max-width: 560px;
}
.page-home .home-reports__stats {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  background: var(--color-cream);
  border-radius: 14px;
  padding: 12px 16px;
}
.page-home .home-reports__big {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-terra);
}
.page-home .home-reports__stats-text {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.68);
  line-height: 1.5;
}
.page-home .report-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}
.page-home .report-item__link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 16px 8px;
  border-bottom: 1px solid rgba(55, 71, 79, 0.12);
  text-decoration: none;
  color: var(--color-ink);
  transition: background 0.2s ease;
}
.page-home .report-item__link:hover {
  background: rgba(27, 94, 32, 0.05);
}
.page-home .report-item__link:focus-visible {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}
.page-home .report-item__tag {
  font-size: 12px;
  color: var(--color-white);
  background: var(--color-terra);
  border-radius: 999px;
  padding: 3px 9px;
  white-space: nowrap;
}
.page-home .report-item__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.page-home .report-item__arrow {
  font-family: var(--font-mono);
  color: var(--color-field);
  font-size: 18px;
  transition: transform 0.2s;
}
.page-home .report-item__link:hover .report-item__arrow {
  transform: translateX(4px);
}
.page-home .home-reports__more {
  margin-top: 26px;
}
.page-home .home-reports__visual {
  display: grid;
  gap: 12px;
  align-content: start;
}
.page-home .home-reports__visual img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: var(--home-card-shadow);
}
.page-home .home-reports__caption {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.58);
}

/* ===== 苹果手机战报体验 ===== */
.page-home .home-apple {
  background: linear-gradient(168deg, var(--color-rock) 0%, #263137 78%, var(--color-field) 135%);
  color: var(--color-white);
  padding: 58px 0 66px;
}
.page-home .home-apple__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
.page-home .home-apple__art {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
}
.page-home .home-apple__art::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 40px;
  background: radial-gradient(closest-side, rgba(255, 109, 0, 0.2), transparent 75%);
}
.page-home .home-apple__art img {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 28px;
  border: 1px solid rgba(192, 192, 192, 0.4);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42);
}
.page-home .home-apple .section__eyebrow {
  color: var(--color-neon);
}
.page-home .home-apple .section__title {
  color: var(--color-white);
}
.page-home .home-apple__intro {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
  max-width: 560px;
}
.page-home .feature-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  counter-reset: feature;
  display: grid;
  gap: 14px;
}
.page-home .feature-list__item {
  counter-increment: feature;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 14px;
  padding: 14px 16px;
}
.page-home .feature-list__item::before {
  content: "0" counter(feature);
  grid-row: 1 / span 2;
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 22px;
  color: var(--color-neon);
}
.page-home .feature-list__item strong {
  font-size: 16px;
  color: var(--color-white);
}
.page-home .feature-list__item span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}
.page-home .home-apple__more {
  margin-top: 26px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}
.page-home .home-apple__more:hover {
  border-color: var(--color-neon);
  color: var(--color-neon);
}

/* ===== 信任声明 ===== */
.page-home .home-trust {
  background: var(--color-field);
  color: var(--color-white);
  padding: 22px 0;
}
.page-home .home-trust__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
}
.page-home .home-trust p {
  margin: 0;
  font-size: 14px;
}
.page-home .home-trust p strong {
  color: var(--color-neon);
}
.page-home .home-trust__link {
  color: var(--color-white);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-home .home-trust__link:hover {
  color: var(--color-neon);
  border-color: var(--color-neon);
}
.page-home .home-trust__link:focus-visible {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}

/* ===== V3 入口注册联系 ===== */
.page-home .home-v3 {
  position: relative;
  background: var(--color-rock);
  color: var(--color-white);
  padding: 60px 0 64px;
  overflow: hidden;
}
.page-home .home-v3::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 109, 0, 0.24), transparent 70%);
}
.page-home .home-v3__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-home .home-v3__eyebrow {
  color: var(--color-neon);
}
.page-home .home-v3__title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4.6vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 10px 0 14px;
  color: var(--color-white);
}
.page-home .home-v3__desc {
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 0 auto 24px;
}
.page-home .home-v3__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.page-home .home-v3__cta {
  animation: phome-v3-pulse 2.4s ease-out infinite;
}
@keyframes phome-v3-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 109, 0, 0.44);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(255, 109, 0, 0);
  }
}
.page-home .home-v3__ghost {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}
.page-home .home-v3__ghost:hover {
  border-color: var(--color-neon);
  color: var(--color-neon);
}
.page-home .home-v3__contact {
  margin: 26px 0 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
}
.page-home .home-v3__link {
  color: var(--color-white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-home .home-v3__link:hover {
  color: var(--color-neon);
  border-color: var(--color-neon);
}
.page-home .home-v3__link:focus-visible {
  outline: 2px solid var(--color-neon);
  outline-offset: 2px;
}

/* ===== 平板 / 桌面网格 ===== */
@media (min-width: 768px) {
  .page-home .home-hero__stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .league-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-live__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    align-items: start;
  }
  .page-home .home-reports__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
  }
  .page-home .home-apple__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  }
  .page-home .home-apple__art {
    order: -1;
  }
  .page-home .live-row {
    grid-template-columns: 1fr auto 1fr auto;
  }
  .page-home .live-row__status {
    grid-column: auto;
    justify-self: end;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 72px 0 110px;
  }
  .page-home .home-hero__grid {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    align-items: center;
  }
  .page-home .league-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .league-card--feature {
    grid-column: span 2;
  }
  .page-home .home-live .tabs__btn {
    padding: 10px 22px;
  }
}
