.page-home {
  --home-glow: rgba(0, 255, 135, 0.12);
  --home-glow-blue: rgba(0, 212, 255, 0.08);
  --home-red: #FF4B4B;
  --home-green: #00FF87;
  --home-cyan: #00D4FF;
  --home-card-bg: #0F2540;
  --home-border: #1A2F4E;
  --home-text: #E6F0FF;
  --home-text-dim: #8899AA;
  --home-radius: 14px;
  --home-space-md: 2.5rem;
  --home-space-lg: 4rem;
}

.page-home {
  background:
    radial-gradient(ellipse at 85% 10%, rgba(0, 212, 255, 0.08), transparent 350px),
    radial-gradient(ellipse at 10% 40%, rgba(0, 255, 135, 0.05), transparent 300px),
    #0A192F;
  color: var(--home-text);
}

/* 渐进增强的交互动效：核心卡片默认可见，筛选通过 JS 切换 class */
.page-home .bento-card {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* —— 面包屑 —— */
.page-home .breadcrumb {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.2rem 1.5rem 0;
  font-size: 0.8rem;
  color: var(--home-text-dim);
  letter-spacing: 0.04em;
  display: flex;
  gap: 0.5rem;
}
.page-home .breadcrumb a {
  color: var(--home-cyan);
  text-decoration: none;
  opacity: 0.75;
}
.page-home .breadcrumb a:hover {
  opacity: 1;
}
.page-home .breadcrumb-sep {
  color: var(--home-text-dim);
  opacity: 0.5;
}
.page-home .breadcrumb-current {
  color: var(--home-text-dim);
}

/* —— Hero 分屏 —— */
.page-home .hero-split {
  max-width: var(--container);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  position: relative;
}
@media (min-width: 900px) {
  .page-home .hero-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    padding: 4rem 1.5rem 5rem;
    align-items: center;
  }
}

.page-home .hero-copy {
  position: relative;
  z-index: 2;
}
.page-home .hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-green);
  border: 1px solid rgba(0, 255, 135, 0.35);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.4rem;
  background: rgba(0, 255, 135, 0.06);
}
.page-home h1 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.4rem, 5.6vw, 3.5rem);
  line-height: 1.08;
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
}
.page-home .hero-lead {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--home-text-dim);
  max-width: 36em;
  margin-bottom: 1.6rem;
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.page-home .btn {
  display: inline-block;
  background: var(--home-green);
  color: #0A192F;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 255, 135, 0.2);
}
.page-home .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 255, 135, 0.32);
}
.page-home .btn-ghost {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--home-border);
  color: var(--home-text);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.page-home .btn-ghost:hover {
  border-color: var(--home-cyan);
  background: rgba(0, 212, 255, 0.06);
}

.page-home .hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}
.page-home .hero-metrics div {
  background: rgba(15, 37, 64, 0.7);
  border: 1px solid var(--home-border);
  border-radius: 10px;
  padding: 0.9rem 1rem;
}
.page-home .hero-metrics dt {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-text-dim);
  margin: 0 0 0.3rem;
}
.page-home .hero-metrics dd {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--home-green);
  margin: 0;
}

/* —— Hero 视觉侧 —— */
.page-home .hero-visual {
  position: relative;
}
.page-home .scoreboard-card {
  position: relative;
  z-index: 2;
  background: linear-gradient(145deg, rgba(15, 37, 64, 0.95), rgba(10, 25, 47, 0.98));
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 1.4rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}
.page-home .score-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}
.page-home .score-league {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--home-cyan);
}
.page-home .score-status {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--home-red);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.page-home .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--home-red);
  display: inline-block;
  animation: pulse-dot 1.6s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.page-home .score-teams {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 1rem;
}
.page-home .team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.page-home .team-tag {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: var(--home-text-dim);
  text-transform: uppercase;
  border: 1px solid var(--home-border);
  border-radius: 4px;
  padding: 0.05rem 0.4rem;
}
.page-home .team strong {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.page-home .team-score {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--home-green);
  line-height: 1;
}
.page-home .away-team .team-score {
  color: var(--home-cyan);
}
.page-home .score-sep {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--home-text-dim);
  opacity: 0.4;
  line-height: 1;
}
.page-home .score-meta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: var(--home-text-dim);
  padding-top: 0.9rem;
  border-top: 1px solid rgba(26, 47, 78, 0.6);
}
.page-home .heatline {
  width: 100%;
  height: auto;
  margin-top: 1rem;
  display: block;
}
.page-home .score-label {
  display: block;
  text-align: right;
  font-size: 0.68rem;
  color: var(--home-text-dim);
  margin-top: 0.3rem;
  letter-spacing: 0.06em;
}
.page-home .hero-bg-img {
  position: absolute;
  top: -2rem;
  right: -1.5rem;
  width: 70%;
  max-width: 340px;
  height: auto;
  object-fit: cover;
  opacity: 0.3;
  border-radius: var(--home-radius);
  filter: blur(2px) saturate(0.8);
  z-index: 1;
  pointer-events: none;
}

/* —— 通用 Section 头 —— */
.page-home .section {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--home-space-lg) 1.5rem;
}
.page-home .section-head {
  margin-bottom: 2rem;
}
.page-home .section-index {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--home-green);
  margin: 0 0 0.5rem;
}
.page-home .section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}
.page-home .section-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--home-text-dim);
  max-width: 42em;
  margin: 0;
}

/* —— 改版亮点 —— */
.page-home .updates-section {
  position: relative;
}
.page-home .update-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 860px) {
  .page-home .update-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
  }
}
.page-home .update-item {
  background: var(--home-card-bg);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 1.8rem 1.5rem;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.page-home .update-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 135, 0.35);
}
.page-home .update-num {
  position: absolute;
  top: -12px;
  left: 14px;
  background: var(--home-green);
  color: #0A192F;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.75rem;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(0, 255, 135, 0.12);
}
.page-home .update-body h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.12rem;
  margin: 0.4rem 0 0.7rem;
  line-height: 1.3;
}
.page-home .update-body p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--home-text-dim);
  margin: 0;
}
.page-home .update-img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: cover;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-border);
  display: block;
  margin: 0 auto;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

/* —— Bento 核心功能 —— */
.page-home .bento-section {
  position: relative;
}
.page-home .bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 680px) {
  .page-home .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .page-home .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: auto;
  }
  .page-home .bento-live { grid-column: span 2; }
  .page-home .bento-team { grid-column: span 1; }
  .page-home .bento-sub { grid-column: span 1; }
  .page-home .bento-history { grid-column: span 2; }
  .page-home .bento-more { grid-column: span 2; }
}
.page-home .bento-card {
  background: linear-gradient(160deg, rgba(15, 37, 64, 0.92), rgba(10, 25, 47, 0.88));
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.page-home .bento-card h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.3rem;
  margin: 0.5rem 0 0.5rem;
  line-height: 1.2;
}
.page-home .bento-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--home-text-dim);
  margin: 0 0 1rem;
  flex-grow: 1;
}
.page-home .bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--home-green), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.page-home .bento-card:hover::before {
  opacity: 1;
}
.page-home .bento-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.3rem;
}
.page-home .bento-icon {
  font-size: 1.5rem;
  line-height: 1;
}
.page-home .bento-tag {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--home-green);
  border: 1px solid rgba(0, 255, 135, 0.3);
  border-radius: 4px;
  padding: 0.12rem 0.5rem;
}
.page-home .bento-chart {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 0.8rem;
}
.page-home .bento-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.8rem;
  border: 1px solid var(--home-border);
}
.page-home .bento-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
}
.page-home .bento-card li {
  font-size: 0.88rem;
  color: var(--home-text);
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(26, 47, 78, 0.6);
}
.page-home .bento-card li:last-child {
  border-bottom: none;
}
.page-home .bento-card li::before {
  content: '·';
  color: var(--home-cyan);
  margin-right: 0.5rem;
  font-weight: 800;
}
.page-home .stretched-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--home-cyan);
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.6rem;
  display: inline-block;
  align-self: flex-start;
}
.page-home .stretched-link:hover {
  color: var(--home-green);
}
.page-home .history-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}
.page-home .chip {
  background: rgba(0, 212, 255, 0.07);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 999px;
  color: var(--home-text);
  font-size: 0.82rem;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.page-home .chip:hover {
  background: rgba(0, 212, 255, 0.16);
  border-color: var(--home-cyan);
}
.page-home .chip span {
  color: var(--home-green);
  margin-left: 0.2rem;
}
.page-home .more-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 0.3rem;
}
.page-home .more-links a {
  color: var(--home-text-dim);
  text-decoration: none;
  font-size: 0.88rem;
  border: 1px solid var(--home-border);
  padding: 0.35rem 0.7rem;
  border-radius: 6px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.page-home .more-links a:hover {
  color: var(--home-green);
  border-color: rgba(0, 255, 135, 0.4);
}

/* —— 筛选栏 —— */
.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
  padding: 1rem;
  border: 1px solid var(--home-border);
  border-radius: 12px;
  background: rgba(15, 37, 64, 0.55);
  align-items: center;
  justify-content: center;
}
.page-home .filter-bar::before {
  content: '主题筛选：';
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--home-text-dim);
  margin-right: 0.3rem;
}
.page-home .filter-btn {
  background: transparent;
  border: 1px solid var(--home-border);
  color: var(--home-text-dim);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.page-home .filter-btn:hover {
  border-color: var(--home-green);
  color: var(--home-text);
}
.page-home .filter-btn.active {
  background: var(--home-green);
  border-color: var(--home-green);
  color: #0A192F;
  font-weight: 800;
}
/* 筛选效果：JS 切换类实现，无 JS 时全部可见 */
.page-home.bento-filtered .bento-card {
  opacity: 0.28;
  transform: scale(0.97);
}
.page-home.bento-filtered .bento-card.bento-visible {
  opacity: 1;
  transform: scale(1);
}
.page-home.bento-filtered .bento-card.bento-visible::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid rgba(0, 255, 135, 0.5);
  border-radius: var(--home-radius);
  pointer-events: none;
}

/* —— 数据概览 —— */
.page-home .stats-section {
  position: relative;
}
.page-home .stats-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 900px) {
  .page-home .stats-board {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
  }
}
.page-home .stat-item {
  background: linear-gradient(150deg, rgba(15, 37, 64, 0.9), rgba(10, 25, 47, 0.85));
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.page-home .stat-item:hover {
  border-color: rgba(0, 255, 135, 0.4);
}
.page-home .stat-item:nth-child(2) {
  border-top-color: rgba(0, 212, 255, 0.4);
}
.page-home .stat-item:nth-child(3) {
  border-top-color: rgba(255, 75, 75, 0.4);
}
.page-home .stat-num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  line-height: 1;
  color: var(--home-green);
}
.page-home .stat-item:nth-child(2) .stat-num {
  color: var(--home-cyan);
}
.page-home .stat-item:nth-child(3) .stat-num {
  color: var(--home-red);
}
.page-home .stat-plus {
  color: inherit;
  font-size: 0.7em;
  margin-left: 0.1rem;
}
.page-home .stat-label {
  font-size: 0.82rem;
  color: var(--home-text-dim);
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.page-home .stats-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  object-fit: cover;
  border-radius: var(--home-radius);
  border: 1px solid var(--home-border);
  display: block;
  margin: 0 auto;
}

/* —— 使用场景 —— */
.page-home .scenario-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  margin-top: 0.5rem;
}
@media (min-width: 860px) {
  .page-home .scenario-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.8rem;
  }
}
.page-home .scenario-card {
  background: rgba(15, 37, 64, 0.55);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  padding: 2rem 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  transition: background 0.3s ease, transform 0.3s ease;
}
.page-home .scenario-card:hover {
  background: rgba(15, 37, 64, 0.9);
  transform: translateY(-4px);
}
.page-home .scenario-svg {
  display: block;
  margin-bottom: 1.2rem;
}
.page-home .scenario-svg svg {
  width: 64px;
  height: 64px;
  display: block;
}
.page-home .scenario-card h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.page-home .scenario-card p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--home-text-dim);
  margin: 0;
}

/* —— CTA 条 —— */
.page-home .cta-strip {
  padding-bottom: 3rem;
}
.page-home .cta-inner {
  background:
    linear-gradient(135deg, rgba(0, 255, 135, 0.08), transparent 60%),
    linear-gradient(315deg, rgba(0, 212, 255, 0.08), transparent 50%),
    var(--home-card-bg);
  border: 1px solid var(--home-border);
  border-radius: calc(var(--home-radius) + 4px);
  padding: 2.8rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-home .cta-inner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 255, 135, 0.12), transparent 70%);
  border-radius: 50%;
}
.page-home .cta-index {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--home-cyan);
  margin: 0 0 0.8rem;
}
.page-home .cta-inner h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin: 0 auto 1.6rem;
  max-width: 18em;
  line-height: 1.2;
}
.page-home .cta-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* —— 响应式细节 —— */
@media (max-width: 480px) {
  .page-home .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-home .hero-actions .btn,
  .page-home .hero-actions .btn-ghost {
    text-align: center;
  }
  .page-home .stats-board {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }
  .page-home .stat-item {
    padding: 1.4rem 1rem;
  }
  .page-home .filter-bar::before {
    width: 100%;
    text-align: center;
    margin-bottom: 0.3rem;
  }
  .page-home .score-teams {
    gap: 0.8rem;
  }
  .page-home .team-score,
  .page-home .score-sep {
    font-size: 2rem;
  }
  .page-home .cta-inner {
    padding: 2rem 1.2rem;
  }
}
@media (max-width: 400px) {
  .page-home .hero-metrics {
    grid-template-columns: 1fr;
  }
  .page-home .score-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

/* 无缝覆盖：页面图片均不溢出 */
.page-home img {
  max-width: 100%;
  height: auto;
}
</<PAGE_CSS>>>
