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

.page-resources-game-strategy-guides__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #000000; /* Main color for hero background */
  color: #FFFFFF; /* White text for dark hero background */
  text-align: center;
  padding-bottom: 60px;
}

.page-resources-game-strategy-guides__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

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

.page-resources-game-strategy-guides__hero-image {
  margin-top: 40px;
}

.page-resources-game-strategy-guides__hero-image img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-resources-game-strategy-guides__cta-button {
  display: inline-block;
  padding: 15px 30px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

.page-resources-game-strategy-guides__cta-button--register {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-game-strategy-guides__cta-button--register:hover {
  background-color: transparent;
  color: #FFFFFF;
}

.page-resources-game-strategy-guides__cta-button--login {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-game-strategy-guides__cta-button--login:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-resources-game-strategy-guides__content-area {
  max-width: 800px; /* Content width for fluid reading */
  margin: 0 auto;
  padding: 60px 20px;
  background-color: #FFFFFF; /* White background for content */
}

.page-resources-game-strategy-guides__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-bottom: 30px;
  text-align: center;
  border-bottom: 3px solid #FCBC45;
  padding-bottom: 15px;
}

.page-resources-game-strategy-guides__subsection-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FCBC45;
  padding-left: 15px;
}

.page-resources-game-strategy-guides__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #333333;
  text-align: justify;
}

.page-resources-game-strategy-guides__image-wrapper {
  margin: 40px 0;
  text-align: center;
}

.page-resources-game-strategy-guides__image-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum image size */
  min-height: 200px;
}

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

.page-resources-game-strategy-guides__back-link {
  display: inline-block;
  padding: 12px 25px;
  background-color: #000000;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-game-strategy-guides__back-link:hover {
  background-color: #FCBC45;
  color: #000000;
}

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

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

  .page-resources-game-strategy-guides__section-title {
    font-size: 1.8em;
  }

  .page-resources-game-strategy-guides__subsection-title {
    font-size: 1.5em;
  }

  .page-resources-game-strategy-guides__text-block {
    font-size: 1em;
  }

  .page-resources-game-strategy-guides__cta-button {
    width: calc(100% - 20px);
    margin: 10px auto;
  }

  .page-resources-game-strategy-guides__content-area {
    padding: 30px 15px;
  }

  /* Mobile content area images must be responsive */
  .page-resources-game-strategy-guides__content-area img {
    max-width: 100%;
    height: auto;
  }
}