.page-home {
  background: var(--blue-950);
  color: var(--text-default);
  overflow-x: hidden;
}

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

/* ===== Hero 首屏 ===== */
.page-home .home-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: 140px 0 72px;
  overflow: hidden;
  background: var(--blue-950);
}

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

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

.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 13, 26, 0.55) 0%, rgba(5, 13, 26, 0.35) 45%, rgba(10, 25, 47, 0.92) 100%),
    linear-gradient(120deg, rgba(255, 107, 53, 0.22) 0%, transparent 48%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: repeating-linear-gradient(-45deg, transparent 0 16px, rgba(255, 255, 255, 0.04) 16px 17px);
}

.page-home .hero-content,
.page-home .hero-entry {
  position: relative;
  z-index: 3;
}

.page-home .hero-eyebrow {
  color: var(--green-400);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.page-home .hero-title {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.93;
  font-size: clamp(3.2rem, 11vw, 9rem);
  color: var(--text-strong);
  margin: 0 0 24px;
}

.page-home .hero-title .line-first,
.page-home .hero-title .line-second {
  display: block;
}

.page-home .hero-title .line-second {
  color: var(--orange-500);
  font-style: italic;
}

.page-home .hero-features {
  color: var(--orange-500);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.page-home .hero-stats {
  color: var(--text-muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  margin: 0 0 32px;
}

.page-home .hero-stats strong {
  color: var(--text-strong);
  font-weight: 700;
}

.page-home .hero-entry {
  margin-top: 56px;
}

/* ===== 一步直达入口 ===== */
.page-home .quick-entry {
  background: var(--blue-950);
  padding: 64px 0 24px;
}

.page-home .quick-entry-desc {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 16px 0 0;
  max-width: 560px;
}

.page-home .entry-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 40px;
}

.page-home .entry-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 320px;
  padding: 32px;
  background: var(--blue-800);
  color: var(--text-default);
  text-decoration: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  transition: transform var(--ease-base), background var(--ease-base);
  overflow: hidden;
  will-change: transform;
}

.page-home .entry-card:hover {
  transform: translateY(-6px);
  background: var(--blue-700);
}

.page-home .entry-legacy {
  background: var(--blue-800);
}

.page-home .entry-update {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-950));
}

.page-home .entry-update:hover {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
}

.page-home .entry-report {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-900));
}

.page-home .entry-report:hover {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-800));
}

.page-home .entry-media {
  height: 160px;
  overflow: hidden;
  margin-bottom: 20px;
}

.page-home .entry-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--ease-base);
}

.page-home .entry-card:hover .entry-media img {
  transform: scale(1.05);
}

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

.page-home .entry-index {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--orange-500);
}

.page-home .entry-body h3,
.page-home .entry-card h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  font-size: 26px;
  letter-spacing: 0.02em;
  color: var(--text-strong);
  margin: 0 0 10px;
}

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

.page-home .entry-more {
  display: inline-block;
  margin-top: 20px;
  color: var(--orange-500);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== 动态标签 ===== */
.page-home .live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-400);
  color: var(--blue-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  line-height: 1.4;
}

.page-home .live-tag::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: page-home-pulse 1.6s infinite;
}

.page-home .live-tag-green {
  background: transparent;
  color: var(--green-400);
  border: 1px solid rgba(57, 255, 20, 0.45);
}

.page-home .live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  animation: page-home-pulse 1.8s infinite;
}

@keyframes page-home-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.8);
  }
}

/* ===== 通用章节标题 ===== */
.page-home .section-head {
  margin-bottom: 32px;
}

.page-home .section-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.page-home .section-kicker {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange-500);
}

.page-home .page-section-title {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  color: inherit;
  margin: 0;
  display: inline-block;
}

.page-home .page-section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  margin-top: 14px;
  background: var(--orange-500);
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 100%, 0 100%);
}

/* ===== 最新公告 ===== */
.page-home .latest-updates {
  background: var(--cream-100);
  color: var(--gray-900);
  padding: 88px 0;
}

.page-home .updates-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.page-home .update-item {
  margin-top: 28px;
  padding: 0 0 24px 24px;
  border-bottom: 1px solid rgba(10, 25, 47, 0.14);
  position: relative;
}

.page-home .update-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 24px;
  width: 5px;
  background: var(--orange-500);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 0 100%);
}

.page-home .update-item:first-of-type {
  margin-top: 0;
}

.page-home .update-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.page-home .update-item:last-child::before {
  bottom: 0;
}

.page-home .update-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.page-home .update-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-600);
  border: 1px solid rgba(10, 25, 47, 0.22);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

.page-home .update-tag-pinned {
  background: var(--orange-500);
  color: #fff;
  border-color: var(--orange-500);
}

.page-home .update-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--gray-900);
}

.page-home .update-item p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-600);
  margin: 0 0 12px;
}

.page-home .update-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange-600);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.page-home .update-link:hover {
  color: var(--orange-500);
}

.page-home .updates-side img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

/* ===== 赛后战报 ===== */
.page-home .match-reports {
  position: relative;
  background:
    radial-gradient(circle at 75% 15%, rgba(255, 107, 53, 0.2), transparent 42%),
    var(--blue-900);
  color: var(--text-strong);
  padding: 96px 0;
  overflow: hidden;
}

.page-home .reports-bg {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: min(640px, 55%);
  opacity: 0.3;
  z-index: 0;
  pointer-events: none;
}

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

.page-home .reports-layout {
  position: relative;
  z-index: 1;
}

.page-home .reports-sync {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--green-400);
  font-size: 14px;
  font-weight: 600;
}

.page-home .reports-sync::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-400);
  animation: page-home-pulse 2s infinite;
}

.page-home .report-list {
  list-style: none;
  margin: 36px 0 0;
  padding: 0;
}

.page-home .report-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.12);
}

.page-home .report-round {
  flex: 0 0 76px;
  font-family: var(--font-heading);
  font-size: 16px;
  letter-spacing: 0.02em;
  color: var(--orange-500);
  text-transform: uppercase;
  padding-top: 2px;
}

.page-home .report-info {
  flex: 1 1 220px;
}

.page-home .report-info h3 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin: 0 0 6px;
  color: var(--text-strong);
}

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

.page-home .report-tag {
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--green-400);
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: var(--radius-pill);
  padding: 3px 10px;
}

.page-home .report-more {
  margin-top: 32px;
}

/* ===== 转会动态 ===== */
.page-home .transfer-news {
  background: linear-gradient(180deg, var(--blue-950), var(--blue-900));
  color: var(--text-default);
  padding: 96px 0;
}

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

.page-home .schedule-tag {
  display: inline-block;
  background: rgba(57, 255, 20, 0.14);
  color: var(--green-400);
  border: 1px solid rgba(57, 255, 20, 0.4);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  margin-bottom: 20px;
}

.page-home .transfer-head p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 24px;
}

.page-home .transfer-item {
  padding: 22px 0;
  border-bottom: 1px solid rgba(245, 240, 230, 0.1);
}

.page-home .transfer-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.page-home .transfer-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 8px;
}

.page-home .transfer-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--text-strong);
}

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

/* ===== 品牌宣言 ===== */
.page-home .brand-statement {
  position: relative;
  background: var(--blue-950);
  color: var(--text-strong);
  padding: 110px 0;
  overflow: hidden;
}

.page-home .brand-statement::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: rgba(255, 107, 53, 0.1);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
  transform: rotate(10deg);
  pointer-events: none;
}

.page-home .statement-inner {
  text-align: left;
}

.page-home .statement-first,
.page-home .statement-second {
  font-family: var(--font-heading);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.9;
  margin: 0;
  font-size: clamp(3.4rem, 13vw, 11rem);
}

.page-home .statement-first {
  color: var(--text-strong);
}

.page-home .statement-second {
  color: var(--orange-500);
  font-style: italic;
  text-align: right;
  margin-top: 8px;
}

.page-home .statement-desc {
  max-width: 560px;
  margin: 40px auto 32px 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== 响应式布局 ===== */
@media (min-width: 900px) {
  .page-home .entry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .updates-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
  }

  .page-home .transfer-layout {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 56px;
    align-items: start;
  }

  .page-home .report-item {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 180px 0 88px;
  }

  .page-home .latest-updates,
  .page-home .match-reports,
  .page-home .transfer-news {
    padding: 120px 0;
  }

  .page-home .brand-statement {
    padding: 140px 0;
  }

  .page-home .reports-bg {
    width: min(720px, 52%);
  }
}

/* ===== 减少动效偏好 ===== */
@media (prefers-reduced-motion: reduce) {
  .page-home .live-tag::before,
  .page-home .live-dot,
  .page-home .reports-sync::before {
    animation: none;
  }

  .page-home .entry-card,
  .page-home .entry-media img {
    transition: none;
  }
}
