.page-resources-game-guide {
  color: #333333; /* Default text color for light background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #FFFFFF; /* Explicitly set for clarity if not inherited */
}

/* Hero Section */
.page-resources-game-guide__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  min-height: 500px;
  background-color: #000000; /* Dark background for hero */
  color: #FFFFFF; /* Light text for dark background */
}

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

.page-resources-game-guide__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Overlay for text readability */
}

.page-resources-game-guide__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-game-guide__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FCBC45; /* Highlight color for title */
}

.page-resources-game-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-game-guide__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-resources-game-guide__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  min-width: 150px; /* Ensure buttons are not too small */
  text-align: center;
}

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

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

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

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

/* Content Area */
.page-resources-game-guide__content-area {
  max-width: 800px; /* Content width for readability */
  margin: 0 auto;
  padding: 40px 20px;
}

.page-resources-game-guide__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-game-guide__sub-title {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-resources-game-guide__paragraph {
  font-size: 1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-game-guide__paragraph a {
  color: #FCBC45;
  text-decoration: none;
}

.page-resources-game-guide__paragraph a:hover {
  text-decoration: underline;
}

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

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

.page-resources-game-guide__list-item a {
  color: #FCBC45;
  text-decoration: none;
}

.page-resources-game-guide__list-item a:hover {
  text-decoration: underline;
}

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

.page-resources-game-guide__image-container {
  margin: 30px auto;
  text-align: center;
}

.page-resources-game-guide__image-container img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum size for content images */
  min-height: 200px; /* Enforce minimum size for content images */
}

.page-resources-game-guide__action-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-resources-game-guide__button--download {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-game-guide__button--download:hover {
  background-color: transparent;
  color: #FCBC45;
}

.page-resources-game-guide__button--contact {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

.page-resources-game-guide__button--contact:hover {
  background-color: #333333;
  color: #FFFFFF;
}

/* FAQ Section */
.page-resources-game-guide__faq-item {
  background-color: #f8f8f8;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
}

.page-resources-game-guide__faq-question {
  font-size: 1.2em;
  color: #000000;
  margin-bottom: 10px;
}

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

.page-resources-game-guide__faq-answer a {
  color: #FCBC45;
  text-decoration: none;
}

.page-resources-game-guide__faq-answer a:hover {
  text-decoration: underline;
}

/* Final Call to Action */
.page-resources-game-guide__action-buttons--final {
  margin-top: 60px;
  margin-bottom: 60px;
}

.page-resources-game-guide__button--register-large {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-resources-game-guide__button--register-large:hover {
  background-color: #e0a538;
  color: #000000;
}

.page-resources-game-guide__button--promotions {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-resources-game-guide__button--promotions:hover {
  background-color: #333333;
  color: #FFFFFF;
}

.page-resources-game-guide__return-link-container {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
}

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

.page-resources-game-guide__return-link:hover {
  color: #e0a538;
  text-decoration: underline;
}

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

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

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

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

  .page-resources-game-guide__hero-section {
    padding: 40px 15px;
    min-height: 400px;
  }

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

  .page-resources-game-guide__hero-actions,
  .page-resources-game-guide__action-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-game-guide__button,
  .page-resources-game-guide__button--register-large,
  .page-resources-game-guide__button--promotions {
    width: 100%;
    max-width: 300px; /* Constrain button width on mobile */
    margin: 0 auto;
  }

  /* Mobile content image constraint */
  .page-resources-game-guide img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Still enforce minimum size */
    min-height: 200px; /* Still enforce minimum size */
  }
}