/* ── 首页专属样式 ───────────────────────── */
.page-home {
  overflow-x: hidden;
  background: var(--bg-primary);
  color: var(--text-light);
}

/* ── Hero ──────────────────────────────── */
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(118px, 16vh, 172px) 0 64px;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 194, 209, 0.08), transparent 28%),
    linear-gradient(180deg, var(--bg-primary) 0%, #0E2248 100%);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 48px;
  align-items: center;
}

.page-home .home-hero__content {
  max-width: 720px;
}

.page-home .home-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.page-home .home-hero__batch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: var(--size-footnote);
  letter-spacing: 0.08em;
  color: var(--accent-cyan);
}

.page-home .home-hero__batch::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--accent-orange);
}

.page-home .home-hero__title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: var(--size-display-xl);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.02em;
}

.page-home .home-hero__title-line {
  display: block;
}

.page-home .home-hero__title-accent {
  display: block;
  color: var(--accent-orange);
}

.page-home .home-hero__lead {
  max-width: 64ch;
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.82);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.page-home .home-hero__link {
  color: var(--text-light);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-orange);
  padding-bottom: 4px;
  font-size: var(--size-footnote);
  font-weight: 500;
  transition: color var(--transition-base), border-color var(--transition-base);
}

.page-home .home-hero__link:hover {
  color: var(--accent-orange-light);
  border-color: var(--accent-orange-light);
}

.page-home .home-hero__fav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  color: var(--text-light);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: var(--size-footnote);
  transition: border-color var(--transition-base), color var(--transition-base);
}

.page-home .home-hero__fav:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange-light);
}

.page-home .home-hero__panel {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
  width: 100%;
}

.page-home .home-hero__figure {
  margin: 0;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-secondary);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), 88% 100%, 0 100%);
}

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

.page-home .home-hero__metrics {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.page-home .home-hero__metric {
  padding: 18px 16px 16px;
  background: rgba(11, 27, 61, 0.86);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 107, 0, 0.38);
  border-radius: 10px;
}

.page-home .home-hero__metric-value {
  display: block;
  font-family: var(--font-mono);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent-cyan);
}

.page-home .home-hero__metric-label {
  display: block;
  margin-top: 6px;
  font-size: var(--size-footnote);
  color: rgba(245, 247, 250, 0.72);
}

.page-home .home-hero__decor {
  position: absolute;
  top: -16px;
  right: -24px;
  z-index: 0;
  font-family: var(--font-display);
  font-size: clamp(88px, 20vw, 220px);
  line-height: 1;
  color: rgba(0, 194, 209, 0.07);
  letter-spacing: 0.02em;
  pointer-events: none;
  user-select: none;
}

/* ── 章节共用骨架 ─────────────────────── */
.page-home .home-section {
  position: relative;
  overflow: hidden;
  padding: 84px 0;
  border-top: 1px solid var(--border-light);
}

.page-home .home-section--tint {
  background: linear-gradient(180deg, rgba(17, 38, 79, 0.36), rgba(11, 27, 61, 0));
}

.page-home .home-section__grid {
  display: grid;
  gap: 44px;
}

.page-home .home-section__index {
  position: relative;
}

.page-home .home-section__number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(64px, 8vw, 104px);
  line-height: 0.95;
  color: var(--accent-cyan);
}

.page-home .home-section__trace {
  display: block;
  width: 100px;
  height: auto;
  margin: 20px 0 12px;
  opacity: 0.9;
}

.page-home .home-section__title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: var(--size-section-title);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.page-home .home-section__aside {
  margin: 0;
  font-size: var(--size-footnote);
  color: var(--border-blue);
  line-height: 1.7;
  max-width: 30ch;
}

.page-home .home-section__more {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-orange-light);
  text-decoration: none;
  font-size: var(--size-footnote);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 107, 0, 0.4);
  padding-bottom: 4px;
  transition: border-color var(--transition-base), color var(--transition-base);
}

.page-home .home-section__more:hover {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
}

.page-home .home-section__content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.page-home .home-section__lead {
  margin: 0 0 32px;
  font-size: var(--size-body);
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.86);
  max-width: 68ch;
}

.page-home .home-subheading {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: var(--size-subheading);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ── 01 本月更新总览 ─────────────────── */
.page-home .home-overview__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 36px;
}

.page-home .home-stat-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.page-home .home-update-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--border-light);
}

.page-home .home-update-list__item {
  display: flex;
  gap: 20px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border-light);
}

.page-home .home-update-list__key {
  flex: none;
  width: 64px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--size-footnote);
  letter-spacing: 0.1em;
  color: var(--accent-orange);
}

.page-home .home-update-list__desc {
  font-size: var(--size-body);
  line-height: 1.7;
  color: rgba(245, 247, 250, 0.86);
}

/* ── 02 半岛BOB轮次安排 ───────────────── */
.page-home .home-rounds {
  display: grid;
  gap: 32px;
}

.page-home .home-rounds__main p,
.page-home .home-shots__info p,
.page-home .home-index > p,
.page-home .home-service__card p,
.page-home .home-batch > p {
  margin: 0 0 24px;
  font-size: var(--size-body);
  line-height: 1.8;
  color: rgba(245, 247, 250, 0.86);
}

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

.page-home .home-rounds__filter {
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  padding: 16px 14px;
}

.page-home .home-rounds__filter-label {
  display: block;
  font-size: var(--size-footnote);
  color: var(--border-blue);
  margin-bottom: 6px;
}

.page-home .home-rounds__filter-value {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--size-data);
  color: var(--accent-cyan);
  font-weight: 700;
}

.page-home .home-rounds__figure,
.page-home .home-shots__figure,
.page-home .home-index__figure {
  margin: 0;
}

.page-home .home-rounds__figure img,
.page-home .home-shots__figure img,
.page-home .home-index__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ── 03 射门统计BOB页 ────────────────── */
.page-home .home-shots {
  display: grid;
  gap: 32px;
}

.page-home .home-shots__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border-light);
}

.page-home .home-shots__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border-light);
}

.page-home .home-shots__tag {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: var(--size-footnote);
  color: var(--accent-cyan);
  letter-spacing: 0.06em;
}

.page-home .home-shots__desc {
  font-size: var(--size-footnote);
  color: rgba(245, 247, 250, 0.72);
  text-align: right;
}

.page-home .home-shots__figure img {
  background: linear-gradient(145deg, var(--bg-secondary), #0A1A38);
}

/* ── 04 体育赛事站内索引 ─────────────── */
.page-home .home-index__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 32px;
}

.page-home .home-index__item {
  position: relative;
  display: block;
  padding: 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-light);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.page-home .home-index__item:hover {
  transform: translateY(-4px);
  border-color: var(--accent-orange);
}

.page-home .home-index__item-no {
  font-family: var(--font-mono);
  font-size: var(--size-footnote);
  color: var(--accent-orange);
}

.page-home .home-index__item-title {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.page-home .home-index__item-desc {
  display: block;
  margin-top: 4px;
  font-size: var(--size-footnote);
  color: var(--border-blue);
}

/* ── 05 赛事栏目页用户服务 ───────────── */
.page-home .home-service__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-home .home-service__card {
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
}

.page-home .home-service__card--accent {
  border-color: rgba(255, 107, 0, 0.5);
  background: linear-gradient(180deg, rgba(17, 38, 79, 0.9), rgba(11, 27, 61, 0.8));
}

.page-home .home-service__card p {
  margin-bottom: 0;
}

.page-home .home-service__note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(248, 193, 80, 0.08);
  border-left: 4px solid var(--warning);
  border-radius: 0 10px 10px 0;
}

.page-home .home-service__note-label {
  font-size: var(--size-footnote);
  color: var(--border-blue);
}

.page-home .home-service__note-value {
  font-family: var(--font-mono);
  font-size: var(--size-data);
  font-weight: 700;
  color: var(--warning);
}

/* ── 06 本月二十四日批次说明 ─────────── */
.page-home .home-batch {
  max-width: 760px;
}

.page-home .home-batch__panel {
  margin: 28px 0 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  background: var(--bg-secondary);
  overflow: hidden;
}

.page-home .home-batch__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
}

.page-home .home-batch__row:last-child {
  border-bottom: 0;
}

.page-home .home-batch__label {
  font-size: var(--size-footnote);
  color: var(--border-blue);
  flex: none;
}

.page-home .home-batch__value {
  text-align: right;
  font-family: var(--font-mono);
  font-size: var(--size-footnote);
  font-weight: 700;
  color: var(--text-light);
}

.page-home .home-batch__note {
  margin: 0;
  font-size: var(--size-footnote);
  line-height: 1.7;
  color: var(--border-blue);
}

/* ── 首页信任收尾 ────────────────────── */
.page-home .home-trust {
  padding: 48px 0 72px;
  border-top: 1px solid var(--border-light);
}

.page-home .home-trust__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.page-home .home-trust__text {
  max-width: 720px;
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--border-blue);
}

/* ── 响应式：移动优先增强 ─────────────── */
@media (max-width: 640px) {
  .page-home .home-overview__stats,
  .page-home .home-rounds__filters,
  .page-home .home-index__grid,
  .page-home .home-service__cards {
    grid-template-columns: 1fr;
  }

  .page-home .home-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .page-home .home-hero__figure {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), 94% 100%, 0 100%);
  }

  .page-home .home-hero__metrics {
    position: static;
    margin-top: 12px;
  }

  .page-home .home-hero__metric {
    background: var(--bg-secondary);
    backdrop-filter: none;
  }

  .page-home .home-batch__row {
    flex-direction: column;
    gap: 8px;
  }

  .page-home .home-batch__value {
    text-align: left;
  }

  .page-home .home-shots__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .page-home .home-shots__desc {
    text-align: left;
  }
}

@media (min-width: 900px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 64px;
  }

  .page-home .home-section {
    padding: 108px 0;
  }

  .page-home .home-section__grid {
    grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
    gap: 72px;
  }

  .page-home .home-section__aside {
    font-size: var(--size-footnote);
  }

  .page-home .home-rounds {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.82fr);
    align-items: center;
    gap: 40px;
  }

  .page-home .home-shots {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr);
    align-items: center;
    gap: 40px;
  }

  .page-home .home-index {
    max-width: 820px;
  }

  .page-home .home-trust__text {
    font-size: var(--size-footnote);
  }
}
