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

.page-resources-game-strategy__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  background-color: #000000; /* Dark background for hero text contrast */
  color: #FFFFFF;
  text-align: center;
  overflow: hidden; /* Ensure image doesn't overflow */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-resources-game-strategy__hero-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.6; /* Slightly dim image to make text pop */
}

.page-resources-game-strategy__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 400px;
}

.page-resources-game-strategy__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FCBC45; /* Login button color for emphasis */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-game-strategy__lead-text {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 700px;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-resources-game-strategy__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  cursor: pointer;
}

.page-resources-game-strategy__cta-button--primary {
  background-color: #FCBC45; /* Login button color */
  color: #000000; /* Main color for contrast */
  border: 2px solid #FCBC45;
}

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

.page-resources-game-strategy__cta-button--secondary {
  background-color: transparent;
  color: #FFFFFF; /* Auxiliary color */
  border: 2px solid #FFFFFF;
}

.page-resources-game-strategy__cta-button--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-resources-game-strategy__content-area {
  max-width: 800px; /* Content width for readability */
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
}

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

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

.page-resources-game-strategy__section-title {
  font-size: 2.2em;
  color: #000000;
  margin-top: 50px;
  margin-bottom: 30px;
  text-align: center;
}

.page-resources-game-strategy__intro-paragraph {
  font-size: 1.1em;
  margin-bottom: 40px;
  text-align: justify;
}

.page-resources-game-strategy__table-of-contents {
  background-color: #f9f9f9;
  border-left: 5px solid #FCBC45;
  padding: 20px;
  margin-bottom: 40px;
  border-radius: 5px;
}

.page-resources-game-strategy__toc-title {
  font-size: 1.4em;
  color: #000000;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-resources-game-strategy__toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-resources-game-strategy__toc-list li {
  margin-bottom: 8px;
}

.page-resources-game-strategy__toc-list a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-game-strategy__toc-list a:hover {
  color: #FCBC45;
}

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

.page-resources-game-strategy__article-heading {
  font-size: 1.8em;
  color: #000000;
  margin-top: 40px;
  margin-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.page-resources-game-strategy__article-subheading {
  font-size: 1.4em;
  color: #333333;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-game-strategy__article-paragraph {
  margin-bottom: 20px;
  text-align: justify;
  font-size: 1.05em;
}

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

.page-resources-game-strategy__cta-button--inline {
  margin-top: 20px;
  margin-bottom: 40px;
  background-color: #FCBC45;
  color: #000000;
  border: none;
  display: block;
  text-align: center;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-game-strategy__cta-button--inline:hover {
  background-color: #e0a73b;
}

.page-resources-game-strategy__faq-section {
  margin-top: 60px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 8px;
}

.page-resources-game-strategy__faq-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #e0e0e0;
}

.page-resources-game-strategy__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

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

.page-resources-game-strategy__faq-answer {
  font-size: 1em;
  color: #555555;
  text-align: justify;
}

.page-resources-game-strategy__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #000000;
  color: #FFFFFF;
  border-radius: 8px;
}

.page-resources-game-strategy__cta-text {
  font-size: 1.5em;
  margin-bottom: 30px;
  color: #FFFFFF;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-resources-game-strategy__hero-content {
    padding: 60px 15px;
    min-height: 300px;
  }

  .page-resources-game-strategy__main-title {
    font-size: 2.2em;
  }

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

  .page-resources-game-strategy__cta-button {
    padding: 12px 25px;
    font-size: 1em;
    margin: 8px;
  }

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

  .page-resources-game-strategy__section-title {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-resources-game-strategy__article-heading {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-resources-game-strategy__article-subheading {
    font-size: 1.2em;
    margin-top: 25px;
    margin-bottom: 10px;
  }

  .page-resources-game-strategy__article-paragraph {
    font-size: 0.95em;
  }

  .page-resources-game-strategy__article-image {
    max-width: 100%;
    height: auto; /* Ensure images are responsive and don't overflow */
    min-width: 200px; /* Enforce min image size for mobile */
    min-height: 200px; /* Enforce min image size for mobile */
  }

  .page-resources-game-strategy__faq-question {
    font-size: 1.1em;
  }

  .page-resources-game-strategy__cta-bottom {
    margin-top: 40px;
    padding: 30px 15px;
  }

  .page-resources-game-strategy__cta-text {
    font-size: 1.2em;
    margin-bottom: 20px;
  }

  /* Ensure content area does not cause horizontal scroll */
  .page-resources-game-strategy {
    overflow-x: hidden;
  }
  .page-resources-game-strategy__hero-section {
    width: 100%; /* Ensure hero section does not cause overflow */
    box-sizing: border-box;
  }
  .page-resources-game-strategy__hero-image {
    max-width: 100%;
    width: auto; /* Allow auto width to prevent overflow */
  }
  .page-resources-game-strategy__hero-content {
    width: 100%;
    box-sizing: border-box;
  }
}