.page-news {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  line-height: 1.6;
  background-color: #1A202C; /* Main dark background */
}

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

.page-news__hero {
  position: relative;
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold text for hero section */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 500px; /* Ensure sufficient height */
}

.page-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Subtle background */
}

.page-news__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.page-news__hero-subtitle {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  color: #e5dfd3; /* Light text for subtitle */
  z-index: 1;
}

.page-news__section {
  padding: 60px 0;
  background-color: #1A202C; /* Dark background for sections */
  color: #e5dfd3;
}

.page-news__section--dark {
  background-color: #2c3447; /* Slightly lighter dark for contrast */
}

.page-news__section--alt-bg {
  background-color: #1A202C;
}

.page-news__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFD700;
}

.page-news__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
  z-index: 1; /* For hero section button */
}

.page-news__button--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
}

.page-news__button--primary:hover {
  background-color: #e0b800; /* Darker gold on hover */
}

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

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

.page-news__button--tertiary {
  background-color: #4A5568; /* Dark grey button */
  color: #e5dfd3; /* Light text */
}

.page-news__button--tertiary:hover {
  background-color: #636b7f;
}

.page-news__button--center {
  display: block;
  margin: 40px auto 0 auto;
  width: fit-content;
}

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

.page-news__article {
  background-color: #2c3447;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-news__article:hover {
  transform: translateY(-5px);
}

.page-news__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-news__article-title {
  font-size: 1.5em;
  color: #FFD700;
  padding: 15px 20px 0;
}

.page-news__article-excerpt {
  padding: 10px 20px;
  color: #b0b0b0;
  font-size: 0.95em;
}

.page-news__article .page-news__button {
  margin: 15px 20px 20px;
}

.page-news__announcement-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.page-news__announcement-item {
  background-color: #1A202C;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-news__announcement-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-news__announcement-date {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 15px;
}

.page-news__announcement-text {
  color: #e5dfd3;
  margin-bottom: 20px;
}

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

.page-news__game-card {
  background-color: #2c3447;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-news__game-card:hover {
  transform: translateY(-5px);
}

.page-news__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.page-news__game-title {
  font-size: 1.4em;
  color: #FFD700;
  padding: 15px 10px 5px;
}

.page-news__game-description {
  padding: 0 15px 15px;
  color: #b0b0b0;
  font-size: 0.9em;
}

.page-news__game-card .page-news__button {
  margin-bottom: 20px;
}

.page-news__content-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-news__content-row--reverse {
  flex-direction: row-reverse;
}

.page-news__content-image {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  height: auto;
}

.page-news__content-text {
  flex: 1;
  min-width: 300px;
}

.page-news__content-text p {
  margin-bottom: 20px;
  color: #e5dfd3;
}

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

.page-news__partner-item {
  background-color: #1A202C;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-news__partner-logo {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
  filter: grayscale(100%) brightness(150%); /* Make logos fit dark theme */
}

.page-news__partner-name {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-news__partner-description {
  color: #b0b0b0;
  margin-bottom: 20px;
}

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

.page-news__detail-item {
  background-color: #2c3447;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.page-news__detail-item:hover {
  background-color: #3f4a5f;
}

.page-news__detail-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-news__detail-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-news__detail-title a:hover {
  text-decoration: underline;
}

.page-news__detail-description {
  color: #b0b0b0;
  margin-bottom: 20px;
}

.page-news__cta-banner {
  background-color: #FFD700; /* Gold background for CTA */
  color: #1A202C; /* Dark text on gold */
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-news__cta-banner .page-news__container {
  position: relative;
  z-index: 1;
}

.page-news__cta-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #1A202C;
}

.page-news__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

.page-news__cta-background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news__hero-title {
    font-size: 2.8em;
  }
  .page-news__section-title {
    font-size: 2em;
  }
  .page-news__content-row {
    flex-direction: column;
  }
  .page-news__content-image {
    max-width: 100%;
  }
  .page-news__cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-news__hero {
    padding: 80px 0;
  }
  .page-news__hero-title {
    font-size: 2.2em;
  }
  .page-news__hero-subtitle {
    font-size: 1em;
  }
  .page-news__section {
    padding: 40px 0;
  }
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__article-grid, .page-news__game-updates-grid, .page-news__partner-grid, .page-news__detail-list {
    grid-template-columns: 1fr;
  }
  .page-news__cta-title {
    font-size: 2em;
  }
  .page-news__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-news__hero-title {
    font-size: 1.8em;
  }
  .page-news__hero-subtitle {
    font-size: 0.9em;
  }
  .page-news__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-news__section-title {
    font-size: 1.5em;
  }
  .page-news__announcement-title {
    font-size: 1.4em;
  }
  .page-news__game-title {
    font-size: 1.2em;
  }
  .page-news__cta-title {
    font-size: 1.8em;
  }
}