/* ============ 首页专属样式 / page-home ============ */
.page-home {
  background: var(--c-white);
}

/* ---- 通用标题头 ---- */
.page-home .home-section-head {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 2.25rem;
}
.page-home .home-section-index {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--c-red);
  position: relative;
  top: .2rem;
}
.page-home .home-section-index--light {
  color: var(--c-accent);
}

/* ---- 英雄区直达 ---- */
.page-home .home-hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: var(--c-primary);
  color: var(--c-white);
  overflow: hidden;
  padding: 5rem 0 4rem;
}
.page-home .home-hero_media,
.page-home .home-hero_media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-hero_media {
  z-index: -2;
}
.page-home .home-hero_overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(112deg, rgba(11, 29, 58, .98) 0%, rgba(11, 29, 58, .86) 46%, rgba(11, 29, 58, .42) 100%);
}
.page-home .home-hero_speedlines {
  position: absolute;
  top: 0;
  right: -6%;
  width: 62%;
  height: 100%;
  z-index: -1;
  opacity: .45;
  background: repeating-linear-gradient(
    -18deg,
    transparent 0 28px,
    rgba(0, 229, 255, .22) 28px 32px,
    transparent 32px 63px
  );
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 70%);
  mask-image: linear-gradient(90deg, transparent, #000 70%);
}
.page-home .home-hero_inner {
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-home .home-crumbs {
  margin-bottom: 1.25rem;
  font-size: .8rem;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .55);
}
.page-home .home-hero_kicker {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  align-items: center;
  margin-bottom: 1rem;
}
.page-home .home-hero_badge {
  display: inline-flex;
  align-items: center;
  gap: .4em;
  background: var(--c-red);
  color: var(--c-white);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .45em 1em .45em 1.1em;
  border-radius: 2px 999px 999px 2px;
  text-transform: uppercase;
}
.page-home .home-hero_edition {
  display: inline-flex;
  align-items: center;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--c-cyan);
  border: 1px solid rgba(0, 229, 255, .45);
  padding: .45em 1em;
  border-radius: 999px;
  text-transform: uppercase;
}
.page-home .home-hero_title {
  font-family: var(--font-headline);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: .95;
  letter-spacing: .01em;
  text-transform: uppercase;
  margin: .15em 0 .2em;
  color: var(--c-white);
  text-shadow:
    5px 5px 0 rgba(0, 229, 255, .32),
    12px 12px 0 rgba(18, 18, 18, .35);
}
.page-home .home-hero_lead {
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 500;
  max-width: 28em;
  line-height: 1.7;
  color: rgba(255, 255, 255, .86);
}
.page-home .home-hero_actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

/* ---- 快捷功能区 ---- */
.page-home .home-quick {
  position: relative;
  background: linear-gradient(180deg, var(--c-soft) 0%, var(--c-white) 100%);
  padding: 4rem 0 4.5rem;
  overflow: hidden;
}
.page-home .home-quick::before {
  content: "";
  position: absolute;
  top: -4rem;
  right: -4rem;
  width: 230px;
  height: 230px;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-accent));
  opacity: .35;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  pointer-events: none;
}
.page-home .home-quick_grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
.page-home .home-quick_card {
  display: block;
  position: relative;
  padding: 5.25rem 1.5rem 1.6rem;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(11, 29, 58, .08);
  border-radius: 20px;
  color: var(--c-primary);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 29, 58, .06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.page-home .home-quick_card:hover,
.page-home .home-quick_card:focus-visible {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 44px rgba(11, 29, 58, .14);
  border-color: rgba(0, 229, 255, .5);
}
.page-home .home-quick_icon {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 68px;
  height: 68px;
  border-radius: 16px;
  object-fit: cover;
}
.page-home .home-quick_num {
  position: absolute;
  top: 1.15rem;
  right: 1.25rem;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.85rem;
  line-height: 1;
  color: rgba(11, 29, 58, .15);
}
.page-home .home-quick_card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .01em;
  margin: 0 0 .45rem;
  color: var(--c-primary);
}
.page-home .home-quick_card p {
  font-size: .92rem;
  line-height: 1.65;
  color: rgba(11, 29, 58, .72);
  margin: 0;
}

/* ---- 实时赛事速递 ---- */
.page-home .home-news {
  padding: 4.5rem 0 5rem;
  background: var(--c-white);
}
.page-home .home-news_more {
  margin-left: auto;
  align-self: center;
}
.page-home .home-news_list {
  border-top: 2px solid var(--c-primary);
}
.page-home .home-news_item {
  border-bottom: 1px solid rgba(11, 29, 58, .1);
  background: var(--c-white);
  transition: background .25s ease;
}
.page-home .home-news_item[open] {
  background: rgba(240, 244, 248, .55);
}
.page-home .home-news_summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 0;
  cursor: pointer;
  list-style: none;
}
.page-home .home-news_summary::-webkit-details-marker {
  display: none;
}
.page-home .home-news_thumb-wrap {
  flex: 0 0 auto;
}
.page-home .home-news_thumb {
  display: block;
  width: 92px;
  height: 69px;
  object-fit: cover;
  border-radius: 12px;
}
.page-home .home-news_info {
  flex: 1 1 auto;
  min-width: 0;
}
.page-home .home-news_meta {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .35rem;
}
.page-home .home-news_tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: .3em .7em;
  border-radius: 999px;
  text-transform: uppercase;
  color: var(--c-primary);
  background: var(--c-muted);
}
.page-home .home-news_tag--red {
  background: var(--c-red);
  color: var(--c-white);
}
.page-home .home-news_tag--cyan {
  background: rgba(0, 229, 255, .22);
  color: var(--c-primary);
}
.page-home .home-news_tag--yellow {
  background: var(--c-accent);
  color: var(--c-primary);
}
.page-home .home-news_time {
  font-size: .75rem;
  color: rgba(11, 29, 58, .5);
}
.page-home .home-news_title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--c-primary);
  transition: color .2s ease;
}
.page-home .home-news_item:hover .home-news_title {
  color: var(--c-red);
}
.page-home .home-news_caret {
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--c-white);
  background: var(--c-primary);
  border-radius: 50%;
  transition: transform .3s ease, background .3s ease;
}
.page-home .home-news_item[open] .home-news_caret {
  transform: rotate(45deg);
  background: var(--c-red);
}
.page-home .home-news_expand {
  padding: 0 0 1.25rem;
}
.page-home .home-news_expand p {
  margin: 0;
  font-size: .94rem;
  line-height: 1.75;
  color: rgba(11, 29, 58, .75);
}

/* ---- 本周热门赛事 ---- */
.page-home .home-hot {
  position: relative;
  background: var(--c-primary);
  color: var(--c-white);
  padding: 4.5rem 0 5rem;
  overflow: hidden;
}
.page-home .home-hot::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(110deg, transparent 40%, rgba(0, 229, 255, .08) 40.5%, transparent 41%),
    repeating-linear-gradient(-18deg, transparent 0 42px, rgba(0, 229, 255, .08) 42px 44px);
  pointer-events: none;
}
.page-home .home-hot_wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.page-home .home-hot_intro {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.page-home .home-hot_lead {
  color: rgba(255, 255, 255, .65);
  line-height: 1.7;
  font-size: .98rem;
  max-width: 24em;
}
.page-home .home-hot_list {
  display: grid;
  gap: .75rem;
}
.page-home .home-hot_card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: rgba(240, 244, 248, .07);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 16px;
  color: var(--c-white);
  text-decoration: none;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.page-home .home-hot_card:hover,
.page-home .home-hot_card:focus-visible {
  background: rgba(255, 215, 0, .12);
  border-color: rgba(255, 215, 0, .45);
  transform: translateX(6px);
}
.page-home .home-hot_sport {
  flex: 0 0 auto;
  min-width: 50px;
  text-align: center;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  background: var(--c-accent);
  color: var(--c-primary);
  padding: .45em .65em;
  border-radius: 999px;
  text-transform: uppercase;
}
.page-home .home-hot_info {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: .25rem;
}
.page-home .home-hot_info strong {
  font-size: .98rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--c-white);
}
.page-home .home-hot_info small {
  font-size: .78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, .58);
}
.page-home .home-hot_arrow {
  flex: 0 0 auto;
  font-size: 1.2rem;
  color: var(--c-accent);
  opacity: .75;
  transition: transform .3s ease, opacity .3s ease;
}
.page-home .home-hot_card:hover .home-hot_arrow {
  transform: translateX(4px);
  opacity: 1;
}

/* ---- 品牌专区看点 ---- */
.page-home .home-features {
  padding: 4.5rem 0 3rem;
  background: linear-gradient(180deg, var(--c-white), var(--c-soft) 100%);
}
.page-home .home-features_grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.page-home .home-features_media {
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
}
.page-home .home-features_media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .home-features_content {
  display: grid;
  gap: 1.1rem;
}
.page-home .home-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(11, 29, 58, .07);
  border-radius: 18px;
  padding: 1.2rem 1.25rem;
  transition: transform .25s ease, box-shadow .25s ease;
}
.page-home .home-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(11, 29, 58, .09);
}
.page-home .home-feature_num {
  flex: 0 0 auto;
  width: 2.2rem;
  height: 2.2rem;
  display: grid;
  place-items: center;
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-primary);
  background: var(--c-accent);
  border-radius: 10px;
}
.page-home .home-feature h3 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 .3rem;
  color: var(--c-primary);
}
.page-home .home-feature p {
  font-size: .88rem;
  line-height: 1.65;
  color: rgba(11, 29, 58, .68);
  margin: 0;
}
.page-home .home-features_actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: .25rem;
}

/* ---- 数据一览 ---- */
.page-home .home-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1rem;
  margin: 3rem 0 0;
  padding: 2rem 1.5rem;
  background: var(--c-primary);
  border-radius: 24px;
}
.page-home .home-stat {
  text-align: center;
}
.page-home .home-stat dt,
.page-home .home-stat dd {
  margin: 0;
}
.page-home .home-stat_num {
  font-family: var(--font-headline);
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--c-accent);
}
.page-home .home-stat_label {
  font-size: .78rem;
  color: rgba(255, 255, 255, .68);
  margin-top: .4rem;
}

/* ---- 桌面端增强 ---- */
@media (min-width: 768px) {
  .page-home .home-quick_grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .home-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .home-news_summary {
    gap: 1.25rem;
  }
  .page-home .home-news_expand p {
    max-width: 52em;
  }
}
@media (min-width: 1024px) {
  .page-home .home-hero_title {
    text-shadow:
      7px 7px 0 rgba(0, 229, 255, .32),
      14px 14px 0 rgba(18, 18, 18, .4);
  }
  .page-home .home-quick_grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .page-home .home-news_thumb {
    width: 120px;
    height: 90px;
  }
  .page-home .home-news_summary {
    padding: 1.4rem 0;
  }
  .page-home .home-hot_wrap {
    grid-template-columns: 340px 1fr;
    gap: 3rem;
  }
  .page-home .home-features_grid {
    grid-template-columns: 45% 1fr;
    gap: 3rem;
  }
}
