.page-news {
  --news-gold: #F5B942;
  --news-neon: #39FF14;
  --news-deep: #0B1B3B;
  --news-purple-dark: #2A1B5E;
  --news-purple-light: #6A4C93;
  --news-mist: #B0C4DE;
  --news-radius: 16px;
  position: relative;
  overflow-x: hidden;
}

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

.page-news .sky-section {
  padding: 64px 0;
}

.page-news .sky-section--wide {
  padding-top: 48px;
}

.page-news .news-hero {
  position: relative;
  background: linear-gradient(135deg, #1A1B4D 0%, #3B2A8C 100%);
  padding: 88px 0 64px;
  overflow: hidden;
}

.page-news .news-hero__glow {
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245, 185, 66, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-news .news-hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.page-news .news-hero__content {
  flex: 1;
  max-width: 720px;
}

.page-news .sky-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 14px;
}

.page-news .sky-breadcrumb__link {
  color: var(--color-mist, #B0C4DE);
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-news .sky-breadcrumb__link:hover {
  color: var(--color-gold, #F5B942);
}

.page-news .sky-breadcrumb__sep {
  color: var(--color-space-purple, #6A4C93);
}

.page-news .sky-breadcrumb__current {
  color: var(--color-white, #FFFFFF);
  font-weight: 600;
}

.page-news .news-hero__title {
  font-family: var(--font-title, "Noto Sans CJK SC", "Microsoft YaHei", sans-serif);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-white, #FFFFFF);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.page-news .news-hero__lead {
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-mist, #B0C4DE);
  margin: 0 0 24px;
  max-width: 560px;
}

.page-news .news-hero__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.page-news .news-hero__meta-text {
  font-size: 14px;
  color: var(--color-mist, #B0C4DE);
}

.page-news .news-hero__visual {
  flex-shrink: 0;
  width: 220px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news .news-hero__orbit {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-news .news-hero__orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(245, 185, 66, 0.3);
  border-radius: 50%;
  animation: news-orbit-spin 12s linear infinite;
}

.page-news .news-hero__orbit-ring::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--color-gold, #F5B942);
  border-radius: 50%;
}

.page-news .news-hero__orbit-dot {
  position: absolute;
  inset: -24px;
  border: 1px dashed rgba(106, 76, 147, 0.5);
  border-radius: 50%;
  animation: news-orbit-spin-reverse 20s linear infinite;
}

.page-news .news-hero__orbit-core {
  font-family: var(--font-title, "Noto Sans CJK SC", "Microsoft YaHei", sans-serif);
  font-size: 22px;
  font-weight: 900;
  color: var(--color-gold, #F5B942);
  letter-spacing: 0.1em;
}

@keyframes news-orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes news-orbit-spin-reverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

.page-news .news-category {
  padding: 24px 0 !important;
  background: rgba(42, 27, 94, 0.4);
  border-bottom: 1px solid rgba(106, 76, 147, 0.2);
}

.page-news .news-category__bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.page-news .news-category__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid rgba(106, 76, 147, 0.4);
  background: transparent;
  color: var(--color-mist, #B0C4DE);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body, "Microsoft YaHei", sans-serif);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-news .news-category__chip img {
  width: 20px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
}

.page-news .news-category__chip:hover {
  border-color: var(--color-gold, #F5B942);
  color: var(--color-gold, #F5B942);
  transform: translateY(-2px);
}

.page-news .news-category__chip.is-active {
  background: linear-gradient(135deg, #F5B942 0%, #E8A828 100%);
  border-color: transparent;
  color: #0B1B3B;
}

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

.page-news .news-feed__header {
  margin-bottom: 32px;
}

.page-news .news-feed__title {
  font-family: var(--font-title, "Noto Sans CJK SC", "Microsoft YaHei", sans-serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-white, #FFFFFF);
  margin: 0 0 8px;
}

.page-news .news-feed__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-mist, #B0C4DE);
  margin: 0;
}

.page-news .news-feed__item {
  background: rgba(42, 27, 94, 0.5);
  border: 1px solid rgba(106, 76, 147, 0.25);
  border-radius: var(--radius-card, 16px);
  margin-bottom: 32px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-news .news-feed__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.page-news .news-feed__img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  display: block;
}

.page-news .news-feed__body {
  padding: 24px;
}

.page-news .news-feed__tag-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.page-news .news-feed__live-indicator {
  font-size: 12px;
  color: var(--color-neon, #39FF14);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.page-news .news-feed__live-indicator::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-neon, #39FF14);
  animation: news-live-pulse 1.6s ease-in-out infinite;
}

@keyframes news-live-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.page-news .sky-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: linear-gradient(135deg, #1A1B4D 0%, #2A1B5E 100%);
  border-radius: 12px;
  margin-bottom: 16px;
}

.page-news .sky-score__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.page-news .sky-score__name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white, #FFFFFF);
  line-height: 1.4;
}

.page-news .sky-score__num {
  font-family: var(--font-mono, "Roboto Mono", Consolas, monospace);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-gold, #F5B942);
  letter-spacing: 0.03em;
}

.page-news .sky-score__sep {
  color: var(--color-space-purple, #6A4C93);
}

.page-news .news-feed__trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
}

.page-news .news-feed__trend--up {
  color: var(--color-neon, #39FF14);
}

.page-news .news-feed__trend--down {
  color: var(--color-gold, #F5B942);
}

.page-news .news-feed__report-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white, #FFFFFF);
  margin: 0 0 8px;
  line-height: 1.5;
}

.page-news .news-feed__report-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--color-mist, #B0C4DE);
  margin: 0;
}

.page-news .news-timeline__header {
  margin-bottom: 40px;
}

.page-news .news-timeline__title {
  font-family: var(--font-title, "Noto Sans CJK SC", "Microsoft YaHei", sans-serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-white, #FFFFFF);
  margin: 0 0 8px;
}

.page-news .news-timeline__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-mist, #B0C4DE);
  margin: 0;
}

.page-news .news-timeline__axis {
  position: relative;
  padding-left: 28px;
}

.page-news .news-timeline__axis::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--color-gold, #F5B942) 0%, var(--color-space-purple, #6A4C93) 50%, var(--color-neon, #39FF14) 100%);
  opacity: 0.5;
}

.page-news .news-timeline__item {
  position: relative;
  margin-bottom: 40px;
}

.page-news .news-timeline__node {
  position: absolute;
  left: -28px;
  top: 0;
  width: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-news .news-timeline__node-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-gold, #F5B942);
  border: 3px solid #0B1B3B;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 12px rgba(245, 185, 66, 0.5);
}

.page-news .news-timeline__node-line {
  flex: 1;
  width: 2px;
  background: rgba(106, 76, 147, 0.3);
  margin-top: 8px;
  min-height: 100px;
}

.page-news .news-timeline__card {
  background: rgba(42, 27, 94, 0.4);
  border: 1px solid rgba(106, 76, 147, 0.2);
  border-radius: var(--radius-card, 16px);
  padding: 24px;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-news .news-timeline__card:hover {
  border-color: rgba(245, 185, 66, 0.5);
}

.page-news .news-timeline__time {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.2), rgba(245, 185, 66, 0.05));
  color: var(--color-gold, #F5B942);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.page-news .news-timeline__card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white, #FFFFFF);
  margin: 0 0 8px;
  line-height: 1.5;
}

.page-news .news-timeline__card-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-mist, #B0C4DE);
  margin: 0 0 16px;
}

.page-news .news-timeline__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 16px;
}

.page-news .news-timeline__expand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold, #F5B942);
  cursor: pointer;
  font-family: var(--font-body, "Microsoft YaHei", sans-serif);
  transition: gap 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-news .news-timeline__expand:hover {
  gap: 10px;
}

.page-news .news-timeline__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-news .news-timeline__panel p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-mist, #B0C4DE);
  margin: 0;
}

.page-news .news-timeline__panel[data-open="true"] {
  max-height: 300px;
  padding-top: 12px;
  border-top: 1px solid rgba(106, 76, 147, 0.2);
  margin-top: 8px;
}

.page-news .news-ranking {
  background: linear-gradient(180deg, transparent 0%, rgba(27, 27, 77, 0.4) 20%, rgba(59, 42, 140, 0.3) 100%);
}

.page-news .news-ranking__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
  align-items: flex-end;
  flex-wrap: wrap;
}

.page-news .news-ranking__title {
  font-family: var(--font-title, "Noto Sans CJK SC", "Microsoft YaHei", sans-serif);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-white, #FFFFFF);
  margin: 0 0 8px;
}

.page-news .news-ranking__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-mist, #B0C4DE);
  margin: 0;
  max-width: 500px;
}

.page-news .news-ranking__more {
  flex-shrink: 0;
}

.page-news .sky-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body, "Microsoft YaHei", sans-serif);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-news .sky-btn--ghost {
  background: transparent;
  border: 1px solid rgba(245, 185, 66, 0.5);
  color: var(--color-gold, #F5B942);
}

.page-news .sky-btn--ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 185, 66, 0.15);
}

.page-news .news-ranking__table-wrap {
  border-radius: var(--radius-card, 16px);
  overflow-x: auto;
  background: rgba(30, 42, 58, 0.6);
  border: 1px solid rgba(106, 76, 147, 0.25);
}

.page-news .news-ranking__table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.page-news .news-ranking__table th {
  background: var(--color-ink, #1E2A3A);
  padding: 14px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-mist, #B0C4DE);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(106, 76, 147, 0.3);
}

.page-news .news-ranking__table td {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--color-white, #FFFFFF);
  border-bottom: 1px solid rgba(106, 76, 147, 0.15);
}

.page-news .news-ranking__table tr:last-child td {
  border-bottom: none;
}

.page-news .news-ranking__table tbody tr:hover {
  background: rgba(106, 76, 147, 0.1);
}

.page-news .news-ranking__pos {
  font-family: var(--font-mono, "Roboto Mono", Consolas, monospace);
  font-weight: 700;
  color: var(--color-gold, #F5B942) !important;
}

.page-news .news-ranking__team {
  font-weight: 600;
}

.page-news .news-ranking__pts {
  font-family: var(--font-mono, "Roboto Mono", Consolas, monospace);
  font-weight: 700;
  color: var(--color-gold, #F5B942);
}

.page-news .news-ranking__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--color-mist, #B0C4DE);
  text-align: right;
}

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

.page-news .news-guide__item {
  background: rgba(42, 27, 94, 0.3);
  border: 1px solid rgba(106, 76, 147, 0.2);
  border-radius: var(--radius-card, 16px);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-news .news-guide__item:hover {
  transform: translateY(-4px);
}

.page-news .news-guide__num {
  display: block;
  font-family: var(--font-mono, "Roboto Mono", Consolas, monospace);
  font-size: 32px;
  font-weight: 700;
  color: rgba(245, 185, 66, 0.2);
  margin-bottom: 12px;
  line-height: 1;
}

.page-news .news-guide__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white, #FFFFFF);
  margin: 0 0 8px;
}

.page-news .news-guide__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-mist, #B0C4DE);
  margin: 0 0 16px;
}

.page-news .news-guide__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--color-gold, #F5B942);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.page-news .news-guide__link::after {
  content: "→";
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-news .news-guide__link:hover::after {
  transform: translateX(4px);
}

.page-news .news-bg-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
  opacity: 0.15;
}

.page-news .news-bg-track__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: 100%;
}

.page-news .back-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(245, 185, 66, 0.5);
  background: rgba(42, 27, 94, 0.8);
  color: var(--color-gold, #F5B942);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
  z-index: 100;
}

.page-news .back-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-news .back-top:hover {
  background: linear-gradient(135deg, #F5B942 0%, #E8A828 100%);
  color: #0B1B3B;
  border-color: transparent;
}

.page-news .sky-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(106, 76, 147, 0.25);
  color: var(--color-mist, #B0C4DE);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(106, 76, 147, 0.3);
}

.page-news .sky-tag--live {
  background: linear-gradient(135deg, rgba(245, 185, 66, 0.2), rgba(245, 185, 66, 0.05));
  color: var(--color-gold, #F5B942);
  border-color: rgba(245, 185, 66, 0.4);
}

.page-news .sky-tag--live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-neon, #39FF14);
}

@media (min-width: 768px) {
  .page-news .news-layout__grid {
    grid-template-columns: 3fr 2fr;
    gap: 48px;
    align-items: start;
  }

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

  .page-news .news-hero {
    padding: 96px 0 80px;
  }
}

@media (max-width: 767px) {
  .page-news .news-hero__inner {
    flex-direction: column;
    text-align: center;
  }

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

  .page-news .news-ranking__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-news .news-ranking__more {
    width: 100%;
  }

  .page-news .news-category__bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    -webkit-overflow-scrolling: touch;
  }

  .page-news .news-category__chip {
    flex-shrink: 0;
  }

  .page-news .sky-score {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-news .sky-score__sep {
    display: none;
  }

  .page-news .sky-score__num {
    font-size: 24px;
  }
}
