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

.page-game-strategy-guide__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #1A2B3C; /* Dark background for hero content */
  color: #ffffff;
  padding: 0;
  text-align: center;
}

.page-game-strategy-guide__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Darken image slightly to make text pop */
}

.page-game-strategy-guide__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 900px;
  padding: 20px;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  border-radius: 10px;
}

.page-game-strategy-guide__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Primary color for title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-game-strategy-guide__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-game-strategy-guide__hero-button,
.page-game-strategy-guide__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Primary color for buttons */
  color: #1A2B3C; /* Dark text for primary buttons */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-game-strategy-guide__hero-button:hover,
.page-game-strategy-guide__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
}

.page-game-strategy-guide__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-game-strategy-guide__section-title {
  font-size: 2.5em;
  color: #1A2B3C; /* Secondary color for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-strategy-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-strategy-guide__sub-section-title {
  font-size: 1.8em;
  color: #1A2B3C;
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-game-strategy-guide__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333333;
}

.page-game-strategy-guide__strategy-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-game-strategy-guide__strategy-section:nth-child(even) {
  background-color: #e8e8e8;
}

.page-game-strategy-guide__strategy-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 20px auto 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.page-game-strategy-guide__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-game-strategy-guide__list-item {
  background-color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-left: 5px solid #FFD700;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 1.05em;
  color: #333333;
}

.page-game-strategy-guide__list-item strong {
  color: #1A2B3C;
}

.page-game-strategy-guide__cta-section {
  background-color: #1A2B3C; /* Secondary color for CTA background */
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.page-game-strategy-guide__cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 25px;
}

.page-game-strategy-guide__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

.page-game-strategy-guide__cta-button--large {
  padding: 18px 40px;
  font-size: 1.3em;
}

.page-game-strategy-guide__responsible-gaming-link {
  margin-top: 30px;
  font-size: 1em;
  color: #cccccc;
}

.page-game-strategy-guide__link {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-strategy-guide__link:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

  .page-game-strategy-guide__hero-description {
    font-size: 1em;
  }

  .page-game-strategy-guide__hero-button,
  .page-game-strategy-guide__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-strategy-guide__section-title {
    font-size: 2em;
  }

  .page-game-strategy-guide__sub-section-title {
    font-size: 1.5em;
  }

  .page-game-strategy-guide__text-block,
  .page-game-strategy-guide__list-item {
    font-size: 0.95em;
  }

  .page-game-strategy-guide__cta-title {
    font-size: 2.2em;
  }

  .page-game-strategy-guide__cta-description {
    font-size: 1em;
  }

  .page-game-strategy-guide__cta-button--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }

  /* Mobile content area image constraint */
  .page-game-strategy-guide__content-area img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-game-strategy-guide__hero-description {
    font-size: 0.9em;
  }

  .page-game-strategy-guide__hero-content {
    width: 90%;
    padding: 15px;
  }

  .page-game-strategy-guide__section-title {
    font-size: 1.8em;
  }

  .page-game-strategy-guide__sub-section-title {
    font-size: 1.3em;
  }

  .page-game-strategy-guide__cta-title {
    font-size: 1.8em;
  }
}