.page-news {
  --news-stripe: repeating-linear-gradient(135deg, var(--blood-red) 0 10px, var(--champion-gold) 10px 20px, var(--signal-yellow) 20px 30px);
}

/* ===== 顶部标题区 ===== */
.page-news .news-head {
  position: relative;
  background: linear-gradient(135deg, var(--carbon-black) 0%, var(--night-blue) 100%);
  border-bottom: 4px solid var(--signal-yellow);
  overflow: hidden;
}
.page-news .news-head::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--news-stripe);
  z-index: 2;
}
.page-news .news-head::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border: 2px solid rgba(255, 179, 0, 0.28);
  border-radius: 18px;
  transform: rotate(45deg);
  pointer-events: none;
}
.page-news .news-head .container {
  position: relative;
  z-index: 1;
  padding-top: 24px;
  padding-bottom: 40px;
}
.page-news .news-head .breadcrumb {
  margin-bottom: 22px;
}
.page-news .news-head .breadcrumb__link {
  color: rgba(245, 245, 240, 0.7);
  text-decoration: none;
}
.page-news .news-head .breadcrumb__link:hover {
  color: var(--champion-gold);
}
.page-news .news-head .breadcrumb__current {
  color: var(--paper-white);
}
.page-news .news-head__grid {
  display: grid;
  gap: 30px;
  align-items: center;
}
.page-news .news-head__eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--champion-gold);
  margin-bottom: 14px;
}
.page-news .news-head .page-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  line-height: 1.2;
  color: var(--paper-white);
  margin: 0 0 16px;
  max-width: 14em;
}
.page-news .news-head__lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.82);
  max-width: 46em;
  margin: 0 0 26px;
}
.page-news .news-head__status {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 460px;
}
.page-news .news-head__status-item {
  background: rgba(245, 245, 240, 0.06);
  border: 1px solid rgba(245, 245, 240, 0.1);
  border-radius: 8px;
  padding: 10px 14px;
}
.page-news .news-head__status-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 245, 240, 0.55);
  margin-bottom: 4px;
}
.page-news .news-head__status-value {
  font-family: var(--font-mono);
  font-size: 17px;
  color: var(--paper-white);
}
.page-news .news-head__visual {
  border: 1px solid rgba(245, 245, 240, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: var(--night-blue);
}
.page-news .news-head__img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== 区块标题排版 ===== */
.page-news .section-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 18px;
  margin-bottom: 30px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--news-edge, rgba(245, 245, 240, 0.16));
}
.page-news .section-header__index {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--champion-gold);
}
.page-news .section-header__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.2;
  margin: 0;
}
.page-news .section-header__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  opacity: 0.7;
}

/* ===== 更新列表时间轴 ===== */
.page-news .news-feed {
  color: var(--night-blue);
}
.page-news .news-feed .section-header {
  border-bottom-color: rgba(11, 30, 54, 0.2);
}
.page-news .news-feed .section-header__index {
  color: var(--night-blue);
}
.page-news .news-feed .section-header__meta {
  color: rgba(11, 30, 54, 0.7);
}
.page-news .news-feed__intro {
  font-size: 15px;
  line-height: 1.7;
  max-width: 64em;
  margin-bottom: 28px;
  color: rgba(11, 30, 54, 0.85);
}
.page-news .news-timeline {
  position: relative;
  padding-left: 28px;
}
.page-news .news-timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--night-blue) 0%, rgba(11, 30, 54, 0.35) 100%);
}
.page-news .timeline-item {
  position: relative;
  padding: 22px 0;
  border-bottom: 1px dashed rgba(11, 30, 54, 0.22);
}
.page-news .timeline-item:last-child {
  border-bottom: none;
}
.page-news .timeline-item__node {
  position: absolute;
  left: -28px;
  top: 30px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--paper-white);
  border: 3px solid var(--blood-red);
  box-shadow: 0 0 0 2px var(--field-green), 0 0 0 4px var(--champion-gold);
}
.page-news .timeline-item__label {
  margin-bottom: 8px;
}
.page-news .timeline-item__content {
  min-width: 0;
}
.page-news .timeline-item__topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-bottom: 6px;
}
.page-news .timeline-item__time {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(11, 30, 54, 0.7);
}
.page-news .timeline-item__scope {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blood-red);
  border: 1px solid rgba(211, 47, 47, 0.35);
  border-radius: 999px;
  padding: 2px 10px;
}
.page-news .timeline-item__title {
  font-family: var(--font-display);
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 8px;
  color: var(--night-blue);
}
.page-news .timeline-item__summary {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(11, 30, 54, 0.78);
  margin: 0;
  max-width: 56em;
}

/* ===== 分类标签 ===== */
.page-news .tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
}
.page-news .tag--green {
  background: rgba(0, 230, 118, 0.16);
  color: #005C2E;
  border: 1px solid rgba(0, 230, 118, 0.5);
}
.page-news .tag--gold {
  background: rgba(255, 179, 0, 0.16);
  color: #7A4F00;
  border: 1px solid rgba(255, 179, 0, 0.55);
}
.page-news .tag--red {
  background: rgba(211, 47, 47, 0.12);
  color: #8E1C1C;
  border: 1px solid rgba(211, 47, 47, 0.45);
}
.page-news .tag--yellow {
  background: rgba(255, 213, 0, 0.16);
  color: #665000;
  border: 1px solid rgba(255, 213, 0, 0.6);
}

/* ===== 赛季进度 ===== */
.page-news .news-progress {
  color: var(--paper-white);
}
.page-news .news-progress .section-header {
  border-bottom-color: rgba(245, 245, 240, 0.16);
}
.page-news .news-progress .section-header__meta {
  color: rgba(245, 245, 240, 0.7);
}
.page-news .news-progress__grid {
  display: grid;
  gap: 32px;
}
.page-news .news-progress__bars {
  display: grid;
  gap: 18px;
}
.page-news .progress-item__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}
.page-news .progress-item__label {
  font-family: var(--font-display);
  font-size: 14px;
}
.page-news .progress-item__value {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--champion-gold);
}
.page-news .progress-item__track {
  height: 10px;
  border-radius: 6px;
  background: rgba(245, 245, 240, 0.12);
  overflow: hidden;
}
.page-news .progress-item__bar {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--data-green), var(--champion-gold), var(--blood-red));
}
.page-news .news-progress__visual {
  border: 1px solid rgba(245, 245, 240, 0.16);
  border-radius: 12px;
  overflow: hidden;
  background: var(--carbon-black);
}
.page-news .news-progress__img {
  display: block;
  width: 100%;
  height: auto;
}
.page-news .news-progress__caption {
  margin: 0;
  padding: 14px 18px;
  border-top: 1px solid rgba(245, 245, 240, 0.1);
  font-size: 13px;
  line-height: 1.6;
  color: rgba(245, 245, 240, 0.7);
}
.page-news .news-progress__stats {
  display: grid;
  gap: 12px;
  margin-top: 36px;
}
.page-news .news-progress__stats .stat {
  background: rgba(245, 245, 240, 0.06);
  border-left: 4px solid var(--champion-gold);
  padding: 14px 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}
.page-news .news-progress__stats .stat__num {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--paper-white);
}
.page-news .news-progress__stats .stat__label {
  font-size: 13px;
  color: rgba(245, 245, 240, 0.68);
}

/* ===== 功能更新 ===== */
.page-news .news-features {
  color: var(--slate-gray);
}
.page-news .news-features .section-header {
  border-bottom-color: rgba(42, 42, 42, 0.18);
}
.page-news .news-features .section-header__index {
  color: var(--blood-red);
}
.page-news .news-features .section-header__meta {
  color: rgba(42, 42, 42, 0.7);
}
.page-news .news-features__grid {
  display: grid;
  gap: 32px;
}
.page-news .news-features__version {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.page-news .news-features__version-tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  background: var(--blood-red);
  color: var(--paper-white);
  border-radius: 999px;
  padding: 4px 12px;
}
.page-news .news-features__version-num {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 600;
  color: var(--carbon-black);
}
.page-news .news-features__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-news .news-features__item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid rgba(42, 42, 42, 0.12);
}
.page-news .news-features__item:first-child {
  border-top: none;
}
.page-news .news-features__icon {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--carbon-black);
  color: var(--champion-gold);
  font-size: 10px;
  font-family: var(--font-mono);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.page-news .news-features__item strong {
  font-family: var(--font-display);
  font-size: 15px;
  display: block;
  margin-bottom: 6px;
  color: var(--carbon-black);
}
.page-news .news-features__item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--slate-gray);
}
.page-news .news-features__visual {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(42, 42, 42, 0.12);
  background: var(--carbon-black);
}
.page-news .news-features__img {
  display: block;
  width: 100%;
  height: auto;
}
.page-news .news-features__action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}
.page-news .news-features .btn--ghost {
  border-color: var(--carbon-black);
  color: var(--carbon-black);
}
.page-news .news-features .btn--primary {
  background: var(--blood-red);
  color: var(--paper-white);
}

/* ===== 专题放送 ===== */
.page-news .news-specials {
  color: var(--night-blue);
}
.page-news .news-specials .section-header {
  border-bottom-color: rgba(11, 30, 54, 0.2);
}
.page-news .news-specials .section-header__index {
  color: var(--night-blue);
}
.page-news .news-specials .section-header__meta {
  color: rgba(11, 30, 54, 0.7);
}
.page-news .news-specials__feature {
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
  border: 1px solid rgba(11, 30, 54, 0.25);
}
.page-news .news-specials__img {
  display: block;
  width: 100%;
  height: auto;
}
.page-news .news-specials__grid {
  gap: 20px;
}
.page-news .news-specials__grid .card {
  background: rgba(245, 245, 240, 0.88);
  border-radius: 12px;
  border: 1px solid rgba(11, 30, 54, 0.12);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  padding: 22px;
  min-height: 100%;
}
.page-news .news-specials__grid .card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--blood-red);
}
.page-news .special-card__tag {
  display: inline-block;
  margin-bottom: 12px;
}
.page-news .special-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.3;
  margin: 0 0 10px;
  color: var(--night-blue);
}
.page-news .special-card__text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(11, 30, 54, 0.75);
  margin: 0 0 16px;
}
.page-news .special-card__link {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--blood-red);
  text-decoration: none;
  border-bottom: 1px solid rgba(211, 47, 47, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.page-news .special-card__link:hover {
  border-bottom-color: var(--blood-red);
  color: var(--night-blue);
}

/* ===== 浮现动画（渐进增强） ===== */
@keyframes newsFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.page-news [data-reveal][data-revealed] {
  animation: newsFadeUp 0.5s ease both;
}

/* ===== 平板端 ≥768px ===== */
@media (min-width: 768px) {
  .page-news .news-head__grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
  .page-news .news-head__status {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-news .news-progress__stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-news .news-features__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .page-news .news-features__content {
    padding-right: 20px;
  }
}

/* ===== 桌面端 ≥1024px ===== */
@media (min-width: 1024px) {
  .page-news .news-head .page-title {
    font-size: 40px;
  }
  .page-news .news-head__lead {
    font-size: 17px;
  }
  .page-news .section-header__title {
    font-size: 32px;
  }

  .page-news .news-timeline {
    padding-left: 0;
  }
  .page-news .news-timeline::before {
    left: 150px;
    width: 1px;
  }
  .page-news .timeline-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 20px;
    padding: 24px 0 24px 0;
  }
  .page-news .timeline-item__node {
    left: 142px;
    top: 34px;
    width: 16px;
    height: 16px;
    box-shadow: 0 0 0 2px var(--field-green), 0 0 0 4px var(--champion-gold);
  }
  .page-news .timeline-item__label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 2px;
  }
  .page-news .timeline-item__content {
    padding-left: 36px;
  }
  .page-news .timeline-item__title {
    font-size: 18px;
  }

  .page-news .news-progress__grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    gap: 48px;
  }
  .page-news .news-progress__bars {
    gap: 22px;
  }
  .page-news .news-progress__stats {
    grid-template-columns: repeat(6, 1fr);
  }

  .page-news .news-specials__grid {
    gap: 28px;
  }
}

.page-news {
  --news-edge: currentColor;
}
