.page-news {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css #0a0a0a */
}

.page-news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.page-news__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 40px;
  text-align: center;
  background-color: #0a0a0a; /* Ensure a dark background for this section */
}

.page-news__hero-image-wrapper {
  max-width: 100%;
  overflow: hidden;
}

.page-news__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-news__hero-content {
  position: relative;
  padding: 20px;
  max-width: 900px;
  margin: -80px auto 0 auto; /* Pull content slightly over the image for visual hierarchy */
  background-color: rgba(10, 10, 10, 0.85); /* Semi-transparent dark background */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-news__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-news__description {
  font-size: 1.1em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-news__cta-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid #26A9E0;
  box-sizing: border-box;
}

.page-news__cta-button:hover {
  background-color: #1e87b7;
  border-color: #1e87b7;
}

.page-news__cta-button--primary {
  background-color: #26A9E0;
  border-color: #26A9E0;
  color: #ffffff;
}

.page-news__cta-button--secondary {
  background-color: #FFFFFF;
  border-color: #26A9E0;
  color: #26A9E0;
}

.page-news__cta-button--secondary:hover {
  background-color: #f0f0f0;
  border-color: #1e87b7;
  color: #1e87b7;
}

.page-news__section-title {
  font-size: clamp(1.8em, 3.5vw, 2.8em);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-news__section-description {
  font-size: 1.05em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__dark-bg {
  background-color: #0a0a0a;
  padding: 60px 0;
  color: #ffffff;
}

.page-news__dark-bg .page-news__section-description {
  color: #cccccc;
}

.page-news__light-bg {
  background-color: #1a1a1a;
  padding: 60px 0;
  color: #ffffff;
}

.page-news__light-bg .page-news__section-title {
  color: #26A9E0;
}

.page-news__light-bg .page-news__section-description {
  color: #cccccc;
}

.page-news__news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-news__news-card {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-news__news-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-news__news-card-image {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-news__news-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__news-card-title {
  font-size: 1.4em;
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: bold;
}

.page-news__news-card-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__news-card-title a:hover {
  color: #1e87b7;
}

.page-news__news-card-meta {
  font-size: 0.9em;
  color: #aaaaaa;
  margin-bottom: 15px;
}

.page-news__news-card-excerpt {
  font-size: 1em;
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news__read-more-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-news__read-more-button:hover {
  background-color: #1e87b7;
}

.page-news__updates-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-news__update-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  color: #ffffff;
}

.page-news__update-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-news__update-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news__update-title {
  font-size: 1.2em;
  margin-bottom: 10px;
  line-height: 1.3;
  font-weight: bold;
}

.page-news__update-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__update-title a:hover {
  color: #1e87b7;
}

.page-news__update-meta {
  font-size: 0.85em;
  color: #aaaaaa;
  margin-bottom: 10px;
}

.page-news__update-excerpt {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-news__view-all-news {
  text-align: center;
  margin-top: 50px;
}

.page-news__cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #0a0a0a;
}

.page-news__cta-section .page-news__section-title {
  color: #ffffff;
}

.page-news__cta-section .page-news__description {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-news__faq-section {
  padding: 60px 0;
  background-color: #1a1a1a;
}

.page-news__faq-list {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-news__faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-news__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #26A9E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-news__faq-item summary::-webkit-details-marker, 
.page-news__faq-item summary::marker {
  display: none;
}

.page-news__faq-item summary:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.page-news__faq-qtext {
  flex-grow: 1;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #ffffff;
}

.page-news__faq-item[open] .page-news__faq-toggle {
  content: '−';
}

.page-news__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1em;
  color: #cccccc;
  line-height: 1.6;
}

.page-news__faq-answer p {
  margin-bottom: 10px;
}

.page-news__footer-content {
  background-color: #0a0a0a;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-news__copyright {
  color: #aaaaaa;
  font-size: 0.9em;
}

/* General image responsiveness */
.page-news img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.5;
  }

  /* HERO 主图区域 */
  .page-news__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles --header-offset */
    padding-bottom: 20px;
  }

  .page-news__hero-content {
    margin-top: -40px; /* Adjust overlap for mobile */
    padding: 15px;
  }

  .page-news__main-title {
    font-size: 1.8em !important;
    margin-bottom: 10px;
  }

  .page-news__description {
    font-size: 1em !important;
    margin-bottom: 20px;
  }

  /* 产品展示图区域 (Not applicable for News page as gameshow is forbidden) */
  /* If any product-like grid existed, it would adapt here */
  .page-news__news-grid,
  .page-news__updates-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news__news-card-image,
  .page-news__update-image {
    height: 180px; /* Adjust image height for mobile */
  }

  .page-news__news-card-title,
  .page-news__update-title {
    font-size: 1.2em !important;
  }

  .page-news__news-card-excerpt,
  .page-news__update-excerpt {
    font-size: 0.9em !important;
  }

  /* 通用图片与容器 */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__container,
  .page-news__hero-section,
  .page-news__featured-news-section,
  .page-news__recent-updates-section,
  .page-news__cta-section,
  .page-news__faq-section,
  .page-news__footer-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* 按钮与按钮容器 */
  .page-news__cta-button,
  .page-news__read-more-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 10px 15px !important;
    text-align: center;
  }

  .page-news__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  /* 其他内容模块 */
  .page-news__section-title {
    font-size: 1.6em !important;
    margin-bottom: 20px;
  }

  .page-news__section-description {
    font-size: 0.95em !important;
    margin-bottom: 30px;
  }

  .page-news__news-card,
  .page-news__update-item,
  .page-news__faq-item {
    margin-bottom: 15px;
  }

  .page-news__faq-item summary {
    font-size: 1em !important;
    padding: 15px 20px;
  }

  .page-news__faq-answer {
    padding: 0 20px 15px 20px;
    font-size: 0.9em !important;
  }

  .page-news__copyright {
    font-size: 0.8em !important;
  }
}