.page-home {
  overflow-x: hidden;
  background: var(--color-cream);
  color: var(--color-ink);
}

/* 页面级补充类 */
.page-home .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

/* 通用区头 */
.page-home .sec-label {
  font-family: var(--font-data);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  margin: 0 0 8px;
}
.page-home .zone-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.page-home .zone-head h2 {
  font-family: var(--font-head);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.2;
  margin: 0;
}
.page-home .zone-more {
  font-family: var(--font-data);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
  width: fit-content;
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.page-home .zone-more:hover {
  color: var(--color-accent);
  border-color: var(--color-deep);
}

/* 面包屑 */
.page-home .crumb {
  font-family: var(--font-data);
  font-size: 0.78rem;
  color: rgba(45,31,20,0.55);
  margin-bottom: 18px;
}
.page-home .crumb__sep {
  margin: 0 6px;
  color: var(--color-accent);
}

/* ===== 首屏分屏 ===== */
.page-home .hero-zone {
  position: relative;
  padding: 34px 0 30px;
}
.page-home .hero-zone::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 460px;
  height: 460px;
  background: linear-gradient(135deg, var(--color-purple), var(--color-deep));
  opacity: 0.08;
  transform: rotate(12deg);
  border-radius: 40px;
  pointer-events: none;
}
.page-home .hero-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.page-home .hero-copy h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5.4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.page-home .hero-lead {
  font-family: var(--font-body);
  font-size: 1.06rem;
  line-height: 1.8;
  color: rgba(45,31,20,0.84);
  max-width: 44em;
  margin: 0;
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.page-home .btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.page-home .btn--accent {
  background: var(--color-accent);
  color: var(--color-cream);
}
.page-home .btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}
.page-home .btn--ghost {
  border: 1.5px solid rgba(45,31,20,0.32);
  color: var(--color-ink);
  background: transparent;
}
.page-home .btn--ghost:hover {
  background: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.page-home .hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 32px 0 0;
  border-top: 1px solid rgba(45,31,20,0.12);
  padding-top: 22px;
}
.page-home .hero-fact dt {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: rgba(45,31,20,0.6);
}
.page-home .hero-fact dd {
  font-family: var(--font-data);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-deep);
  margin: 4px 0 0;
}

/* 首屏右侧视觉 */
.page-home .hero-media {
  position: relative;
}
.page-home .hero-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow-2);
  transform: rotate(1deg);
}
.page-home .hero-visual__img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}
.page-home .hero-visual__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.page-home .hero-visual__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.6);
  font-family: var(--font-data);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--color-ink);
}
.page-home .hero-visual__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 0 4px rgba(198,246,48,0.35);
  animation: page-home-pulse 1.6s ease-in-out infinite;
}

/* 首屏 SVG 元素 */
.page-home .hero-svg-grid line {
  stroke: rgba(198,246,48,0.4);
  stroke-width: 1;
  stroke-dasharray: 4 4;
}
.page-home .hero-svg-poly {
  fill: none;
  stroke: var(--color-neon);
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(198,246,48,0.5));
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  animation: page-home-draw 2.2s var(--ease) forwards;
}
.page-home .hero-svg-ball circle {
  fill: rgba(255,255,255,0.15);
  stroke: rgba(255,255,255,0.85);
  stroke-width: 2;
}
.page-home .hero-svg-ball path {
  fill: none;
  stroke: rgba(255,255,255,0.6);
  stroke-width: 2;
}
.page-home .hero-svg-dot {
  fill: var(--color-accent);
}
.page-home .hero-svg-speed path {
  fill: none;
  stroke: rgba(106,13,173,0.75);
  stroke-width: 2.5;
  stroke-linecap: round;
}

@keyframes page-home-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
@keyframes page-home-draw {
  to { stroke-dashoffset: 0; }
}

/* ===== 实时数据滚动条 ===== */
.page-home .ticker-zone {
  background: var(--color-deep);
  border-top: 2px solid var(--color-neon);
  border-bottom: 2px solid var(--color-neon);
  overflow: hidden;
  padding: 12px 0;
  margin-top: 24px;
}
.page-home .ticker-track {
  display: flex;
  width: max-content;
  animation: page-home-ticker 32s linear infinite;
}
.page-home .ticker-zone:hover .ticker-track {
  animation-play-state: paused;
}
.page-home .ticker-group {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
}
.page-home .ticker-item {
  font-family: var(--font-data);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: var(--color-neon);
  white-space: nowrap;
}
.page-home .ticker-item::before {
  content: "◆ ";
  color: var(--color-accent);
}
@keyframes page-home-ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Bento 功能板 ===== */
.page-home .bento-zone {
  padding: 72px 0 24px;
}
.page-home .bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-home .bento__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 260px;
  box-shadow: var(--shadow-1);
  color: var(--color-ink);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.page-home .bento__item:hover {
  transform: translateY(-4px) rotate(-0.5deg);
  box-shadow: var(--shadow-2);
}
.page-home .bento__item--deep {
  background: var(--color-deep);
  color: var(--color-cream);
}
.page-home .bento__item--ink {
  color: var(--color-cream);
}
.page-home .bento__item--neon {
  background: linear-gradient(135deg, var(--color-neon), #dfff6e);
  color: var(--color-ink);
}
.page-home .bento__item--glass {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9);
  color: var(--color-ink);
}
.page-home .bento__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .bento__shade {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 20px;
  background: linear-gradient(to top, rgba(45,31,20,0.82) 0%, rgba(45,31,20,0.16) 55%, rgba(45,31,20,0) 100%);
  color: var(--color-cream);
  z-index: 2;
}
.page-home .bento__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  padding: 24px;
  box-sizing: border-box;
}
.page-home .bento__content--light {
  justify-content: space-between;
}
.page-home .bento__deco {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
}
.page-home .stripes {
  background: repeating-linear-gradient(
    -45deg,
    transparent 0 10px,
    var(--color-neon) 10px 12px
  );
}
.page-home .bento__tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  background: var(--color-accent);
  color: var(--color-cream);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}
.page-home .bento__item--neon .bento__tag {
  background: var(--color-ink);
  color: var(--color-neon);
}
.page-home .bento__num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--color-neon);
  line-height: 1;
  margin: 0 0 2px;
}
.page-home .bento__num span {
  color: var(--color-accent);
}
.page-home .bento__label {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.86);
  margin-bottom: 18px;
}
.page-home .bento__text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 16px;
  max-width: 26em;
  opacity: 0.9;
}
.page-home .bento__link {
  font-family: var(--font-data);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-neon);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  margin-top: auto;
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.page-home .bento__link:hover {
  color: var(--color-accent);
}
.page-home .bento__item--neon .bento__link,
.page-home .bento__item--glass .bento__link {
  color: var(--color-deep);
}
.page-home .bento__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 16px;
}
.page-home .bento__tags span {
  font-family: var(--font-data);
  font-size: 0.76rem;
  background: var(--color-ink);
  color: var(--color-neon);
  padding: 4px 10px;
  border-radius: 999px;
}
.page-home .bento__creds {
  font-family: var(--font-data);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-deep);
  background: rgba(198,246,48,0.25);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
}

/* ===== 最新赛事资讯 ===== */
.page-home .news-zone {
  padding: 72px 0;
  background: var(--color-gray);
}
.page-home .news-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.page-home .news-feature {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-1);
}
.page-home .news-feature__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .news-feature__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px;
  background: linear-gradient(to top, rgba(26,42,110,0.9), rgba(26,42,110,0.12));
  color: var(--color-cream);
}
.page-home .news-feature__overlay h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  line-height: 1.35;
  font-weight: 900;
  margin: 10px 0 8px;
}
.page-home .news-feature__overlay p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.85;
  max-width: 38em;
  margin: 0;
}
.page-home .badge {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--color-accent);
  color: var(--color-cream);
  padding: 4px 10px;
  border-radius: 999px;
  display: inline-block;
}
.page-home .badge--neon {
  background: var(--color-neon);
  color: var(--color-ink);
}
.page-home .badge--accent {
  background: var(--color-accent);
  color: var(--color-cream);
}
.page-home .news-list {
  display: flex;
  flex-direction: column;
}
.page-home .news-item {
  flex: 1;
  background: var(--color-cream);
  padding: 22px 24px;
  border-bottom: 1px solid rgba(45,31,20,0.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.page-home .news-item:first-child {
  border-radius: var(--radius) var(--radius) 0 0;
}
.page-home .news-item:last-child {
  border-bottom: none;
  border-radius: 0 0 var(--radius) var(--radius);
}
.page-home .news-item:hover {
  background: var(--color-white);
  transform: translateX(6px);
}
.page-home .news-item h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  line-height: 1.4;
  font-weight: 900;
  margin: 8px 0 6px;
}
.page-home .news-item p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.65;
  opacity: 0.82;
  margin-bottom: 10px;
}
.page-home .news-item__link {
  font-family: var(--font-data);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
  margin-top: auto;
}

/* ===== V4 重点场次速览 ===== */
.page-home .v4-zone {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--color-deep) 0%, var(--color-purple) 100%);
  color: var(--color-cream);
  position: relative;
  overflow: hidden;
}
.page-home .v4-zone::after {
  content: "";
  position: absolute;
  right: -160px;
  top: -100px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198,246,48,0.2), transparent 68%);
  pointer-events: none;
}
.page-home .v4-zone .zone-head h2 {
  color: var(--color-cream);
}
.page-home .v4-zone .zone-more {
  color: var(--color-neon);
  border-color: var(--color-neon);
}
.page-home .v4-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.page-home .v4-primary {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 26px;
  transform: rotate(-0.4deg);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.page-home .v4-primary:hover {
  transform: rotate(0deg) translateY(-4px);
  background: rgba(255,255,255,0.14);
}
.page-home .v4-primary__head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.page-home .v4-primary__league {
  font-family: var(--font-body);
  font-size: 0.88rem;
  opacity: 0.85;
}
.page-home .v4-primary__time {
  margin-left: auto;
  font-family: var(--font-data);
  font-size: 1.4rem;
  color: var(--color-neon);
}
.page-home .v4-score {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 22px 0;
}
.page-home .v4-score__team {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.1rem;
}
.page-home .v4-score__num {
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 2.6rem;
  color: var(--color-neon);
  letter-spacing: 0.04em;
  line-height: 1;
}
.page-home .v4-data {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}
.page-home .v4-data div {
  background: rgba(45,31,20,0.35);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}
.page-home .v4-data dt {
  font-family: var(--font-body);
  font-size: 0.76rem;
  opacity: 0.7;
  margin-bottom: 6px;
}
.page-home .v4-data dd {
  font-family: var(--font-data);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-neon);
  margin: 0;
}
.page-home .v4-primary .btn--ghost {
  border-color: rgba(255,255,255,0.45);
  color: var(--color-cream);
}
.page-home .v4-primary .btn--ghost:hover {
  background: rgba(255,255,255,0.12);
}
.page-home .v4-aside {
  background: var(--color-cream);
  color: var(--color-ink);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-2);
}
.page-home .v4-aside h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 900;
  margin: 0 0 18px;
}
.page-home .v4-nodes {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.page-home .v4-nodes li {
  display: flex;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  line-height: 1.6;
  border-bottom: 1px dashed rgba(45,31,20,0.16);
  padding-bottom: 12px;
}
.page-home .v4-nodes li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.page-home .v4-nodes__time {
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--color-accent);
}
.page-home .v4-aside__note {
  font-family: var(--font-body);
  font-size: 0.82rem;
  opacity: 0.75;
  line-height: 1.6;
  margin-bottom: 14px;
}
.page-home .v4-aside__link {
  font-family: var(--font-data);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-deep);
  text-decoration: none;
  border-bottom: 2px solid var(--color-accent);
  padding-bottom: 2px;
}

/* ===== 品牌信任带 ===== */
.page-home .trust-zone {
  padding: 72px 0 84px;
  background: var(--color-cream);
}
.page-home .trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.page-home .trust-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-1);
  border-top: 4px solid var(--color-accent);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.page-home .trust-card:nth-child(2) {
  border-top-color: var(--color-neon);
}
.page-home .trust-card:nth-child(3) {
  border-top-color: var(--color-deep);
}
.page-home .trust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}
.page-home .trust-card__num {
  display: block;
  font-family: var(--font-data);
  font-weight: 700;
  font-size: 1.8rem;
  color: var(--color-deep);
  margin-bottom: 4px;
}
.page-home .trust-card__label {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.page-home .trust-card p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.7;
  opacity: 0.8;
  margin: 0;
}
.page-home .trust-zone__statement {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.8;
  opacity: 0.78;
  border-top: 1px solid rgba(45,31,20,0.12);
  padding-top: 28px;
}
.page-home .trust-zone__statement a {
  color: var(--color-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== 桌面端布局增强 ===== */
@media (min-width: 720px) {
  .page-home .zone-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .page-home .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .page-home .hero-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .page-home .hero-visual {
    min-height: 420px;
    transform: rotate(var(--tilt)) translateX(6px);
  }
  .page-home .hero-visual__img {
    min-height: 420px;
  }
  .page-home .bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .news-layout {
    grid-template-columns: 3fr 2fr;
    align-items: stretch;
  }
  .page-home .news-feature {
    min-height: 420px;
  }
  .page-home .v4-grid {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (min-width: 960px) {
  .page-home .bento {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .bento__item--lg {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 536px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .ticker-track,
  .page-home .hero-visual__dot,
  .page-home .hero-svg-poly {
    animation: none;
  }
  .page-home .hero-svg-poly {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
  }
}
