.page-resources-phwin-app-game-strategy {
  color: #ffffff; /* Light text for dark body background */
  padding-top: var(--header-offset, 120px);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-resources-phwin-app-game-strategy__hero-section {
  background-color: #007bff; /* Primary color background */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  overflow: hidden;
}

.page-resources-phwin-app-game-strategy__hero-content {
  max-width: 900px;
  position: relative;
  z-index: 2;
  color: #ffffff;
}

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

.page-resources-phwin-app-game-strategy__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-phwin-app-game-strategy__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.page-resources-phwin-app-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Subtle overlay */
  display: block;
}

.page-resources-phwin-app-game-strategy__content-area {
  max-width: 800px; /* Optimal reading width */
  margin: 40px auto;
  padding: 0 20px;
}

.page-resources-phwin-app-game-strategy__back-link {
  display: inline-block;
  margin-bottom: 30px;
  color: #ffc107; /* Accent color for links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-phwin-app-game-strategy__back-link:hover {
  color: #ffffff;
}

.page-resources-phwin-app-game-strategy__article {
  background-color: rgba(255, 255, 255, 0.05); /* Slightly transparent background for article */
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-phwin-app-game-strategy__section-title {
  font-size: 2.5em;
  color: #ffc107;
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-resources-phwin-app-game-strategy__sub-title {
  font-size: 2em;
  color: #007bff;
  margin-top: 35px;
  margin-bottom: 20px;
}

.page-resources-phwin-app-game-strategy__mini-title {
  font-size: 1.5em;
  color: #ffc107;
  margin-top: 25px;
  margin-bottom: 15px;
}

.page-resources-phwin-app-game-strategy__paragraph {
  font-size: 1.1em;
  margin-bottom: 15px;
  color: #e0e0e0;
}

.page-resources-phwin-app-game-strategy__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

.page-resources-phwin-app-game-strategy__list-item strong {
  color: #ffc107;
}

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

.page-resources-phwin-app-game-strategy__article-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure image behaves as a block for max-width and margin auto */
  margin-left: auto;
  margin-right: auto;
}

.page-resources-phwin-app-game-strategy__cta-button {
  display: inline-block;
  background-color: #ffc107; /* Accent color for CTA */
  color: #343a40;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin-top: 20px;
  margin-right: 15px;
  white-space: nowrap;
}

.page-resources-phwin-app-game-strategy__cta-button:last-child {
  margin-right: 0;
}

.page-resources-phwin-app-game-strategy__cta-button:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
}

.page-resources-phwin-app-game-strategy__cta-button--secondary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #ffc107;
}

.page-resources-phwin-app-game-strategy__cta-button--secondary:hover {
  background-color: #0056b3;
  border-color: #ffffff;
}

.page-resources-phwin-app-game-strategy__cta-group {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 40px;
}

.page-resources-phwin-app-game-strategy__related-resources {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
  text-align: center;
}

.page-resources-phwin-app-game-strategy__resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-resources-phwin-app-game-strategy__resource-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  transition: transform 0.3s ease;
}

.page-resources-phwin-app-game-strategy__resource-card:hover {
  transform: translateY(-5px);
}

.page-resources-phwin-app-game-strategy__resource-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-resources-phwin-app-game-strategy__resource-title {
  font-size: 1.4em;
  color: #ffc107;
  margin: 15px 15px 10px;
}

.page-resources-phwin-app-game-strategy__resource-title a {
  color: #ffc107;
  text-decoration: none;
}

.page-resources-phwin-app-game-strategy__resource-title a:hover {
  text-decoration: underline;
}

.page-resources-phwin-app-game-strategy__resource-description {
  font-size: 0.95em;
  color: #cccccc;
  padding: 0 15px 20px;
}

.page-resources-phwin-app-game-strategy__cta-button--small {
  margin-top: 15px;
  padding: 10px 20px;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-resources-phwin-app-game-strategy__main-title {
    font-size: 2.8em;
  }

  .page-resources-phwin-app-game-strategy__hero-description {
    font-size: 1.1em;
  }
}

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

  .page-resources-phwin-app-game-strategy__hero-section {
    padding: 60px 15px;
  }

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

  .page-resources-phwin-app-game-strategy__section-title {
    font-size: 2em;
  }

  .page-resources-phwin-app-game-strategy__sub-title {
    font-size: 1.7em;
  }

  .page-resources-phwin-app-game-strategy__mini-title {
    font-size: 1.3em;
  }

  .page-resources-phwin-app-game-strategy__paragraph,
  .page-resources-phwin-app-game-strategy__list-item {
    font-size: 1em;
  }

  .page-resources-phwin-app-game-strategy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin-right: 10px;
    margin-top: 15px;
  }

  .page-resources-phwin-app-game-strategy__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-resources-phwin-app-game-strategy__cta-button {
    margin-right: 0; /* Remove right margin for stacked buttons */
  }

  .page-resources-phwin-app-game-strategy__resource-grid {
    grid-template-columns: 1fr;
  }

  /* Critical: Ensure content images do not overflow on mobile */
  .page-resources-phwin-app-game-strategy img {
    max-width: 100%;
    height: auto;
  }
  .page-resources-phwin-app-game-strategy__article-image {
    width: 100%;
    height: auto;
  }
  .page-resources-phwin-app-game-strategy__resource-image {
    width: 100%;
    height: auto;
  }
}

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

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

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

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

  .page-resources-phwin-app-game-strategy__resource-title {
    font-size: 1.2em;
  }
}