.page-news {
  --news-orange: #FF6A00;
  --news-red: #E63946;
  --news-blue: #00B4D8;
  --news-black: #1A1A1A;
  --news-dark: #0D0D0D;
  --news-cream: #F5F0E8;
  --news-blue-black: #001F2E;
  --news-moon: #F8F9FA;
  --news-gray: #2A2A2A;
  --news-orange-light: #FFB380;
  --news-font-display: Impact, "Arial Black", "PingFang SC", "Microsoft YaHei", sans-serif;
  --news-font-body: "Open Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --news-font-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
  background: var(--news-cream);
  color: var(--news-black);
  font-family: var(--news-font-body);
  overflow-x: hidden;
}

.page-news .container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.page-news a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.page-news a:hover {
  color: var(--news-orange);
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-family: var(--news-font-body);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-news .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.page-news .btn--primary {
  background: var(--news-orange);
  color: var(--news-black);
  border-color: var(--news-orange);
}

.page-news .btn--primary:hover {
  background: var(--news-orange-light);
  border-color: var(--news-orange-light);
  color: var(--news-black);
}

.page-news .btn--ghost {
  background: transparent;
  color: var(--news-black);
  border-color: var(--news-orange);
}

.page-news .btn--ghost:hover {
  background: var(--news-orange);
  color: #fff;
}

.page-news .btn--lg {
  padding: 14px 28px;
  font-size: 16px;
}

.page-news .btn--sm {
  padding: 8px 14px;
  font-size: 13px;
}

.page-news .tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-news .tag:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 106, 0, 0.18);
}

.page-news .tag--red {
  background: var(--news-red);
  color: #fff;
}

.page-news .tag--blue {
  background: var(--news-blue);
  color: #001F2E;
}

.page-news .tag--dark {
  background: var(--news-black);
  color: #fff;
}

.page-news .tag--outline {
  background: transparent;
  border-color: var(--news-gray);
  color: var(--news-gray);
}

.page-news .breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

.page-news .breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.page-news .breadcrumb a:hover {
  color: var(--news-orange-light);
}

.page-news .breadcrumb .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
}

.page-news .breadcrumb [aria-current="page"] {
  color: var(--news-orange-light);
}

.page-news .section-title {
  position: relative;
  font-family: var(--news-font-display);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2;
  color: var(--news-black);
  margin: 0 0 16px 0;
  padding-left: 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.page-news .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--news-orange), var(--news-red));
}

.page-news .section-title--center {
  text-align: center;
  padding-left: 0;
}

.page-news .section-title--center::before {
  display: none;
}

/* ===== 英雄区 ===== */
.page-news .news-hero {
  background: var(--news-dark);
  color: var(--news-moon);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--news-orange);
}

.page-news .news-hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 300px;
  height: 200px;
  background: linear-gradient(135deg, transparent 40%, rgba(230, 57, 70, 0.25) 100%);
  clip-path: polygon(0 20%, 100% 0, 100% 100%, 0 80%);
}

.page-news .news-hero__container {
  position: relative;
  z-index: 1;
}

.page-news .news-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.page-news .news-hero__kicker {
  display: inline-block;
  font-family: var(--news-font-mono);
  font-size: 13px;
  color: var(--news-orange-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 106, 0, 0.12);
  padding: 6px 14px;
  border-radius: 4px;
  border-left: 3px solid var(--news-orange);
  margin-bottom: 16px;
}

.page-news .news-hero h1 {
  font-family: var(--news-font-display);
  font-size: 38px;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #fff;
  letter-spacing: 0.01em;
  max-width: 12em;
}

.page-news .news-hero__lead {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(248, 249, 250, 0.85);
  max-width: 560px;
  margin-bottom: 24px;
}

.page-news .news-hero__meta {
  font-family: var(--news-font-mono);
  font-size: 13px;
  color: var(--news-orange-light);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-hero__stamp {
  display: none;
}

.page-news .news-hero__speedline {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
  opacity: 0.6;
}

.page-news .news-hero__speedline span {
  display: block;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--news-orange), transparent);
  flex-shrink: 0;
}

.page-news .news-hero__speedline span:nth-child(1) {
  width: 120px;
}

.page-news .news-hero__speedline span:nth-child(2) {
  width: 64px;
}

.page-news .news-hero__speedline span:nth-child(3) {
  width: 160px;
}

.page-news .news-hero__speedline span:nth-child(4) {
  width: 40px;
}

.page-news .news-hero__speedline span:nth-child(5) {
  width: 90px;
}

/* ===== 分类筛选 ===== */
.page-news .news-filter {
  padding-top: 48px;
  padding-bottom: 12px;
}

.page-news .news-filter__topline {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.page-news .news-filter__desc {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
  max-width: 520px;
}

.page-news .news-filter__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== 版本时间轴 ===== */
.page-news .news-timeline {
  padding-top: 36px;
  padding-bottom: 48px;
}

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

.page-news .news-timeline__track {
  position: relative;
  padding: 8px 0 8px 16px;
  border-left: 3px solid var(--news-gray);
  margin-left: 10px;
}

.page-news .news-timeline__line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--news-orange), var(--news-red), var(--news-blue), var(--news-gray));
  border-radius: 2px;
}

.page-news .news-timeline__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}

.page-news .news-timeline__item {
  position: relative;
  padding-left: 24px;
}

.page-news .news-timeline__dot {
  position: absolute;
  left: -22px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--news-orange);
  border: 2px solid var(--news-cream);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, 0.2);
}

.page-news .news-timeline__item:nth-child(2) .news-timeline__dot {
  background: var(--news-blue);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
}

.page-news .news-timeline__item:nth-child(3) .news-timeline__dot {
  background: var(--news-gray);
  box-shadow: 0 0 0 3px rgba(42, 42, 42, 0.15);
}

.page-news .news-timeline__item:nth-child(4) .news-timeline__dot {
  background: var(--news-red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
}

.page-news .news-timeline__card {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  border: 1px solid rgba(42, 42, 42, 0.12);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-news .news-timeline__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.page-news .news-timeline__label {
  display: block;
  font-family: var(--news-font-mono);
  font-size: 12px;
  color: var(--news-orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}

.page-news .news-timeline__card strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
  color: var(--news-black);
}

.page-news .news-timeline__card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

/* ===== 更新动态列表 ===== */
.page-news .news-list {
  padding-top: 16px;
  padding-bottom: 56px;
}

.page-news .news-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-news .news-list__main {
  display: grid;
  gap: 20px;
}

.page-news .news-list__head {
  margin-bottom: 4px;
}

.page-news .news-list__subtitle {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.65);
  margin: -8px 0 20px;
}

.page-news .news-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(42, 42, 42, 0.1);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-news .news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.page-news .news-card--featured {
  border: 2px solid var(--news-red);
  box-shadow: 0 0 0 1px rgba(230, 57, 70, 0.1), 0 8px 24px rgba(230, 57, 70, 0.08);
}

.page-news .news-card__idx {
  position: absolute;
  top: 12px;
  right: 14px;
  font-family: var(--news-font-mono);
  font-size: 22px;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.08);
  letter-spacing: -0.02em;
  z-index: 1;
  pointer-events: none;
}

.page-news .news-card__cover {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--news-blue-black);
  position: relative;
}

.page-news .news-card__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.35) 100%);
}

.page-news .news-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .news-card__body {
  padding: 20px 20px 22px;
}

.page-news .news-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.page-news .news-card__time {
  font-family: var(--news-font-mono);
  font-size: 12px;
  color: rgba(26, 26, 26, 0.55);
  text-transform: uppercase;
}

.page-news .news-card__body h3 {
  font-size: 19px;
  line-height: 1.35;
  margin: 0 0 10px;
  color: var(--news-black);
  letter-spacing: -0.01em;
}

.page-news .news-card__body p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(26, 26, 26, 0.72);
  margin: 0 0 16px;
}

.page-news .news-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-news .news-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--news-orange);
}

.page-news .news-card__link:hover {
  color: var(--news-red);
}

/* 侧边 */
.page-news .news-list__side {
  display: grid;
  gap: 20px;
  align-content: start;
}

.page-news .news-side-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  border: 1px solid rgba(42, 42, 42, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.page-news .news-side-card--dark {
  background: var(--news-blue-black);
  border-color: transparent;
  color: var(--news-moon);
}

.page-news .news-side-card h3 {
  font-size: 17px;
  margin: 0 0 16px;
  font-family: var(--news-font-display);
  letter-spacing: 0.02em;
}

.page-news .news-side-card--dark h3 {
  color: #fff;
}

.page-news .news-side-card__list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-news .news-side-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 1.4;
}

.page-news .news-side-card__list a {
  color: inherit;
  font-weight: 600;
}

.page-news .news-side-card__list a:hover {
  color: var(--news-orange);
}

.page-news .news-side-card__note {
  font-family: var(--news-font-mono);
  font-size: 12px;
  line-height: 1.5;
  color: rgba(248, 249, 250, 0.6);
  margin: 0 0 16px;
}

.page-news .news-side-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 16px;
}

/* ===== 联赛专题 ===== */
.page-news .news-league {
  padding-top: 56px;
  padding-bottom: 56px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 180, 216, 0.04) 40%, rgba(255, 106, 0, 0.04) 100%);
}

.page-news .news-league__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.page-news .news-league__subtitle {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.65);
  margin: -8px 0 0;
  max-width: 520px;
}

.page-news .news-league__count {
  display: inline-flex;
  align-items: center;
  font-family: var(--news-font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--news-blue-black);
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.3);
  padding: 6px 14px;
  border-radius: 999px;
  align-self: flex-start;
}

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

.page-news .league-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(42, 42, 42, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.page-news .league-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.page-news .league-card__cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--news-blue-black);
}

.page-news .league-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-news .league-card__body {
  padding: 20px 20px 22px;
}

.page-news .league-card__body h3 {
  font-size: 18px;
  margin: 10px 0 8px;
  color: var(--news-black);
}

.page-news .league-card__body p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  margin: 0 0 12px;
}

.page-news .league-card__link {
  font-size: 14px;
  font-weight: 700;
  color: var(--news-blue);
}

.page-news .league-card__link:hover {
  color: var(--news-orange);
}

/* ===== 赛前赛后 ===== */
.page-news .news-match {
  padding: 8px 24px 56px;
}

.page-news .news-match__head {
  text-align: center;
  margin-bottom: 28px;
}

.page-news .news-match__subtitle {
  font-size: 14px;
  color: rgba(26, 26, 26, 0.65);
  margin: -8px auto 0;
  max-width: 520px;
}

.page-news .news-match__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.page-news .match-item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(42, 42, 42, 0.1);
  padding: 20px 20px 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  align-items: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-news .match-item:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.page-news .match-item__date {
  font-family: var(--news-font-mono);
  font-size: 12px;
  color: var(--news-red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-news .match-item__content h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: var(--news-black);
}

.page-news .match-item__content p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.68);
  margin: 0;
}

/* ===== 功能指南 ===== */
.page-news .news-guide {
  padding-bottom: 56px;
}

.page-news .news-guide__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  background: var(--news-blue-black);
  border-radius: 20px;
  padding: 28px 24px;
  color: var(--news-moon);
  position: relative;
  overflow: hidden;
}

.page-news .news-guide__grid::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(255, 106, 0, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-news .news-guide__text {
  position: relative;
  z-index: 1;
}

.page-news .news-guide__text .section-title {
  color: #fff;
}

.page-news .news-guide__lead {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 249, 250, 0.8);
  max-width: 480px;
  margin: 0 0 24px;
}

.page-news .news-guide__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  counter-reset: guide-step;
}

.page-news .news-guide__steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.page-news .news-guide__step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 106, 0, 0.18);
  border: 1px solid rgba(255, 106, 0, 0.5);
  color: var(--news-orange-light);
  font-family: var(--news-font-mono);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.page-news .news-guide__steps h3 {
  font-size: 16px;
  margin: 0 0 6px;
  color: #fff;
}

.page-news .news-guide__steps p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248, 249, 250, 0.65);
  margin: 0 0 6px;
}

.page-news .news-guide__steps a {
  font-size: 13px;
  font-weight: 700;
  color: var(--news-orange-light);
}

.page-news .news-guide__steps a:hover {
  color: var(--news-orange);
}

.page-news .news-guide__visual {
  position: relative;
  z-index: 1;
}

.page-news .news-guide__img-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  position: relative;
}

.page-news .news-guide__img-card img {
  width: 100%;
  height: auto;
  display: block;
}

.page-news .news-guide__img-note {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0, 31, 46, 0.9);
  font-family: var(--news-font-mono);
  font-size: 12px;
  color: rgba(248, 249, 250, 0.75);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== 订阅球队 ===== */
.page-news .news-subscribe {
  background: var(--news-black);
  color: var(--news-moon);
  padding: 56px 24px;
  position: relative;
  overflow: hidden;
}

.page-news .news-subscribe::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--news-orange), var(--news-red));
}

.page-news .news-subscribe__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.page-news .news-subscribe__img {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.page-news .news-subscribe__img img {
  width: 100%;
  height: auto;
  display: block;
}

.page-news .news-subscribe__kicker {
  display: inline-block;
  font-family: var(--news-font-mono);
  font-size: 12px;
  color: var(--news-orange-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: 1px solid rgba(255, 106, 0, 0.4);
  background: rgba(255, 106, 0, 0.1);
  padding: 5px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.page-news .news-subscribe__text h2 {
  font-family: var(--news-font-display);
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: 0.01em;
}

.page-news .news-subscribe__text p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(248, 249, 250, 0.8);
  margin: 0 0 20px;
  max-width: 480px;
}

.page-news .news-subscribe__points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-news .news-subscribe__points li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(248, 249, 250, 0.85);
}

.page-news .news-subscribe__points li::before {
  content: "▶";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--news-orange);
  font-size: 11px;
}

.page-news .news-subscribe__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-news .news-subscribe .btn--ghost {
  color: var(--news-moon);
  border-color: var(--news-orange-light);
}

.page-news .news-subscribe .btn--ghost:hover {
  background: var(--news-orange);
  color: var(--news-black);
}

/* ===== 下载横幅 ===== */
.page-news .news-download {
  padding: 56px 24px;
}

.page-news .news-download__banner {
  background: var(--news-cream);
  border: 2px solid var(--news-orange);
  border-radius: 20px;
  padding: 32px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
  background-image: radial-gradient(circle at 100% 0%, rgba(255, 106, 0, 0.12) 0%, transparent 40%), radial-gradient(circle at 0% 100%, rgba(230, 57, 70, 0.08) 0%, transparent 40%);
}

.page-news .news-download__text h2 {
  font-family: var(--news-font-display);
  font-size: 24px;
  line-height: 1.3;
  margin: 12px 0 10px;
  color: var(--news-black);
  max-width: 520px;
}

.page-news .news-download__text p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.7);
  margin: 0;
}

.page-news .news-download__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* 滚动显现 */
.page-news .news-card,
.page-news .league-card,
.page-news .news-timeline__item,
.page-news .match-item,
.page-news .news-guide__img-card,
.page-news .news-subscribe__img {
  animation: page-news-fade-in 0.5s ease-out both;
}

@media (min-width: 768px) {
  .page-news .news-hero {
    padding: 72px 0 88px;
  }

  .page-news .news-hero__grid {
    grid-template-columns: 1.6fr 0.8fr;
  }

  .page-news .news-hero h1 {
    font-size: 52px;
  }

  .page-news .news-hero__stamp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-align: center;
    border: 2px solid rgba(255, 106, 0, 0.5);
    border-radius: 20px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.15), rgba(230, 57, 70, 0.08));
    position: relative;
    transform: rotate(2deg);
  }

  .page-news .news-hero__stamp::after {
    content: "";
    position: absolute;
    inset: 8px;
    border: 1px dashed rgba(255, 106, 0, 0.3);
    border-radius: 14px;
    pointer-events: none;
  }

  .page-news .news-hero__stamp-num {
    font-family: var(--news-font-display);
    font-size: 54px;
    color: var(--news-orange);
    line-height: 1;
  }

  .page-news .news-hero__stamp-label {
    font-family: var(--news-font-mono);
    font-size: 13px;
    color: rgba(248, 249, 250, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .page-news .news-hero__stamp-dot {
    width: 10px;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--news-red);
    animation: page-news-pulse 2s ease-in-out infinite;
    font-size: 10px;
  }

  .page-news .news-list__grid {
    grid-template-columns: 1fr 280px;
  }

  .page-news .news-card {
    grid-template-columns: 260px 1fr;
  }

  .page-news .news-card__cover {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .page-news .news-card--featured .news-card__body {
    padding: 24px 28px;
  }

  .page-news .news-league__head {
    flex-direction: row;
    align-items: flex-end;
  }

  .page-news .news-league__count {
    align-self: auto;
  }

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

  .page-news .match-item {
    grid-template-columns: 130px 1fr auto;
    gap: 20px;
    align-items: center;
  }

  .page-news .news-guide__grid {
    grid-template-columns: 1fr 1fr;
    padding: 40px 40px;
  }

  .page-news .news-subscribe__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .page-news .news-download__banner {
    grid-template-columns: 1.4fr 0.8fr;
    padding: 40px 40px;
  }

  .page-news .news-download__text h2 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .page-news .news-timeline__track {
    margin-left: 0;
  }

  .page-news .news-timeline__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .page-news .news-timeline__item {
    padding-left: 0;
    padding-top: 32px;
  }

  .page-news .news-timeline__line {
    top: 8px;
    bottom: auto;
    left: 0;
    right: 0;
    width: auto;
    height: 3px;
    background: linear-gradient(90deg, var(--news-orange), var(--news-red), var(--news-blue), var(--news-gray));
  }

  .page-news .news-timeline__dot {
    left: 0;
    top: 9px;
    transform: translateX(-50%);
  }

  .page-news .news-timeline__card {
    margin: 0 12px 0 0;
  }

  .page-news .news-timeline__item:nth-child(2) .news-timeline__dot {
    left: auto;
    right: 0;
    transform: translateX(50%);
  }

  .page-news .news-timeline__item:nth-child(3) .news-timeline__dot {
    left: 50%;
    transform: translateX(-50%);
  }

  .page-news .news-timeline__item:nth-child(4) .news-timeline__dot {
    left: auto;
    right: 0;
    transform: translateX(50%);
  }

  .page-news .news-list__grid {
    grid-template-columns: 1fr 320px;
    gap: 40px;
  }

  .page-news .news-filter__tags {
    gap: 14px;
  }

  .page-news .section-title {
    font-size: 32px;
  }
}

@keyframes page-news-fade-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes page-news-pulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news *,
  .page-news *::before,
  .page-news *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .page-news .news-card,
  .page-news .league-card,
  .page-news .news-timeline__item,
  .page-news .match-item,
  .page-news .news-guide__img-card,
  .page-news .news-subscribe__img {
    animation: none;
  }

  .page-news .btn:hover,
  .page-news .news-card:hover,
  .page-news .league-card:hover,
  .page-news .match-item:hover {
    transform: none;
  }
}
