.page-home {
  --home-glow: rgba(0, 255, 102, 0.12);
  --home-glow-orange: rgba(255, 122, 0, 0.16);
  --home-line: rgba(255, 255, 255, 0.08);
  --home-tick-bg: rgba(1, 58, 46, 0.66);
  background: var(--color-deep-blue);
  color: var(--color-gray-blue);
  font-family: var(--font-mono);
  position: relative;
  overflow-x: clip;
}

.page-home .home-shell {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== 首屏 ===== */
.page-home .home-hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 40px;
  min-height: 640px;
  display: flex;
  align-items: flex-start;
}

.page-home .home-hero__bg {
  position: absolute;
  top: 0;
  right: -10%;
  width: 70%;
  height: 100%;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

.page-home .home-hero__bg svg {
  width: 100%;
  height: 100%;
}

.page-home .home-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .home-hero__kicker {
  font-size: 13px;
  color: var(--color-green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid var(--color-green);
  padding-left: 12px;
}

.page-home .home-hero__title {
  font-family: var(--font-display);
  font-size: clamp(46px, 9vw, 96px);
  line-height: 0.96;
  color: var(--color-white);
  margin: 0 0 24px;
  letter-spacing: -0.015em;
  text-shadow: 0 0 40px rgba(0, 255, 102, 0.18);
}

.page-home .home-hero__desc {
  font-size: 14px;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 0 32px;
  color: var(--color-gray-blue);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-hero__pulse-card {
  background: linear-gradient(135deg, rgba(19, 38, 66, 0.92), rgba(10, 17, 40, 0.78));
  border: 1px solid var(--home-line);
  border-left: 3px solid var(--color-green);
  padding: 24px 20px;
  max-width: 360px;
  width: 100%;
  margin-top: 8px;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
}

.page-home .home-hero__pulse-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.page-home .home-hero__pulse-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-green);
}

.page-home .home-hero__pulse-num {
  font-size: clamp(34px, 6vw, 52px);
  font-weight: 700;
  color: var(--color-white);
  font-family: var(--font-mono);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.page-home .home-hero__pulse-unit {
  font-size: 13px;
  color: var(--color-gray-blue);
  margin-bottom: 16px;
}

.page-home .home-hero__pulse-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 12px;
}

.page-home .home-hero__pulse-bar {
  display: block;
  height: 100%;
  width: 72%;
  background: linear-gradient(90deg, var(--color-green), var(--color-orange));
  border-radius: 4px;
}

.page-home .home-hero__pulse-meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(192, 202, 214, 0.8);
}

/* ===== 通用章节标题 ===== */
.page-home .section {
  padding: 52px 0 8px;
  position: relative;
}

.page-home .section-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.page-home .section-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  color: var(--color-white);
  margin: 0;
  letter-spacing: -0.01em;
  border-left: 4px solid var(--color-green);
  padding-left: 14px;
  text-transform: uppercase;
}

.page-home .section-heading p {
  font-size: 13px;
  color: var(--color-gray-blue);
  margin: 0;
  padding-left: 18px;
}

/* ===== 核心功能 Bento ===== */
.page-home .home-func {
  padding-top: 56px;
}

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

.page-home .home-func__card {
  display: block;
  position: relative;
  background: linear-gradient(150deg, var(--color-dark-blue), rgba(19, 38, 66, 0.55));
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  padding: 24px 20px 28px;
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
}

.page-home .home-func__card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-green), var(--color-bright-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-fast);
}

.page-home .home-func__card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 102, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px var(--home-glow);
}

.page-home .home-func__card:hover::after {
  transform: scaleX(1);
}

.page-home .home-func__card--schedule::after {
  background: linear-gradient(90deg, var(--color-orange), var(--color-bright-blue));
}

.page-home .home-func__card--history::after {
  background: linear-gradient(90deg, var(--color-bright-blue), var(--color-green));
}

.page-home .home-func__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.page-home .home-func__idx {
  font-size: 28px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  letter-spacing: -0.04em;
}

.page-home .home-func__icon {
  width: 56px;
  height: auto;
  max-width: 72px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid rgba(0, 255, 102, 0.14);
}

.page-home .home-func__card--schedule .home-func__icon {
  width: 88px;
  max-width: 112px;
  border-color: rgba(0, 191, 255, 0.16);
}

.page-home .home-func__card--history .home-func__icon {
  width: 104px;
  max-width: 132px;
  border-color: rgba(255, 122, 0, 0.18);
}

.page-home .home-func__title {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--color-white);
  margin: 0 0 10px;
  letter-spacing: 0.01em;
}

.page-home .home-func__text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-gray-blue);
  margin: 0 0 16px;
  max-width: 280px;
}

.page-home .home-func__link {
  font-size: 13px;
  color: var(--color-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
}

.page-home .home-func__link i {
  font-style: normal;
  transition: transform var(--transition-fast);
}

.page-home .home-func__card:hover .home-func__link i {
  transform: translateX(4px);
}

/* ===== 跑马灯 ===== */
.page-home .home-ticker {
  margin-top: 56px;
  background: var(--home-tick-bg);
  border-top: 1px solid rgba(0, 255, 102, 0.2);
  border-bottom: 1px solid rgba(0, 255, 102, 0.2);
  padding: 16px 0;
  overflow: hidden;
  width: 100%;
}

.page-home .home-ticker__inner {
  display: flex;
  align-items: center;
  gap: 36px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.page-home .home-ticker__inner::-webkit-scrollbar {
  display: none;
}

.page-home .home-ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-gray-blue);
  white-space: nowrap;
}

.page-home .home-ticker__dot {
  display: inline-block;
  width: 5px;
  height: 5px;
  background: var(--color-green);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 255, 102, 0.8);
  flex-shrink: 0;
}

/* ===== 焦点对阵 ===== */
.page-home .home-match__main {
  background: linear-gradient(125deg, rgba(19, 38, 66, 0.92), rgba(10, 17, 40, 0.72));
  border: 1px solid var(--home-line);
  border-top: 3px solid var(--color-orange);
  border-radius: var(--radius);
  padding: 28px 22px;
  position: relative;
  overflow: hidden;
}

.page-home .home-match__main::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--home-glow-orange), transparent 70%);
  pointer-events: none;
}

.page-home .home-match__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
}

.page-home .home-match__countdown {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-orange);
  background: rgba(255, 122, 0, 0.08);
  border: 1px solid rgba(255, 122, 0, 0.25);
  padding: 5px 12px;
  border-radius: var(--radius);
  font-family: var(--font-mono);
}

.page-home .home-match__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  position: relative;
}

.page-home .home-match__team {
  text-align: left;
}

.page-home .home-match__team:last-child {
  text-align: right;
}

.page-home .home-match__team-name {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(20px, 3.2vw, 30px);
  color: var(--color-white);
  line-height: 1.2;
}

.page-home .home-match__team-adv {
  display: block;
  font-size: 12px;
  color: var(--color-gray-blue);
  margin-top: 6px;
}

.page-home .home-match__versus {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--color-orange);
  transform: skewX(-10deg);
  text-shadow: 0 0 16px rgba(255, 122, 0, 0.5);
}

.page-home .home-match__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 14px;
}

.page-home .home-match__bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--color-orange), var(--color-grad-end));
  border-radius: 6px;
}

.page-home .home-match__meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: rgba(192, 202, 214, 0.8);
}

.page-home .home-match__side {
  margin-top: 28px;
  padding: 14px 4px;
}

.page-home .home-match__side-kicker {
  font-size: 13px;
  color: var(--color-green);
  letter-spacing: 0.08em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.page-home .home-match__side-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.6vw, 40px);
  color: var(--color-white);
  line-height: 1.15;
  margin: 0 0 14px;
}

.page-home .home-match__side-text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-gray-blue);
  margin: 0 0 20px;
  max-width: 340px;
}

/* ===== 数据规模 ===== */
.page-home .home-scale {
  padding-top: 64px;
}

.page-home .home-scale__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.page-home .home-scale__item {
  background: rgba(19, 38, 66, 0.6);
  border: 1px solid var(--home-line);
  border-radius: var(--radius);
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  flex-wrap: wrap;
}

.page-home .home-scale__item:hover {
  border-color: rgba(0, 255, 102, 0.3);
  background: rgba(19, 38, 66, 0.9);
}

.page-home .home-scale__num {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--color-green);
  font-family: var(--font-mono);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.page-home .home-scale__item:nth-child(2n) .home-scale__num {
  color: var(--color-bright-blue);
}

.page-home .home-scale__item:nth-child(3n) .home-scale__num {
  color: var(--color-grad-end);
}

.page-home .home-scale__label {
  font-size: 12px;
  color: var(--color-gray-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ===== 平台动态 ===== */
.page-home .home-news {
  padding-bottom: 8px;
}

.page-home .home-news__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-home .home-news__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-news__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "tag title"
    "tag date";
  gap: 2px 14px;
  align-items: center;
  padding: 14px 16px;
  background: rgba(19, 38, 66, 0.55);
  border: 1px solid transparent;
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--color-gray-blue);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.page-home .home-news__item:hover {
  background: rgba(19, 38, 66, 0.95);
  border-color: rgba(0, 255, 102, 0.25);
  transform: translateX(4px);
}

.page-home .home-news__item .tag {
  grid-area: tag;
}

.page-home .home-news__title {
  grid-area: title;
  font-size: 15px;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.page-home .home-news__date {
  grid-area: date;
  font-size: 11px;
  color: rgba(192, 202, 214, 0.6);
  text-transform: uppercase;
}

/* ===== 关于平台 ===== */
.page-home .home-about {
  padding-top: 64px;
}

.page-home .home-about__text {
  padding: 20px 0;
}

.page-home .home-about__kicker {
  font-size: 13px;
  color: var(--color-green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.page-home .home-about__text h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 40px);
  color: var(--color-white);
  line-height: 1.2;
  margin: 0 0 18px;
}

.page-home .home-about__text p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--color-gray-blue);
  max-width: 480px;
  margin-bottom: 22px;
}

.page-home .home-about__tags {
  margin: 16px 0 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-about__tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .home-about__tag-row span {
  background: rgba(19, 38, 66, 0.85);
  border: 1px solid rgba(0, 255, 102, 0.14);
  color: var(--color-gray-blue);
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius);
  transform: skewX(-6deg);
  letter-spacing: 0.04em;
}

.page-home .home-about__tag-row:nth-child(2n) span {
  transform: skewX(6deg);
  border-color: rgba(255, 122, 0, 0.16);
}

/* ===== SEO 承接 ===== */
.page-home .home-search-seo {
  margin: 56px 0 0;
  padding: 34px 8px 24px;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.page-home .home-search-seo__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.page-home .home-search-seo__kick {
  font-size: 13px;
  color: var(--color-orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.page-home .home-search-seo__text {
  font-size: 13px;
  line-height: 1.8;
  color: var(--color-gray-blue);
  margin: 0;
}

/* ===== 桌面宽屏增强 ===== */
@media (min-width: 768px) {
  .page-home .home-shell {
    padding: 0 28px;
  }

  .page-home .home-hero {
    min-height: 640px;
    padding-top: 72px;
  }

  .page-home .home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: end;
    gap: 24px;
  }

  .page-home .home-hero__pulse-card {
    justify-self: end;
    margin: 0 0 40px;
  }

  .page-home .home-func__grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .page-home .home-func__card--schedule {
    margin-top: 28px;
  }

  .page-home .home-func__card--history {
    margin-top: 56px;
  }

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

  .page-home .home-match__side {
    margin-top: 0;
  }

  .page-home .home-scale__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .page-home .home-scale__item {
    padding: 28px 22px;
  }

  .page-home .home-news__item {
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "tag title date";
    gap: 0 16px;
    padding: 16px 20px;
  }

  .page-home .home-news__title {
    font-size: 16px;
  }

  .page-home .home-about {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: center;
  }

  .page-home .home-search-seo {
    margin-top: 64px;
    padding: 40px 0 32px;
  }
}

@media (min-width: 1200px) {
  .page-home .home-shell {
    padding: 0 40px;
  }

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

  .page-home .home-hero__desc {
    font-size: 15px;
  }

  .page-home .home-match__teams {
    max-width: 720px;
  }
}
