.page-resources-game-strategy {
  color: #333333;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px);
}

.page-resources-game-strategy__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #000;
  padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
}

.page-resources-game-strategy__hero-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-resources-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
}

.page-resources-game-strategy__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7));
  padding: 20px;
  color: #ffffff;
}

.page-resources-game-strategy__hero-title {
  font-size: clamp(2em, 5vw, 3.8em);
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-resources-game-strategy__hero-description {
  font-size: clamp(1em, 2vw, 1.3em);
  max-width: 800px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-resources-game-strategy__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
  font-size: 1em;
}

.page-resources-game-strategy__button--primary {
  background-color: #B80000;
  color: #ffffff;
  border: 2px solid #B80000;
}

.page-resources-game-strategy__button--primary:hover {
  background-color: #990000;
  transform: translateY(-2px);
}

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

.page-resources-game-strategy__button--secondary:hover {
  background-color: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
}

.page-resources-game-strategy__content-area {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.page-resources-game-strategy__article {
  margin-bottom: 40px;
}

.page-resources-game-strategy__heading {
  font-size: 2em;
  color: #B80000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-resources-game-strategy__sub-heading {
  font-size: 1.5em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-game-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #444444;
}

.page-resources-game-strategy__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border-radius: 10px;
  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__image--centered {
  margin-left: auto;
  margin-right: auto;
}

.page-resources-game-strategy__link {
  color: #B80000;
  text-decoration: none;
  font-weight: bold;
}

.page-resources-game-strategy__link:hover {
  text-decoration: underline;
  color: #FFD700;
}

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

.page-resources-game-strategy__return-link-container {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid #eeeeee;
}

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

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

@media (max-width: 768px) {
  .page-resources-game-strategy__hero-title {
    font-size: 2.2em;
  }

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

  .page-resources-game-strategy__button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-resources-game-strategy__heading {
    font-size: 1.7em;
  }

  .page-resources-game-strategy__sub-heading {
    font-size: 1.3em;
  }

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

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

  .page-resources-game-strategy__image {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
  }
}

@media (max-width: 480px) {
  .page-resources-game-strategy__hero-title {
    font-size: 1.8em;
  }

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

  .page-resources-game-strategy__hero-actions {
    flex-direction: column;
  }

  .page-resources-game-strategy__button {
    width: 80%;
    margin: 0 auto;
  }

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

  .page-resources-game-strategy__sub-heading {
    font-size: 1.2em;
  }
}