/* style/resources-guide-to-lucky-king-ph.css */
.page-resources-guide-to-lucky-king-ph {
  color: #333333; /* Dark text for light body background #f4f4f4 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-guide-to-lucky-king-ph__hero-section {
  position: relative;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.page-resources-guide-to-lucky-king-ph__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page-resources-guide-to-lucky-king-ph__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7); /* Darken image for text readability */
}

.page-resources-guide-to-lucky-king-ph__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-guide-to-lucky-king-ph__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-resources-guide-to-lucky-king-ph__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-guide-to-lucky-king-ph__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000000; /* Black text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-guide-to-lucky-king-ph__cta-button:hover {
  background-color: #e6c200; /* Darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-guide-to-lucky-king-ph__cta-button--inline {
  margin-top: 20px;
  margin-bottom: 20px;
}

.page-resources-guide-to-lucky-king-ph__content-area {
  max-width: 800px; /* Content width for readability */
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-guide-to-lucky-king-ph__table-of-contents {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 40px;
}

.page-resources-guide-to-lucky-king-ph__toc-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 15px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-guide-to-lucky-king-ph__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-guide-to-lucky-king-ph__toc-list li {
  margin-bottom: 10px;
}

.page-resources-guide-to-lucky-king-ph__toc-list a {
  color: #333333;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-guide-to-lucky-king-ph__toc-list a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-resources-guide-to-lucky-king-ph__article-content p {
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-guide-to-lucky-king-ph__article-heading {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.page-resources-guide-to-lucky-king-ph__article-content h3 {
  font-size: 1.6em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-guide-to-lucky-king-ph__numbered-list,
.page-resources-guide-to-lucky-king-ph__bullet-list {
  margin-bottom: 20px;
  padding-left: 25px;
}

.page-resources-guide-to-lucky-king-ph__numbered-list li,
.page-resources-guide-to-lucky-king-ph__bullet-list li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

.page-resources-guide-to-lucky-king-ph__article-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-guide-to-lucky-king-ph__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-resources-guide-to-lucky-king-ph__faq-question {
  font-size: 1.4em;
  color: #000000;
  margin-bottom: 10px;
}

.page-resources-guide-to-lucky-king-ph__faq-answer {
  font-size: 1.05em;
  color: #555555;
}

.page-resources-guide-to-lucky-king-ph__return-link-container {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-resources-guide-to-lucky-king-ph__return-link {
  color: #FFD700;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-guide-to-lucky-king-ph__return-link:hover {
  color: #e6c200;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-guide-to-lucky-king-ph__hero-title {
    font-size: 2.2em;
  }

  .page-resources-guide-to-lucky-king-ph__hero-description {
    font-size: 1em;
  }

  .page-resources-guide-to-lucky-king-ph__hero-section {
    padding: 60px 15px;
  }

  .page-resources-guide-to-lucky-king-ph__content-area {
    padding: 0 15px;
  }

  .page-resources-guide-to-lucky-king-ph__article-heading {
    font-size: 1.8em;
  }

  .page-resources-guide-to-lucky-king-ph__article-content p,
  .page-resources-guide-to-lucky-king-ph__numbered-list li,
  .page-resources-guide-to-lucky-king-ph__bullet-list li,
  .page-resources-guide-to-lucky-king-ph__toc-list a {
    font-size: 1em;
  }

  .page-resources-guide-to-lucky-king-ph__article-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and do not overflow */
  }
  /* Ensure all content images in mobile are responsive and don't cause overflow */
  .page-resources-guide-to-lucky-king-ph img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-resources-guide-to-lucky-king-ph__hero-title {
    font-size: 1.8em;
  }

  .page-resources-guide-to-lucky-king-ph__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-resources-guide-to-lucky-king-ph__toc-title,
  .page-resources-guide-to-lucky-king-ph__article-heading {
    font-size: 1.5em;
  }

  .page-resources-guide-to-lucky-king-ph__faq-question {
    font-size: 1.2em;
  }
}