.page-resources-popular-game-strategies {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #f0f0f0; /* Light text on dark body background */
  background-color: #0a0a0a; /* Ensure consistency with body background from shared.css */
}

/* Fixed header spacing */
.page-resources-popular-game-strategies__hero-section {
  padding-top: var(--header-offset, 120px);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #26A9E0, #1a7bb5); /* Gradient using primary color */
  color: #ffffff;
  min-height: 500px;
  overflow: hidden;
}

.page-resources-popular-game-strategies__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 20px;
}

.page-resources-popular-game-strategies__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-resources-popular-game-strategies__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #ffffff;
}

.page-resources-popular-game-strategies__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; /* Blend with background */
  z-index: 1;
}

.page-resources-popular-game-strategies__section {
  padding: 60px 0;
  background-color: #0a0a0a;
  color: #f0f0f0;
}

.page-resources-popular-game-strategies__section:nth-of-type(odd) {
  background-color: #1a1a1a;
}

.page-resources-popular-game-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-popular-game-strategies__heading {
  font-size: 2.5em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-resources-popular-game-strategies__heading::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-resources-popular-game-strategies__sub-heading {
  font-size: 1.8em;
  color: #FFFFFF;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.page-resources-popular-game-strategies__content-block p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #f0f0f0;
}

.page-resources-popular-game-strategies__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-resources-popular-game-strategies__cta-button {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-resources-popular-game-strategies__cta-button:hover {
  background-color: #1a7bb5;
  transform: translateY(-2px);
}

.page-resources-popular-game-strategies__cta-button--centered {
  display: block;
  margin: 40px auto 0;
  max-width: 300px;
}

.page-resources-popular-game-strategies__cta-button--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

/* FAQ Section */
.page-resources-popular-game-strategies__faq {
  background-color: #0a0a0a;
}

.page-resources-popular-game-strategies__faq-list {
  margin-top: 30px;
}

.page-resources-popular-game-strategies__faq-item {
  background-color: #1a1a1a;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-resources-popular-game-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #26A9E0;
  color: #ffffff;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-resources-popular-game-strategies__faq-question:hover {
  background-color: #1a7bb5;
}

.page-resources-popular-game-strategies__faq-title {
  font-size: 1.2em;
  margin: 0;
  color: #ffffff;
}

.page-resources-popular-game-strategies__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  width: 24px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-resources-popular-game-strategies__faq-item.active .page-resources-popular-game-strategies__faq-toggle {
  transform: rotate(45deg);
}

.page-resources-popular-game-strategies__faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  background-color: #2a2a2a;
  color: #f0f0f0;
}

.page-resources-popular-game-strategies__faq-item.active .page-resources-popular-game-strategies__faq-answer {
  max-height: 1000px !important;
  padding: 20px !important;
}

.page-resources-popular-game-strategies__faq-answer p {
  margin: 0;
  padding-bottom: 10px;
}

/* Call to Action Section */
.page-resources-popular-game-strategies__call-to-action {
  background: linear-gradient(90deg, #26A9E0, #1a7bb5);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-resources-popular-game-strategies__container--flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-resources-popular-game-strategies__cta-content {
  max-width: 800px;
}

.page-resources-popular-game-strategies__cta-content .page-resources-popular-game-strategies__heading {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-resources-popular-game-strategies__cta-content .page-resources-popular-game-strategies__heading::after {
  background-color: #ffffff;
}

.page-resources-popular-game-strategies__description {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-resources-popular-game-strategies__hero-title {
    font-size: 2.8em;
  }
  .page-resources-popular-game-strategies__heading {
    font-size: 2em;
  }
  .page-resources-popular-game-strategies__sub-heading {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-resources-popular-game-strategies__hero-section {
    min-height: 400px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-resources-popular-game-strategies__hero-title {
    font-size: 2.2em;
  }
  .page-resources-popular-game-strategies__hero-description {
    font-size: 1em;
  }
  .page-resources-popular-game-strategies__heading {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-resources-popular-game-strategies__sub-heading {
    font-size: 1.4em;
    margin-top: 25px;
  }
  .page-resources-popular-game-strategies__content-block p {
    font-size: 1em;
  }
  .page-resources-popular-game-strategies__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    margin-left: 0;
    margin-right: 0;
  }
  .page-resources-popular-game-strategies__cta-button--centered {
    max-width: 100% !important;
    width: 100% !important;
    margin: 30px auto 0;
  }
  .page-resources-popular-game-strategies__cta-button--large {
    padding: 15px 25px;
    font-size: 1.1em;
  }

  /* Image responsiveness */
  .page-resources-popular-game-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* Container responsiveness */
  .page-resources-popular-game-strategies__section,
  .page-resources-popular-game-strategies__container,
  .page-resources-popular-game-strategies__content-block,
  .page-resources-popular-game-strategies__faq-list,
  .page-resources-popular-game-strategies__faq-item,
  .page-resources-popular-game-strategies__faq-question,
  .page-resources-popular-game-strategies__faq-answer,
  .page-resources-popular-game-strategies__call-to-action,
  .page-resources-popular-game-strategies__cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Specific padding for sections */
  .page-resources-popular-game-strategies__section {
    padding: 40px 0;
  }

  /* FAQ specific mobile padding */
  .page-resources-popular-game-strategies__faq-item,
  .page-resources-popular-game-strategies__faq-question {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-resources-popular-game-strategies__faq-answer {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-resources-popular-game-strategies__faq-item.active .page-resources-popular-game-strategies__faq-answer {
    padding: 15px !important; /* Adjusted for mobile */
  }
}

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