.page-home {
  --home-hero-blue: #1E88E5;
  --home-hero-dark: #0B1A2E;
  --home-hero-green: #8BC34A;
  --home-orange: #FF9800;
  --home-bg: #F5F8EE;
  --home-rule: #C0D890;
  --home-text: #1D1D1D;
  --home-radius-lg: 18px;
  --home-radius-md: 12px;
  --home-shadow: 0 10px 30px rgba(11, 26, 46, 0.12);
  font-family: var(--kp-font-body);
  color: var(--home-text);
  background: var(--home-bg);
  line-height: 1.6;
  overflow-x: hidden;
}

.page-home .container {
  width: min(var(--kp-container), 100% - 32px);
  margin-inline: auto;
}

.page-home a {
  color: inherit;
  text-decoration: none;
}

.page-home .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.page-home .btn-accent {
  background: var(--home-orange);
  color: #fff;
  border-color: var(--home-orange);
}

.page-home .btn-primary {
  background: var(--home-hero-green);
  color: var(--home-hero-dark);
  border-color: var(--home-hero-green);
}

.page-home .btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.page-home .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.page-home .eyebrow {
  font-family: var(--kp-font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kp-blue);
  margin-bottom: 0.75rem;
}

.page-home .section-title {
  font-family: var(--kp-font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.page-home .section-lead {
  font-size: 1.05rem;
  color: #3e4a5a;
  max-width: 58ch;
}

/* ===== 首屏：海报式分层构图 ===== */
.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  background: var(--home-hero-dark);
  color: #fff;
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
  border-bottom-left-radius: 48px 24px;
  border-bottom-right-radius: 24px 48px;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -15%;
  width: 70%;
  height: 120%;
  background: var(--kp-blue);
  transform: rotate(8deg);
  transform-origin: top center;
  opacity: 0.9;
  z-index: 1;
  mix-blend-mode: multiply;
}

.home-hero::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -8%;
  width: 45%;
  height: 45%;
  background: var(--kp-primary);
  transform: rotate(-14deg);
  z-index: 1;
  opacity: 0.85;
  border-radius: 40% 60% 55% 45%;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.home-hero-copy {
  max-width: 720px;
}

.home-hero-kicker {
  display: inline-block;
  font-family: var(--kp-font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(139, 195, 74, 0.18);
  border: 1px solid rgba(139, 195, 74, 0.5);
  color: #d8f0b8;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.page-home .home-hero-copy h1 {
  font-family: var(--kp-font-heading);
  font-weight: 900;
  font-size: clamp(2.4rem, 8vw, 5.6rem);
  line-height: 1.06;
  margin: 0 0 1.2rem;
  letter-spacing: -0.03em;
  transform: skewX(-2deg);
}

.home-hero-lead {
  font-size: 1.1rem;
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.75rem;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.home-hero-panel {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--home-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--home-shadow);
  max-width: 440px;
  margin-left: auto;
  border-top: 4px solid var(--home-hero-green);
}

.home-hero-panel-label {
  font-family: var(--kp-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c9e8a6;
}

.home-hero-num {
  font-family: var(--kp-font-heading);
  font-weight: 900;
  font-size: clamp(3.4rem, 8vw, 5rem);
  line-height: 1;
  color: #fff;
  margin: 0.5rem 0 0.25rem;
}

.home-hero-panel-sub {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.2rem;
}

.home-hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.home-hero-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
}

.home-hero-row dt {
  color: rgba(255, 255, 255, 0.72);
}

.home-hero-row dd {
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.home-hero-row dd strong {
  color: var(--home-orange);
  font-weight: 900;
}

.home-hero-panel-link {
  display: inline-block;
  margin-top: 1rem;
  color: #d6efa9;
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(139, 195, 74, 0.6);
}

/* ===== 要点滚动条 ===== */
.home-ticker {
  background: var(--home-hero-green);
  color: var(--home-hero-dark);
  border-top: 3px solid var(--home-orange);
  border-bottom: 3px solid var(--home-hero-dark);
}

.home-ticker-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  padding: 0.75rem 0;
}

.home-ticker-term {
  font-family: var(--kp-font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  position: relative;
}

.home-ticker-term::before {
  content: "◆";
  color: var(--home-orange);
  margin-right: 0.45rem;
  font-size: 0.7em;
}

/* ===== CN赛程中心 ===== */
.home-schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.home-schedule-intro {
  padding: 1rem 0;
}

.home-schedule-tool {
  background: #ffffff;
  border: 2px solid var(--home-rule);
  border-radius: var(--home-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--home-shadow);
  position: relative;
}

.home-schedule-tool::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 24px;
  width: 44px;
  height: 8px;
  background: var(--home-orange);
  border-radius: 0 0 6px 6px;
}

.home-month-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.home-month-btn {
  border: 1px solid var(--home-rule);
  background: var(--home-bg);
  color: var(--home-text);
  font-family: var(--kp-font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-month-btn.is-active {
  background: var(--kp-blue);
  border-color: var(--kp-blue);
  color: #fff;
}

.home-month-btn:hover {
  transform: translateY(-2px);
}

.home-month-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.home-month-item {
  background: var(--home-bg);
  border-radius: var(--home-radius-md);
  padding: 0.9rem 1rem;
  text-align: center;
}

.home-month-item strong {
  display: block;
  font-family: var(--kp-font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--kp-blue);
  line-height: 1.1;
}

.home-month-label {
  display: block;
  font-size: 0.8rem;
  color: #5b6b7a;
  margin-bottom: 0.2rem;
}

.home-month-note {
  font-size: 0.88rem;
  color: #405060;
  margin: 0 0 0.8rem;
}

.home-month-link,
.home-news-link {
  display: inline-block;
  font-weight: 700;
  color: var(--kp-blue);
  border-bottom: 2px solid rgba(30, 136, 229, 0.4);
  padding-bottom: 0.15rem;
}

/* ===== 票价分层 ===== */
.home-priceband {
  background: linear-gradient(135deg, #eaf3d8 0%, #f5f8ee 70%);
  border-top: 2px solid var(--home-rule);
  border-bottom: 2px solid var(--home-rule);
}

.home-price-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.home-price-card {
  background: #ffffff;
  border: 2px solid var(--home-rule);
  border-radius: var(--home-radius-lg);
  padding: 2rem;
  box-shadow: var(--home-shadow);
  position: relative;
  overflow: hidden;
}

.home-price-card::after {
  content: "PRICE";
  position: absolute;
  right: -18px;
  bottom: -12px;
  font-family: var(--kp-font-mono);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(139, 195, 74, 0.12);
  line-height: 1;
  transform: rotate(-12deg);
  pointer-events: none;
}

.home-price-card--member {
  border-top: 6px solid var(--kp-primary);
}

.home-price-tag {
  position: relative;
  z-index: 1;
}

.page-home .tag {
  display: inline-block;
  font-family: var(--kp-font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.8rem;
}

.page-home .tag-accent {
  background: var(--home-orange);
  color: #fff;
}

.page-home .tag-blue {
  background: var(--kp-blue);
  color: #fff;
}

.page-home .tag-outline {
  border: 1px solid var(--home-rule);
  color: var(--home-hero-dark);
  background: transparent;
}

.home-price-card h3 {
  font-family: var(--kp-font-heading);
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 0 0 0.8rem;
}

.home-price-card p {
  font-size: 0.98rem;
  color: #3e4a5a;
  margin-bottom: 1rem;
}

.home-price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.home-price-list li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 600;
  font-size: 0.96rem;
}

.home-price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 1rem;
  height: 1rem;
  background: var(--kp-primary);
  border-radius: 50%;
  clip-path: polygon(50% 0%, 61% 39%, 100% 39%, 68% 61%, 80% 100%, 50% 75%, 20% 100%, 32% 61%, 0 39%, 39% 39%);
}

.home-price-chart {
  background: var(--home-hero-dark);
  border-radius: var(--home-radius-lg);
  padding: 1.5rem;
  overflow: hidden;
  position: relative;
}

.home-price-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: var(--home-radius-md);
  display: block;
  opacity: 0.9;
}

.home-price-note {
  margin-top: 1rem;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.home-price-note span {
  font-family: var(--kp-font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #b7e18e;
}

.home-price-note strong {
  font-size: 0.95rem;
  font-weight: 700;
}

/* ===== 主客场分析 ===== */
.home-awayband {
  background: #ffffff;
}

.home-away-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.home-away-visual {
  position: relative;
  border-radius: var(--home-radius-lg);
  overflow: hidden;
  border: 2px solid var(--home-rule);
  box-shadow: var(--home-shadow);
}

.home-away-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.home-away-visual:hover .home-away-img {
  transform: scale(1.02);
}

.home-away-copy {
  padding: 1rem 0;
}

.home-away-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.home-away-list li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
  font-size: 0.98rem;
}

.home-away-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 0.75rem;
  height: 0.75rem;
  background: var(--kp-blue);
  transform: rotate(45deg);
}

/* ===== 投注费用 ===== */
.home-fee {
  position: relative;
  background: var(--home-hero-dark);
  color: #fff;
  overflow: hidden;
}

.home-fee-bg {
  position: absolute;
  inset: 0;
  opacity: 0.28;
}

.home-fee-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-fee-inner {
  position: relative;
  z-index: 1;
  padding: 1rem 0;
}

.home-fee-copy {
  max-width: 680px;
}

.page-home .home-fee .section-title {
  color: #fff;
}

.page-home .home-fee .eyebrow {
  color: #b7e18e;
}

.home-fee-copy p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.home-fee-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.75rem;
}

.home-fee-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--home-radius-md);
  padding: 0.9rem 1rem;
  text-align: left;
}

.home-fee-stat-label {
  display: block;
  font-family: var(--kp-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.2rem;
}

.home-fee-stat-num {
  font-family: var(--kp-font-heading);
  font-weight: 900;
  font-size: 1.7rem;
  color: var(--home-orange);
  line-height: 1.15;
}

/* ===== 最新动态 ===== */
.home-news {
  background: var(--home-bg);
}

.home-news-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1.75rem;
}

.home-news-more {
  font-weight: 700;
  color: var(--kp-blue);
  font-size: 0.95rem;
}

.home-news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.home-news-card {
  background: #ffffff;
  border: 2px solid var(--home-rule);
  border-radius: var(--home-radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 14px rgba(11, 26, 46, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}

.home-news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--home-shadow);
}

.home-news-card h3 {
  font-family: var(--kp-font-heading);
  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1.4;
  margin: 0.25rem 0 0.6rem;
}

.home-news-card p {
  font-size: 0.95rem;
  color: #405060;
  margin-bottom: 1rem;
}

/* ===== 信任区块 ===== */
.home-trust {
  background: var(--home-hero-green);
  position: relative;
  overflow: hidden;
}

.home-trust-inner {
  text-align: center;
  padding: 2rem 0;
  position: relative;
}

.home-trust-inner::before,
.home-trust-inner::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border: 3px dashed rgba(85, 139, 47, 0.4);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.home-trust-inner::before {
  left: -60px;
}

.home-trust-inner::after {
  right: -60px;
}

.home-trust-brand {
  font-family: var(--kp-font-heading);
  font-weight: 900;
  font-size: 2rem;
  color: var(--home-hero-dark);
  margin-bottom: 0.5rem;
}

.home-trust-text {
  max-width: 72ch;
  margin-inline: auto;
  font-size: 0.98rem;
  color: #2c441a;
}

.home-trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: center;
  margin-top: 1.25rem;
  font-weight: 700;
}

.home-trust-links a {
  color: var(--home-hero-dark);
  border-bottom: 2px solid rgba(11, 26, 46, 0.35);
  padding-bottom: 0.15rem;
}

/* ===== 响应式增强 ===== */
@media (min-width: 600px) {
  .home-month-panel {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

@media (min-width: 900px) {
  .home-hero {
    padding: 4.5rem 0 5rem;
  }

  .home-hero-inner {
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 3rem;
  }

  .home-schedule-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3.5rem;
  }

  .home-price-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .home-away-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }

  .home-fee-inner {
    padding: 2rem 0;
  }

  .home-trust-inner {
    padding: 3rem 0;
  }
}

@media (max-width: 599px) {
  .page-home .home-hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }

  .home-hero-actions .btn {
    width: 100%;
  }

  .home-schedule-tool,
  .home-price-card {
    padding: 1.25rem;
  }

  .home-trust-inner::before,
  .home-trust-inner::after {
    display: none;
  }
}
