.page-resources-game-strategy {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: var(--black-color); /* Inherit from shared.css, assumed dark */
}

.page-resources-game-strategy__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-game-strategy__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
  padding-bottom: 80px;
  background-color: #26A9E0; /* Primary brand color for hero */
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-resources-game-strategy__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3; /* Subtle overlay to make text readable */
}

.page-resources-game-strategy__hero-section .page-resources-game-strategy__container {
  position: relative;
  z-index: 1;
}

.page-resources-game-strategy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  color: #ffffff;
}

.page-resources-game-strategy__intro-text {
  font-size: 1.15em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

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

.page-resources-game-strategy__btn-primary,
.page-resources-game-strategy__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-resources-game-strategy__btn-primary {
  background-color: #EA7C07; /* Login/action color */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-game-strategy__btn-primary:hover {
  background-color: #ff982b;
  border-color: #ff982b;
}

.page-resources-game-strategy__btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-resources-game-strategy__btn-secondary:hover {
  background-color: #ffffff;
  color: #26A9E0;
}

.page-resources-game-strategy__btn-primary--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-resources-game-strategy__section {
  padding: 60px 0;
}

.page-resources-game-strategy__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-resources-game-strategy__dark-bg {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-resources-game-strategy__section-title {
  font-size: 2.5em;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-resources-game-strategy__light-bg .page-resources-game-strategy__section-title {
  color: #26A9E0;
}

.page-resources-game-strategy__dark-bg .page-resources-game-strategy__section-title {
  color: #ffffff;
}

.page-resources-game-strategy__sub-title {
  font-size: 1.8em;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
  color: #26A9E0;
}

.page-resources-game-strategy__dark-bg .page-resources-game-strategy__sub-title {
  color: #ffffff;
}

.page-resources-game-strategy__content-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.page-resources-game-strategy__text-block {
  flex: 1;
  min-width: 300px;
}

.page-resources-game-strategy__text-block p {
  margin-bottom: 15px;
}

.page-resources-game-strategy__full-width-image {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.page-resources-game-strategy__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 40px auto;
  color: #f0f0f0; /* For dark sections */
}

.page-resources-game-strategy__light-bg .page-resources-game-strategy__section-description {
  color: #333333;
}

.page-resources-game-strategy__grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-resources-game-strategy__grid-layout--three-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}