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

.page-resources-joinph-game-safety-strategy__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #000000; /* Fallback background */
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-resources-joinph-game-safety-strategy__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-resources-joinph-game-safety-strategy__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7); /* Slightly dim the image to make text pop */
}

.page-resources-joinph-game-safety-strategy__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  max-width: 800px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for readability */
  border-radius: 8px;
}

.page-resources-joinph-game-safety-strategy__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.page-resources-joinph-game-safety-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-resources-joinph-game-safety-strategy__hero-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 200px; /* Ensure button is not too small */
}

.page-resources-joinph-game-safety-strategy__hero-button:hover {
  background-color: #e0a53b;
  transform: translateY(-2px);
}

.page-resources-joinph-game-safety-strategy__content-area {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 40px auto;
  padding: 0 20px;
  background-color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

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

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

.page-resources-joinph-game-safety-strategy__article {
  padding-bottom: 40px;
}

.page-resources-joinph-game-safety-strategy__article-heading {
  font-size: 2em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FCBC45;
  padding-bottom: 10px;
}

.page-resources-joinph-game-safety-strategy__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #333333;
}

.page-resources-joinph-game-safety-strategy__article-image {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px; /* Enforce minimum image width */
  min-height: 200px; /* Enforce minimum image height */
}

.page-resources-joinph-game-safety-strategy__call-to-action {
  text-align: center;
  margin-top: 50px;
  padding: 40px 20px;
  background-color: #f8f8f8;
  border-radius: 8px;
  border: 1px solid #eee;
}

.page-resources-joinph-game-safety-strategy__cta-button {
  display: inline-block;
  background-color: #FCBC45; /* Login button color for CTA */
  color: #000000;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 250px;
}

.page-resources-joinph-game-safety-strategy__cta-button:hover {
  background-color: #e0a53b;
  transform: translateY(-3px);
}

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

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

  .page-resources-joinph-game-safety-strategy__hero-button {
    padding: 12px 25px;
    font-size: 1em;
    min-width: unset;
  }

  .page-resources-joinph-game-safety-strategy__article-heading {
    font-size: 1.5em;
  }

  .page-resources-joinph-game-safety-strategy__article-paragraph {
    font-size: 1em;
  }

  .page-resources-joinph-game-safety-strategy__content-area {
    margin: 20px auto;
    padding: 0 15px;
  }

  /* Mobile content area image sizing */
  .page-resources-joinph-game-safety-strategy img {
    max-width: 100%;
    height: auto;
  }

  .page-resources-joinph-game-safety-strategy__hero-content {
    max-width: 90%;
    padding: 15px;
  }

  .page-resources-joinph-game-safety-strategy__cta-button {
    padding: 15px 25px;
    font-size: 1.1em;
    min-width: unset;
  }
}