.page-resources-game-strategy-guide {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #FFFFFF;
}

.page-resources-game-strategy-guide__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  color: #FFFFFF;
  text-align: center;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

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

.page-resources-game-strategy-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image for text readability */
}

.page-resources-game-strategy-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  border-radius: 10px;
}

.page-resources-game-strategy-guide__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-game-strategy-guide__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

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

.page-resources-game-strategy-guide__hero-button:hover {
  background-color: #e0a53b;
}

.page-resources-game-strategy-guide__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-game-strategy-guide__article-container {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-resources-game-strategy-guide__introduction-text,
.page-resources-game-strategy-guide__paragraph,
.page-resources-game-strategy-guide__section-intro,
.page-resources-game-strategy-guide__conclusion-text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-game-strategy-guide__section-title {
  font-size: 2em;
  color: #000000; /* Main color */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-game-strategy-guide__subsection-title {
  font-size: 1.5em;
  color: #000000; /* Main color */
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-resources-game-strategy-guide__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-resources-game-strategy-guide__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-game-strategy-guide__list-item {
  margin-bottom: 10px;
}

.page-resources-game-strategy-guide__blockquote {
  background-color: #f8f8f8;
  border-left: 5px solid #FCBC45;
  padding: 15px 20px;
  margin: 30px 0;
  font-style: italic;
  color: #555555;
}

.page-resources-game-strategy-guide__cta-banner {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #000000; /* Main color as background */
  color: #FFFFFF;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.page-resources-game-strategy-guide__cta-banner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.3);
  z-index: 1;
}

.page-resources-game-strategy-guide__cta-banner .page-resources-game-strategy-guide__cta-title,
.page-resources-game-strategy-guide__cta-banner .page-resources-game-strategy-guide__cta-description,
.page-resources-game-strategy-guide__cta-banner .page-resources-game-strategy-guide__cta-button {
  position: relative;
  z-index: 2;
}

.page-resources-game-strategy-guide__cta-title {
  font-size: 2.5em;
  color: #FCBC45;
  margin-bottom: 15px;
}

.page-resources-game-strategy-guide__cta-description {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-resources-game-strategy-guide__cta-button {
  display: inline-block;
  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;
  margin: 0 10px;
}

.page-resources-game-strategy-guide__cta-button--register {
  background-color: #FFFFFF; /* Register button color */
  color: #000000; /* Main color */
}

.page-resources-game-strategy-guide__cta-button--register:hover {
  background-color: #f0f0f0;
}

.page-resources-game-strategy-guide__cta-button--login {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Main color */
}

.page-resources-game-strategy-guide__cta-button--login:hover {
  background-color: #e0a53b;
}

.page-resources-game-strategy-guide__return-link-wrapper {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

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

.page-resources-game-strategy-guide__return-link:hover {
  color: #e0a53b;
}

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

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

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

  .page-resources-game-strategy-guide__subsection-title {
    font-size: 1.3em;
  }

  .page-resources-game-strategy-guide__cta-title {
    font-size: 2em;
  }

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

  .page-resources-game-strategy-guide__cta-button {
    width: 100%;
    margin: 10px 0;
  }

  .page-resources-game-strategy-guide__image-wrapper img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-resources-game-strategy-guide__article-container {
    padding: 20px;
  }

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

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

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

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

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

  .page-resources-game-strategy-guide__subsection-title {
    font-size: 1.2em;
  }

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

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