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

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

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

.page-resources-game-strategy__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF; /* White text on dark hero image */
  padding: 40px 20px;
  max-width: 900px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent dark overlay for readability */
  border-radius: 10px;
}

.page-resources-game-strategy__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  font-weight: bold;
  color: #FCBC45; /* Login color for emphasis */
}

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

.page-resources-game-strategy__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login color */
  color: #000000; /* Black text on yellow button */
  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-strategy__cta-button:hover {
  background-color: #FFD700; /* Lighter yellow on hover */
}

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

.page-resources-game-strategy__article-body {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-game-strategy__section-title {
  font-size: 2.2em;
  color: #000000; /* Main color */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: center;
}

.page-resources-game-strategy__sub-title {
  font-size: 1.8em;
  color: #000000; /* Main color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-game-strategy__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.7;
}

.page-resources-game-strategy__list {
  list-style: disc inside;
  margin-bottom: 20px;
  padding-left: 20px;
}

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

.page-resources-game-strategy__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; /* Enforce minimum size */
  min-height: 200px; /* Enforce minimum size */
}

.page-resources-game-strategy__secondary-button {
  display: inline-block;
  background-color: #000000; /* Main color */
  color: #FFFFFF; /* White text */
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.page-resources-game-strategy__secondary-button:hover {
  background-color: #333333;
}

.page-resources-game-strategy__cta-group {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.page-resources-game-strategy__cta-button--register {
  background-color: #FFFFFF; /* White button */
  color: #000000; /* Black text */
  border: 2px solid #FCBC45; /* Login color border */
}

.page-resources-game-strategy__cta-button--register:hover {
  background-color: #F0F0F0;
}

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

.page-resources-game-strategy__related-resources {
  margin-top: 60px;
  padding: 30px;
  background-color: #F8F8F8;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-resources-game-strategy__resource-list {
  list-style: none;
  padding: 0;
}

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

.page-resources-game-strategy__resource-item a {
  color: #000000; /* Main color */
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-resources-game-strategy__resource-item a:hover {
  color: #FCBC45; /* Login color on hover */
}

.page-resources-game-strategy__back-link {
  display: inline-block;
  margin-top: 20px;
  color: #000000; /* Main color */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

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

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

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

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

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

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

  .page-resources-game-strategy__article-body {
    padding: 20px;
  }

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

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

  .page-resources-game-strategy__cta-group {
    flex-direction: column;
    align-items: center;
  }

  .page-resources-game-strategy__cta-button {
    width: 100%;
    max-width: 300px;
  }
}