.page-home {
  --home-orange: #FF4D00;
  --home-green: #39FF14;
  --home-navy: #0A192F;
  --home-navy-deep: #061220;
  --home-cream: #F5F0E6;
  --home-fog: #C8D6E5;
  --home-glass: rgba(255, 255, 255, 0.08);
  --home-border: rgba(255, 255, 255, 0.15);
  --home-font-display: 'DIN Condensed', 'Roboto Condensed', 'Arial Narrow', sans-serif;
  --home-font-body: 'Noto Serif SC', 'Source Han Serif SC', 'Songti SC', serif;
  --home-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --home-speed: 200ms;
  background-color: var(--home-navy);
  color: var(--home-cream);
  font-family: var(--home-font-body);
  overflow-x: hidden;
}

/* ---------- 英雄区：杂志封面式首屏 ---------- */
.page-home .home-hero {
  position: relative;
  background: linear-gradient(135deg, var(--home-navy-deep) 0%, var(--home-navy) 55%, #0D2A4D 100%);
  padding: 96px 0 72px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 0 100%);
  overflow: hidden;
}

.page-home .home-tactical {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.page-home .home-tactical__arrow-one {
  position: absolute;
  top: 18%;
  right: 38%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(57, 255, 20, 0.5), transparent);
  transform: rotate(-22deg);
}

.page-home .home-tactical__arrow-one::after {
  content: '';
  position: absolute;
  right: 0;
  top: -4px;
  border-left: 8px solid rgba(57, 255, 20, 0.5);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
}

.page-home .home-tactical__arrow-two {
  position: absolute;
  bottom: 22%;
  left: 28%;
  width: 240px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 77, 0, 0.4), transparent);
  transform: rotate(18deg);
}

.page-home .home-tactical__circle-one {
  position: absolute;
  top: 12%;
  left: 12%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .home-tactical__circle-one::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(57, 255, 20, 0.25);
}

.page-home .home-tactical__circle-two {
  position: absolute;
  right: 14%;
  top: 38%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(57, 255, 20, 0.2);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.page-home .home-hero__text {
  padding-right: 0;
}

.page-home .home-hero__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--home-font-display);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--home-fog);
  margin-bottom: 16px;
}

.page-home .home-hero__version {
  color: var(--home-orange);
  font-weight: 700;
  background: rgba(255, 77, 0, 0.12);
  border: 1px solid rgba(255, 77, 0, 0.3);
  padding: 2px 8px;
  font-size: 14px;
}

.page-home .home-hero__kicker-sep {
  color: rgba(255, 255, 255, 0.3);
}

.page-home .home-hero__title {
  margin: 0;
  font-family: var(--home-font-display);
  font-size: 88px;
  font-weight: 700;
  line-height: 1.02;
  color: var(--home-cream);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-stretch: condensed;
}

.page-home .home-hero__slogan {
  margin: 12px 0 24px;
  font-family: var(--home-font-body);
  font-size: 18px;
  color: var(--home-green);
  letter-spacing: 0.12em;
  border-left: 3px solid var(--home-green);
  padding-left: 14px;
}

.page-home .home-hero__lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.78);
  max-width: 420px;
}

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

.page-home .home-hero__actions .yb-btn {
  min-width: 148px;
}

.page-home .home-hero__media {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  transform: skewX(-1.5deg);
}

.page-home .home-hero__image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.15) brightness(0.85);
}

.page-home .home-hero__stat {
  position: absolute;
  background: rgba(6, 18, 32, 0.86);
  border: 1px solid rgba(57, 255, 20, 0.4);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 10px 16px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-family: var(--home-font-display);
}

.page-home .home-hero__stat--one {
  top: 16px;
  left: 16px;
}

.page-home .home-hero__stat--two {
  bottom: 16px;
  right: 16px;
  border-color: rgba(255, 77, 0, 0.5);
}

.page-home .home-hero__stat-num {
  font-size: 26px;
  font-weight: 700;
  color: var(--home-green);
  line-height: 1;
}

.page-home .home-hero__stat--two .home-hero__stat-num {
  color: var(--home-orange);
}

.page-home .home-hero__stat-label {
  font-family: var(--home-font-body);
  font-size: 11px;
  color: var(--home-fog);
  letter-spacing: 0.08em;
}

.page-home .home-hero__strip {
  position: absolute;
  bottom: -20px;
  left: -30px;
  width: 120%;
  height: 32px;
  background: rgba(57, 255, 20, 0.08);
  transform: rotate(-2deg);
  z-index: 3;
  pointer-events: none;
  border-top: 1px solid rgba(57, 255, 20, 0.12);
  border-bottom: 1px solid rgba(57, 255, 20, 0.06);
}

/* ---------- 通用辅助 ---------- */
.page-home .home-section-tag {
  margin: 0 0 8px;
  font-family: var(--home-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--home-green);
}

.page-home .home-section-title {
  margin: 0;
  font-family: var(--home-font-display);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--home-cream);
  letter-spacing: 0.02em;
}

/* ---------- 更新提示区 ---------- */
.page-home .home-update {
  position: relative;
  padding: 64px 0 56px;
  background: var(--home-navy-deep);
}

.page-home .home-update__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.page-home .home-update__sash {
  position: relative;
  background: linear-gradient(90deg, var(--home-orange), rgba(255, 77, 0, 0.65));
  padding: 14px 18px;
  transform: skewX(-8deg);
  display: inline-block;
  justify-self: start;
}

.page-home .home-update__sash span {
  display: block;
  transform: skewX(8deg);
  font-family: var(--home-font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--home-cream);
}

.page-home .home-update__body {
  border-left: 2px solid rgba(57, 255, 20, 0.35);
  padding-left: 24px;
}

.page-home .home-update__title {
  font-size: 28px;
}

.page-home .home-update__text {
  margin: 12px 0 16px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.72);
  max-width: 560px;
}

.page-home .home-update__link {
  display: inline-block;
  font-size: 14px;
  color: var(--home-green);
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 20, 0.4);
  padding-bottom: 2px;
  transition: border-color var(--home-speed) var(--home-ease), color var(--home-speed) var(--home-ease);
}

.page-home .home-update__link span {
  display: inline-block;
  margin-left: 6px;
  transition: transform var(--home-speed) var(--home-ease);
}

.page-home .home-update__link:hover,
.page-home .home-update__link:focus-visible {
  color: var(--home-cream);
  border-color: var(--home-cream);
}

.page-home .home-update__link:hover span,
.page-home .home-update__link:focus-visible span {
  transform: translateX(4px);
}

/* ---------- 战报焦点 ---------- */
.page-home .home-focus {
  padding: 72px 0 64px;
  background: linear-gradient(180deg, var(--home-navy) 0%, #0B1D38 100%);
}

.page-home .home-focus__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.page-home .home-focus__more {
  font-family: var(--home-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--home-fog);
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--home-border);
  padding: 6px 14px;
  transition: border-color var(--home-speed) var(--home-ease), color var(--home-speed) var(--home-ease), background-color var(--home-speed) var(--home-ease);
}

.page-home .home-focus__more:hover,
.page-home .home-focus__more:focus-visible {
  border-color: var(--home-green);
  color: var(--home-green);
  background: rgba(57, 255, 20, 0.06);
}

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

.page-home .home-focus__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--home-border);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--home-speed) var(--home-ease), box-shadow var(--home-speed) var(--home-ease), transform var(--home-speed) var(--home-ease);
}

.page-home .home-focus__card:hover,
.page-home .home-focus__card:focus-within {
  border-color: rgba(57, 255, 20, 0.6);
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.2), 0 12px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(-4px);
}

.page-home .home-focus__media {
  position: relative;
  background: var(--home-navy-deep);
}

.page-home .home-focus__media img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1) brightness(0.75);
  transition: filter var(--home-speed) var(--home-ease);
}

.page-home .home-focus__card:hover .home-focus__media img,
.page-home .home-focus__card:focus-within .home-focus__media img {
  filter: grayscale(40%) contrast(1.05) brightness(0.9);
}

.page-home .home-focus__media .yb-tag {
  position: absolute;
  top: 12px;
  left: 12px;
}

.page-home .home-focus__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.page-home .home-focus__meta {
  margin: 0 0 8px;
  font-family: var(--home-font-display);
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--home-fog);
  text-transform: uppercase;
}

.page-home .home-focus__title {
  margin: 0 0 10px;
  font-family: var(--home-font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.36;
  color: var(--home-cream);
}

.page-home .home-focus__excerpt {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.75;
  color: rgba(245, 240, 230, 0.62);
  flex: 1;
}

.page-home .home-focus__read {
  font-size: 13px;
  color: var(--home-green);
  text-decoration: none;
  border-bottom: 1px solid rgba(57, 255, 20, 0.4);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color var(--home-speed) var(--home-ease), border-color var(--home-speed) var(--home-ease);
}

.page-home .home-focus__read:hover,
.page-home .home-focus__read:focus-visible {
  color: var(--home-cream);
  border-color: var(--home-cream);
}

/* ---------- 数据对照速览 ---------- */
.page-home .home-data {
  padding: 72px 0;
  background: var(--home-navy-deep);
  clip-path: polygon(0 32px, 100% 0, 100% calc(100% - 32px), 0 100%);
}

.page-home .home-data__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-top: 24px;
  padding-bottom: 24px;
}

.page-home .home-data__title {
  font-size: 30px;
}

.page-home .home-data__desc {
  margin: 14px 0 20px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.72);
  max-width: 460px;
}

.page-home .home-data__image-wrap {
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--home-border);
  transform: skewX(-1deg);
}

.page-home .home-data__image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  filter: grayscale(70%) contrast(1.1) brightness(0.85);
}

.page-home .home-data__table-wrap {
  overflow-x: auto;
}

.page-home .home-data__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 13px;
}

.page-home .home-data__table caption {
  text-align: left;
}

.page-home .home-data__table th {
  font-family: var(--home-font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  color: var(--home-fog);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 14px;
  border-bottom: 2px solid rgba(57, 255, 20, 0.4);
  cursor: pointer;
  white-space: nowrap;
  user-select: none;
  position: sticky;
  top: 0;
}

.page-home .home-data__table th:hover,
.page-home .home-data__table th:focus-visible {
  color: var(--home-green);
  background: rgba(57, 255, 20, 0.08);
}

.page-home .home-data__table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 240, 230, 0.85);
  font-size: 14px;
  font-family: var(--home-font-body);
}

.page-home .home-data__table tbody tr {
  transition: background-color var(--home-speed) var(--home-ease);
}

.page-home .home-data__table tbody tr:hover {
  background: rgba(57, 255, 20, 0.05);
}

.page-home .home-data__table tbody tr td:first-child {
  font-weight: 700;
  color: var(--home-cream);
}

.page-home .home-data__note {
  margin: 16px 0 0;
  font-size: 12px;
  color: var(--home-fog);
  line-height: 1.7;
}

/* ---------- 周末观赛日历入口 ---------- */
.page-home .home-calendar {
  padding: 88px 0 80px;
  background: var(--home-navy);
  position: relative;
  overflow: hidden;
}

.page-home .home-calendar::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(255, 77, 0, 0.18);
  pointer-events: none;
}

.page-home .home-calendar__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  position: relative;
}

.page-home .home-calendar__media {
  position: relative;
  order: 2;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid rgba(255, 77, 0, 0.25);
}

.page-home .home-calendar__image {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.18) brightness(0.8);
}

.page-home .home-calendar__panel {
  order: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 28px 24px;
  border: 1px solid var(--home-border);
  border-radius: 2px;
  border-left: 3px solid var(--home-orange);
}

.page-home .home-calendar__title {
  font-size: 28px;
  margin-bottom: 12px;
}

.page-home .home-calendar__desc {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.72);
}

.page-home .home-calendar__btn {
  margin-bottom: 14px;
}

.page-home .home-calendar__help {
  display: block;
  text-align: center;
  font-size: 13px;
  color: var(--home-fog);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 214, 229, 0.3);
  padding-bottom: 2px;
  transition: color var(--home-speed) var(--home-ease), border-color var(--home-speed) var(--home-ease);
}

.page-home .home-calendar__help:hover,
.page-home .home-calendar__help:focus-visible {
  color: var(--home-green);
  border-color: var(--home-green);
}

/* ---------- 桌面端适配 ---------- */
@media (min-width: 768px) {
  .page-home .home-hero {
    padding: 120px 0 96px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: 7fr 5fr;
    gap: 48px;
  }

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

  .page-home .home-hero__image {
    height: 340px;
  }

  .page-home .home-update__inner {
    grid-template-columns: 240px 1fr;
    align-items: center;
  }

  .page-home .home-update__sash {
    justify-self: stretch;
    text-align: center;
  }

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

  .page-home .home-focus__card--feature {
    grid-column: span 1;
  }

  .page-home .home-data__inner {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: start;
  }

  .page-home .home-data__image {
    height: 220px;
  }

  .page-home .home-calendar__inner {
    grid-template-columns: 5fr 7fr;
    gap: 48px;
  }

  .page-home .home-calendar__media {
    order: 1;
  }

  .page-home .home-calendar__panel {
    order: 2;
  }

  .page-home .home-calendar__image {
    height: 260px;
  }
}

@media (min-width: 1100px) {
  .page-home .home-hero__inner {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }

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

  .page-home .home-hero__image {
    height: 400px;
  }

  .page-home .home-focus__grid {
    gap: 28px;
  }

  .page-home .home-focus__title {
    font-size: 23px;
  }

  .page-home .home-data__image {
    height: 280px;
  }

  .page-home .home-calendar__image {
    height: 320px;
  }

  .page-home .home-calendar__panel {
    padding: 40px 36px;
  }
}

/* ---------- 可访问性与动效偏好 ---------- */
@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
  }
}

.page-home :focus-visible {
  outline: 2px solid var(--home-green);
  outline-offset: 2px;
}
