.page-home {
  --home-gold-glow: 0 0 48px rgba(245, 179, 1, 0.18);
  --home-border: rgba(255, 255, 255, 0.06);
  background: var(--color-bg);
  overflow-x: hidden;
}

/* ===== 首屏 Hero ===== */
.page-home .hero-section {
  position: relative;
  background: var(--color-bg);
  padding: 32px 0 0;
}
.page-home .hero-shell {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.page-home .hero-left {
  position: relative;
  z-index: 2;
  padding: 24px 0 0;
}
.page-home .hero-left h1 {
  font-family: var(--font-serif);
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.02em;
  font-size: clamp(1.75rem, 5vw, 3.25rem);
  line-height: 1.25;
  color: var(--color-white);
  margin: 16px 0 16px;
}
.page-home .hero-lead {
  color: var(--color-gray);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 24px;
}
.page-home .hero-quick-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  padding: 16px 0;
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
  margin-bottom: 28px;
}
.page-home .hero-quick-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-home .hero-quick-label {
  font-size: 0.75rem;
  color: var(--color-gray);
  letter-spacing: 0.06em;
}
.page-home .hero-quick-value {
  font-family: var(--font-mono);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-gold-1);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-home .live-score-window {
  margin-bottom: 8px;
}
.page-home .window-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.page-home .live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-red);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.page-home .live-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-red);
  box-shadow: 0 0 8px rgba(230, 57, 70, 0.6);
}
.page-home .live-score-list {
  display: grid;
  gap: 10px;
}
.page-home .live-score-item {
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  border-left: 2px solid var(--color-gold-1);
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.page-home .live-score-item:hover {
  background: var(--color-surface-raised);
  transform: translateX(4px);
  border-left-color: var(--color-gold-2);
}
.page-home .live-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}
.page-home .live-time {
  color: var(--color-gray);
  font-size: 0.75rem;
}
.page-home .live-score-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.page-home .team-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-white);
  white-space: nowrap;
}
.page-home .live-score-main .team-name {
  font-size: 0.8rem;
}
.page-home .score {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}
.page-home .live-extra {
  display: none;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-gray);
  font-size: 0.75rem;
}
.page-home .live-score-item:hover .live-extra {
  display: flex;
}
.page-home .hero-right {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
}
.page-home .hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 13, 13, 0.85) 0%, rgba(29, 53, 87, 0.55) 100%);
}
.page-home .win-rate-panel {
  position: relative;
  z-index: 2;
  width: min(320px, 86%);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.page-home .win-rate-head {
  text-align: center;
  margin-bottom: 12px;
}
.page-home .win-rate-head h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--color-white);
  margin: 4px 0 0;
}
.page-home .win-rate-panel svg {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin: 0 auto;
}
.page-home .win-rate-legend {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.page-home .legend-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--color-gray);
  white-space: nowrap;
}
.page-home .legend-item i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  display: inline-block;
}
.page-home .legend-home i {
  background: var(--gradient-gold);
}
.page-home .legend-away i {
  background: var(--color-red);
}

/* ===== 华人体育更新公告 ===== */
.page-home .announcement-section {
  padding: 48px 0;
  background: var(--color-bg);
  position: relative;
}
.page-home .announcement-section[data-reveal] {
  transform: translateX(48px);
  transition: transform 600ms ease, opacity 600ms ease;
}
.page-home .announcement-section[data-revealed] {
  transform: translateX(0);
}
.page-home .announcement-shell {
  display: grid;
  gap: 32px;
}
.page-home .announcement-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
}
.page-home .announcement-visual img {
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
  display: block;
}
.page-home .announcement-badge {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.7rem;
  color: var(--color-gray);
}
.page-home .announcement-content .section-desc {
  color: var(--color-gray);
}
.page-home .announcement-list {
  margin-top: 20px;
}
.page-home .announcement-item {
  position: relative;
  border-bottom: 1px solid var(--home-border);
  padding: 16px 36px 16px 0;
}
.page-home .announcement-item:last-child {
  border-bottom: none;
}
.page-home .announcement-item summary {
  list-style: none;
  cursor: pointer;
}
.page-home .announcement-item summary::-webkit-details-marker {
  display: none;
}
.page-home .announcement-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  color: var(--color-gold-1);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform var(--transition);
}
.page-home .announcement-item[open] summary::after {
  content: "−";
}
.page-home .announcement-time {
  display: block;
  font-size: 0.75rem;
  color: var(--color-gold-1);
  margin-bottom: 4px;
}
.page-home .announcement-item h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-white);
  margin: 0;
}
.page-home .announcement-item p {
  margin-top: 10px;
  color: var(--color-gray);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== 核心数据板 ===== */
.page-home .data-board-section {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #111315 100%);
}
.page-home .section-desc {
  color: var(--color-gray);
  max-width: 640px;
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.7;
}
.page-home .bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.page-home .bento-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 20px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.page-home .bento-card:hover {
  border-color: rgba(245, 179, 1, 0.25);
  box-shadow: var(--home-gold-glow);
}
.page-home .bento-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-gray);
}
.page-home .bento-value {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-gold-1);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-home .bento-note {
  font-size: 0.8rem;
  color: var(--color-gray);
}
.page-home .bento-bar {
  justify-content: flex-start;
}
.page-home .bento-bar-head h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-white);
  margin: 4px 0 0;
}
.page-home .bar-chart {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.page-home .bar-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
}
.page-home .bar-label {
  font-size: 0.85rem;
  color: var(--color-gray);
}
.page-home .bar-track {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  height: 18px;
  overflow: hidden;
}
.page-home .bar-fill {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 8px;
  height: 100%;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--color-white);
}
.page-home .bar-home {
  background: var(--gradient-gold);
  width: 63%;
}
.page-home .bar-away {
  background: linear-gradient(135deg, #6D1F2C 0%, #E63946 100%);
  width: 41%;
}
.page-home .bento-bar-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  color: var(--color-gray);
  font-size: 0.7rem;
  margin-top: auto;
}
.page-home .update-cells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.page-home .update-cell {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
}
.page-home .update-cell .mono {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}
.page-home .update-cell span:last-child {
  font-size: 0.75rem;
  color: var(--color-gray);
}

/* ===== 战绩内容目录 ===== */
.page-home .records-section {
  padding: 48px 0;
  background: var(--color-bg);
}
.page-home .records-shell {
  display: grid;
  gap: 32px;
}
.page-home .records-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.page-home .records-visual img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  display: block;
}
.page-home .records-note {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  color: var(--color-white);
}
.page-home .records-content .section-desc {
  color: var(--color-gray);
}
.page-home .records-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.page-home .record-card {
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  padding: 16px;
  border: 1px solid transparent;
  transition: transform var(--transition), border-color var(--transition);
}
.page-home .record-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 179, 1, 0.3);
}
.page-home .record-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.page-home .record-score {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
}
.page-home .record-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.page-home .record-vs {
  color: var(--color-gray);
  font-size: 0.75rem;
}
.page-home .record-data {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  padding-top: 10px;
  border-top: 1px solid var(--home-border);
  font-size: 0.75rem;
  color: var(--color-gray);
}
.page-home .record-data span {
  background: rgba(255, 255, 255, 0.04);
  padding: 4px 8px;
  border-radius: 4px;
}
.page-home .records-more {
  margin-top: 20px;
}

/* ===== 栏目快捷入口 ===== */
.page-home .quick-entry-section {
  padding: 48px 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, #151210 100%);
}
.page-home .quick-entry-section .section-desc {
  color: var(--color-gray);
}
.page-home .quick-entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.page-home .quick-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--color-surface);
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.page-home .quick-card:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 179, 1, 0.3);
  box-shadow: var(--home-gold-glow);
}
.page-home .quick-card:focus-visible {
  outline: 2px solid var(--color-gold-1);
  outline-offset: 2px;
}
.page-home .quick-index {
  font-size: 0.85rem;
  color: var(--color-gold-1);
}
.page-home .quick-card h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--color-white);
  margin: 0;
}
.page-home .quick-card p {
  color: var(--color-gray);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}
.page-home .quick-link {
  color: var(--color-gold-1);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.page-home .contact-bar {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.page-home .contact-bar:hover {
  border-color: rgba(245, 179, 1, 0.3);
  box-shadow: var(--home-gold-glow);
}
.page-home .contact-bar:focus-visible {
  outline: 2px solid var(--color-gold-1);
  outline-offset: 2px;
}
.page-home .contact-bar-label {
  color: var(--color-white);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.125rem;
}
.page-home .contact-bar-text {
  color: var(--color-gray);
  font-size: 0.85rem;
}
.page-home .contact-bar .btn {
  margin-top: 4px;
  pointer-events: none;
}

/* ===== 底部品牌区 ===== */
.page-home .brand-story-section {
  padding: 48px 0;
  background: #121212;
}
.page-home .brand-story-shell {
  display: grid;
  gap: 32px;
  align-items: center;
}
.page-home .brand-story-copy h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 900;
  font-size: 1.875rem;
  color: var(--color-white);
  margin: 8px 0 16px;
}
.page-home .brand-story-copy p {
  color: var(--color-gray);
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.page-home .brand-story-copy .btn {
  margin-top: 16px;
}
.page-home .brand-story-visual img {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: var(--radius);
  display: block;
  margin: 0 auto;
}

/* ===== 媒体查询：移动端显示实时详情 ===== */
@media (max-width: 767.98px) {
  .page-home .live-extra {
    display: flex;
  }
}

/* ===== 媒体查询：桌面端 ===== */
@media (min-width: 768px) {
  .page-home .hero-section {
    padding: 0;
    min-height: 720px;
    display: flex;
    align-items: stretch;
  }
  .page-home .hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 0;
    width: 100%;
    max-width: 1440px;
  }
  .page-home .hero-left {
    padding: 88px 8% 72px 0;
    clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
    background: var(--color-surface);
  }
  .page-home .hero-lead {
    font-size: 1.05rem;
  }
  .page-home .hero-quick-stats {
    gap: 32px;
  }
  .page-home .hero-right {
    min-height: 720px;
    border-radius: 0;
  }
  .page-home .hero-bg-img {
    opacity: 0.5;
  }
  .page-home .win-rate-panel {
    position: absolute;
    right: 6%;
    bottom: 8%;
    width: 320px;
  }

  .page-home .announcement-section {
    padding: 72px 0;
  }
  .page-home .announcement-shell {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
  }
  .page-home .announcement-visual {
    min-height: 320px;
  }
  .page-home .announcement-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }

  .page-home .data-board-section {
    padding: 72px 0;
  }
  .page-home .bento-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
  }
  .page-home .bento-bar {
    grid-column: span 2;
    grid-row: span 2;
  }
  .page-home .bento-wide {
    grid-column: span 2;
  }

  .page-home .records-section {
    padding: 72px 0;
  }
  .page-home .records-shell {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
  }
  .page-home .records-visual {
    min-height: 480px;
  }
  .page-home .records-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
  }

  .page-home .quick-entry-section {
    padding: 72px 0;
  }
  .page-home .quick-entry-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .contact-bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .page-home .contact-bar .btn {
    margin-top: 0;
  }

  .page-home .brand-story-section {
    padding: 72px 0;
  }
  .page-home .brand-story-shell {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }
  .page-home .brand-story-copy h2 {
    font-size: 2.25rem;
  }
}
