.page-resources-kinggame-guide {
  color: #ffffff; /* Light text for dark body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.page-resources-kinggame-guide__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: #1a1a1a;
  min-height: 500px;
  padding-bottom: 40px;
}

.page-resources-kinggame-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-resources-kinggame-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay for text readability */
  display: block;
}

.page-resources-kinggame-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Darker overlay for text */
  border-radius: 10px;
}

.page-resources-kinggame-guide__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Gold main color */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-kinggame-guide__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-resources-kinggame-guide__hero-button,
.page-resources-kinggame-guide__cta-button,
.page-resources-kinggame-guide__final-cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #8B0000; /* Deep red text for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-kinggame-guide__hero-button:hover,
.page-resources-kinggame-guide__cta-button:hover,
.page-resources-kinggame-guide__final-cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  color: #6a0000;
}

.page-resources-kinggame-guide__content-area {
  max-width: 800px; /* Optimal reading width */
  margin: 40px auto;
  padding: 20px;
  background-color: #1a1a1a; /* Dark background for content */
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.page-resources-kinggame-guide__table-of-contents {
  background-color: rgba(255, 215, 0, 0.1); /* Semi-transparent gold */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 40px;
  border-left: 5px solid #FFD700;
}

.page-resources-kinggame-guide__toc-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  text-align: center;
}

.page-resources-kinggame-guide__toc-list {
  list-style: none;
  padding: 0;
}

.page-resources-kinggame-guide__toc-list li {
  margin-bottom: 10px;
}

.page-resources-kinggame-guide__toc-list a {
  color: #f0f0f0;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-kinggame-guide__toc-list a:hover {
  color: #FFD700;
}

.page-resources-kinggame-guide__article {
  font-size: 1.1em;
  line-height: 1.7;
}

.page-resources-kinggame-guide__return-link-container {
  text-align: right;
  margin-bottom: 30px;
}

.page-resources-kinggame-guide__return-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-kinggame-guide__return-link:hover {
  color: #e6c200;
}

.page-resources-kinggame-guide__section-title {
  font-size: 2.2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #8B0000;
  padding-bottom: 10px;
}

.page-resources-kinggame-guide__subsection-title {
  font-size: 1.7em;
  color: #f0f0f0;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 4px solid #FFD700;
  padding-left: 10px;
}

.page-resources-kinggame-guide__paragraph {
  margin-bottom: 1em;
  color: #cccccc;
}

.page-resources-kinggame-guide__ordered-list,
.page-resources-kinggame-guide__unordered-list {
  margin-bottom: 1em;
  padding-left: 25px;
  color: #cccccc;
}

.page-resources-kinggame-guide__ordered-list li,
.page-resources-kinggame-guide__unordered-list li {
  margin-bottom: 0.5em;
}

.page-resources-kinggame-guide__ordered-list strong,
.page-resources-kinggame-guide__unordered-list strong {
  color: #FFD700;
}

.page-resources-kinggame-guide__cta-card {
  background-color: #8B0000; /* Deep red background */
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-kinggame-guide__cta-card--alt {
  background-color: rgba(255, 215, 0, 0.15); /* Lighter gold tint */
  border: 1px solid #FFD700;
}

.page-resources-kinggame-guide__cta-text {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-resources-kinggame-guide__cta-card--alt .page-resources-kinggame-guide__cta-text {
  color: #FFD700;
}

.page-resources-kinggame-guide__article-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-kinggame-guide__faq-item {
  background-color: rgba(255, 255, 255, 0.05); /* Very subtle light background */
  border-left: 3px solid #FFD700;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 5px;
}

.page-resources-kinggame-guide__faq-question {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 5px;
}

.page-resources-kinggame-guide__faq-answer {
  color: #cccccc;
  font-size: 1em;
}

.page-resources-kinggame-guide__final-cta-paragraph {
  text-align: center;
  font-size: 1.2em;
  color: #f0f0f0;
  margin-top: 50px;
  margin-bottom: 30px;
}

.page-resources-kinggame-guide__final-cta-button {
  margin: 0 auto;
  display: block;
  width: fit-content;
}

@media (max-width: 768px) {
  .page-resources-kinggame-guide__hero-title {
    font-size: 2.5em;
  }

  .page-resources-kinggame-guide__hero-description {
    font-size: 1em;
  }

  .page-resources-kinggame-guide__section-title {
    font-size: 1.8em;
  }

  .page-resources-kinggame-guide__subsection-title {
    font-size: 1.4em;
  }

  .page-resources-kinggame-guide__cta-text {
    font-size: 1.2em;
  }

  .page-resources-kinggame-guide__content-area {
    padding: 15px;
  }

  /* Ensure images do not overflow on mobile */
  .page-resources-kinggame-guide__article-image,
  .page-resources-kinggame-guide__hero-image img {
    max-width: 100%;
    height: auto;
  }

  .page-resources-kinggame-guide {
    max-width: 100%;
    overflow-x: hidden;
  }
}