.page-home {
  --home-gradient: linear-gradient(135deg, #00A876 0%, #E5A93D 100%);
  --home-gold: #E5A93D;
  --home-green: #00A876;
  --home-dark: #0B1D2A;
  --home-card: #122B3B;
  --home-muted: #A0B4C4;
  --home-radius: 24px;
  --home-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;
  background-color: var(--home-dark);
  color: var(--c-text);
  overflow-x: hidden;
}

/* ========== 通用容器与标题 ========== */
.page-home .ak-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.page-home .ak-section-head__num {
  display: inline-block;
  font-family: var(--home-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--home-gold);
  border: 1px solid rgba(229, 169, 61, 0.4);
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 16px;
  background: rgba(229, 169, 61, 0.08);
}

.page-home .ak-section-head__num--gold {
  border-color: rgba(229, 169, 61, 0.6);
  background: rgba(229, 169, 61, 0.15);
}

.page-home .ak-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-head);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  border: 1px solid transparent;
}

.page-home .ak-btn--primary {
  background: linear-gradient(135deg, #00A876, #00C08C);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 168, 118, 0.3);
}

.page-home .ak-btn--primary:hover {
  background: linear-gradient(135deg, #00C08C, #00A876);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 168, 118, 0.4);
}

.page-home .ak-btn--outline {
  background: transparent;
  border-color: rgba(0, 168, 118, 0.6);
  color: #fff;
}

.page-home .ak-btn--outline:hover {
  background: rgba(0, 168, 118, 0.12);
  border-color: #00A876;
  transform: translateY(-2px);
}

.page-home .ak-breadcrumb {
  font-size: 13px;
  font-family: var(--home-mono);
  color: var(--home-muted);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-home .ak-breadcrumb a {
  color: var(--home-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-home .ak-breadcrumb a:hover {
  color: var(--home-green);
}

.page-home .ak-breadcrumb__sep {
  color: rgba(160, 180, 196, 0.4);
}

.page-home .ak-breadcrumb__current {
  color: var(--home-gold);
}

/* ========== 首屏 ========== */
.page-home .hero {
  padding-top: 40px;
  padding-bottom: 80px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.page-home .hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #00A876 40%, #E5A93D 100%);
  opacity: 0.5;
}

.page-home .hero__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-gold);
  background: rgba(229, 169, 61, 0.1);
  border: 1px solid rgba(229, 169, 61, 0.3);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 24px;
}

.page-home .hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--home-gold);
  animation: none;
}

.page-home .hero__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 20px 0;
  max-width: 720px;
}

.page-home .hero__lead {
  font-size: 16px;
  line-height: 1.8;
  color: var(--home-muted);
  margin: 0 0 32px 0;
  max-width: 560px;
}

.page-home .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.page-home .hero__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 480px;
  margin: 0;
}

.page-home .hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid rgba(0, 168, 118, 0.25);
}

.page-home .hero__stat dt {
  font-size: 12px;
  font-family: var(--home-mono);
  letter-spacing: 0.08em;
  color: var(--home-muted);
  text-transform: uppercase;
}

.page-home .hero__stat dd {
  font-size: 28px;
  font-weight: 900;
  color: var(--home-gold);
  margin: 0;
  font-family: var(--home-mono);
  letter-spacing: -0.02em;
}

.page-home .hero__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page-home .hero__figure {
  margin: 0;
  position: relative;
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.page-home .hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.page-home .hero__caption {
  position: absolute;
  left: 20px;
  bottom: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 168, 118, 0.85);
  padding: 8px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(4px);
}

.page-home .hero__index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.page-home .hero__index-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(18, 43, 59, 0.8);
  border: 1px solid rgba(0, 168, 118, 0.2);
  border-radius: 16px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-home .hero__index-item:hover {
  background: rgba(0, 168, 118, 0.15);
  border-color: rgba(0, 168, 118, 0.6);
  transform: translateY(-2px);
}

.page-home .hero__index-num {
  font-family: var(--home-mono);
  font-size: 12px;
  color: var(--home-gold);
  font-weight: 500;
}

.page-home .hero__index-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.4;
}

/* ========== 01 新版入口 ========== */
.page-home .entry-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0B1D2A 0%, #0e2233 100%);
  position: relative;
}

.page-home .entry-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 168, 118, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 168, 118, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-home .entry-section__in {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.page-home .entry-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .entry-section__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.3;
  margin: 0 0 16px 0;
}

.page-home .entry-section__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0 0 28px 0;
  max-width: 480px;
}

.page-home .entry-section__feats {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .entry-section__feats li {
  position: relative;
  padding-left: 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--c-text);
}

.page-home .entry-section__feats li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--home-green);
  background: rgba(0, 168, 118, 0.2);
}

.page-home .entry-section__figure {
  margin: 0;
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.page-home .entry-section__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

/* ========== 02 直播时间表 ========== */
.page-home .schedule-section {
  padding: 80px 0;
  background: #0e2233;
}

.page-home .schedule-section__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.page-home .schedule-section__head .ak-btn {
  align-self: flex-start;
}

.page-home .schedule-section__title {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.page-home .schedule-section__sub {
  font-size: 15px;
  color: var(--home-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

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

.page-home .schedule-card {
  background: var(--home-card);
  border-radius: var(--home-radius);
  padding: 28px 24px;
  border: 1px solid rgba(0, 168, 118, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
  overflow: hidden;
}

.page-home .schedule-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(229, 169, 61, 0.08) 50%);
  border-radius: 0 0 0 80px;
  pointer-events: none;
}

.page-home .schedule-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 168, 118, 0.5);
}

.page-home .schedule-card--featured {
  border-color: rgba(229, 169, 61, 0.4);
  background: linear-gradient(145deg, #14415a 0%, #122b3b 60%);
}

.page-home .schedule-card--featured::before {
  content: "焦点场次";
  position: absolute;
  top: 0;
  right: 20px;
  background: linear-gradient(135deg, #E5A93D, #D4922A);
  color: #0B1D2A;
  font-size: 11px;
  font-weight: 700;
  font-family: var(--home-mono);
  padding: 6px 14px;
  border-radius: 0 0 12px 12px;
  letter-spacing: 0.08em;
}

.page-home .schedule-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-home .schedule-card__league {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--home-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--home-green);
  background: rgba(0, 168, 118, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
}

.page-home .schedule-card__time {
  font-size: 14px;
  font-family: var(--home-mono);
  color: var(--home-gold);
  font-weight: 500;
}

.page-home .schedule-card__teams {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .schedule-card__team {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--c-text);
}

.page-home .schedule-card__vs {
  font-size: 13px;
  font-family: var(--home-mono);
  color: var(--home-muted);
}

.page-home .schedule-card__meta {
  font-size: 13px;
  color: #ffffff;
  opacity: 0.6;
  line-height: 1.5;
  margin: 0;
}

.page-home .schedule-card__remind {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #0B1D2A;
  background: linear-gradient(135deg, #E5A93D, #F0BC5A);
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-home .schedule-card__remind:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-home .schedule-card__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--home-green);
  padding: 10px 20px;
  border: 1px solid rgba(0, 168, 118, 0.5);
  border-radius: 999px;
  text-decoration: none;
  align-self: flex-start;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.page-home .schedule-card__link:hover {
  background: rgba(0, 168, 118, 0.15);
  color: #fff;
}

/* ========== 03 电脑端 ========== */
.page-home .desktop-section {
  padding: 80px 0;
  background: linear-gradient(200deg, #0B1D2A 0%, #101c2a 100%);
  position: relative;
  overflow: hidden;
}

.page-home .desktop-section::before {
  content: "03";
  position: absolute;
  right: -20px;
  bottom: 0;
  font-family: var(--home-mono);
  font-size: 160px;
  font-weight: 700;
  color: rgba(0, 168, 118, 0.06);
  line-height: 1;
  pointer-events: none;
}

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

.page-home .desktop-section__figure {
  margin: 0;
  border-radius: var(--home-radius);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.page-home .desktop-section__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.page-home .desktop-section__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.page-home .desktop-section__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 16px 0;
}

.page-home .desktop-section__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0 0 36px 0;
  max-width: 520px;
}

.page-home .desktop-section__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
  width: 100%;
  max-width: 520px;
}

.page-home .desktop-section__item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(18, 43, 59, 0.7);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.page-home .desktop-section__item:hover {
  background: #14415a;
  border-color: rgba(0, 168, 118, 0.3);
}

.page-home .desktop-section__item-num {
  font-family: var(--home-mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--home-gold);
  flex-shrink: 0;
  min-width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(229, 169, 61, 0.3);
  border-radius: 12px;
  background: rgba(229, 169, 61, 0.05);
}

.page-home .desktop-section__item h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.page-home .desktop-section__item p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--home-muted);
  margin: 0;
}

/* ========== 04 移动端 ========== */
.page-home .mobile-section {
  padding: 80px 0;
  background: var(--home-dark);
  position: relative;
}

.page-home .mobile-section::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #E5A93D 0%, rgba(229, 169, 61, 0) 60%);
  opacity: 0.4;
}

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

.page-home .mobile-section__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .mobile-section__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.25;
  margin: 0 0 16px 0;
}

.page-home .mobile-section__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--home-muted);
  margin: 0 0 36px 0;
  max-width: 520px;
}

.page-home .mobile-section__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 520px;
}

.page-home .mobile-section__steps li {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(145deg, #122b3b, #0f2735);
  border-radius: 20px;
  border: 1px solid rgba(0, 168, 118, 0.15);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.page-home .mobile-section__steps li:hover {
  border-color: rgba(0, 168, 118, 0.5);
  transform: translateX(4px);
}

.page-home .mobile-section__step-num {
  font-family: var(--home-mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--home-gold);
  flex-shrink: 0;
  padding-top: 4px;
}

.page-home .mobile-section__steps h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.page-home .mobile-section__steps p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--home-muted);
  margin: 0;
}

.page-home .mobile-section__visual {
  display: flex;
  justify-content: center;
}

.page-home .mobile-section__img {
  width: 280px;
  border-radius: 32px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(0, 168, 118, 0.25);
  object-fit: cover;
  height: auto;
}

/* ========== 05 章节预览 ========== */
.page-home .chapters-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #0B1D2A 0%, #120d1e 100%);
  position: relative;
  overflow: hidden;
}

.page-home .chapters-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 45, 142, 0.15) 0%, transparent 65%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.page-home .chapters-section__head {
  margin-bottom: 56px;
}

.page-home .chapters-section__title {
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.page-home .chapters-section__sub {
  font-size: 15px;
  color: var(--home-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

.page-home .chapters-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.page-home .chapter-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(18, 43, 59, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  position: relative;
}

.page-home .chapter-card:hover {
  background: rgba(0, 168, 118, 0.12);
  border-color: rgba(0, 168, 118, 0.4);
  transform: translateY(-3px);
}

.page-home .chapter-card__num {
  font-family: var(--home-mono);
  font-size: 28px;
  font-weight: 700;
  color: var(--home-gold);
  opacity: 0.8;
  flex-shrink: 0;
}

.page-home .chapter-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-text);
  margin: 0;
  line-height: 1.4;
  flex-shrink: 0;
}

.page-home .chapter-card__desc {
  font-size: 13px;
  color: var(--home-muted);
  margin: 0;
  flex: 1;
  display: none;
}

.page-home .chapter-card__arrow {
  font-size: 22px;
  color: var(--home-green);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.page-home .chapter-card:hover .chapter-card__arrow {
  transform: translateX(6px);
}

.page-home .chapters-section__figure {
  margin: 0;
  border-radius: var(--home-radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-home .chapters-section__img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  display: block;
}

.page-home .chapters-section__figcap {
  position: absolute;
  right: 20px;
  bottom: 16px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: rgba(139, 27, 58, 0.8);
  padding: 6px 16px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

/* ========== 响应式 ========== */
@media (min-width: 768px) {
  .page-home .hero {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .hero__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: none;
  }

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

  .page-home .hero__index-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px;
  }

  .page-home .entry-section__in {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

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

  .page-home .schedule-card--featured {
    grid-column: span 2;
  }

  .page-home .desktop-section__in {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .page-home .mobile-section__in {
    grid-template-columns: 5fr 3fr;
    gap: 64px;
  }

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

  .page-home .chapter-card__desc {
    display: block;
  }
}

@media (min-width: 1024px) {
  .page-home .hero {
    padding-top: 80px;
    padding-bottom: 120px;
    gap: 80px;
  }

  .page-home .hero__title {
    font-size: 48px;
  }

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

  .page-home .schedule-card--featured {
    grid-column: span 1;
    grid-row: span 2;
  }

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

  .page-home .chapter-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 28px 24px;
  }

  .page-home .chapter-card__num {
    font-size: 32px;
  }

  .page-home .chapter-card__arrow {
    margin-left: auto;
  }

  .page-home .chapter-card__desc {
    display: block;
    font-size: 13px;
  }

  .page-home .chapters-section__figure {
    max-width: 600px;
    margin: 40px auto 0;
  }

  .page-home .entry-section__title,
  .page-home .schedule-section__title,
  .page-home .desktop-section__title,
  .page-home .mobile-section__title,
  .page-home .chapters-section__title {
    font-size: 40px;
  }
}
