.page-home {
  --home-line: rgba(255, 255, 255, 0.08);
  --home-line-gold: rgba(255, 215, 0, 0.4);
  --home-neon-glow: 0 0 32px rgba(57, 255, 20, 0.22);
  background: var(--color-bg-main);
  overflow-x: hidden;
}

.page-home img {
  max-width: 100%;
  height: auto;
}

.page-home .hero-bg,
.page-home .event-visual img,
.page-home .timeline-img img,
.page-home .phone-frame img {
  width: 100%;
}

@keyframes home-live-pulse {
  from { opacity: 0.55; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1.18); }
}

/* ========== Hero 首屏 ========== */
.page-home .home-hero {
  position: relative;
  background: var(--color-bg-dark);
  padding-top: calc(var(--header-height) + 8px);
  overflow: hidden;
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transform: scale(1.04);
}

.page-home .hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 15, 13, 0.34) 0%, rgba(10, 15, 13, 0.62) 45%, var(--color-bg-dark) 100%);
}

.page-home .hero-track {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 128px;
  width: 100%;
  height: 160px;
  z-index: 1;
  opacity: 0.7;
  pointer-events: none;
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
  min-height: 58vh;
  padding-top: 40px;
  padding-bottom: 28px;
}

.page-home .hero-breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--color-muted);
  font-size: 13px;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.page-home .hero-breadcrumb .breadcrumb-sep {
  color: var(--color-muted);
  opacity: 0.6;
}

.page-home .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 215, 0, 0.12);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  margin-bottom: 18px;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.page-home .hero-tag-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 10px var(--color-neon);
  animation: home-live-pulse 1.6s ease-in-out infinite alternate;
}

.page-home .hero-title {
  font-family: var(--font-headline);
  font-size: clamp(30px, 8.4vw, 66px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--color-white);
  text-transform: uppercase;
  margin: 0 0 18px;
  max-width: 880px;
}

.page-home .hero-lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 640px;
  margin-bottom: 28px;
}

.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-home .hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-neon);
  color: var(--color-bg-dark);
  font-weight: 800;
  font-size: 16px;
  padding: 12px 22px;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  transition: transform var(--duration-fast) var(--ease-out), box-shadow var(--duration-fast) var(--ease-out);
}

.page-home .hero-cta:hover {
  box-shadow: var(--home-neon-glow);
  transform: translateY(-2px);
}

.page-home .hero-cta-arrow {
  transition: transform var(--duration-fast) var(--ease-out);
}

.page-home .hero-cta:hover .hero-cta-arrow {
  transform: translateX(4px);
}

.page-home .hero-cta-outline {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border-gold);
  color: var(--color-white);
  padding: 11px 18px;
  font-weight: 600;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background var(--duration-fast), border-color var(--duration-fast);
}

.page-home .hero-cta-outline:hover {
  background: rgba(255, 215, 0, 0.12);
  border-color: var(--color-gold);
}

.page-home .hero-scoreboard {
  background: rgba(11, 61, 46, 0.76);
  border: 1px solid var(--color-border-gold);
  box-shadow: 0 0 42px rgba(255, 215, 0, 0.14);
  padding: 22px 18px;
  position: relative;
}

.page-home .hero-scoreboard::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--color-gold), var(--color-neon));
}

.page-home .scoreboard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.page-home .scoreboard-state {
  color: var(--color-muted);
  font-size: 12px;
}

.page-home .scoreboard-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.page-home .scoreboard-team {
  color: var(--color-white);
  font-size: 16px;
  text-align: center;
}

.page-home .scoreboard-score {
  font-family: var(--font-headline);
  font-size: 44px;
  font-weight: 900;
  color: var(--color-gold);
  letter-spacing: 0.02em;
  text-align: center;
}

.page-home .scoreboard-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--color-muted);
  font-size: 13px;
}

.page-home .scoreboard-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-home .scoreboard-meta span::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-neon);
}

.page-home .scoreboard-meta span:last-child::after {
  display: none;
}

.page-home .scoreboard-foot {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 215, 0, 0.3);
  color: var(--color-muted);
  font-size: 12px;
}

.page-home .hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(10, 15, 13, 0.55);
  border-top: 1px solid rgba(255, 215, 0, 0.35);
  backdrop-filter: blur(6px);
}

.page-home .hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.page-home .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .hero-stat-num {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-gold);
  line-height: 1.2;
}

.page-home .hero-stat-label {
  color: var(--color-muted);
  font-size: 13px;
}

/* ========== 通用区块标题 ========== */
.page-home .section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.page-home .section-index {
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.08em;
}

.page-home .section-rule {
  flex: 0 0 48px;
  height: 2px;
  background: var(--color-neon);
}

.page-home .section-title {
  font-family: var(--font-headline);
  font-size: clamp(26px, 5vw, 42px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}

.page-home .section-subtitle {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 660px;
}

/* ========== 01 更新速览 ========== */
.page-home .home-updates {
  position: relative;
  padding: 68px 0 80px;
}

.page-home .home-updates::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon), var(--color-gold));
}

.page-home .updates-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}

.page-home .update-card {
  position: relative;
  background: var(--color-panel);
  border: 1px solid var(--home-line);
  padding: 26px 22px;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  transition: transform var(--duration-mid) var(--ease-out), border-color var(--duration-fast);
}

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

.page-home .update-card--neon {
  border-top: 3px solid var(--color-neon);
}

.page-home .update-card--gold {
  border-top: 3px solid var(--color-gold);
}

.page-home .update-card-num {
  display: block;
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-neon);
  margin-bottom: 14px;
}

.page-home .update-card--gold .update-card-num {
  color: var(--color-gold);
}

.page-home .update-card h3 {
  font-family: var(--font-headline);
  font-size: 18px;
  color: var(--color-white);
  margin: 0 0 10px;
}

.page-home .update-card p {
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.page-home .update-card-link {
  color: var(--color-neon);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 20, 0.4);
  padding-bottom: 2px;
  transition: color var(--duration-fast), border-color var(--duration-fast);
}

.page-home .update-card-link:hover {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}

.page-home .updates-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 16px;
  border-left: 3px solid var(--color-gold);
  background: rgba(255, 215, 0, 0.05);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
}

.page-home .updates-note a {
  color: var(--color-gold);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.page-home .updates-note a:hover {
  color: var(--color-neon);
}

/* ========== 02 重点场次 ========== */
.page-home .home-events {
  position: relative;
  background: var(--color-bg-dark);
  padding: 68px 0 80px;
}

.page-home .home-events::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, rgba(57, 255, 20, 0.05), transparent);
  pointer-events: none;
}

.page-home .events-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.page-home .events-more {
  flex-shrink: 0;
}

.page-home .events-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 24px;
}

.page-home .event-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--home-line);
  position: relative;
  padding: 20px 18px;
  transition: border-color var(--duration-fast), transform var(--duration-mid) var(--ease-out);
}

.page-home .event-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-style: solid;
  border-width: 0 0 26px 26px;
  border-color: transparent transparent rgba(255, 215, 0, 0.35) transparent;
}

.page-home .event-card:hover {
  border-color: var(--color-border-gold);
  transform: translateY(-3px);
}

.page-home .event-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.page-home .event-cat {
  font-size: 12px;
  padding: 4px 8px;
}

.page-home .event-state {
  font-size: 12px;
  color: var(--color-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.page-home .event-state.is-live {
  color: var(--color-neon);
}

.page-home .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 8px var(--color-neon);
  animation: home-live-pulse 1.1s ease-in-out infinite alternate;
}

.page-home .event-scoreline {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.page-home .event-team {
  font-size: 15px;
  color: var(--color-muted);
  text-align: center;
}

.page-home .event-score {
  font-family: var(--font-headline);
  font-size: 36px;
  font-weight: 900;
  color: var(--color-gold);
  letter-spacing: 0.02em;
  text-align: center;
}

.page-home .event-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.page-home .event-quick span {
  font-size: 12px;
  color: var(--color-muted);
  background: rgba(11, 61, 46, 0.5);
  padding: 3px 8px;
}

.page-home .event-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: 1px dashed rgba(255, 215, 0, 0.35);
  color: var(--color-white);
  font-size: 13px;
  padding: 10px 12px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--duration-fast), border-color var(--duration-fast);
}

.page-home .event-trigger:hover {
  background: rgba(255, 215, 0, 0.06);
  border-color: var(--color-gold);
}

.page-home .accordion-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  font-weight: 800;
  transition: transform var(--duration-fast);
}

.page-home .accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.page-home .event-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 0 12px;
}

.page-home .event-detail-row div {
  background: rgba(11, 61, 46, 0.5);
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.page-home .event-detail-row dt {
  color: var(--color-muted);
  font-size: 13px;
}

.page-home .event-detail-row dd {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 15px;
  margin: 0;
}

.page-home .event-detail p {
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.page-home .event-finish-note {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--home-line);
  color: var(--color-muted);
  font-size: 12px;
}

.page-home .event-visual {
  position: relative;
  overflow: hidden;
}

.page-home .event-visual img {
  height: 260px;
  object-fit: cover;
  display: block;
}

.page-home .event-visual-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(10, 15, 13, 0.86);
  padding: 16px 18px;
  color: var(--color-muted);
  font-size: 13px;
}

.page-home .event-visual-caption-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-home .event-visual-caption-body strong {
  color: var(--color-white);
  font-size: 15px;
  font-family: var(--font-headline);
}

.page-home .event-visual-num {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 900;
  color: var(--color-gold);
  white-space: nowrap;
}

/* ========== 03 实时比分与战报 ========== */
.page-home .home-live {
  position: relative;
  padding: 68px 0 80px;
}

.page-home .home-live::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 85% 20%, rgba(255, 215, 0, 0.06), transparent 42%);
}

.page-home .home-live-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
}

.page-home .live-score {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 20px 0 16px;
}

.page-home .live-team {
  color: var(--color-muted);
  font-size: 15px;
}

.page-home .live-score-num {
  font-family: var(--font-headline);
  font-size: 54px;
  font-weight: 900;
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1;
}

.page-home .live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-neon);
  font-size: 14px;
  margin-bottom: 20px;
}

.page-home .live-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-neon);
  box-shadow: 0 0 10px var(--color-neon);
  animation: home-live-pulse 1.3s ease-in-out infinite alternate;
}

.page-home .live-facts {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 4px;
}

.page-home .live-facts li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--color-muted);
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--home-line);
}

.page-home .live-facts strong {
  color: var(--color-white);
  font-family: var(--font-headline);
  font-weight: 700;
}

.page-home .live-panel {
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border-gold);
  padding: 22px 18px;
  position: relative;
}

.page-home .live-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon), var(--color-gold));
}

.page-home .live-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--color-muted);
  font-size: 12px;
  margin-bottom: 20px;
}

.page-home .live-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.page-home .live-cell {
  background: rgba(57, 255, 20, 0.04);
  border: 1px solid rgba(57, 255, 20, 0.14);
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .live-cell-label {
  color: var(--color-muted);
  font-size: 12px;
}

.page-home .live-cell-value {
  font-family: var(--font-headline);
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.page-home .live-cell-sub {
  color: var(--color-muted);
  font-size: 12px;
}

.page-home .live-report {
  background: var(--color-panel);
  border-left: 3px solid var(--color-gold);
  padding: 16px;
}

.page-home .live-report h3 {
  font-family: var(--font-headline);
  font-size: 15px;
  color: var(--color-gold);
  margin: 0 0 8px;
}

.page-home .live-report p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.page-home .live-report .btn-outline {
  padding: 8px 14px;
  font-size: 13px;
}

/* ========== 04 订阅球队看9博 ========== */
.page-home .home-subscribe {
  position: relative;
  background: var(--color-bg-dark);
  padding: 68px 0 80px;
  overflow: hidden;
}

.page-home .home-subscribe::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.1), transparent 70%);
  pointer-events: none;
}

.page-home .home-sub-main {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
}

.page-home .subscribe-perks {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 14px;
}

.page-home .subscribe-perks li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.page-home .perk-icon {
  flex: 0 0 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(57, 255, 20, 0.16);
  border: 1px solid rgba(57, 255, 20, 0.5);
  color: var(--color-neon);
  font-size: 12px;
  font-weight: 800;
  margin-top: 2px;
}

.page-home .subscribe-demo {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--home-line);
  padding: 22px 18px;
}

.page-home .timeline-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--color-muted);
  font-size: 13px;
  margin-bottom: 20px;
}

.page-home .timeline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.page-home .timeline-list::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-neon), var(--color-border-gold));
}

.page-home .timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 14px 64px 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
}

.page-home .timeline-point {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-gold);
  border: 2px solid var(--color-bg-dark);
  box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.5);
  z-index: 1;
}

.page-home .timeline-item--win .timeline-point {
  background: var(--color-neon);
  box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.5);
}

.page-home .timeline-item--loss .timeline-point {
  background: var(--color-muted);
  box-shadow: 0 0 0 2px rgba(176, 196, 184, 0.4);
}

.page-home .timeline-round {
  color: var(--color-muted);
  font-size: 12px;
}

.page-home .timeline-score {
  color: var(--color-white);
  font-size: 14px;
  font-weight: 600;
}

.page-home .timeline-badge {
  font-size: 12px;
  padding: 2px 8px;
  color: var(--color-muted);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.page-home .timeline-item--win .timeline-badge {
  color: var(--color-neon);
  border-color: rgba(57, 255, 20, 0.4);
}

.page-home .timeline-item--loss .timeline-badge {
  color: var(--color-gold);
  border-color: var(--color-border-gold);
}

.page-home .timeline-item--draw .timeline-badge {
  color: var(--color-muted);
  border-color: var(--home-line);
}

.page-home .timeline-img {
  margin-top: 20px;
  border: 1px solid var(--home-line);
}

.page-home .timeline-img img {
  max-height: 280px;
  object-fit: cover;
  display: block;
}

/* ========== 05 小屏设备优化 ========== */
.page-home .home-mobile {
  padding: 68px 0 80px;
}

.page-home .home-mobile-inner {
  display: grid;
  gap: 40px;
}

.page-home .phone-stage {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.page-home .phone-frame {
  position: relative;
  width: 240px;
  max-width: 100%;
  background: var(--color-bg-dark);
  border-radius: 34px;
  border: 6px solid #111;
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.5), 0 0 0 2px rgba(255, 215, 0, 0.2);
  overflow: hidden;
  padding: 8px;
}

.page-home .phone-frame img {
  display: block;
  border-radius: 26px;
}

.page-home .phone-notch {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 14px;
  background: #111;
  border-radius: 12px;
  z-index: 2;
}

.page-home .mobile-feature-list {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.page-home .mobile-feature {
  padding: 16px 14px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--color-neon);
}

.page-home .mobile-feature:nth-child(2) {
  border-left-color: var(--color-gold);
}

.page-home .mobile-feature:nth-child(3) {
  border-left-color: var(--color-muted);
}

.page-home .feature-key {
  display: block;
  font-family: var(--font-headline);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.page-home .mobile-feature p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ========== 06 最新动态 ========== */
.page-home .home-news {
  background: var(--color-bg-dark);
  padding: 68px 0 80px;
}

.page-home .news-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.page-home .news-list {
  display: grid;
  gap: 16px;
}

.page-home .news-item {
  display: grid;
  grid-template-columns: 44px 1fr auto 40px;
  gap: 14px;
  align-items: center;
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--home-line);
  transition: border-color var(--duration-fast), background var(--duration-fast);
}

.page-home .news-item:hover {
  border-color: var(--color-border-gold);
  background: rgba(255, 255, 255, 0.06);
}

.page-home .news-index {
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-neon);
  align-self: start;
}

.page-home .news-body h3 {
  font-size: 16px;
  color: var(--color-white);
  margin: 0 0 6px;
  line-height: 1.4;
}

.page-home .news-body p {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.page-home .news-tag {
  display: inline-block;
  font-size: 12px;
  color: var(--color-gold);
  background: rgba(255, 215, 0, 0.08);
  border: 1px solid var(--color-border-gold);
  padding: 4px 8px;
  white-space: nowrap;
  align-self: start;
}

.page-home .news-arrow {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-neon);
  color: var(--color-bg-dark);
  font-weight: 800;
  font-size: 18px;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  text-decoration: none;
  transition: transform var(--duration-fast) var(--ease-out);
}

.page-home .news-arrow:hover {
  transform: translateX(3px);
}

/* ========== 底部 CTA ========== */
.page-home .home-cta {
  position: relative;
  padding: 56px 0;
  overflow: hidden;
}

.page-home .home-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-neon), transparent);
}

.page-home .home-cta-inner {
  text-align: center;
}

.page-home .cta-tape {
  width: 120px;
  height: 4px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, var(--color-neon), var(--color-gold));
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

.page-home .home-cta h2 {
  font-family: var(--font-headline);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: 12px;
}

.page-home .home-cta p {
  color: var(--color-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

.page-home .home-cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== 响应式 ========== */
@media (min-width: 680px) {
  .page-home .hero-stats-inner {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .page-home .event-card:last-child {
    grid-column: span 2;
  }

  .page-home .event-visual img {
    height: 320px;
  }
}

@media (min-width: 860px) {
  .page-home .updates-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .page-home .update-card:nth-child(2) {
    transform: translateY(18px);
  }

  .page-home .update-card:nth-child(2):hover {
    transform: translateY(14px);
  }

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

  .page-home .news-item:first-child {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.85fr);
    gap: 48px;
    min-height: 68vh;
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .page-home .hero-scoreboard {
    margin-bottom: 24px;
  }

  .page-home .hero-title {
    font-size: clamp(44px, 5.4vw, 68px);
  }

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

  .page-home .event-card:last-child {
    grid-column: auto;
  }

  .page-home .event-visual img {
    height: 360px;
  }

  .page-home .event-visual-caption {
    left: 24px;
    right: auto;
    bottom: 24px;
    min-width: 420px;
  }

  .page-home .home-live-inner {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 56px;
  }

  .page-home .home-sub-main {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
  }

  .page-home .home-mobile-inner {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 60px;
  }

  .page-home .phone-frame {
    width: 300px;
  }

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

  .page-home .timeline-img img {
    max-height: 320px;
  }
}
