.page-resources-game-strategy-guide {
  color: #333333; /* Dark text for light body background */
}

.page-resources-game-strategy-guide__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  min-height: 500px; /* Minimum height for hero section */
}

.page-resources-game-strategy-guide__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-resources-game-strategy-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px;
  background: rgba(0, 0, 0, 0.7); /* Semi-transparent dark background for text readability */
  border-radius: 10px;
  color: #FFFFFF; /* Light text for dark overlay */
}

.page-resources-game-strategy-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  line-height: 1.2;
}

.page-resources-game-strategy-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.6;
}

.page-resources-game-strategy-guide__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Dark text for light button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-resources-game-strategy-guide__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-resources-game-strategy-guide__content-area {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 40px auto;
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-resources-game-strategy-guide__table-of-contents {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 40px;
  border-left: 4px solid #FCBC45;
}

.page-resources-game-strategy-guide__toc-title {
  font-size: 1.8em;
  color: #000000;
  margin-bottom: 20px;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}

.page-resources-game-strategy-guide__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.page-resources-game-strategy-guide__toc-link {
  text-decoration: none;
  color: #333333;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-game-strategy-guide__toc-link:hover {
  color: #FCBC45;
  text-decoration: underline;
}

.page-resources-game-strategy-guide__article-heading {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #eee;
}

.page-resources-game-strategy-guide__article-paragraph {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #333333;
}

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

.page-resources-game-strategy-guide__cta-wrapper {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}

.page-resources-game-strategy-guide__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-resources-game-strategy-guide__related-list {
  list-style: disc;
  padding-left: 20px;
  margin-top: 20px;
}

.page-resources-game-strategy-guide__related-list li {
  margin-bottom: 10px;
}

.page-resources-game-strategy-guide__related-link {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-game-strategy-guide__related-link:hover {
  color: #FCBC45;
  text-decoration: underline;
}

.page-resources-game-strategy-guide__back-link-wrapper {
  margin-top: 50px;
  text-align: center;
}

.page-resources-game-strategy-guide__back-link {
  display: inline-block;
  padding: 10px 20px;
  background-color: #000000;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-resources-game-strategy-guide__back-link:hover {
  background-color: #333333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-game-strategy-guide__hero-title {
    font-size: 2.2em;
  }

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

  .page-resources-game-strategy-guide__hero-content {
    padding: 20px;
  }

  .page-resources-game-strategy-guide__content-area {
    margin: 20px auto;
    padding: 15px;
  }

  .page-resources-game-strategy-guide__article-heading {
    font-size: 1.8em;
  }

  .page-resources-game-strategy-guide__article-paragraph {
    font-size: 1em;
  }

  .page-resources-game-strategy-guide__article-image {
    max-width: 100%;
    height: auto;
  }

  .page-resources-game-strategy-guide__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-resources-game-strategy-guide__hero-title {
    font-size: 1.8em;
  }

  .page-resources-game-strategy-guide__hero-description {
    font-size: 0.9em;
  }

  .page-resources-game-strategy-guide__hero-content {
    padding: 15px;
  }

  .page-resources-game-strategy-guide__cta-button {
    font-size: 0.9em;
    padding: 12px 25px;
  }

  .page-resources-game-strategy-guide__article-heading {
    font-size: 1.5em;
  }

  .page-resources-game-strategy-guide__article-paragraph {
    font-size: 0.95em;
  }
}