.page-news {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6;
}

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

.page-news .hero-banner {
  background: linear-gradient(135deg, var(--primary-color), #0056b3);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.page-news .hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-news .hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-news .hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-news .hero-image-container {
  width: 90%;
  max-width: 900px;
  margin-top: 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-news .hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-news .section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-news .section-subtitle {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-news .section-latest-articles, .page-news .section-promotions, .page-news .section-game-updates, .page-news .section-tips-guides, .page-news .section-faq, .page-news .section-cta-bottom {
  padding: 80px 0;
}

.page-news .section-latest-articles, .page-news .section-game-updates, .page-news .section-tips-guides {
  background-color: #ffffff;
}

.page-news .section-promotions, .page-news .section-faq, .page-news .section-cta-bottom {
  background-color: #f9f9f9;
}

.page-news .article-grid, .page-news .game-update-grid, .page-news .guide-grid, .page-news .promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-news .article-card, .page-news .promo-item, .page-news .game-update-item, .page-news .guide-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-news .article-card:hover, .page-news .promo-item:hover, .page-news .game-update-item:hover, .page-news .guide-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.page-news .article-img, .page-news .promo-img, .page-news .update-img, .page-news .guide-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-news .article-content, .page-news .promo-content, .page-news .game-update-content, .page-news .guide-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-news .article-title, .page-news .promo-title, .page-news .update-title, .page-news .guide-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-news .article-title a, .page-news .update-title a, .page-news .guide-title a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-news .article-title a:hover, .page-news .update-title a:hover, .page-news .guide-title a:hover {
  color: var(--secondary-color);
}

.page-news .article-meta {
  font-size: 0.9em;
  color: #777;
  margin-bottom: 10px;
}

.page-news .article-excerpt, .page-news .promo-description, .page-news .update-description, .page-news .guide-excerpt {
  font-size: 1em;
  color: #444;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-news .read-more-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  margin-top: auto;
}

.page-news .read-more-link:hover {
  color: var(--secondary-color);
}

.page-news .read-more-link .arrow {
  transition: transform 0.3s ease;
}

.page-news .read-more-link:hover .arrow {
  transform: translateX(5px);
}

.page-news .view-all-button-container {
  text-align: center;
  margin-top: 60px;
}

.page-news .final-promo-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  color: #555;
}

.page-news .final-promo-text a {
  color: var(--primary-color);
  font-weight: bold;
  text-decoration: none;
}

.page-news .final-promo-text a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-news .cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.page-news .cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}

.page-news .cta-button.small {
  padding: 10px 20px;
  font-size: 0.95em;
  border-radius: 6px;
}

.page-news .cta-button.large {
  padding: 18px 45px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-news .cta-button.secondary {
  background: #6c757d;
  box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.page-news .cta-button.secondary:hover {
  background: #5a6268;
  box-shadow: 0 6px 20px rgba(90, 98, 104, 0.4);
}

.page-news .cta-buttons-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

/* FAQ Section Styles */
.page-news .faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-news .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-news .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  background-color: #fff;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.page-news .faq-question:hover {
  background-color: #f5f5f5;
}

.page-news .faq-question h3 {
  margin: 0;
  font-size: 1.15em;
  color: #333;
  flex-grow: 1;
  text-align: left;
}

.page-news .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.page-news .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--secondary-color);
}

.page-news .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border-radius: 0 0 8px 8px;
}

.page-news .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #eee;
}

.page-news .faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-news .hero-title {
    font-size: 2.8em;
  }
  .page-news .hero-description {
    font-size: 1.1em;
  }
  .page-news .section-title {
    font-size: 2em;
  }
  .page-news .section-subtitle {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-news .hero-banner {
    padding: 60px 0;
    flex-direction: column;
    gap: 20px;
  }
  .page-news .hero-title {
    font-size: 2.2em;
  }
  .page-news .hero-description {
    font-size: 1em;
  }
  .page-news .hero-image-container {
    width: 95%;
    margin-top: 20px;
  }
  .page-news .section-latest-articles, .page-news .section-promotions, .page-news .section-game-updates, .page-news .section-tips-guides, .page-news .section-faq, .page-news .section-cta-bottom {
    padding: 60px 0;
  }
  .page-news .article-grid, .page-news .promo-list, .page-news .game-update-grid, .page-news .guide-grid {
    grid-template-columns: 1fr;
  }
  .page-news .article-img, .page-news .promo-img, .page-news .update-img, .page-news .guide-img {
    height: 180px;
  }
  .page-news .article-title, .page-news .promo-title, .page-news .update-title, .page-news .guide-title {
    font-size: 1.2em;
  }
  .page-news .cta-buttons-bottom {
    flex-direction: column;
    gap: 15px;
  }
  .page-news .cta-button.large {
    width: 100%;
  }
  .page-news .faq-question {
    padding: 15px 20px;
  }
  .page-news .faq-question h3 {
    font-size: 1em;
  }
  .page-news .faq-toggle {
    font-size: 1.5em;
  }
  .page-news .faq-answer {
    padding: 0 20px;
  }
  .page-news .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-news .hero-title {
    font-size: 1.8em;
  }
  .page-news .hero-description {
    font-size: 0.95em;
  }
  .page-news .cta-button {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-news .section-title {
    font-size: 1.8em;
  }
  .page-news .section-subtitle {
    font-size: 0.9em;
  }
}