.page-news {
  font-family: 'Arial', sans-serif;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-news__hero-section {
  position: relative;
  padding-top: 10px; /* Adjusted for shared header offset */
  text-align: center;
  padding-bottom: 50px;
  background-color: #B71C1C; /* Deep Red */
  overflow: hidden;
}

.page-news__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.15;
}

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

.page-news__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-news__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__intro-text {
  font-size: 1.15rem;
  color: #FFF5E1; /* Text Main */
  margin-bottom: 40px;
  line-height: 1.8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Section Titles */
.page-news__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: #FFF5E1; /* Text Main */
  position: relative;
  padding-bottom: 15px;
}

.page-news__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFD86A, #E6B800);
  border-radius: 2px;
}

.page-news__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF5E1; /* Text Main */
}

/* Buttons */
.page-news__btn-primary,
.page-news__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-news__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red for contrast */
  border: 2px solid #FFD86A;
  box-shadow: 0 5px 15px rgba(255, 216, 106, 0.4);
}

.page-news__btn-primary:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  box-shadow: 0 8px 20px rgba(255, 216, 106, 0.6);
  transform: translateY(-2px);
}

.page-news__btn-secondary {
  background-color: transparent;
  color: #FFD86A; /* Gold */
  border: 2px solid #FFD86A;
  box-shadow: 0 0 10px rgba(255, 204, 102, 0.3);
}

.page-news__btn-secondary:hover {
  background-color: #FFD86A;
  color: #7A0E0E; /* Deep Red for contrast */
  box-shadow: 0 0 15px rgba(255, 204, 102, 0.5);
  transform: translateY(-2px);
}

.page-news__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

/* News Grid */
.page-news__featured-news, .page-news__guides-tips {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
}

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

.page-news__news-card, .page-news__tip-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #FFF5E1; /* Text Main */
}

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

.page-news__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

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

.page-news__card-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-news__card-title a {
  color: #FFD86A; /* Gold */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news__card-title a:hover {
  color: #FFCC66; /* Glow */
}

.page-news__card-meta {
  font-size: 0.9rem;
  color: #F2B544; /* Border */
  margin-bottom: 15px;
}

.page-news__card-excerpt {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #FFF5E1; /* Text Main */
}

/* New Games Section */
.page-news__new-games {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
  text-align: center;
}

.page-news__game-showcase {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-news__game-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
  padding-bottom: 20px;
  color: #FFF5E1; /* Text Main */
}

.page-news__game-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-news__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-news__game-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #FFD86A; /* Gold */
  margin-bottom: 5px;
  padding: 0 15px;
}

.page-news__game-category {
  font-size: 0.95rem;
  color: #F2B544; /* Border */
  margin-bottom: 15px;
  padding: 0 15px;
}

/* Promotions Section */
.page-news__promotions {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
}

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

.page-news__promo-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: #FFF5E1; /* Text Main */
}

.page-news__promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.page-news__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

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

.page-news__promo-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFD86A; /* Gold */
  margin-bottom: 10px;
}

.page-news__promo-description {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #FFF5E1; /* Text Main */
}

/* Platform News Section */
.page-news__platform-news {
  padding: 60px 0;
  background-color: #7A0E0E; /* Deep Red */
}

.page-news__article-body {
  max-width: 900px;
  margin: 40px auto 0;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #FFF5E1; /* Text Main */
  text-align: left;
}

.page-news__article-body p {
  margin-bottom: 20px;
}

.page-news__article-body strong {
  color: #FFD86A; /* Gold */
}

.page-news__article-figure {
  margin: 40px 0;
  text-align: center;
}

.page-news__article-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-news__figure-caption {
  font-size: 0.9rem;
  color: #F2B544; /* Border */
  margin-top: 15px;
}

/* FAQ Section */
.page-news__faq-section {
  padding: 60px 0;
  background-color: #B71C1C; /* Background */
}

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

details.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #F2B544; /* Border */
  overflow: hidden;
  background: #D32F2F; /* Card BG */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

details.page-news__faq-item summary.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF5E1; /* Text Main */
  font-weight: 600;
}

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

details.page-news__faq-item summary.page-news__faq-question:hover {
  background: #E53935; /* Auxiliary color for hover */
}

.page-news__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  color: #FFD86A; /* Gold */
}

.page-news__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD86A; /* Gold */
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}

details.page-news__faq-item .page-news__faq-answer {
  padding: 0 25px 25px;
  background: #7A0E0E; /* Deep Red */
  border-radius: 0 0 10px 10px;
  color: #FFF5E1; /* Text Main */
  font-size: 1rem;
  line-height: 1.7;
}

.page-news__faq-answer p {
  margin: 0;
}

/* Contact Section */
.page-news__contact-section {
  padding: 60px 0 80px;
  background-color: #7A0E0E; /* Deep Red */
  text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-news__hero-content {
    padding: 40px 20px;
  }

  .page-news__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

  .page-news__intro-text {
    font-size: 1.05rem;
  }

  .page-news__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

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

  .page-news__game-item {
    width: 280px;
  }

  .page-news__card-title {
    font-size: 1.3rem;
  }

  .page-news__promo-title {
    font-size: 1.4rem;
  }

  .page-news__faq-qtext {
    font-size: 1rem;
  }
}

@media (max-width: 849px) {
  .page-news__hero-image img {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-news {
    font-size: 15px;
  }

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

  .page-news__hero-section {
    padding-top: 10px; /* Approximately 10px top spacing */
    padding-bottom: 40px;
  }

  .page-news__hero-content {
    padding: 40px 15px;
  }

  .page-news__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 15px;
  }

  .page-news__intro-text {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .page-news__section-title {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
    margin-bottom: 15px;
  }

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

  /* Buttons */
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-news__btn-primary,
  .page-news__btn-secondary,
  .page-news a[class*="button"],
  .page-news a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 0.95rem;
  }

  /* News Grid */
  .page-news__news-grid, .page-news__tips-grid, .page-news__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-news__news-card, .page-news__tip-card, .page-news__promo-card {
    margin-left: 0;
    margin-right: 0;
  }

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

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

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

  .page-news__card-meta {
    font-size: 0.85rem;
  }

  .page-news__card-excerpt {
    font-size: 0.95rem;
  }

  /* New Games Section */
  .page-news__game-showcase {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }

  .page-news__game-item {
    width: 100%;
    max-width: 350px;
  }

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

  .page-news__game-title {
    font-size: 1.2rem;
  }

  /* Platform News Section */
  .page-news__article-body {
    margin-top: 30px;
    font-size: 1rem;
    padding: 0 10px;
  }

  .page-news__article-figure {
    margin: 30px 0;
  }

  .page-news__figure-caption {
    font-size: 0.85rem;
  }

  /* FAQ Section */
  .page-news__faq-list {
    margin-top: 30px;
    padding: 0 10px;
  }

  details.page-news__faq-item summary.page-news__faq-question {
    padding: 15px 20px;
  }

  .page-news__faq-qtext {
    font-size: 0.95rem;
  }

  .page-news__faq-toggle {
    font-size: 24px;
    width: 25px;
  }

  details.page-news__faq-item .page-news__faq-answer {
    padding: 0 20px 20px;
  }

  .page-news__faq-answer p {
    font-size: 0.95rem;
  }

  /* General Images */
  .page-news img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-news__section,
  .page-news__card,
  .page-news__container,
  .page-news__hero-section,
  .page-news__featured-news,
  .page-news__new-games,
  .page-news__promotions,
  .page-news__platform-news,
  .page-news__guides-tips,
  .page-news__faq-section,
  .page-news__contact-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}