/* style/resources-fu88-latest-news.css */
.page-resources-fu88-latest-news {
  font-family: 'Arial', sans-serif;
  color: #E2E8F0; /* Light text for dark background */
  background-color: #1A202C; /* Dark charcoal main background */
  line-height: 1.6;
}

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

.page-resources-fu88-latest-news .hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3A404C 100%); /* Dark gradient */
  padding: 80px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero text */
  position: relative;
  overflow: hidden;
}

.page-resources-fu88-latest-news .hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for main title */
  line-height: 1.2;
}

.page-resources-fu88-latest-news .hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E2E8F0;
}

.page-resources-fu88-latest-news .btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1.1em;
}

.page-resources-fu88-latest-news .btn-primary {
  background-color: #FFD700; /* Gold button */
  color: #1A202C; /* Dark text on gold */
  border: 2px solid #FFD700;
}

.page-resources-fu88-latest-news .btn-primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  transform: translateY(-2px);
}

.page-resources-fu88-latest-news .btn-secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-resources-fu88-latest-news .btn-secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
  transform: translateY(-2px);
}

.page-resources-fu88-latest-news .article-content-wrapper {
  padding: 60px 0;
}

.page-resources-fu88-latest-news .article-main-content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #2D3748; /* Slightly lighter dark background for content */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: #E2E8F0;
}

.page-resources-fu88-latest-news .intro-text {
  font-size: 1.15em;
  margin-bottom: 30px;
  line-height: 1.7;
  color: #CBD5E0;
}

.page-resources-fu88-latest-news h2 {
  font-size: 2.2em;
  color: #FFD700; /* Gold for main headings */
  margin-top: 50px;
  margin-bottom: 25px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
  font-weight: bold;
}

.page-resources-fu88-latest-news h3 {
  font-size: 1.8em;
  color: #E2E8F0; /* Light text for subheadings */
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 600;
}

.page-resources-fu88-latest-news h4 {
  font-size: 1.4em;
  color: #CBD5E0;
  margin-top: 30px;
  margin-bottom: 15px;
  font-weight: 500;
}

.page-resources-fu88-latest-news p {
  margin-bottom: 1.2em;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-resources-fu88-latest-news ul,
.page-resources-fu88-latest-news ol {
  margin-bottom: 1.5em;
  padding-left: 25px;
}

.page-resources-fu88-latest-news ul li,
.page-resources-fu88-latest-news ol li {
  margin-bottom: 0.8em;
  line-height: 1.6;
}

.page-resources-fu88-latest-news a {
  color: #FFD700; /* Gold for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-fu88-latest-news a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-resources-fu88-latest-news .link-highlight {
  color: #FFD700;
  font-weight: bold;
}

.page-resources-fu88-latest-news .link-highlight:hover {
  color: #e6c200;
}

.page-resources-fu88-latest-news .article-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-resources-fu88-latest-news .cta-block {
  background-color: #1A202C;
  border: 2px solid #FFD700;
  padding: 30px;
  margin: 50px 0;
  border-radius: 10px;
  text-align: center;
}

.page-resources-fu88-latest-news .cta-block p {
  font-size: 1.3em;
  margin-bottom: 25px;
  color: #FFD700;
  font-weight: 600;
}

.page-resources-fu88-latest-news .btn-large {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-resources-fu88-latest-news .faq-container {
  margin-top: 40px;
}

.page-resources-fu88-latest-news .faq-item {
  background-color: #1A202C;
  border: 1px solid #3A404C;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

.page-resources-fu88-latest-news .faq-question {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
}

.page-resources-fu88-latest-news .faq-answer {
  font-size: 1em;
  color: #CBD5E0;
  display: none; /* Initially hidden */
}

.page-resources-fu88-latest-news .faq-item.active .faq-answer {
  display: block;
}

.page-resources-fu88-latest-news .related-articles {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #3A404C;
}

.page-resources-fu88-latest-news .related-articles h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.page-resources-fu88-latest-news .related-articles ul {
  list-style: none;
  padding: 0;
}

.page-resources-fu88-latest-news .related-articles li {
  margin-bottom: 10px;
}

.page-resources-fu88-latest-news .related-articles li a {
  color: #CBD5E0;
  font-size: 1.1em;
}

.page-resources-fu88-latest-news .related-articles li a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-fu88-latest-news .return-link {
  margin-top: 60px;
  text-align: center;
}

.page-resources-fu88-latest-news .btn-text {
  background: none;
  border: none;
  color: #FFD700;
  font-size: 1.2em;
  padding: 10px 20px;
}

.page-resources-fu88-latest-news .btn-text:hover {
  color: #e6c200;
  text-decoration: underline;
  background: none;
  transform: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-fu88-latest-news .hero-title {
    font-size: 2.5em;
  }

  .page-resources-fu88-latest-news .hero-subtitle {
    font-size: 1.2em;
  }

  .page-resources-fu88-latest-news .btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-resources-fu88-latest-news .btn-secondary {
    margin-left: 0;
    margin-top: 15px;
  }

  .page-resources-fu88-latest-news .article-main-content {
    padding: 25px;
  }

  .page-resources-fu88-latest-news h2 {
    font-size: 1.8em;
  }

  .page-resources-fu88-latest-news h3 {
    font-size: 1.5em;
  }

  .page-resources-fu88-latest-news .cta-block p {
    font-size: 1.1em;
  }

  .page-resources-fu88-latest-news .btn-large {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-resources-fu88-latest-news .hero-title {
    font-size: 2em;
  }

  .page-resources-fu88-latest-news .hero-subtitle {
    font-size: 1em;
  }

  .page-resources-fu88-latest-news .btn {
    display: block;
    width: 100%;
    margin-left: 0;
    margin-bottom: 10px;
  }

  .page-resources-fu88-latest-news .article-main-content {
    padding: 15px;
  }

  .page-resources-fu88-latest-news h2 {
    font-size: 1.5em;
  }

  .page-resources-fu88-latest-news h3 {
    font-size: 1.3em;
  }

  .page-resources-fu88-latest-news p {
    font-size: 0.95em;
  }
}