/* style/resources-game-strategy-guide.css */
.page-resources-game-strategy-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF; /* Ensure consistency with body background if needed, but shared.css sets body */
}

.page-resources-game-strategy-guide__hero-section {
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #000000; /* Dark background for hero section */
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-resources-game-strategy-guide__hero-container {
  position: relative;
  z-index: 2;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-resources-game-strategy-guide__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FCBC45; /* Highlight with login color */
  line-height: 1.2;
}

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

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

.page-resources-game-strategy-guide__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.1em;
}

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

.page-resources-game-strategy-guide__button--register:hover {
  background-color: #FCBC45;
  border-color: #FCBC45;
  color: #000000;
}

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

.page-resources-game-strategy-guide__button--login:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
}

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

.page-resources-game-strategy-guide__button--play-now:hover {
  background-color: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
}

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

.page-resources-game-strategy-guide__button--back:hover {
  background-color: #333333;
  border-color: #333333;
}

.page-resources-game-strategy-guide__hero-image {
  width: 100%;
  max-width: 1920px; /* Ensure it doesn't stretch beyond original size */
  height: auto;
  display: block;
  margin-top: -80px; /* Overlap with content slightly for visual flow */
  position: relative;
  z-index: 1;
}

.page-resources-game-strategy-guide__content-area {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  color: #333333;
}

.page-resources-game-strategy-guide__article-heading {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-game-strategy-guide__article-subheading {
  font-size: 1.5em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

.page-resources-game-strategy-guide__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.page-resources-game-strategy-guide__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #000000;
  border-radius: 10px;
  color: #FFFFFF;
}

.page-resources-game-strategy-guide__call-to-action-text {
  font-size: 1.5em;
  margin-bottom: 25px;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .page-resources-game-strategy-guide__hero-section {
    padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    padding: 30px 15px;
  }

  .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-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-game-strategy-guide__button {
    width: 80%;
    max-width: 300px;
  }

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

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

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

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

  .page-resources-game-strategy-guide__article-image {
    max-width: 100% !important;
    height: auto !important;
    min-width: 200px;
    min-height: 200px;
  }

  /* Ensure content does not overflow horizontally */
  .page-resources-game-strategy-guide {
    max-width: 100%;
    overflow-x: hidden;
  }
}

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