.page-home{
  --hp-radius:24px;
  --hp-radius-sm:14px;
  --hp-ease:cubic-bezier(.4,0,.2,1);
  background:var(--primary-bg);
  color:var(--light-text);
  overflow-x:hidden;
}
.page-home *{
  box-sizing:border-box;
}
.page-home img{
  max-width:100%;
  height:auto;
  display:block;
  border-radius:var(--hp-radius-sm);
}
.page-home h1,
.page-home h2,
.page-home h3{
  font-family:var(--font-heading);
  line-height:1.12;
  letter-spacing:.01em;
  margin:0;
}
.page-home p{
  line-height:1.65;
}
.page-home .hp-kicker{
  font-family:var(--font-numeric);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent-orange);
  margin-bottom:6px;
}
.page-home .hp-live-dot{
  display:inline-block;
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent-green);
  animation:hp-live-fade 2s ease-in-out infinite;
}
@keyframes hp-live-fade{
  0%,100%{opacity:1}
  50%{opacity:.35}
}

/* ===== 首屏封面 ===== */
.page-home .hp-cover{
  position:relative;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  overflow:hidden;
  padding:96px 0 72px;
  background:
    radial-gradient(ellipse at 85% 18%, rgba(255,106,0,.18) 0%, transparent 44%),
    radial-gradient(ellipse at 10% 88%, rgba(33,150,243,.18) 0%, transparent 42%),
    linear-gradient(134deg, var(--primary-bg) 0%, #13294b 56%, #0a1e3d 100%);
}
.page-home .hp-cover::before{
  content:'';
  position:absolute;
  inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:44px 44px;
  pointer-events:none;
}
.page-home .hp-cover__inner{
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
}
.page-home .hp-cover__eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family:var(--font-numeric);
  font-size:.78rem;
  font-weight:700;
  letter-spacing:.16em;
  color:var(--accent-orange);
  margin-bottom:16px;
}
.page-home .hp-cover__eyebrow-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent-orange);
  display:inline-block;
}
.page-home .hp-cover__title{
  font-size:clamp(2.5rem,7.2vw,5.4rem);
  margin-bottom:20px;
}
.page-home .hp-cover__title em{
  font-style:normal;
  color:var(--accent-orange);
}
.page-home .hp-cover__lead{
  max-width:540px;
  color:var(--muted-text);
  font-size:clamp(.95rem,1.4vw,1.1rem);
  margin-bottom:20px;
}
.page-home .hp-cover__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 20px;
  font-family:var(--font-numeric);
  font-size:.84rem;
  color:var(--muted-text);
  margin-bottom:28px;
}
.page-home .hp-cover__meta strong{
  color:var(--light-text);
  font-weight:700;
}
.page-home .hp-cover__index{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.page-home .hp-cover__chip{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 16px 8px 8px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.16);
  background:rgba(255,255,255,.06);
  color:var(--light-text);
  text-decoration:none;
  font-size:.86rem;
  transition:background .25s var(--hp-ease), border-color .25s var(--hp-ease), transform .25s var(--hp-ease);
}
.page-home .hp-cover__chip:hover{
  background:rgba(255,255,255,.12);
  border-color:var(--accent-orange);
  transform:translateY(-2px);
}
.page-home .hp-cover__chip-num{
  width:26px;
  height:26px;
  border-radius:50%;
  background:var(--accent-orange);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-family:var(--font-numeric);
  font-size:.7rem;
  font-weight:700;
  color:var(--light-text);
}
.page-home .hp-cover__photo{
  position:relative;
  border-radius:var(--hp-radius);
  overflow:hidden;
  box-shadow:0 28px 56px rgba(0,0,0,.38);
  aspect-ratio:16/10;
}
.page-home .hp-cover__photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:0;
}
.page-home .hp-cover__card{
  position:absolute;
  left:16px;
  bottom:16px;
  min-width:142px;
  background:rgba(10,30,61,.92);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:14px 18px;
  backdrop-filter:blur(8px);
}
.page-home .hp-cover__card-live{
  display:flex;
  align-items:center;
  gap:8px;
  font-family:var(--font-numeric);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.12em;
  color:var(--accent-green);
}
.page-home .hp-cover__card-num{
  display:block;
  font-family:var(--font-numeric);
  font-size:2.1rem;
  font-weight:700;
  line-height:1.1;
  color:var(--light-text);
}
.page-home .hp-cover__card-label{
  font-size:.72rem;
  color:var(--muted-text);
  letter-spacing:.06em;
}
.page-home .hp-cover__ticker{
  position:absolute;
  bottom:0;
  left:0;
  right:0;
  display:flex;
  align-items:center;
  gap:22px;
  padding:15px 0;
  border-top:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  white-space:nowrap;
  background:rgba(8,20,42,.72);
  backdrop-filter:blur(4px);
}
.page-home .hp-ticker__item{
  font-family:var(--font-heading);
  font-size:.92rem;
  letter-spacing:.1em;
  color:rgba(255,255,255,.5);
}
.page-home .hp-ticker__star{
  font-style:normal;
  color:var(--accent-orange);
  font-size:.62rem;
  opacity:.8;
}

/* ===== 通用板块头部 ===== */
.page-home .hp-sec-head{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
  margin-bottom:34px;
}
.page-home .hp-sec-head__title{
  font-size:clamp(1.7rem,3.4vw,2.8rem);
  margin-top:4px;
}
.page-home .hp-sec-head__lead{
  max-width:420px;
  color:var(--muted-on-light);
  margin:0;
}
.page-home .hp-sec-head--invert .hp-sec-head__lead{
  color:var(--muted-text);
}

/* ===== 今日赛果速览 ===== */
.page-home .hp-results{
  background:var(--light-bg);
  color:var(--dark-text);
  padding:64px 0;
}
.page-home .hp-results__body{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
}
.page-home .hp-match-list{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:12px;
}
.page-home .hp-match{
  background:#fff;
  border:1px solid var(--border-light);
  border-radius:var(--hp-radius);
  overflow:hidden;
  transition:box-shadow .25s var(--hp-ease), border-color .25s var(--hp-ease);
}
.page-home .hp-match:hover{
  box-shadow:0 10px 28px rgba(10,30,61,.08);
  border-color:#c9d3df;
}
.page-home .hp-match__row{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:8px 12px;
  padding:16px 18px;
  cursor:pointer;
}
.page-home .hp-match__meta{
  flex:1 1 100%;
  font-family:var(--font-numeric);
  font-size:.74rem;
  font-weight:700;
  letter-spacing:.04em;
  color:var(--muted-on-light);
}
.page-home .hp-match__score{
  flex:1 1 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-family:var(--font-numeric);
  font-weight:700;
}
.page-home .hp-match__score strong{
  font-size:.95rem;
  color:var(--dark-text);
}
.page-home .hp-match__score b{
  font-size:1.28rem;
  font-weight:700;
  color:var(--accent-orange);
  letter-spacing:.02em;
}
.page-home .hp-match__flag{
  margin-left:auto;
  background:var(--secondary-bg);
  color:var(--light-text);
  padding:4px 12px;
  border-radius:999px;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.04em;
}
.page-home .hp-match__detail{
  display:none;
  padding:0 18px 18px;
}
.page-home .hp-match[data-open] .hp-match__detail{
  display:block;
  border-top:1px dashed #d5dce5;
  padding-top:14px;
  margin-top:4px;
}
.page-home .hp-match__tags{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.page-home .hp-tag{
  font-family:var(--font-numeric);
  font-size:.72rem;
  font-weight:700;
  padding:6px 12px;
  border-radius:999px;
  background:#edf1f6;
  color:#33465e;
}
.page-home .hp-tag--yellow{
  background:rgba(255,193,7,.16);
  color:#9a6b00;
}
.page-home .hp-tag--red{
  background:rgba(255,82,82,.16);
  color:#c62828;
}
.page-home .hp-match__desc{
  font-size:.88rem;
  color:var(--muted-on-light);
  margin:12px 0 0;
}
.page-home .hp-results__side{
  display:grid;
  gap:18px;
  align-content:start;
}
.page-home .hp-side-figure{
  margin:0;
}
.page-home .hp-side-figure img{
  width:100%;
  border-radius:var(--hp-radius);
  box-shadow:0 12px 28px rgba(10,30,61,.1);
}
.page-home .hp-side-card{
  background:var(--primary-bg);
  border-radius:var(--hp-radius);
  padding:22px;
  color:var(--light-text);
}
.page-home .hp-side-card__title{
  font-size:1.15rem;
  margin-bottom:10px;
}
.page-home .hp-side-card__text{
  color:var(--muted-text);
  font-size:.9rem;
  margin-bottom:14px;
}
.page-home .hp-side-card__text strong{
  font-family:var(--font-numeric);
  color:var(--accent-green);
  font-weight:700;
}
.page-home .hp-side-card__link{
  color:var(--accent-orange);
  text-decoration:none;
  font-weight:700;
  font-size:.88rem;
}
.page-home .hp-side-card__link:hover{
  text-decoration:underline;
}

/* ===== 近期战绩对照 ===== */
.page-home .hp-compare{
  background:linear-gradient(150deg, var(--primary-bg) 0%, #123052 70%, var(--primary-bg) 100%);
  padding:64px 0;
}
.page-home .hp-compare__body{
  display:grid;
  grid-template-columns:1fr;
  gap:28px;
  align-items:center;
}
.page-home .hp-compare__figure{
  margin:0;
}
.page-home .hp-compare__figure img{
  width:100%;
  border-radius:var(--hp-radius);
  box-shadow:0 20px 48px rgba(0,0,0,.3);
}
.page-home .hp-compare__panel{
  background:rgba(10,30,61,.78);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--hp-radius);
  padding:22px;
}
.page-home .hp-compare__select{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:18px;
}
.page-home .hp-select{
  flex:1;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  padding:10px 14px;
}
.page-home .hp-select__label{
  display:block;
  font-size:.7rem;
  color:var(--muted-text);
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:4px;
}
.page-home .hp-select__value{
  display:block;
  font-weight:700;
  font-size:.92rem;
  color:var(--light-text);
}
.page-home .hp-compare__vs{
  font-family:var(--font-heading);
  font-size:1.2rem;
  color:var(--accent-orange);
}
.page-home .hp-compare__table-wrap{
  overflow-x:auto;
  margin-bottom:16px;
}
.page-home .hp-compare__table{
  width:100%;
  border-collapse:collapse;
  font-size:.86rem;
  min-width:360px;
}
.page-home .hp-compare__table th,
.page-home .hp-compare__table td{
  padding:10px 12px;
  text-align:left;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.page-home .hp-compare__table th{
  font-family:var(--font-numeric);
  font-size:.72rem;
  text-transform:uppercase;
  letter-spacing:.08em;
  color:var(--muted-text);
  font-weight:700;
}
.page-home .hp-compare__table td{
  color:var(--muted-text);
  font-family:var(--font-numeric);
  font-variant-numeric:tabular-nums;
  white-space:nowrap;
}
.page-home .hp-compare__table td:first-child{
  color:var(--muted-text);
  font-weight:700;
}
.page-home .hp-compare__table td:nth-child(2){
  color:#c7d2e0;
  font-weight:700;
}
.page-home .hp-compare__table td:nth-child(3){
  color:#c7d2e0;
}
.page-home .hp-compare__btn{
  width:100%;
}

/* ===== 数据功能亮点 ===== */
.page-home .hp-features{
  background:#fff;
  padding:64px 0;
}
.page-home .hp-features__body{
  display:grid;
  grid-template-columns:1fr;
  gap:24px;
}
.page-home .hp-feature-card{
  border-radius:var(--hp-radius);
  overflow:hidden;
  border:1px solid var(--border-light);
  display:grid;
  grid-template-columns:1fr;
  background:linear-gradient(135deg,#f8fafc,#eef2f7);
}
.page-home .hp-feature-card__content{
  padding:24px;
}
.page-home .hp-feature-card__badge{
  display:inline-block;
  background:var(--accent-orange);
  color:#fff;
  font-size:.74rem;
  font-weight:700;
  padding:5px 14px;
  border-radius:999px;
  margin-bottom:14px;
  letter-spacing:.04em;
}
.page-home .hp-feature-card__badge--green{
  background:var(--accent-green);
}
.page-home .hp-feature-card h3{
  font-size:clamp(1.3rem,2.6vw,2rem);
  margin-bottom:12px;
  color:var(--dark-text);
}
.page-home .hp-feature-card__content p{
  color:var(--muted-on-light);
  margin-bottom:16px;
  max-width:520px;
}
.page-home .hp-feature-card__list{
  list-style:none;
  margin:0 0 20px;
  padding:0;
  display:grid;
  gap:10px;
}
.page-home .hp-feature-card__list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:.9rem;
  color:#33465e;
  line-height:1.5;
}
.page-home .hp-feature-card__dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--accent-orange);
  flex-shrink:0;
  margin-top:7px;
}
.page-home .hp-feature-card__figure{
  position:relative;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  background:var(--primary-bg);
  min-height:240px;
  overflow:hidden;
}
.page-home .hp-feature-card__figure img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  border-radius:0;
}
.page-home .hp-feature-card--app{
  background:var(--primary-bg);
  border-color:rgba(255,255,255,.1);
  position:relative;
  overflow:hidden;
}
.page-home .hp-feature-card--app::before{
  content:'';
  position:absolute;
  top:-60px;
  right:-60px;
  width:220px;
  height:220px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(0,200,83,.18) 0%, transparent 70%);
  pointer-events:none;
}
.page-home .hp-feature-card--app h3{
  color:var(--light-text);
}
.page-home .hp-feature-card--app .hp-feature-card__content p{
  color:var(--muted-text);
}
.page-home .hp-feature-card--app .hp-feature-card__list li{
  color:#c7d2e0;
}
.page-home .hp-feature-card--app .hp-feature-card__dot{
  background:var(--accent-green);
}

/* ===== 热门赛事数据 ===== */
.page-home .hp-popular{
  background:var(--secondary-bg);
  padding:64px 0;
}
.page-home .hp-popular__grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}
.page-home .hp-sport-card{
  position:relative;
  overflow:hidden;
  background:var(--primary-bg);
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--hp-radius);
  padding:22px;
}
.page-home .hp-sport-card::before{
  content:'';
  position:absolute;
  top:0;
  right:0;
  width:130px;
  height:130px;
  background:radial-gradient(circle, rgba(255,106,0,.16) 0%, transparent 68%);
  pointer-events:none;
}
.page-home .hp-sport-card__head{
  display:flex;
  align-items:flex-start;
  gap:14px;
  margin-bottom:18px;
}
.page-home .hp-sport-card__icon{
  font-size:1.6rem;
  line-height:1;
  background:rgba(255,255,255,.08);
  border-radius:14px;
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.page-home .hp-sport-card__head h3{
  font-size:1.3rem;
  color:var(--light-text);
  margin-bottom:4px;
}
.page-home .hp-sport-card__head p{
  font-size:.8rem;
  color:var(--muted-text);
  margin:0;
}
.page-home .hp-sport-card__count{
  margin-left:auto;
  font-family:var(--font-numeric);
  font-size:1.1rem;
  font-weight:700;
  color:var(--accent-orange);
  background:rgba(255,106,0,.12);
  padding:4px 12px;
  border-radius:999px;
  white-space:nowrap;
}
.page-home .hp-sport-card__stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-bottom:16px;
}
.page-home .hp-sport-stat{
  background:rgba(255,255,255,.05);
  border-radius:14px;
  padding:12px;
}
.page-home .hp-sport-stat__label{
  display:block;
  font-size:.68rem;
  color:var(--muted-text);
  letter-spacing:.05em;
  margin-bottom:4px;
}
.page-home .hp-sport-stat__value{
  display:block;
  font-family:var(--font-numeric);
  font-size:1.45rem;
  font-weight:700;
  color:var(--light-text);
}
.page-home .hp-sport-card__leagues{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:16px;
}
.page-home .hp-league-chip{
  font-size:.72rem;
  padding:5px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  color:var(--muted-text);
  border:1px solid rgba(255,255,255,.07);
}
.page-home .hp-sport-card__link{
  color:var(--accent-orange);
  text-decoration:none;
  font-weight:700;
  font-size:.86rem;
}
.page-home .hp-sport-card__link:hover{
  text-decoration:underline;
}
.page-home .hp-sport-card--basketball::before{
  background:radial-gradient(circle, rgba(0,200,83,.14) 0%, transparent 68%);
}
.page-home .hp-sport-card--basketball .hp-sport-card__count,
.page-home .hp-sport-card--basketball .hp-sport-card__link{
  color:var(--accent-green);
}
.page-home .hp-sport-card--basketball .hp-sport-card__count{
  background:rgba(0,200,83,.12);
}
.page-home .hp-sport-card--tennis::before{
  background:radial-gradient(circle, rgba(33,150,243,.16) 0%, transparent 68%);
}
.page-home .hp-sport-card--tennis .hp-sport-card__count,
.page-home .hp-sport-card--tennis .hp-sport-card__link{
  color:var(--data-blue);
}
.page-home .hp-sport-card--tennis .hp-sport-card__count{
  background:rgba(33,150,243,.12);
}

/* ===== 底部 CTA ===== */
.page-home .hp-outro{
  background:var(--primary-bg);
  padding:64px 0;
}
.page-home .hp-outro__box{
  background:linear-gradient(135deg, var(--accent-orange) 0%, var(--data-orange) 100%);
  border-radius:28px;
  padding:36px 24px;
  text-align:center;
  color:#fff;
}
.page-home .hp-outro__kicker{
  font-family:var(--font-numeric);
  font-size:.78rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  margin-bottom:12px;
  color:rgba(255,255,255,.85);
  font-weight:700;
}
.page-home .hp-outro__box h2{
  font-size:clamp(1.6rem,3.6vw,2.7rem);
  margin-bottom:14px;
}
.page-home .hp-outro__text{
  max-width:640px;
  margin:0 auto 26px;
  color:rgba(255,255,255,.92);
  font-size:.95rem;
}
.page-home .hp-outro__actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
  margin-bottom:20px;
}
.page-home .hp-outro__box .btn--primary{
  background:var(--primary-bg);
  border-color:var(--primary-bg);
  color:#fff;
}
.page-home .hp-outro__box .btn--outline{
  border-color:rgba(255,255,255,.85);
  color:#fff;
}
.page-home .hp-outro__note{
  font-family:var(--font-numeric);
  font-size:.78rem;
  color:rgba(255,255,255,.85);
  margin:0;
}

/* ===== 平板 / 桌面响应 ===== */
@media (min-width: 768px){
  .page-home .hp-cover__inner{
    grid-template-columns:1.08fr .92fr;
    align-items:center;
    gap:48px;
  }
  .page-home .hp-cover{
    min-height:100vh;
    padding:120px 0 76px;
  }
  .page-home .hp-sec-head{
    grid-template-columns:1.1fr .9fr;
    align-items:end;
    gap:24px;
  }
  .page-home .hp-sec-head__lead{
    justify-self:end;
  }
  .page-home .hp-results__body{
    grid-template-columns:1.35fr .9fr;
    align-items:start;
  }
  .page-home .hp-match__row{
    display:grid;
    grid-template-columns:96px 1fr 74px;
    gap:16px;
    align-items:center;
    padding:18px 22px;
  }
  .page-home .hp-match__meta{
    flex:none;
  }
  .page-home .hp-match__score{
    justify-content:center;
  }
  .page-home .hp-match__flag{
    margin-left:0;
    justify-self:end;
  }
  .page-home .hp-compare__body{
    grid-template-columns:.92fr 1.08fr;
    gap:36px;
  }
  .page-home .hp-features__body{
    grid-template-columns:1fr 1fr;
    align-items:stretch;
  }
  .page-home .hp-feature-card__content{
    padding:28px;
  }
  .page-home .hp-feature-card--mobile{
    grid-template-columns:1fr 320px;
    align-items:stretch;
  }
  .page-home .hp-feature-card__figure{
    min-height:auto;
  }
  .page-home .hp-feature-card__figure img{
    height:100%;
    object-fit:cover;
  }
  .page-home .hp-popular__grid{
    grid-template-columns:repeat(3,1fr);
    gap:18px;
  }
  .page-home .hp-outro__box{
    padding:52px 40px;
  }
}

@media (min-width: 1024px){
  .page-home .hp-cover__lead{
    font-size:1.1rem;
  }
  .page-home .hp-feature-card--mobile{
    grid-template-columns:1fr 360px;
  }
  .page-home .hp-results__body{
    gap:40px;
  }
  .page-home .hp-compare__body{
    gap:48px;
  }
}
