.page-home {
  --home-line: rgba(0, 255, 135, 0.24);
  --home-card: var(--space-blue-700);
  --home-deep: var(--ink-900);
  --home-gold: var(--gold-500);
  color: var(--text-primary);
  background: var(--space-blue-900);
  overflow-x: hidden;
}

.page-home .section-wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.page-home .section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.page-home .section-header .eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-green-300);
  border: 1px solid rgba(0, 255, 135, 0.4);
  padding: 4px 8px;
}

.page-home .section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  margin: 0;
  color: var(--text-primary);
}

.page-home .section-header .section-more {
  font-size: 0.8rem;
  color: var(--neon-green-300);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 255, 135, 0.3);
  padding-bottom: 2px;
}

.page-home .section-header .section-more:hover {
  color: var(--neon-green-400);
  border-color: var(--neon-green-400);
}

.page-home .breadcrumb {
  margin-bottom: 14px;
}

.page-home .breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.page-home .breadcrumb li + li::before {
  content: "∕";
  margin-right: 6px;
  color: var(--neon-green-400);
}

.page-home .breadcrumb a {
  color: var(--text-secondary);
  text-decoration: none;
}

.page-home .breadcrumb a:hover {
  color: var(--neon-green-300);
}

.page-home .breadcrumb [aria-current="page"] {
  color: var(--neon-green-300);
}

.page-home .hero-frame {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 86vh;
  padding: 28px 16px 24px;
  background: var(--space-blue-900);
  border-bottom: 1px solid rgba(0, 255, 135, 0.35);
  isolation: isolate;
}

.page-home .hero-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(115deg, rgba(0, 255, 135, 0.08) 0 1px, transparent 1px 70%, rgba(0, 255, 135, 0.04) 70% 71%, transparent 71% 100%),
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(163, 184, 217, 0.06) 80px 81px, transparent 82px);
  pointer-events: none;
}

.page-home .hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(5, 8, 15, 0.42) 0%, rgba(5, 8, 15, 0.76) 100%);
  pointer-events: none;
}

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

.page-home .hero-bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-home .frame-border {
  position: absolute;
  inset: 12px;
  z-index: 3;
  pointer-events: none;
  border: 1px solid rgba(0, 255, 135, 0.22);
}

.page-home .frame-border::before,
.page-home .frame-border::after {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  border: 2px solid var(--neon-green-400);
}

.page-home .frame-border::before {
  top: -2px;
  left: -2px;
  border-right: 0;
  border-bottom: 0;
}

.page-home .frame-border::after {
  bottom: -2px;
  right: -2px;
  border-left: 0;
  border-top: 0;
}

.page-home .hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.page-home .hero-mark {
  max-width: 760px;
}

.page-home .hero-mark .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-green-300);
  border: 1px solid rgba(0, 255, 135, 0.4);
  padding: 6px 10px;
  margin-bottom: 12px;
}

.page-home .hero-mark h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.page-home .hero-lead {
  max-width: 640px;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

.page-home .hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 28px;
  align-content: center;
}

.page-home .hero-rail {
  background: rgba(5, 8, 15, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px;
}

.page-home .hero-rail-title {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  margin-bottom: 6px;
}

.page-home .rail-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 4px;
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.86rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .rail-link:hover {
  color: var(--neon-green-300);
}

.page-home .rail-glyph {
  color: var(--neon-green-400);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  width: 20px;
  text-align: center;
}

.page-home .stat-block {
  margin: 10px 0;
}

.page-home .stat-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  line-height: 1;
  color: var(--neon-green-400);
}

.page-home .stat-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.page-home .stat-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.76rem;
  color: var(--neon-green-300);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 255, 135, 0.3);
}

.page-home .scoreboard {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  position: relative;
  background: linear-gradient(135deg, rgba(10, 20, 40, 0.9), rgba(5, 8, 15, 0.9));
  border: 1px solid rgba(0, 255, 135, 0.4);
  padding: 30px 20px 22px;
  box-shadow: 0 0 40px rgba(0, 255, 135, 0.06);
}

.page-home .scoreboard::before {
  content: "LIVE · 实时比分";
  position: absolute;
  top: -1px;
  left: 20px;
  transform: translateY(-50%);
  background: var(--neon-green-400);
  color: var(--ink-900);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  text-transform: uppercase;
}

.page-home .scoreboard-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.74rem;
}

.page-home .sb-time {
  color: var(--neon-green-400);
  font-weight: 700;
}

.page-home .scoreboard-match {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
}

.page-home .sb-team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.page-home .sb-team-name {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
  font-size: 0.94rem;
}

.page-home .sb-team-score {
  font-family: var(--font-mono);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--neon-green-400);
}

.page-home .sb-mid {
  text-align: center;
  padding: 0 6px;
}

.page-home .sb-vs {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--text-secondary);
  letter-spacing: 0.08em;
}

.page-home .sb-status {
  display: inline-block;
  margin-top: 6px;
}

.page-home .scoreboard-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.page-home .sb-link {
  font-size: 0.76rem;
  color: var(--neon-green-300);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 5px 10px;
}

.page-home .sb-link:hover {
  border-color: var(--neon-green-400);
  color: var(--neon-green-400);
}

.page-home .hero-ticker {
  margin-top: 22px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
  font-size: 0.73rem;
  color: var(--text-secondary);
}

.page-home .ticker-cell {
  font-family: var(--font-mono);
  color: var(--text-secondary);
}

.page-home .ticker-cell strong {
  color: var(--neon-green-300);
  font-weight: 500;
}

.page-home .metric-band {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--space-blue-500);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-home .metric-item {
  background: var(--space-blue-900);
  padding: 18px 10px;
  text-align: center;
}

.page-home .metric-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.5rem;
  color: var(--neon-green-400);
}

.page-home .metric-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.page-home .live-radar {
  padding: 56px 0;
}

.page-home .radar-intro {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  max-width: 620px;
  line-height: 1.6;
}

.page-home .radar-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-home .radar-list {
  display: grid;
  gap: 10px;
}

.page-home .match-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px 12px;
  align-items: center;
  background: linear-gradient(90deg, rgba(15, 32, 64, 0.95), rgba(15, 32, 64, 0.45));
  border-left: 3px solid var(--neon-green-400);
  padding: 13px 12px;
}

.page-home .match-league {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-secondary);
}

.page-home .match-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.page-home .team-home,
.page-home .team-away {
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-home .team-away {
  text-align: right;
}

.page-home .match-score {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--neon-green-400);
}

.page-home .match-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.page-home .live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon-green-400);
  box-shadow: 0 0 8px var(--neon-green-400);
  display: inline-block;
}

.page-home .match-link {
  font-size: 0.72rem;
  color: var(--neon-green-300);
  text-decoration: none;
  margin-left: auto;
  border-bottom: 1px solid rgba(0, 255, 135, 0.3);
}

.page-home .radar-figure {
  background: var(--space-blue-700);
  padding: 18px;
  border-top: 2px solid var(--gold-500);
  margin: 0;
}

.page-home .radar-figure h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 10px 0 6px;
  color: var(--text-primary);
}

.page-home .radar-figure img {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 12px;
}

.page-home .radar-figure figcaption {
  font-size: 0.76rem;
  color: var(--text-secondary);
  margin-top: 8px;
  line-height: 1.5;
}

.page-home .v3-update {
  background: var(--ink-900);
  padding: 56px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .v3-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.page-home .v3-visual {
  margin: 0;
}

.page-home .v3-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .v3-visual figcaption {
  font-size: 0.76rem;
  color: var(--text-secondary);
  padding: 8px 0 0;
}

.page-home .v3-list {
  display: grid;
  gap: 12px;
}

.page-home .feature-item {
  position: relative;
  background: var(--space-blue-700);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 22px 16px 18px 72px;
}

.page-home .feature-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--neon-green-400), transparent 70%);
}

.page-home .feature-item .feature-index {
  position: absolute;
  left: 16px;
  top: 22px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--neon-green-400);
  border: 1px solid var(--neon-green-400);
  background: var(--ink-900);
}

.page-home .feature-item h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: var(--text-primary);
}

.page-home .feature-item p {
  font-size: 0.87rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 10px;
}

.page-home .text-link {
  font-size: 0.78rem;
  color: var(--neon-green-300);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 255, 135, 0.3);
  padding-bottom: 1px;
}

.page-home .text-link:hover {
  color: var(--neon-green-400);
  border-color: var(--neon-green-400);
}

.page-home .expert-zone {
  padding: 56px 0;
}

.page-home .expert-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.page-home .expert-figure {
  position: relative;
}

.page-home .expert-figure img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.page-home .figure-caption {
  display: block;
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.page-home .tabs {
  min-width: 0;
}

.page-home .tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 10px;
}

.page-home .tab {
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text-secondary);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 0;
}

.page-home .tab:hover {
  border-color: var(--neon-green-400);
  color: var(--neon-green-300);
}

.page-home .tab[aria-selected="true"] {
  background: var(--neon-green-400);
  border-color: var(--neon-green-400);
  color: var(--ink-900);
  font-weight: 700;
}

.page-home .tabpanel {
  padding-top: 18px;
}

.page-home .expert-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .expert-card {
  background: var(--space-blue-700);
  padding: 18px;
  border-left: 2px solid var(--neon-green-400);
}

.page-home .expert-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
  margin: 10px 0 8px;
  color: var(--text-primary);
}

.page-home .expert-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 12px;
}

.page-home .latest-news {
  padding: 56px 0 60px;
  background: var(--space-blue-900);
}

.page-home .news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .news-item {
  background: var(--space-blue-700);
  padding: 18px;
  display: flex;
  flex-direction: column;
  border-top: 2px solid var(--space-blue-500);
}

.page-home .news-item .tag {
  align-self: flex-start;
}

.page-home .news-item h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.3;
  margin: 10px 0 8px;
  color: var(--text-primary);
}

.page-home .news-item p {
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 12px;
  flex: 1;
}

.page-home .platform-cta {
  background: var(--space-blue-700);
  border-top: 2px solid var(--neon-green-400);
  border-bottom: 2px solid var(--neon-green-400);
  padding: 36px 16px;
}

.page-home .cta-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .cta-copy .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neon-green-300);
  border: 1px solid rgba(0, 255, 135, 0.4);
  padding: 4px 8px;
  margin-bottom: 10px;
}

.page-home .cta-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--text-primary);
}

.page-home .cta-copy p {
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 8px;
  max-width: 720px;
}

.page-home .cta-note {
  font-family: var(--font-mono);
  font-size: 0.72rem !important;
  color: var(--neon-green-300) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

.page-home .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 640px) {
  .page-home .v3-list {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .page-home .news-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .expert-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .radar-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.7fr);
    gap: 24px;
  }

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

  .page-home .metric-item {
    padding: 22px 16px;
  }

  .page-home .cta-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .cta-actions {
    flex-shrink: 0;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-frame {
    padding: 32px 24px 24px;
  }

  .page-home .hero-grid {
    grid-template-columns: 240px minmax(0, 1fr) 240px;
    gap: 20px;
    align-items: center;
    margin-top: 34px;
  }

  .page-home .scoreboard-match {
    gap: 16px;
  }

  .page-home .sb-team-score {
    font-size: 3.8rem;
  }

  .page-home .v3-layout {
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
    gap: 32px;
  }

  .page-home .expert-layout {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: start;
    gap: 30px;
  }

  .page-home .expert-figure img {
    height: 320px;
  }

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

  .page-home .news-item {
    padding: 20px;
  }
}
