.page-home {
  --home-ghost-size: clamp(120px, 20vw, 220px);
  --home-title-size: clamp(24px, 4vw, 40px);
  --home-grad-ember: linear-gradient(135deg, var(--c-ember) 0%, var(--c-clay) 100%);
  --home-line-dark: rgba(255, 255, 255, 0.14);
  --home-card-border: var(--c-blue);
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--font-sans);
}

.page-home .breadcrumb {
  padding: 12px 20px 4px;
  font-size: 13px;
  background: var(--c-cream);
}

.page-home .breadcrumb a {
  color: var(--c-clay);
  text-decoration: none;
}

.page-home .breadcrumb__sep {
  color: var(--c-stone);
  margin: 0 8px;
}

/* ============ 框景首屏 ============ */
.page-home .hero {
  position: relative;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--c-blue-deep);
  color: var(--c-white);
  border: 3px solid var(--c-white);
  margin: 12px 12px 0;
  box-shadow: var(--shadow-3);
}

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

.page-home .hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.page-home .hero__frame {
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  pointer-events: none;
  z-index: 1;
}

.page-home .hero__ghost-num {
  position: absolute;
  right: -18px;
  bottom: 64px;
  font-family: var(--font-display);
  font-size: var(--home-ghost-size);
  font-weight: 700;
  font-style: italic;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.07);
  transform: skew(-8deg);
  pointer-events: none;
  white-space: nowrap;
  z-index: 1;
}

.page-home .hero__content {
  position: relative;
  z-index: 2;
  padding: 28px 20px 24px;
  max-width: 760px;
}

.page-home .hero__kicker {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.18em;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 4px 10px;
  margin-bottom: 16px;
  color: var(--c-ember-2);
  background: rgba(11, 29, 58, 0.35);
}

.page-home .hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 5.6vw, 64px);
  font-style: italic;
  transform: skew(-5deg);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.05;
  text-transform: uppercase;
}

.page-home .hero__lead {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
}

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

.page-home .hero__ticker {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 0;
  overflow-x: auto;
  background: rgba(6, 18, 36, 0.55);
  border-top: 2px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}

.page-home .ticker__item {
  flex: 1 1 0;
  min-width: 200px;
  padding: 16px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  transition: background var(--ease);
}

.page-home .ticker__item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.page-home .ticker__league {
  grid-column: 1;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-silver);
}

.page-home .ticker__status {
  grid-column: 2;
  grid-row: 1;
  text-align: right;
  font-size: 12px;
}

.page-home .ticker__teams {
  grid-column: 1 / -1;
  font-weight: 600;
  font-size: 15px;
  color: var(--c-white);
}

.page-home .ticker__score {
  grid-column: 1 / -1;
  font-family: var(--font-num);
  font-size: 22px;
  color: var(--c-ember-2);
  letter-spacing: 0.04em;
}

.page-home .ticker__item--live .ticker__score {
  color: var(--c-ember);
  animation: home-score-pulse 1.2s ease-in-out infinite;
}

@keyframes home-score-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

/* ============ 通用章节标题 ============ */
.page-home .home-title {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin: 0 0 28px;
}

.page-home .home-title .sec-title__index {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 700;
  font-style: italic;
  transform: skew(-6deg);
  line-height: 0.8;
  color: var(--c-clay);
  flex-shrink: 0;
  margin-top: 4px;
}

.page-home .home-title__body h2 {
  font-family: var(--font-display);
  font-size: var(--home-title-size);
  font-style: italic;
  transform: skew(-4deg);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  line-height: 1.1;
  text-transform: uppercase;
  color: inherit;
}

.page-home .home-title__body p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-stone);
  margin: 0;
}

.page-home .home-title--light .sec-title__index {
  color: var(--c-ember);
}

.page-home .home-title--light .home-title__body h2 {
  color: var(--c-white);
}

.page-home .home-title--light .home-title__body p {
  color: rgba(255, 255, 255, 0.6);
}

/* ============ 核心入口总览 ============ */
.page-home .modules {
  padding: 48px 20px;
}

.page-home .modules .container {
  max-width: 1100px;
  margin: 0 auto;
}

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

.page-home .module-card {
  position: relative;
  background: var(--c-white);
  border: 2px solid var(--home-card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease);
}

.page-home .module-card:hover {
  transform: translate(-3px, -3px) skew(-0.5deg);
  box-shadow: var(--shadow-2);
}

.page-home .module-card__body {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.page-home .module-card__num {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 700;
  font-style: italic;
  transform: skew(-6deg);
  line-height: 0.7;
  color: rgba(11, 29, 58, 0.12);
  position: absolute;
  top: 12px;
  right: 12px;
}

.page-home .module-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-style: italic;
  transform: skew(-3deg);
  letter-spacing: -0.01em;
  margin: 18px 0 0;
  color: var(--c-blue);
  line-height: 1.2;
}

.page-home .module-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-ink);
  margin: 0;
  flex-grow: 1;
}

.page-home .module-card__link {
  display: inline-block;
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-clay);
  text-decoration: none;
  transition: color var(--ease);
}

.page-home .module-card__link:hover {
  color: var(--c-ember);
}

.page-home .module-card--large {
  background: var(--c-blue);
  border-color: var(--c-blue);
}

.page-home .module-card--large .module-card__num {
  color: rgba(255, 255, 255, 0.18);
}

.page-home .module-card--large h3 {
  color: var(--c-white);
}

.page-home .module-card--large p {
  color: rgba(255, 255, 255, 0.78);
}

.page-home .module-card--large .module-card__link {
  color: var(--c-ember-2);
}

.page-home .module-card--large .module-card__link:hover {
  color: var(--c-ember);
}

.page-home .module-card--large .module-card__body {
  padding-bottom: 0;
}

.page-home .module-card--large .module-card__img {
  border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.page-home .module-card--large .module-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .page-home .modules__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(180px, auto));
  }

  .page-home .module-card--large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }

  .page-home .module-card--schedule {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }

  .page-home .module-card--announce {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
  }

  .page-home .module-card--report {
    grid-column: 3 / 5;
    grid-row: 2 / 3;
  }
}

/* ============ AG赛程中心日程 ============ */
.page-home .schedule {
  position: relative;
  background: var(--c-blue);
  color: var(--c-white);
  padding: 48px 20px;
  overflow: hidden;
  border-top: 4px solid var(--c-ember);
  border-bottom: 4px solid var(--c-ember);
}

.page-home .schedule .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.page-home .schedule__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(11, 29, 58, 0.92) 0%, rgba(11, 29, 58, 0.62) 100%);
}

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

.page-home .schedule__list {
  border-top: 1px solid var(--home-line-dark);
  margin-top: 24px;
}

.page-home .schedule-row {
  display: grid;
  grid-template-columns: 76px 28px 1fr;
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid var(--home-line-dark);
  align-items: center;
}

.page-home .schedule-row__time {
  font-family: var(--font-num);
  font-size: 14px;
  color: var(--c-silver);
  text-transform: uppercase;
}

.page-home .schedule-row__bar {
  position: relative;
  display: flex;
  justify-content: center;
  align-self: stretch;
}

.page-home .schedule-row__bar::after {
  content: '';
  position: absolute;
  top: 12px;
  bottom: -20px;
  width: 2px;
  background: var(--home-line-dark);
}

.page-home .schedule-row:last-child .schedule-row__bar::after {
  display: none;
}

.page-home .schedule-row__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-silver);
  border: 2px solid var(--c-white);
  position: relative;
  z-index: 2;
  margin-top: 8px;
}

.page-home .schedule-row--live .schedule-row__dot {
  background: var(--c-ember);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.8);
  animation: home-dot-pulse 1.2s ease-in-out infinite;
}

@keyframes home-dot-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

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

.page-home .schedule-row__teams {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.page-home .schedule-row__summary {
  grid-column: 1 / -1;
  padding-left: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
}

.page-home .schedule__note {
  margin: 28px 0 0;
  font-size: 14px;
  color: var(--c-silver);
}

.page-home .schedule__note strong {
  color: var(--c-ember-2);
  font-weight: 600;
}

@media (min-width: 700px) {
  .page-home .schedule-row {
    grid-template-columns: 110px 36px 1fr auto;
    gap: 16px;
  }

  .page-home .schedule-row__summary {
    grid-column: auto;
    text-align: right;
    color: var(--c-silver);
  }

  .page-home .schedule-row__bar::after {
    bottom: -24px;
  }
}

/* ============ 大陆版AG战报专栏 ============ */
.page-home .reports {
  padding: 48px 20px;
}

.page-home .reports .container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-home .reports__layout {
  display: grid;
  gap: 28px;
}

.page-home .reports__list {
  border-top: 2px solid var(--c-blue);
}

.page-home .report-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px 14px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(11, 29, 58, 0.15);
  transition: background var(--ease);
}

.page-home .report-item:hover {
  background: rgba(245, 241, 232, 0.7);
}

.page-home .report-item__num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  font-style: italic;
  transform: skew(-6deg);
  color: var(--c-clay);
  line-height: 1;
  padding-top: 2px;
}

.page-home .report-item__content h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 6px;
  color: var(--c-blue);
}

.page-home .report-item__content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-ink);
  margin: 0 0 10px;
}

.page-home .report-item__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-clay);
  text-decoration: none;
}

.page-home .report-item__link:hover {
  color: var(--c-ember);
}

.page-home .report-item__time {
  grid-column: 1 / -1;
  font-family: var(--font-num);
  font-size: 12px;
  color: var(--c-stone);
  text-transform: uppercase;
}

.page-home .reports__aside {
  background: var(--c-white);
  border: 2px solid var(--c-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.page-home .reports__img {
  border: 2px solid var(--c-blue);
  border-radius: var(--radius);
  overflow: hidden;
}

.page-home .reports__img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .reports__aside p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-ink);
  margin: 0;
}

@media (min-width: 900px) {
  .page-home .reports__layout {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    align-items: start;
  }

  .page-home .report-item {
    grid-template-columns: 48px 1fr auto;
    align-items: start;
  }

  .page-home .report-item__time {
    grid-column: auto;
    padding-top: 4px;
    white-space: nowrap;
  }
}

/* ============ 亚博更新公告大全 ============ */
.page-home .announcements {
  padding: 48px 20px;
  background: linear-gradient(180deg, var(--c-cream) 0%, rgba(138, 141, 143, 0.1) 100%);
  border-top: 2px solid var(--c-silver);
  border-bottom: 2px solid var(--c-silver);
}

.page-home .announcements .container {
  max-width: 1100px;
  margin: 0 auto;
}

.page-home .announcements__list {
  background: var(--c-white);
  border: 2px solid var(--c-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-1);
  overflow: hidden;
}

.page-home .announcement-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 14px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(11, 29, 58, 0.12);
  align-items: center;
  text-decoration: none;
  transition: background var(--ease);
}

.page-home .announcement-item:last-child {
  border-bottom: none;
}

.page-home .announcement-item:hover {
  background: rgba(245, 241, 232, 0.6);
}

.page-home .announcement-item__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.4;
}

.page-home .announcement-item__title:hover {
  color: var(--c-clay);
}

.page-home .announcement-item__time {
  grid-column: 1 / -1;
  font-family: var(--font-num);
  font-size: 12px;
  color: var(--c-stone);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 700px) {
  .page-home .announcement-item {
    grid-template-columns: auto 1fr auto;
  }

  .page-home .announcement-item__time {
    grid-column: auto;
  }
}

/* ============ 平台数据看板 ============ */
.page-home .data-board {
  padding: 56px 20px;
  background: var(--c-blue-deep);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}

.page-home .data-board .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-home .data-board::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 260px;
  height: 260px;
  background: var(--home-grad-ember);
  opacity: 0.14;
  transform: rotate(18deg);
  border-radius: 50%;
}

.page-home .data-board__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 32px 0 32px;
}

.page-home .stat {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  transition: border-color var(--ease), background var(--ease);
}

.page-home .stat:hover {
  border-color: var(--c-ember);
  background: rgba(255, 107, 53, 0.08);
}

.page-home .stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--c-ember);
}

.page-home .stat__num em {
  font-style: normal;
  font-size: 0.55em;
  color: var(--c-ember-2);
  margin-left: 2px;
}

.page-home .stat__label {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.65);
}

.page-home .data-board__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (min-width: 700px) {
  .page-home .data-board__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1000px) {
  .page-home .data-board__stats {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ============ 响应式细节修正 ============ */
@media (min-width: 900px) {
  .page-home .hero {
    min-height: min(92vh, 840px);
  }

  .page-home .hero__content {
    padding: 48px 56px 40px;
  }

  .page-home .hero__ghost-num {
    bottom: 80px;
  }

  .page-home .hero__ticker {
    margin-top: auto;
  }
}

@media (max-width: 640px) {
  .page-home .hero__actions .btn {
    flex: 1 1 100%;
  }

  .page-home .module-card__num {
    font-size: 44px;
  }

  .page-home .module-card h3 {
    font-size: 18px;
  }

  .page-home .ticker__item {
    min-width: 180px;
    padding: 14px 16px;
  }
}
