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

.page-resources-game-strategy__hero-section {
  background-color: #000000; /* Main brand color for hero background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-game-strategy__hero-content {
  max-width: 800px;
  color: #FFFFFF;
  margin-bottom: 20px;
}

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

.page-resources-game-strategy__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.page-resources-game-strategy__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: 180px;
  text-align: center;
}

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

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

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

.page-resources-game-strategy__button--explore:hover {
  background-color: transparent;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-resources-game-strategy__hero-image-container {
  width: 100%;
  max-width: 1000px; /* Adjust max-width for image */
  margin-top: 40px;
}

.page-resources-game-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-resources-game-strategy__content-area {
  max-width: 800px; /* Optimal reading width for long articles */
  margin: 40px auto;
  padding: 20px;
  line-height: 1.8;
  font-size: 1.1em;
}

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

.page-resources-game-strategy__back-link:hover {
  color: #000000;
}

.page-resources-game-strategy__back-link--bottom {
  margin-top: 60px;
}

.page-resources-game-strategy__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-resources-game-strategy__section-subtitle {
  font-size: 1.8em;
  color: #000000;
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.4;
}

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

.page-resources-game-strategy__section-paragraph a {
  color: #FCBC45;
  text-decoration: none;
  font-weight: bold;
}

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

.page-resources-game-strategy__image-container {
  margin: 40px 0;
  text-align: center;
}

.page-resources-game-strategy__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

.page-resources-game-strategy__cta-section {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  border-radius: 12px;
}

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

.page-resources-game-strategy__cta-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-game-strategy__cta-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: 180px;
  text-align: center;
  margin: 0 10px 20px;
}

.page-resources-game-strategy__cta-button--join {
  background-color: #FCBC45;
  color: #000000;
  border: 2px solid #FCBC45;
}

.page-resources-game-strategy__cta-button--join:hover {
  background-color: transparent;
  color: #FCBC45;
  border-color: #FCBC45;
}

.page-resources-game-strategy__cta-button--download {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.page-resources-game-strategy__cta-button--download:hover {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-game-strategy__hero-section {
    padding: 60px 15px;
    gap: 20px;
  }

  .page-resources-game-strategy__hero-title {
    font-size: 2.5em;
  }

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

  .page-resources-game-strategy__button-group {
    flex-direction: column;
    gap: 15px;
  }

  .page-resources-game-strategy__button {
    width: 100%;
    max-width: 280px; /* Constrain button width */
  }

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

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

  .page-resources-game-strategy__section-subtitle {
    font-size: 1.5em;
  }

  .page-resources-game-strategy__section-paragraph {
    font-size: 0.95em;
  }

  .page-resources-game-strategy__image {
    max-width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
  }

  .page-resources-game-strategy__cta-section {
    padding: 40px 15px;
  }

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

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

  .page-resources-game-strategy__cta-button {
    width: 100%;
    max-width: 280px; /* Constrain button width */
    margin: 0 auto 15px;
  }
}

@media (max-width: 480px) {
  .page-resources-game-strategy__hero-title {
    font-size: 2em;
  }
  .page-resources-game-strategy__section-title {
    font-size: 1.6em;
  }
  .page-resources-game-strategy__section-subtitle {
    font-size: 1.3em;
  }
  .page-resources-game-strategy__cta-title {
    font-size: 1.8em;
  }
}