.page-home {
  background: var(--c-space);
  color: var(--c-white);
  overflow-x: hidden;
}

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

.page-home [data-reveal] {
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}

.page-home .btn-large {
  padding: 18px 40px;
  font-size: 17px;
}

/* 首屏主视觉 */
.page-home .hero-poster {
  position: relative;
  min-height: 88vh;
  padding: calc(var(--header-h) + 32px) 0 56px;
  background: var(--grad-hero);
  overflow: hidden;
}

.page-home .hero-poster::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -220px;
  top: -180px;
  background: radial-gradient(circle, rgba(0, 229, 255, .32) 0%, rgba(0, 229, 255, 0) 68%);
  pointer-events: none;
}

.page-home .hero-poster__track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: .8;
  pointer-events: none;
}

.page-home .hero-poster__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 40px;
  align-items: center;
}

.page-home .hero-poster__copy {
  max-width: 780px;
}

.page-home .hero-poster__eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 14px;
  border: 1px solid rgba(232, 240, 254, .24);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  font-size: 13px;
  letter-spacing: .14em;
  color: rgba(232, 240, 254, .8);
}

.page-home .hero-poster__title {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}

.page-home .hero-poster__brand {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(72px, 15vw, 176px);
  line-height: .98;
  letter-spacing: .02em;
  background: linear-gradient(120deg, var(--c-white) 0%, var(--c-ice) 62%, var(--c-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-home .hero-poster__arena {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(28px, 6vw, 72px);
  letter-spacing: .08em;
  color: var(--c-gold);
  text-shadow: 0 0 32px rgba(245, 179, 1, .25);
}

.page-home .hero-poster__desc {
  max-width: 680px;
  margin-top: 28px;
  padding-left: 18px;
  border-left: 3px solid var(--c-orange);
  font-size: 16px;
  line-height: 1.85;
  color: rgba(232, 240, 254, .82);
}

.page-home .hero-poster__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.page-home .hero-poster__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: 1px solid rgba(232, 240, 254, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: var(--c-ice);
  font-weight: 500;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}

.page-home .hero-poster__more:hover {
  border-color: var(--c-gold);
  background: rgba(245, 179, 1, .10);
  transform: translateY(-2px);
}

.page-home .hero-poster__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 44px;
  margin-top: 40px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(232, 240, 254, .14);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
  list-style: none;
}

.page-home .hero-poster__stats li {
  display: grid;
  gap: 2px;
}

.page-home .hero-poster__stats strong {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: .04em;
  color: var(--c-gold);
}

.page-home .hero-poster__stats span {
  font-size: 13px;
  letter-spacing: .08em;
  color: rgba(232, 240, 254, .72);
}

.page-home .hero-poster__visual {
  position: relative;
  margin: 0;
}

.page-home .hero-poster__visual img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  border: 1px solid rgba(232, 240, 254, .18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  object-fit: cover;
}

/* 区块通用标题 */
.page-home .section-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.page-home .section-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 107, 44, .28);
  border-radius: 999px;
  background: rgba(255, 107, 44, .08);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.page-home .section-eyebrow--on-dark {
  border-color: rgba(245, 179, 1, .36);
  background: rgba(245, 179, 1, .08);
  color: var(--c-gold);
}

.page-home .section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.15;
  letter-spacing: .01em;
  margin: 0;
}

.page-home .section-desc {
  max-width: 640px;
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.8;
}

.page-home .section-head--light .section-title {
  color: var(--c-space);
}

.page-home .section-head--light .section-desc {
  color: rgba(44, 62, 80, .78);
}

.page-home .section-more {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 2px;
  border-bottom: 2px solid rgba(255, 107, 44, .3);
  color: var(--c-orange);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}

.page-home .section-more:hover {
  border-bottom-color: var(--c-orange);
  color: var(--c-space);
}

.page-home .section-more--on-dark {
  border-bottom-color: rgba(245, 179, 1, .4);
  color: var(--c-gold);
}

.page-home .section-more--on-dark:hover {
  border-bottom-color: var(--c-gold);
  color: var(--c-white);
}

/* 核心数据面板 */
.page-home .data-panel {
  background: var(--c-ice);
  color: var(--c-ink);
  padding: 88px 0 96px;
}

.page-home .data-panel__layout {
  display: grid;
  gap: 44px;
  align-items: center;
}

.page-home .data-panel__figure {
  margin: 0;
}

.page-home .data-panel__figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  object-fit: cover;
}

.page-home .data-panel__timeline {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .tl-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 107, 44, .12);
  border-radius: var(--radius-md);
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.page-home .tl-item:hover {
  border-color: var(--c-orange);
  box-shadow: 0 12px 40px rgba(11, 30, 58, .10);
  transform: translateY(-4px);
}

.page-home .tl-item__index {
  padding: 10px 8px;
  border-radius: var(--radius-sm);
  background: rgba(255, 107, 44, .1);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .18em;
  color: var(--c-orange);
  writing-mode: vertical-rl;
}

.page-home .tl-item__body {
  flex: 1;
  min-width: 0;
}

.page-home .tl-item__body h3 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 20px;
  color: var(--c-space);
}

.page-home .tl-item__body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(44, 62, 80, .74);
}

.page-home .tl-item__num {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  white-space: nowrap;
  color: var(--c-orange);
}

.page-home .tl-item__num small {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  text-align: center;
  color: var(--c-space-soft);
}

/* 更新记录 */
.page-home .update-record {
  position: relative;
  padding: 88px 0 96px;
  background: linear-gradient(160deg, #0B1E3A 0%, #16274B 55%, #2D3561 100%);
  color: var(--c-white);
  overflow: hidden;
}

.page-home .update-record::before {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -200px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 229, 255, .16), rgba(0, 229, 255, 0) 70%);
  pointer-events: none;
}

.page-home .update-record .section-title {
  color: var(--c-white);
}

.page-home .update-record .section-desc {
  color: rgba(232, 240, 254, .78);
}

.page-home .update-record__layout {
  display: grid;
  gap: 44px;
  align-items: center;
}

.page-home .update-record__timeline {
  position: relative;
  display: grid;
  gap: 16px;
}

.page-home .update-record__timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-orange), var(--c-gold), rgba(245, 179, 1, 0));
}

.page-home .ur-item {
  position: relative;
  padding: 22px 20px 22px 44px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
}

.page-home .ur-item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 28px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--c-orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 44, .18);
  z-index: 2;
}

.page-home .ur-item h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 19px;
  color: var(--c-white);
}

.page-home .ur-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.72;
  color: rgba(232, 240, 254, .72);
}

.page-home .update-record__figure {
  position: relative;
  margin: 0;
}

.page-home .update-record__figure img {
  width: 100%;
  border: 1px solid rgba(232, 240, 254, .16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  object-fit: cover;
}

/* 主流联赛覆盖 */
.page-home .league-coverage {
  background: var(--c-ice);
  color: var(--c-ink);
  padding: 88px 0 96px;
}

.page-home .league-coverage__figure {
  margin: 0 0 40px;
}

.page-home .league-coverage__figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-pop);
  object-fit: cover;
}

.page-home .league-coverage__wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-home .league-coverage__wall li {
  position: relative;
  padding: 24px 20px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  background: var(--c-space);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--c-white);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.page-home .league-coverage__wall li::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(0, 229, 255, .18), rgba(0, 229, 255, 0) 72%);
  pointer-events: none;
}

.page-home .league-coverage__wall li:hover {
  transform: translateY(-4px) rotate(-.5deg);
  box-shadow: var(--shadow-pop);
}

.page-home .league-coverage__wall li span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-gold);
  opacity: .72;
}

/* 进入SIX ARENA入口 */
.page-home .entry-cta {
  position: relative;
  padding: 110px 0 120px;
  background: var(--grad-hero);
  text-align: center;
  overflow: hidden;
}

.page-home .entry-cta::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 720px;
  height: 720px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 229, 255, .14), rgba(0, 229, 255, 0) 70%);
  pointer-events: none;
}

.page-home .entry-cta .container {
  position: relative;
  z-index: 2;
}

.page-home .entry-cta__title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(30px, 5vw, 56px);
  line-height: 1.2;
  color: var(--c-white);
}

.page-home .entry-cta__desc {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(232, 240, 254, .74);
}

.page-home .entry-cta__note {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: .12em;
  color: rgba(232, 240, 254, .56);
}

.page-home .entry-cta__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin-top: 32px;
}

.page-home .entry-cta__links a {
  padding: 8px 16px;
  border: 1px solid rgba(232, 240, 254, .18);
  border-radius: 999px;
  color: rgba(232, 240, 254, .76);
  font-size: 14px;
  letter-spacing: .06em;
  text-decoration: none;
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}

.page-home .entry-cta__links a:hover {
  border-color: var(--c-gold);
  background: rgba(245, 179, 1, .08);
  color: var(--c-white);
}

@media (min-width: 720px) {
  .page-home .league-coverage__wall {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .hero-poster__brand {
    font-size: clamp(80px, 13vw, 176px);
  }
}

@media (min-width: 960px) {
  .page-home .data-panel__layout {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 64px;
  }

  .page-home .update-record__layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 72px;
  }

  .page-home .data-panel,
  .page-home .update-record,
  .page-home .league-coverage {
    padding: 112px 0 124px;
  }
}

@media (min-width: 1024px) {
  .page-home .hero-poster {
    min-height: 92vh;
    padding-top: calc(var(--header-h) + 72px);
  }

  .page-home .hero-poster__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 440px);
    gap: 72px;
  }

  .page-home .hero-poster__visual {
    justify-self: end;
  }

  .page-home .hero-poster__visual img {
    max-width: 440px;
  }
}
