.page-news {
  color: #ffffff; /* Default text color for dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: transparent; /* Inherit from body/shared */
}

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

.page-news__hero-section {
  position: relative;
  padding: var(--header-offset, 120px) 0 80px;
  background-color: #1A202C; /* Auxiliary dark color */
  text-align: center;
  overflow: hidden;
}

.page-news__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  max-width: 800px;
  margin: 0 auto 30px;
}

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

.page-news__cta-buttons--center {
  margin-top: 30px;
}

.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary {
  background: #FFD700;
  color: #1A202C; /* Dark text on gold button */
  border: 2px solid #FFD700;
}

.page-news__btn-primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  color: #1A202C;
}

.page-news__btn-secondary {
  background: transparent;
  color: #FFD700; /* Gold text on transparent button */
  border: 2px solid #FFD700;
}

.page-news__btn-secondary:hover {
  background: #FFD700;
  color: #1A202C;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
  font-weight: bold;
}

.page-news__section-title--center {
  text-align: center;
}

.page-news__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}

.page-news__latest-news-section,
.page-news__promotions-updates-section,
.page-news__platform-updates-section {
  padding: 60px 0;
  background-color: #1A202C; /* Auxiliary dark color */
}

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

.page-news__news-card {
  background: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-news__card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.page-news__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-news__card-content {
  padding: 20px;
}

.page-news__card-title {
  font-size: 1.4em;
  color: #FFD700; /* Gold for card titles */
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-news__card-date {
  font-size: 0.9em;
  color: #bbb;
  margin-bottom: 10px;
}

.page-news__card-description {
  font-size: 1em;
  color: #e0e0e0;
}

.page-news__featured-article {
  padding: 80px 0;
  background-color: #1A202C; /* Auxiliary dark color */
  color: #ffffff;
}

.page-news__dark-bg {
  background-color: #1A202C; /* Ensure dark background */
  color: #ffffff;
}

.page-news__light-bg {
  background-color: #0a0a0a; /* Ensure light background, but body is dark, so this will still be dark */
  color: #ffffff;
}

.page-news__article-image {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 40px;
  filter: none; /* Ensure no CSS filter changes image color */
}

.page-news__article-content h3 {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-news__article-content p {
  margin-bottom: 15px;
  color: #f0f0f0;
}

.page-news__list,
.page-news__list--ordered {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #f0f0f0;
}

.page-news__list--ordered {
  list-style-type: decimal;
}

.page-news__list li,
.page-news__list--ordered li {
  margin-bottom: 8px;
  color: #f0f0f0;
}

.page-news__video-section {
  padding: 80px 0;
  background-color: #0a0a0a; /* Body background color */
  text-align: center;
}

.page-news__video-wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px; /* Max width for video */
  margin: 0 auto;
  background-color: #000;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio (9 / 16 * 100%) */
  height: 0;
}

.page-news__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

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

.page-news__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

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

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: #2a323d; /* Slightly lighter dark background for question */
  color: #FFD700;
  font-size: 1.2em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-news__faq-question:hover {
  background-color: #3a4552;
}

.page-news__faq-question h3 {
  margin: 0;
  color: inherit;
}

.page-news__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-news__faq-item.active .page-news__faq-toggle {
  transform: rotate(45deg); /* Change + to X or - */
}

.page-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 25px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  color: #e0e0e0;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 1000px !important; /* Sufficient height for content */
  padding: 15px 25px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }

  .page-news__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-news {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-news__hero-section {
    padding: var(--header-offset, 120px) 20px 60px;
  }

  .page-news__hero-title {
    font-size: 2.2em;
  }

  .page-news__hero-description {
    font-size: 1em;
  }

  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-news__btn-primary,
  .page-news__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin: 0 auto; /* Center buttons */
  }

  .page-news__section-title {
    font-size: 1.8em;
    padding-top: 30px;
  }

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

  .page-news__news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-news__news-card {
    margin: 0 15px;
  }

  .page-news__card-title {
    font-size: 1.2em;
  }

  .page-news__card-image {
    height: 180px;
  }

  .page-news__article-image {
    max-height: 300px;
    margin: 0 15px 30px;
  }

  .page-news__article-content h3 {
    font-size: 1.5em;
  }

  .page-news__container {
    padding: 0 15px;
  }

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

  .page-news__section,
  .page-news__card,
  .page-news__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news__video-section {
    padding-top: var(--header-offset, 120px) !important; /* Ensure video section is below header */
  }

  .page-news video,
  .page-news__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-news__video-section,
  .page-news__video-container,
  .page-news__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden !important;
  }

  .page-news__video-wrapper {
    padding-bottom: 56.25% !important; /* Maintain aspect ratio */
    height: 0 !important;
    margin: 0 !important; /* Remove margin to prevent overflow */
    border-radius: 0 !important;
  }

  .page-news__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }

  .page-news__faq-answer {
    padding: 10px 20px;
  }
}

/* Contrast Fixes */
.page-news p, .page-news li, .page-news__card-description {
  color: #e0e0e0;
}

.page-news__dark-bg {
  background: #1A202C;
  color: #ffffff;
}

.page-news__light-bg {
  background: #0a0a0a;
  color: #ffffff;
}

.page-news__faq-question {
  background: #2a323d;
  color: #FFD700;
}

.page-news__faq-item.active .page-news__faq-answer {
  background: rgba(255, 255, 255, 0.05);
}