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

.page-resources-game-guide__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  min-height: 500px;
}

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

.page-resources-game-guide__hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  box-sizing: border-box;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.page-resources-game-guide__hero-content {
  background-color: rgba(0, 0, 0, 0.7); /* Dark overlay for text readability */
  padding: 30px;
  border-radius: 10px;
  color: #FFFFFF;
  max-width: 800px;
}

.page-resources-game-guide__hero-title {
  font-size: 2.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-resources-game-guide__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for primary CTA */
  color: #000000; /* Dark 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;
}

.page-resources-game-guide__cta-button:hover {
  background-color: #e0a53a;
}

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

.page-resources-game-guide__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #000000;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-game-guide__back-link:hover {
  color: #FCBC45;
}

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

.page-resources-game-guide__article-subheading {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-game-guide__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #333333;
}

.page-resources-game-guide__article-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 25px auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

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

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

.page-resources-game-guide__list-item {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-resources-game-guide__cta-section {
  text-align: center;
  margin-top: 50px;
  padding: 40px;
  background-color: #000000; /* Main color as background */
  color: #FFFFFF;
  border-radius: 8px;
}

.page-resources-game-guide__cta-heading {
  font-size: 2em;
  color: #FFFFFF;
  margin-bottom: 15px;
}

.page-resources-game-guide__cta-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #F0F0F0;
}

.page-resources-game-guide__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

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

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

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

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

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

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

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

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

  .page-resources-game-guide__article-paragraph,
  .page-resources-game-guide__list-item {
    font-size: 1em;
  }

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

  .page-resources-game-guide__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-game-guide__cta-button {
    width: 100%;
  }

  .page-resources-game-guide {
    overflow-x: hidden;
  }

  /* Ensure all content area images are responsive and not smaller than 200px */
  .page-resources-game-guide img {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }
}