.page-home{
  --home-border: 2px solid var(--navy);
  background: var(--white-soft);
  color: var(--gray);
  overflow-x: hidden;
}

.page-home img{
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== 首屏 ===== */
.page-home .hero-section{
  background:
    radial-gradient(circle at 84% 16%, rgba(244,162,97,0.24) 0%, rgba(244,162,97,0) 34%),
    linear-gradient(130deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding-bottom: 64px;
  position: relative;
}

.page-home .hero-section::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--red) 0 38%, var(--gold) 38% 72%, var(--green) 72% 100%);
}

.page-home .breadcrumb{
  padding-top: 18px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}

.page-home .breadcrumb-sep{
  margin: 0 8px;
  color: rgba(255,255,255,0.4);
}

.page-home .breadcrumb-item[aria-current="page"]{
  color: var(--gold);
}

.page-home .hero-inner{
  display: grid;
  gap: 40px;
  padding-top: 36px;
}

.page-home .hero-kicker{
  font-family: var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 16px;
}

.page-home .hero-copy h1{
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(30px, 6vw, 54px);
  line-height: 1.1;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  max-width: 12em;
}

.page-home .hero-lead{
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.86);
  max-width: 58ch;
}

.page-home .hero-cta{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 30px;
}

.page-home .hero-stat-list{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.page-home .hero-stat-list .stat-item{
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 14px 12px;
  border-radius: var(--radius-sm);
}

.page-home .hero-stat-list .stat-value{
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  line-height: 1.2;
}

.page-home .hero-stat-list .stat-label{
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.page-home .hero-footnote{
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.62);
}

.page-home .hero-footnote a{
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-home .hero-visual{
  position: relative;
  margin-top: 6px;
}

.page-home .hero-visual img{
  display: block;
  width: 100%;
  border: 2px solid rgba(244,162,97,0.8);
  outline: 2px solid rgba(230,57,70,0.55);
  outline-offset: 8px;
}

.page-home .hero-visual::before{
  content: "";
  position: absolute;
  top: -18px;
  right: -18px;
  width: 92px;
  height: 92px;
  transform: rotate(45deg);
  border: 2px solid rgba(244,162,97,0.65);
  border-radius: 8px;
  z-index: 2;
  pointer-events: none;
}

.page-home .hero-pulse-dot{
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--red);
  animation: homePulse 2.2s var(--ease-standard) infinite;
  z-index: 3;
}

.page-home .hero-pulse-a{
  top: 20%;
  left: 6%;
}

.page-home .hero-pulse-b{
  bottom: 20%;
  right: 12%;
  background: var(--green);
  animation-delay: 0.8s;
}

.page-home .hero-slash{
  position: absolute;
  bottom: -12px;
  left: -20px;
  width: calc(100% + 40px);
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: rotate(-2deg);
  transform-origin: left center;
  z-index: 3;
}

.page-home .hero-flow{
  position: absolute;
  top: 8%;
  right: -2%;
  width: 72%;
  height: auto;
  z-index: 3;
  pointer-events: none;
  opacity: 0.9;
}

@keyframes homePulse{
  0% { box-shadow: 0 0 0 0 rgba(230,57,70,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(230,57,70,0); }
  100% { box-shadow: 0 0 0 0 rgba(230,57,70,0); }
}

/* ===== 区块标题 ===== */
.page-home .section-head{ margin-bottom: 34px; }

.page-home .section-index{
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}

.page-home .section-head h2{
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(26px, 4.4vw, 40px);
  line-height: 1.2;
  color: var(--navy);
}

.page-home .section-desc{
  margin-top: 10px;
  color: var(--gray);
  line-height: 1.7;
  max-width: 660px;
}

/* ===== 今日交锋实时流 ===== */
.page-home .live-section{
  padding: 70px 0 88px;
  position: relative;
}

.page-home .live-section::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10,31,68,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,31,68,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-home .live-section .container{
  position: relative;
  z-index: 1;
}

.page-home .live-grid{
  display: grid;
  gap: 24px;
}

.page-home .live-card{
  background: var(--white);
  border: var(--home-border);
  box-shadow: var(--shadow-card);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.25s var(--ease-standard), box-shadow 0.25s var(--ease-standard);
}

.page-home .live-card:hover{
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 rgba(230,57,70,0.85);
}

.page-home .live-card-top{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-home .live-status{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--gray);
}

.page-home .status-dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  display: inline-block;
  animation: homeDot 1.8s var(--ease-standard) infinite;
}

.page-home .live-now .status-dot{
  background: var(--red);
  animation-duration: 1.1s;
}

@keyframes homeDot{
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

.page-home .live-match{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}

.page-home .live-arm{
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .live-arm:last-child{
  text-align: right;
  align-items: flex-end;
}

.page-home .live-side{
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.page-home .side-away{ color: var(--green); }

.page-home .live-name{
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
}

.page-home .live-score{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 34px;
  line-height: 1;
  color: var(--navy);
  padding: 10px 8px;
  background: var(--white-soft);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-sm);
}

.page-home .live-events{
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px dashed var(--gray-border);
  display: grid;
  gap: 8px;
}

.page-home .live-events li{
  display: flex;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray);
}

.page-home .event-time{
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 13px;
  color: var(--red);
  min-width: 36px;
}

/* ===== 热门球队快捷入口 ===== */
.page-home .quick-section{
  padding: 70px 0;
  background: var(--white);
}

.page-home .quick-inner{
  display: grid;
  gap: 42px;
}

.page-home .quick-visual{
  position: relative;
}

.page-home .quick-visual img{
  display: block;
  width: 100%;
  border: var(--home-border);
  box-shadow: var(--shadow-card);
}

.page-home .quick-visual-note{
  position: absolute;
  right: -8px;
  bottom: -16px;
  background: var(--navy);
  color: var(--white);
  padding: 12px 16px;
  border-left: 4px solid var(--gold);
  box-shadow: 5px 5px 0 rgba(230,57,70,0.85);
  font-size: 13px;
}

.page-home .note-num{
  font-family: var(--font-mono);
  color: var(--gold);
  font-weight: 700;
  margin-right: 6px;
}

.page-home .league-grid{
  display: grid;
  gap: 14px;
}

.page-home .league-card{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 96px;
  padding: 18px 44px 16px 16px;
  background: var(--white-soft);
  border: var(--home-border);
  box-shadow: 4px 4px 0 rgba(10,31,68,0.9);
  color: var(--navy);
  text-decoration: none;
  transition: transform 0.2s var(--ease-standard), box-shadow 0.2s var(--ease-standard);
}

.page-home .league-card::after{
  content: "→";
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--red);
}

.page-home .league-card::before{
  content: "近三季交锋 · 已归档";
  position: absolute;
  top: -10px;
  right: 10px;
  background: var(--navy);
  color: var(--white);
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 4px;
  opacity: 0;
  transition: opacity 0.2s var(--ease-standard);
  pointer-events: none;
  white-space: nowrap;
}

.page-home .league-card:hover{
  transform: translate(-3px, -3px);
  box-shadow: 7px 7px 0 rgba(230,57,70,0.9);
}

.page-home .league-card:hover::before{
  opacity: 1;
}

.page-home .league-card-name{
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 17px;
}

.page-home .league-card-desc{
  margin-top: 8px;
  font-size: 13px;
  color: var(--gray);
}

.page-home .quick-more{
  margin-top: 24px;
}

/* ===== 体育场馆赛事订阅 ===== */
.page-home .subscription-section{
  background: var(--navy);
  color: var(--white);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.page-home .subscription-section::before{
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(244,162,97,0.4);
  transform: rotate(45deg);
  top: -90px;
  right: -50px;
  border-radius: 20px;
}

.page-home .subscription-section::after{
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(230,57,70,0.45);
  transform: rotate(45deg);
  bottom: -46px;
  left: 8%;
  border-radius: 14px;
}

.page-home .subscription-section .container{
  position: relative;
  z-index: 1;
}

.page-home .subscription-head h2{ color: var(--white); }
.page-home .subscription-head .section-index{ color: var(--gold); }
.page-home .subscription-head .section-desc{ color: rgba(255,255,255,0.8); }

.page-home .subscription-grid{
  display: grid;
  gap: 18px;
  margin: 34px 0 40px;
}

.page-home .subscription-card{
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-md);
  padding: 24px;
  min-height: 178px;
}

.page-home .sub-card-num{
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border: 1px solid rgba(244,162,97,0.55);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 18px;
}

.page-home .subscription-card h3{
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 10px;
}

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

.page-home .subscription-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .subscription-note{
  margin-top: 18px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
}

.page-home .subscription-note a{
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== 数据版图概览 ===== */
.page-home .coverage-section{
  padding: 70px 0;
}

.page-home .coverage-card{
  position: relative;
  background: var(--navy-light);
  border: var(--home-border);
  box-shadow: var(--shadow-card);
}

.page-home .coverage-card::after{
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  transform: rotate(45deg);
  border: 2px solid rgba(244,162,97,0.8);
  background: rgba(230,57,70,0.55);
  z-index: 2;
  pointer-events: none;
}

.page-home .coverage-card img{
  display: block;
  width: 100%;
}

.page-home .coverage-league{
  background: var(--white);
  padding: 22px;
}

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

.page-home .coverage-list li{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-border);
  font-size: 15px;
}

.page-home .cov-name{
  font-weight: 700;
  color: var(--navy);
}

.page-home .cov-num{
  font-family: var(--font-mono);
  color: var(--red);
  font-weight: 700;
}

.page-home .coverage-metrics{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.page-home .coverage-metric{
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
}

.page-home .cov-metric-num{
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 24px;
  color: var(--gold);
  line-height: 1.2;
}

.page-home .cov-metric-label{
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}

/* ===== 最新动态 ===== */
.page-home .news-section{
  background: var(--white-soft);
  padding: 70px 0 88px;
}

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

.page-home .news-visual{
  position: relative;
}

.page-home .news-visual img{
  display: block;
  width: 100%;
  border: var(--home-border);
  box-shadow: var(--shadow-card);
}

.page-home .news-visual::after{
  content: "";
  position: absolute;
  top: -14px;
  left: -14px;
  width: 74px;
  height: 74px;
  border-top: 3px solid var(--red);
  border-left: 3px solid var(--gold);
  pointer-events: none;
}

.page-home .news-list{
  display: grid;
  gap: 20px;
}

.page-home .news-item{
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-left: 4px solid var(--red);
  box-shadow: 4px 4px 0 rgba(10,31,68,0.85);
  padding: 20px;
  transition: transform 0.2s var(--ease-standard), box-shadow 0.2s var(--ease-standard);
}

.page-home .news-item:nth-child(2){ border-left-color: var(--gold); }
.page-home .news-item:nth-child(3){ border-left-color: var(--green); }

.page-home .news-item:hover{
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(230,57,70,0.85);
}

.page-home .news-meta{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.page-home .news-date{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
}

.page-home .news-item h3{
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.page-home .news-item p{
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 12px;
}

.page-home .news-more{
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
  text-decoration: none;
}

.page-home .news-more:hover{
  text-decoration: underline;
}

.page-home .trust-statement{
  margin-top: 40px;
  padding: 16px 20px;
  background: var(--navy);
  color: var(--white);
  border-left: 6px solid var(--gold);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.7;
}

/* ===== 响应式布局 ===== */
@media (min-width: 760px){
  .page-home .live-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .page-home .live-card:nth-child(2){ margin-top: 36px; }
  .page-home .live-card:nth-child(4){ margin-top: 30px; }

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

  .page-home .news-grid{
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }
}

@media (min-width: 900px){
  .page-home .hero-inner{
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: 48px;
    padding-top: 48px;
  }

  .page-home .quick-inner{
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
    gap: 48px;
  }

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

  .page-home .coverage-card{
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
  }

  .page-home .coverage-card img{
    height: 100%;
    min-height: 440px;
  }

  .page-home .coverage-league{
    padding: 28px 24px;
  }
}

@media (prefers-reduced-motion: reduce){
  .page-home .hero-pulse-dot,
  .page-home .status-dot{
    animation: none;
  }

  .page-home .live-card,
  .page-home .league-card,
  .page-home .news-item{
    transition: none;
  }
}
