.page-resources-popular-game-strategies {
  color: #333333; /* Dark text for default light body background */
}

.page-resources-popular-game-strategies__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px; /* Ensure hero section has a minimum height */
  padding-top: var(--header-offset, 120px); /* Account for fixed header */
}

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

.page-resources-popular-game-strategies__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-resources-popular-game-strategies__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff; /* White text over dark hero image */
  background: rgba(0, 51, 102, 0.7); /* Semi-transparent dark blue overlay */
  padding: 40px;
  border-radius: 10px;
  max-width: 900px;
  margin: 20px;
}

.page-resources-popular-game-strategies__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFCC00; /* Gold for title */
  line-height: 1.2;
}

.page-resources-popular-game-strategies__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-resources-popular-game-strategies__cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Gold button */
  color: #003366; /* Dark blue text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-resources-popular-game-strategies__cta-button:hover {
  background-color: #e6b800; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-resources-popular-game-strategies__content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.page-resources-popular-game-strategies__introduction-section,
.page-resources-popular-game-strategies__game-strategy-section,
.page-resources-popular-game-strategies__general-tips-section,
.page-resources-popular-game-strategies__why-choose-section,
.page-resources-popular-game-strategies__faq-section,
.page-resources-popular-game-strategies__return-section {
  padding: 60px 0;
}

.page-resources-popular-game-strategies__game-strategy-section--alt {
  background-color: #f8f8f8; /* Light grey background for alternating sections */
}

.page-resources-popular-game-strategies__section-title {
  font-size: 2.2em;
  color: #003366; /* Dark blue title */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-resources-popular-game-strategies__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Gold underline */
  border-radius: 2px;
}

.page-resources-popular-game-strategies__sub-title {
  font-size: 1.8em;
  color: #003366;
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid #FFCC00; /* Gold left border */
  padding-left: 15px;
}

.page-resources-popular-game-strategies__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

.page-resources-popular-game-strategies__content-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  max-width: 800px; /* Ensure images don't exceed content wrapper */
}

.page-resources-popular-game-strategies__list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.page-resources-popular-game-strategies__list-item {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.page-resources-popular-game-strategies__list-item::before {
  content: '★'; /* Star bullet point */
  color: #FFCC00; /* Gold star */
  position: absolute;
  left: 0;
  font-size: 1.2em;
  top: 0;
}

.page-resources-popular-game-strategies__faq-item {
  background-color: #ffffff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-resources-popular-game-strategies__faq-question {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-resources-popular-game-strategies__faq-answer {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555555;
}

.page-resources-popular-game-strategies__return-section {
  padding-top: 40px;
  padding-bottom: 60px;
  text-align: center;
}

.page-resources-popular-game-strategies__return-link {
  display: inline-block;
  font-size: 1.1em;
  color: #003366;
  text-decoration: none;
  border-bottom: 2px solid #FFCC00;
  padding-bottom: 5px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-resources-popular-game-strategies__return-link:hover {
  color: #FFCC00;
  border-color: #003366;
}

.page-resources-popular-game-strategies__content-wrapper--center {
  text-align: center;
}

/* Large CTA button specific style */
.page-resources-popular-game-strategies__cta-button--large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 30px;
}

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

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

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

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

  .page-resources-popular-game-strategies__text-block,
  .page-resources-popular-game-strategies__list-item,
  .page-resources-popular-game-strategies__faq-question,
  .page-resources-popular-game-strategies__faq-answer {
    font-size: 1em;
  }

  /* Mobile image overflow prevention */
  .page-resources-popular-game-strategies__content-image {
    max-width: 100%;
    height: auto;
  }

  .page-resources-popular-game-strategies__hero-content {
    padding: 20px;
  }
}

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

  .page-resources-popular-game-strategies__cta-button,
  .page-resources-popular-game-strategies__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
  }

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

  .page-resources-popular-game-strategies__sub-title {
    font-size: 1.3em;
  }
}