/* style/resources-game-strategy-guide.css */

.page-resources-game-strategy-guide {
  color: #333333; /* Default text color for light body background */
  line-height: 1.6;
  font-family: Arial, sans-serif;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-resources-game-strategy-guide__hero-section {
  background-color: #1E90FF; /* Auxiliary color for hero background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-resources-game-strategy-guide__hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-resources-game-strategy-guide__hero-title {
  font-size: 3.2em;
  color: #FFD700; /* Main color for title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-resources-game-strategy-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-resources-game-strategy-guide__hero-image {
  margin-bottom: 40px;
}

.page-resources-game-strategy-guide__hero-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  width: 1200px; /* Display width */
  height: 675px; /* Display height, maintaining aspect ratio */
}

.page-resources-game-strategy-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Main color for CTA button */
  color: #1E90FF; /* Auxiliary color for text */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-resources-game-strategy-guide__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-resources-game-strategy-guide__content-area {
  max-width: 800px; /* Content width for comfortable reading */
  margin: 40px auto;
  padding: 0 20px;
}

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

.page-resources-game-strategy-guide__toc-title {
  font-size: 1.8em;
  color: #1E90FF;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-resources-game-strategy-guide__toc-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.page-resources-game-strategy-guide__toc-list li a {
  display: block;
  padding: 8px 0;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-resources-game-strategy-guide__toc-list li a:hover {
  color: #FFD700;
}

.page-resources-game-strategy-guide__article-heading {
  font-size: 2em;
  color: #1E90FF;
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

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

.page-resources-game-strategy-guide__article-paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.page-resources-game-strategy-guide__article-list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-resources-game-strategy-guide__article-list li {
  margin-bottom: 10px;
}

.page-resources-game-strategy-guide__image-container {
  margin: 40px 0;
  text-align: center;
}

.page-resources-game-strategy-guide__image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
  min-width: 200px; /* Min size requirement */
  min-height: 200px; /* Min size requirement */
}

.page-resources-game-strategy-guide__cta-bottom {
  text-align: center;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

.page-resources-game-strategy-guide__cta-button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  margin-right: 20px;
}

.page-resources-game-strategy-guide__back-link {
  display: inline-block;
  color: #1E90FF;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: color 0.3s ease;
}

.page-resources-game-strategy-guide__back-link:hover {
  color: #FFD700;
}

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

  .page-resources-game-strategy-guide__hero-description,
  .page-resources-game-strategy-guide__article-paragraph,
  .page-resources-game-strategy-guide__article-list {
    font-size: 1em;
  }

  .page-resources-game-strategy-guide__article-heading {
    font-size: 1.8em;
  }

  .page-resources-game-strategy-guide__article-subheading {
    font-size: 1.3em;
  }

  .page-resources-game-strategy-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  
  .page-resources-game-strategy-guide__cta-button--large {
    display: block;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .page-resources-game-strategy-guide__image-container img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Ensure min size for mobile too */
    min-height: 200px; /* Ensure min size for mobile too */
  }
}

@media (max-width: 480px) {
  .page-resources-game-strategy-guide__hero-title {
    font-size: 2em;
  }

  .page-resources-game-strategy-guide__hero-section {
    padding: 60px 15px;
  }

  .page-resources-game-strategy-guide__content-area {
    padding: 0 15px;
  }
}