/* ===== 首页专属样式 · scoped by .page-home ===== */
.page-home {
  --home-gold: #D4AF37;
  --home-gold-light: #F1C452;
  --home-navy: #0A1E3C;
  --home-navy-deep: #06132A;
  --home-blue: #1D3557;
  --home-paper: #F5F3EF;
  --home-red: #E63946;
  --home-ink: #1A1A1A;
  --home-muted: #6B7280;
}

/* ---- 首屏：品牌主题声明 + 核心服务目录 ---- */
.page-home .home-intro {
  background: linear-gradient(160deg, rgba(10,30,60,0.05) 0%, rgba(245,243,239,0) 40%), var(--home-paper);
}

.page-home .home-brand-column {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--home-navy-deep) 0%, var(--home-navy) 55%, var(--home-blue) 130%);
  color: var(--home-paper);
  padding: 48px 24px 64px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 28px));
}

.page-home .home-bg-word {
  position: absolute;
  top: 8px;
  right: -6px;
  z-index: 0;
  font-weight: 100;
  font-size: clamp(6rem, 22vw, 14rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: rgba(245,243,239,0.06);
  user-select: none;
  pointer-events: none;
}

.page-home .home-brand-card {
  position: relative;
  z-index: 1;
  max-width: 460px;
}

.page-home .home-kicker {
  color: var(--home-gold);
  margin-bottom: 14px;
}

.page-home .home-title {
  margin: 0 0 8px;
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.page-home .home-subtitle {
  margin: 0 0 22px;
  font-family: var(--font-number);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--home-gold-light);
}

.page-home .home-tag-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-tag-list li {
  border: 1px solid rgba(212,175,55,0.55);
  background: rgba(212,175,55,0.08);
  color: var(--home-paper);
  padding: 4px 10px;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.page-home .home-updated {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-bottom: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(212,175,55,0.4);
  border-left: 3px solid var(--home-gold);
  background: rgba(212,175,55,0.12);
  font-size: 0.875rem;
}

.page-home .home-updated-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-red);
  animation: home-pulse 2s infinite ease-out;
}

@keyframes home-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(230,57,70,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(230,57,70,0); }
}

.page-home .home-updated-copy { color: var(--home-paper); }
.page-home .home-updated-value { color: var(--home-gold-light); font-weight: 700; }

.page-home .home-intro-copy {
  margin: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(245,243,239,0.88);
}

.page-home .home-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home .home-cta-row .btn { text-decoration: none; }

.page-home .home-cta-row .btn-light {
  background: var(--home-paper);
  color: var(--home-navy);
  border: 1px solid rgba(255,255,255,0.4);
}

.page-home .home-brand-more {
  display: inline-block;
  color: rgba(245,243,239,0.72);
  font-size: 0.875rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(245,243,239,0.3);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.page-home .home-brand-more:hover { color: var(--home-gold-light); border-color: var(--home-gold-light); }

.page-home .home-content-column {
  position: relative;
  padding: 40px 24px;
  overflow: hidden;
}

.page-home .home-intro-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
}

.page-home .home-intro-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245,243,239,0.9) 0%, rgba(245,243,239,0.78) 50%, rgba(245,243,239,0.95) 100%);
}

.page-home .home-intro-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
}

.page-home .home-breadcrumb {
  font-size: 0.875rem;
  margin-bottom: 18px;
  color: var(--home-muted);
}

.page-home .home-breadcrumb a {
  color: var(--home-navy);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.page-home .home-breadcrumb a:hover { border-color: var(--home-gold); }

.page-home .home-breadcrumb [aria-current="page"] { color: var(--home-navy); font-weight: 700; }

.page-home .home-content-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--home-navy);
  font-weight: 800;
}

.page-home .home-content-kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--home-gold), transparent);
}

.page-home .home-section-title {
  margin: 0 0 22px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--home-navy);
}

.page-home .home-service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 34px;
}

.page-home .home-service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--home-paper);
  border: 1px solid rgba(10,30,60,0.14);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-home .home-service-card:hover {
  transform: translateY(-5px);
  border-color: var(--home-gold);
  box-shadow: 10px 14px 0 rgba(10,30,60,0.12);
}

.page-home .home-service-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.page-home .home-service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid rgba(10,30,60,0.1);
  transition: transform 0.4s var(--ease);
}

.page-home .home-service-card:hover .home-service-media img { transform: scale(1.03); }

.page-home .home-service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,30,60,0.22) 100%);
}

.page-home .home-service-body {
  flex: 1;
  padding: 22px 24px 24px;
}

.page-home .home-service-num {
  display: inline-block;
  font-family: var(--font-number);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--home-gold);
  border: 1px solid rgba(212,175,55,0.7);
  padding: 1px 7px;
  margin-bottom: 12px;
}

.page-home .home-service-body h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--home-navy);
}

.page-home .home-service-body p {
  margin: 0 0 16px;
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--home-muted);
}

.page-home .home-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--home-navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--home-gold);
  padding-bottom: 3px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), gap 0.25s var(--ease);
}

.page-home .home-service-link:hover { border-color: var(--home-red); gap: 12px; }

.page-home .home-service-card-wide {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 0;
  background: linear-gradient(135deg, var(--home-navy) 0%, var(--home-blue) 100%);
  border: 1px solid rgba(212,175,55,0.45);
  box-shadow: 8px 8px 0 rgba(10,30,60,0.15);
}

.page-home .home-service-card-wide .home-service-body { background: transparent; }

.page-home .home-service-card-wide h3 { color: var(--home-paper); }
.page-home .home-service-card-wide p { color: rgba(245,243,239,0.82); }
.page-home .home-service-card-wide .home-service-num { color: var(--home-gold-light); border-color: rgba(212,175,55,0.6); }
.page-home .home-service-card-wide .home-service-link { color: var(--home-gold-light); border-color: var(--home-gold-light); }
.page-home .home-service-card-wide .home-service-link:hover { border-color: var(--home-red); }

/* ---- 实时数据面板预览 ---- */
.page-home .home-dashboard {
  background: linear-gradient(135deg, var(--home-navy-deep) 0%, var(--home-navy) 64%, var(--home-blue) 120%);
  color: var(--home-paper);
}

.page-home .home-dashboard-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 64px 24px;
}

.page-home .home-dashboard .home-section-title { color: var(--home-paper); }
.page-home .home-dashboard-head p { color: rgba(245,243,239,0.75); line-height: 1.7; }
.page-home .home-kicker-dark { color: var(--home-gold); }

.page-home .home-dashboard-tags {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-dashboard-tags li {
  border: 1px solid rgba(245,243,239,0.28);
  background: rgba(255,255,255,0.04);
  color: var(--home-paper);
  font-size: 0.85rem;
  padding: 4px 10px;
}

.page-home .home-dashboard-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--home-gold-light);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid rgba(212,175,55,0.5);
  padding-bottom: 4px;
  transition: border-color 0.25s var(--ease);
}

.page-home .home-dashboard-link:hover { border-color: var(--home-gold-light); }

.page-home .home-dashboard-chart { margin-top: 30px; }

.page-home .home-dashboard-svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 620px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 10px 10px 0 rgba(6,19,42,0.6);
}

.page-home .home-dashboard-svg text { font-family: var(--font-sans); }

.page-home .home-dashboard-caption {
  margin: 18px 0 0;
  font-size: 0.875rem;
  color: rgba(245,243,239,0.6);
  line-height: 1.7;
}

/* ---- 最新战报 ---- */
.page-home .home-reports { background: var(--home-paper); }

.page-home .home-reports-layout {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 64px 24px;
}

.page-home .hot-content-kicker { color: var(--home-red); font-weight: 800; }

.page-home .home-reports-note {
  margin: -10px 0 26px;
  color: var(--home-muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

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

.page-home .home-report-item {
  margin-bottom: 14px;
  border: 1px solid rgba(10,30,60,0.12);
  background: var(--home-paper);
  box-shadow: 5px 5px 0 rgba(10,30,60,0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-home .home-report-item:hover {
  transform: translateX(5px);
  border-color: var(--home-gold);
  box-shadow: 7px 7px 0 rgba(10,30,60,0.08);
}

.page-home .home-report-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  padding: 16px 18px;
  color: var(--home-ink);
  text-decoration: none;
}

.page-home .home-report-tag {
  border: 1px solid rgba(230,57,70,0.4);
  color: var(--home-red);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 2px 8px;
  white-space: nowrap;
}

.page-home .home-report-title { font-weight: 700; line-height: 1.5; flex: 1 1 240px; }
.page-home .home-report-time { font-size: 0.85rem; color: var(--home-muted); white-space: nowrap; margin-left: auto; }

.page-home .home-report-arrow {
  color: var(--home-gold);
  font-size: 1.3rem;
  line-height: 1;
  transform: translateX(-6px);
  transition: transform 0.3s var(--ease);
}

.page-home .home-report-item:hover .home-report-arrow { transform: translateX(0); }

.page-home .home-reports-side {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .home-reports-side img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(10,30,60,0.15);
  box-shadow: var(--shadow-card);
}

.page-home .home-reports-more {
  align-self: flex-start;
  color: var(--home-navy);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--home-gold);
  padding-bottom: 4px;
  transition: border-color 0.25s var(--ease);
}

.page-home .home-reports-more:hover { border-color: var(--home-red); }

/* ---- 为何选择贝博体育 ---- */
.page-home .home-why {
  background: var(--home-paper);
  border-top: 1px solid rgba(10,30,60,0.08);
}

.page-home .home-why-head {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 64px 24px 0;
}

.page-home .home-why-stats {
  max-width: var(--content-width);
  margin: 26px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.page-home .home-stat {
  position: relative;
  padding: 26px 20px;
  border: 1px solid rgba(10,30,60,0.12);
  background: var(--home-paper);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.page-home .home-stat::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--home-gold);
}

.page-home .home-stat-num {
  display: block;
  font-family: var(--font-number);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: var(--home-navy);
}

.page-home .home-stat-label {
  display: block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--home-muted);
}

.page-home .home-why-features {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 30px 24px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.page-home .home-feature {
  position: relative;
  padding: 28px 26px;
  border: 1px solid rgba(10,30,60,0.12);
  background: var(--home-paper);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

.page-home .home-feature:hover { border-color: var(--home-gold); transform: translateY(-4px); }

.page-home .home-feature-num {
  display: block;
  margin-bottom: 12px;
  font-family: var(--font-number);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--home-gold);
}

.page-home .home-feature h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--home-navy);
}

.page-home .home-feature p {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--home-muted);
}

/* ---- 使用引导 ---- */
.page-home .home-guide {
  background: linear-gradient(135deg, var(--home-navy-deep), var(--home-navy));
}

.page-home .home-guide-inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 64px 24px;
}

.page-home .home-guide .home-section-title { color: var(--home-paper); }

.page-home .home-guide-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.page-home .home-guide-item {
  display: block;
  padding: 20px 24px;
  border: 1px solid rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.06);
  color: var(--home-gold-light);
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-home .home-guide-item:hover {
  background: rgba(212,175,55,0.14);
  border-color: var(--home-gold-light);
  transform: translateX(6px);
}

/* ---- 桌面端布局 ---- */
@media (min-width: 960px) {
  .page-home .home-intro {
    display: grid;
    grid-template-columns: minmax(320px, 34.5%) 1fr;
    min-height: calc(100vh - var(--header-height));
  }

  .page-home .home-brand-column {
    align-self: start;
    position: sticky;
    top: var(--header-height);
    height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 60px 48px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 44px));
  }

  .page-home .home-content-column {
    display: flex;
    align-items: center;
    padding: 68px 56px;
  }

  .page-home .home-intro-inner { width: 100%; }

  .page-home .home-service-grid { grid-template-columns: repeat(2, 1fr); }

  .page-home .home-service-card-wide { flex-direction: row; align-items: center; gap: 28px; }

  .page-home .home-service-card-wide .home-service-body { padding: 32px 36px; }

  .page-home .home-dashboard-inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.85fr) 1.15fr;
    gap: 44px;
    align-items: center;
    padding: 72px 56px;
  }

  .page-home .home-dashboard-chart { margin-top: 0; }

  .page-home .home-reports-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 44px;
    align-items: start;
    padding: 72px 56px;
  }

  .page-home .home-reports-side { margin-top: 0; }

  .page-home .home-why-stats { grid-template-columns: repeat(4, 1fr); }

  .page-home .home-why-features { grid-template-columns: repeat(3, 1fr); padding-bottom: 72px; }

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

  .page-home .home-guide-inner { padding: 72px 56px; }
}
