.page-news {
  --news-blue: #2D9FFF;
  --news-green: #C6FF00;
  --news-orange: #FF6A00;
  --news-wine: #7A1E3D;
  --news-indigo: #5B2D8A;
  --news-deep: #0A0B10;
  --news-bluegreen: #0F3B46;
  --news-text: #F2F4F8;
  --news-muted: #8890A8;
  --news-mono: 'JetBrains Mono', 'Consolas', 'SF Mono', monospace;
  --news-body: 'Inter', 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
  --news-display: 'Helvetica Neue', 'PingFang SC', 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
  background: var(--news-deep);
  color: var(--news-text);
  font-family: var(--news-body);
  overflow-x: hidden;
}

.page-news .container,
.page-news .section {
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 20px;
}

.page-news .section__head {
  margin-bottom: 28px;
}

.page-news .section__head > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-news .section__title {
  font-family: var(--news-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}

.page-news .section__desc {
  color: var(--news-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-block: 10px 0;
  max-width: 560px;
}

.page-news .eyebrow {
  color: var(--news-blue);
  font-family: var(--news-mono);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0;
}

.page-news .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  margin-bottom: 24px;
  color: var(--news-muted);
}

.page-news .breadcrumb a {
  color: var(--news-blue);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.page-news .breadcrumb a:hover,
.page-news .breadcrumb a:focus-visible {
  border-bottom-color: var(--news-blue);
  color: var(--news-text);
}

.page-news .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  font-family: var(--news-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-news .btn--primary {
  background: var(--news-blue);
  color: var(--news-deep);
  border: 1px solid var(--news-blue);
}

.page-news .btn--primary:hover,
.page-news .btn--primary:focus-visible {
  background: var(--news-green);
  border-color: var(--news-green);
  transform: translateY(-2px);
}

.page-news .btn--outline {
  background: transparent;
  color: var(--news-text);
  border: 1px solid var(--news-muted);
}

.page-news .btn--outline:hover,
.page-news .btn--outline:focus-visible {
  border-color: var(--news-blue);
  color: var(--news-blue);
  transform: translateY(-2px);
}

.page-news .tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-family: var(--news-mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  border: 1px solid var(--news-muted);
  color: var(--news-text);
  background: transparent;
  white-space: nowrap;
}

.page-news .tag--hot {
  border-color: var(--news-orange);
  color: var(--news-orange);
}

.page-news .tag--new {
  border-color: var(--news-green);
  color: var(--news-green);
}

.page-news .tag--warn {
  border-color: var(--news-orange);
  color: var(--news-orange);
  background: rgba(255, 106, 0, 0.08);
}

.page-news .stat-value {
  display: inline-block;
  font-family: var(--news-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--news-text);
  line-height: 1;
}

.page-news .stat-value--blue {
  color: var(--news-blue);
}

.page-news .data-label {
  display: inline-block;
  margin-inline: 4px 14px 0 4px;
  font-size: 0.78rem;
  color: var(--news-muted);
  letter-spacing: 0.04em;
}

/* 顶部英雄区 */
.page-news .news-self-top {
  position: relative;
  padding: 32px 20px 0;
  max-width: 1440px;
  margin-inline: auto;
}

.page-news .news-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  position: relative;
  align-items: center;
}

.page-news .news-hero__copy {
  position: relative;
  z-index: 2;
  padding-block: 12px;
}

.page-news .news-hero__title {
  font-family: var(--news-display);
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  max-width: 720px;
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(45, 159, 255, 0.4);
  text-shadow: 4px 4px 0 rgba(45, 159, 255, 0.16);
}

.page-news .news-hero__lead {
  font-size: 1.02rem;
  line-height: 1.7;
  color: #c6cbe0;
  max-width: 620px;
  margin: 0 0 24px;
}

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

.page-news .news-hero__media {
  position: relative;
  max-width: 680px;
}

.page-news .news-hero__img {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 0 100%);
}

.page-news .news-hero__img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.page-news .news-hero__stamp {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--news-indigo);
  color: var(--news-text);
  font-family: var(--news-display);
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.05;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transform: rotate(3deg);
  clip-path: polygon(0 0, 100% 8%, 92% 100%, 8% 92%);
}

/* 横向推荐条 */
.page-news .news-ticker {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 20px;
  border-top: 1px solid rgba(45, 159, 255, 0.5);
  border-bottom: 1px solid rgba(136, 144, 168, 0.3);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.page-news .news-ticker__head {
  background: var(--news-blue);
  color: var(--news-deep);
  font-family: var(--news-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.page-news .news-ticker__track {
  display: flex;
  gap: 28px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.page-news .news-ticker__track::-webkit-scrollbar {
  display: none;
}

.page-news .news-ticker__track a {
  color: var(--news-text);
  text-decoration: none;
  font-size: 0.88rem;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-news .news-ticker__track a:hover,
.page-news .news-ticker__track a:focus-visible {
  color: var(--news-green);
  border-bottom-color: var(--news-green);
}

/* 战报分类标签区 */
.page-news .news-cat {
  margin-top: 32px;
  scroll-margin-top: 24px;
}

.page-news .news-cat__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-news .news-cat__tag a {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  font-family: var(--news-mono);
  font-size: 0.78rem;
  text-decoration: none;
  color: var(--news-text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(136, 144, 168, 0.4);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-news .news-cat__tag a:hover,
.page-news .news-cat__tag a:focus-visible {
  background: var(--news-blue);
  color: var(--news-deep);
  border-color: var(--news-blue);
  transform: translateY(-2px);
}

.page-news .news-cat__tag--active a {
  background: var(--news-green);
  color: var(--news-deep);
  border-color: var(--news-green);
}

/* 主体两栏 */
.page-news .news-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 36px;
  scroll-margin-top: 24px;
}

.page-news .news-index {
  position: sticky;
  top: 88px;
  border-left: 3px solid var(--news-blue);
  padding-left: 18px;
}

.page-news .news-index__label {
  font-family: var(--news-mono);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--news-blue);
  margin: 0 0 16px;
}

.page-news .news-index__list {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-news .news-index__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 4px;
  border-bottom: 1px solid rgba(136, 144, 168, 0.14);
}

.page-news .news-index__list a {
  color: var(--news-text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.page-news .news-index__list a:hover,
.page-news .news-index__list a:focus-visible {
  color: var(--news-blue);
  padding-left: 4px;
}

.page-news .news-index__list span {
  font-family: var(--news-mono);
  font-size: 0.72rem;
  color: var(--news-muted);
}

.page-news .news-index__card {
  margin-top: 28px;
  padding: 18px;
  background: var(--news-bluegreen);
  border: 1px solid rgba(45, 159, 255, 0.2);
  position: relative;
}

.page-news .news-index__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--news-orange);
}

.page-news .news-index__card-title {
  font-family: var(--news-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.page-news .news-index__card-desc {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #aab2c8;
  margin: 0 0 16px;
}

/* 最新动态列表 */
.page-news .section__head--spaced {
  margin-top: 16px;
}

.page-news .news-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  scroll-margin-top: 24px;
}

.page-news .news-list + .news-list {
  margin-top: 20px;
}

.page-news .news-article {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(136, 144, 168, 0.18);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-news .news-article:hover,
.page-news .news-article:focus-within {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 rgba(45, 159, 255, 0.18);
  border-color: rgba(45, 159, 255, 0.5);
}

.page-news .news-article--laliga {
  border-left: 4px solid var(--news-orange);
}

.page-news .news-article--epl {
  border-left: 4px solid var(--news-blue);
}

.page-news .news-article--bundesliga {
  border-left: 4px solid var(--news-green);
}

.page-news .news-article--seriea {
  border-left: 4px solid #8c5ef0;
}

.page-news .news-article--ligue1 {
  border-left: 4px solid #d6b34a;
}

.page-news .news-article--csl {
  border-left: 4px solid #f2f4f8;
}

.page-news .news-article--uefa {
  border-left: 4px solid var(--news-indigo);
}

.page-news .news-article__img {
  overflow: hidden;
}

.page-news .news-article__img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.page-news .news-article:hover .news-article__img img,
.page-news .news-article:focus-within .news-article__img img {
  transform: scale(1.02);
}

.page-news .news-article__body {
  padding: 20px;
}

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

.page-news .news-article__time {
  font-family: var(--news-mono);
  font-size: 0.75rem;
  color: var(--news-muted);
  letter-spacing: 0.04em;
}

.page-news .news-article__title {
  font-family: var(--news-display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}

.page-news .news-article__title a {
  color: inherit;
  text-decoration: none;
}

.page-news .news-article__title a:hover,
.page-news .news-article__title a:focus-visible {
  color: var(--news-blue);
}

.page-news .news-article__excerpt {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #c2c8da;
  margin: 0 0 16px;
}

.page-news .news-article__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  padding-top: 14px;
  border-top: 1px dashed rgba(136, 144, 168, 0.3);
}

/* 数据洞察与V3更新 */
.page-news .news-list__divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-block: 14px;
}

.page-news .news-list__divider::before,
.page-news .news-list__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(136, 144, 168, 0.24);
}

.page-news .news-list__divider-label {
  font-family: var(--news-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--news-text);
  padding: 4px 12px;
  background: var(--news-indigo);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 6px 100%);
}

.page-news .news-insight {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: rgba(91, 45, 138, 0.14);
  border: 1px solid rgba(91, 45, 138, 0.3);
  position: relative;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-news .news-insight:hover,
.page-news .news-insight:focus-within {
  border-color: rgba(198, 255, 0, 0.4);
  box-shadow: 8px 8px 0 rgba(198, 255, 0, 0.1);
}

.page-news .news-insight--wine {
  background: rgba(122, 30, 61, 0.18);
  border-color: rgba(122, 30, 61, 0.4);
}

.page-news .news-insight__img {
  overflow: hidden;
}

.page-news .news-insight__img img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.page-news .news-insight__body {
  padding: 20px;
}

.page-news .news-insight__title {
  font-family: var(--news-display);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
  margin: 10px 0 12px;
}

.page-news .news-insight__text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: #c2c8da;
  margin: 0 0 18px;
}

.page-news .news-version__points {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 1px dashed rgba(255, 106, 0, 0.3);
}

/* 分页 */
.page-news .news-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(136, 144, 168, 0.16);
}

.page-news .news-pagination__current {
  font-family: var(--news-mono);
  font-size: 0.82rem;
  color: var(--news-muted);
  margin-right: auto;
}

/* 关注联赛 */
.page-news .news-follow {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(91, 45, 138, 0.7) 0%, rgba(15, 59, 70, 0.85) 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
  padding-block: 48px 64px;
}

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

.page-news .news-follow__intro .section__title {
  margin-bottom: 12px;
}

.page-news .news-follow__desc {
  color: #c2c8da;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
  max-width: 520px;
}

.page-news .news-follow__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.page-news .news-follow__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.page-news .news-follow__item:hover,
.page-news .news-follow__item:focus-within {
  background: rgba(198, 255, 0, 0.12);
  border-color: rgba(198, 255, 0, 0.5);
  transform: translateX(4px);
}

.page-news .news-follow__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--news-blue);
  color: var(--news-deep);
  font-size: 0.72rem;
  font-weight: 900;
}

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

/* 使用指引 */
.page-news .news-guide {
  margin-top: 48px;
  padding-bottom: 48px;
}

.page-news .news-guide__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  border-top: 1px solid rgba(136, 144, 168, 0.2);
  padding-top: 40px;
}

.page-news .news-guide__text .section__title {
  margin-bottom: 14px;
}

.page-news .news-guide__desc {
  color: #c2c8da;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 20px;
  max-width: 620px;
}

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

.page-news .news-guide__fact {
  background: var(--news-deep);
  border-left: 4px solid var(--news-green);
  padding: 24px;
  position: relative;
  align-self: start;
}

.page-news .news-guide__quote {
  font-family: var(--news-display);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--news-text);
  margin: 0 0 12px;
}

.page-news .news-guide__source {
  font-family: var(--news-mono);
  font-size: 0.8rem;
  color: var(--news-muted);
  margin: 0;
}

/* 桌面端断点 */
@media (min-width: 900px) {
  .page-news .container,
  .page-news .section {
    padding-inline: 32px;
  }

  .page-news .news-self-top {
    padding-inline: 32px;
    padding-top: 44px;
  }

  .page-news .news-hero {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
  }

  .page-news .news-hero__title {
    font-size: clamp(3.2rem, 6vw, 5.2rem);
    margin-bottom: 26px;
  }

  .page-news .news-hero__lead {
    font-size: 1.1rem;
  }

  .page-news .news-hero__media {
    justify-self: end;
    width: 100%;
    max-width: 680px;
    transform: translateY(0);
  }

  .page-news .news-hero__img {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%);
  }

  .page-news .news-main {
    grid-template-columns: 260px 1fr;
    gap: 48px;
    margin-top: 48px;
  }

  .page-news .news-article,
  .page-news .news-insight {
    grid-template-columns: 280px 1fr;
  }

  .page-news .news-article__body,
  .page-news .news-insight__body {
    padding: 26px 28px;
  }

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

  .page-news .news-follow__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .page-news .news-guide__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .page-news .container,
  .page-news .section,
  .page-news .news-self-top {
    padding-inline: 40px;
  }

  .page-news .news-article,
  .page-news .news-insight {
    grid-template-columns: 320px 1fr;
  }
}
