.page-news {
  color: #ffffff; /* Do body background là #121212 (dark), nên text color là #ffffff */
  background-color: #121212;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-news__hero {
  padding: 120px 0 60px; /* Thêm padding-top để tránh bị header cố định che */
  text-align: center;
  background: linear-gradient(135deg, #0A2463, #1e3a70);
  border-bottom: 5px solid #FFD700;
}

.page-news__main-title {
  font-size: 3.2em;
  color: #FFD700;
  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.1em;
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-news__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-news__cta-button--primary {
  background: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-news__cta-button--primary:hover {
  background: #e6c200;
  border-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-news__cta-button--secondary {
  background: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-news__cta-button--secondary:hover {
  background: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-news__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin: 60px 0 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-news__featured-articles,
.page-news__latest-updates,
.page-news__faq-section,
.page-news__about-king79,
.page-news__final-cta {
  padding: 60px 0;
}

.page-news__featured-articles {
  background-color: #1a1a1a;
}

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

.page-news__article-card {
  background: #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-news__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

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

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

.page-news__article-link {
  text-decoration: none;
  color: inherit;
}

.page-news__article-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-news__article-title:hover {
  color: #fff;
}

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

.page-news__article-date {
  font-size: 0.85em;
  color: #999999;
  display: block;
  margin-bottom: 15px;
}

.page-news__read-more {
  display: inline-flex;
  align-items: center;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: color 0.3s ease;
}

.page-news__read-more:hover {
  color: #fff;
}

.page-news__arrow {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.page-news__read-more:hover .page-news__arrow {
  transform: translateX(5px);
}

.page-news__latest-updates {
  background-color: #121212;
}

.page-news__update-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-news__update-item {
  background: #2a2a2a;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-news__update-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-news__update-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  text-decoration: none;
  color: #ffffff;
  flex-wrap: wrap;
}

.page-news__update-title {
  font-size: 1.3em;
  color: #FFD700;
  margin: 0;
  flex-grow: 1;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.page-news__update-link:hover .page-news__update-title {
  color: #ffffff;
}

.page-news__update-date {
  font-size: 0.9em;
  color: #999999;
  flex-shrink: 0;
  margin-left: 20px;
}

.page-news__cta-buttons--centered {
  margin-top: 40px;
  text-align: center;
}

.page-news__faq-section {
  background-color: #0A2463;
}

.page-news__faq-section .page-news__section-title,
.page-news__faq-section .page-news__section-description {
  color: #ffffff;
}

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

.page-news__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.page-news__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
  padding: 0 20px;
  opacity: 0;
}

.page-news__faq-item.active .page-news__faq-answer {
  max-height: 2000px !important; /* Sử dụng !important và giá trị đủ lớn */
  padding: 20px !important;
  opacity: 1;
  background: #1e3a70;
  border-radius: 0 0 5px 5px;
  color: #e0e0e0;
}

.page-news__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: #2a2a2a;
  border: 1px solid #3d3d3d;
  border-radius: 5px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  position: relative;
}

.page-news__faq-question:hover {
  background: #3a3a3a;
  border-color: #4d4d4d;
}

.page-news__faq-question:active {
  background: #4a4a4a;
}

.page-news__faq-question h3 {
  margin: 0;
  padding: 0;
  flex: 1;
  font-size: 1.15em;
  font-weight: 600;
  line-height: 1.5;
  pointer-events: none;
  color: #FFD700;
}

.page-news__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  color: #FFD700;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.page-news__faq-item.active .page-news__faq-toggle {
  color: #ffffff;
  transform: rotate(45deg);
}

.page-news__about-king79 {
  background-color: #1a1a1a;
}

.page-news__about-text {
  font-size: 1.05em;
  color: #cccccc;
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: justify;
}

.page-news__final-cta {
  background: linear-gradient(135deg, #1e3a70, #0A2463);
  text-align: center;
  padding: 80px 0;
  border-top: 5px solid #FFD700;
}

.page-news__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-news__cta-description {
  font-size: 1.1em;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-news__main-title {
    font-size: 2.8em;
  }
  .page-news__section-title {
    font-size: 2.2em;
  }
  .page-news__cta-title {
    font-size: 2.4em;
  }
}

@media (max-width: 768px) {
  .page-news__hero {
    padding: 100px 0 40px; /* Mobile padding-top */
  }
  .page-news__main-title {
    font-size: 2.2em;
  }
  .page-news__intro-text {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-news__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }
  .page-news__cta-button {
    width: 100%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-news__section-title {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 15px;
  }
  .page-news__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
    padding: 0 15px;
  }
  .page-news__featured-articles,
  .page-news__latest-updates,
  .page-news__faq-section,
  .page-news__about-king79,
  .page-news__final-cta {
    padding: 40px 0;
  }
  .page-news__article-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }
  .page-news__article-image {
    height: 180px;
  }
  .page-news__article-title {
    font-size: 1.3em;
  }
  .page-news__article-excerpt {
    font-size: 0.9em;
  }
  .page-news__update-link {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px;
  }
  .page-news__update-title {
    font-size: 1.1em;
    margin-bottom: 5px;
  }
  .page-news__update-date {
    font-size: 0.8em;
    margin-left: 0;
  }
  .page-news__faq-question {
    padding: 15px;
    flex-wrap: wrap;
  }
  .page-news__faq-question h3 {
    font-size: 1em;
    width: calc(100% - 40px);
  }
  .page-news__faq-toggle {
    margin-left: 10px;
    width: 24px;
    height: 24px;
    font-size: 20px;
  }
  .page-news__faq-answer {
    padding: 0 15px;
  }
  .page-news__faq-item.active .page-news__faq-answer {
    padding: 15px !important;
  }
  .page-news__about-text {
    font-size: 1em;
    padding: 0 15px;
  }
  .page-news__final-cta {
    padding: 60px 0;
  }
  .page-news__cta-title {
    font-size: 2em;
  }
  .page-news__cta-description {
    font-size: 1em;
    padding: 0 15px;
  }

  /* Hình ảnh responsive */
  .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,
  .page-news__article-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 480px) {
  .page-news__main-title {
    font-size: 1.8em;
  }
  .page-news__section-title {
    font-size: 1.8em;
  }
  .page-news__cta-title {
    font-size: 1.8em;
  }
  .page-news__article-image {
    height: 150px;
  }
}