.page-blog-game-strategies {
  color: #333333; /* Dark text for light body background #f4f4f4 */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header on desktop */
}

.page-blog-game-strategies__hero-section {
  background-color: #1A202C; /* Main brand color */
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-blog-game-strategies__hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-game-strategies__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-blog-game-strategies__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.page-blog-game-strategies__main-title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary brand color */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-game-strategies__intro-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-game-strategies__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Auxiliary brand color */
  color: #1A202C; /* Dark text for light button */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
}

.page-blog-game-strategies__cta-button:hover {
  background-color: #e6c200;
}

.page-blog-game-strategies__strategy-overview,
.page-blog-game-strategies__in-depth-guides,
.page-blog-game-strategies__cta-section,
.page-blog-game-strategies__faq-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-blog-game-strategies__section-title {
  font-size: 2.5em;
  color: #1A202C;
  text-align: center;
  margin-bottom: 20px;
}

.page-blog-game-strategies__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-game-strategies__strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-game-strategies__strategy-card {
  background-color: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-game-strategies__card-image {
  width: 100%;
  height: 250px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  margin-bottom: 15px;
}

.page-blog-game-strategies__card-title {
  font-size: 1.5em;
  color: #1A202C;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-game-strategies__card-title a {
  color: #1A202C;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-game-strategies__card-title a:hover {
  color: #FFD700;
}

.page-blog-game-strategies__card-text {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-blog-game-strategies__card-link {
  display: inline-block;
  background-color: #1A202C;
  color: #FFD700;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-blog-game-strategies__card-link:hover {
  background-color: #0d1118;
}

.page-blog-game-strategies__guide-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.page-blog-game-strategies__guide-item {
  background-color: #f9f9f9;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-blog-game-strategies__guide-title {
  font-size: 1.8em;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-blog-game-strategies__guide-title a {
  color: #1A202C;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-game-strategies__guide-title a:hover {
  color: #FFD700;
}

.page-blog-game-strategies__guide-excerpt {
  color: #555555;
  margin-bottom: 15px;
}

.page-blog-game-strategies__read-more {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-blog-game-strategies__read-more:hover {
  color: #e6c200;
}

.page-blog-game-strategies__cta-section {
  background-color: #1A202C;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 20px;
  border-radius: 8px;
}

.page-blog-game-strategies__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-blog-game-strategies__cta-text {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-blog-game-strategies__cta-button--secondary {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #FFD700;
  margin-left: 20px;
}

.page-blog-game-strategies__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #1A202C;
}

.page-blog-game-strategies__faq-section {
  background-color: #fdfdfd;
}

.page-blog-game-strategies__faq-item {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eeeeee;
}

.page-blog-game-strategies__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.page-blog-game-strategies__faq-question {
  font-size: 1.6em;
  color: #1A202C;
  margin-bottom: 10px;
}

.page-blog-game-strategies__faq-answer {
  color: #555555;
  font-size: 1.05em;
}

.page-blog-game-strategies__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-blog-game-strategies__faq-answer a:hover {
  color: #e6c200;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-game-strategies__main-title {
    font-size: 2.8em;
  }
  .page-blog-game-strategies__intro-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-strategies__hero-section {
    padding: 60px 15px;
  }
  .page-blog-game-strategies__main-title {
    font-size: 2.2em;
  }
  .page-blog-game-strategies__intro-description {
    font-size: 1em;
  }
  .page-blog-game-strategies__section-title {
    font-size: 2em;
  }
  .page-blog-game-strategies__strategy-grid {
    grid-template-columns: 1fr;
  }
  .page-blog-game-strategies__cta-title {
    font-size: 2.2em;
  }
  .page-blog-game-strategies__cta-button {
    margin-bottom: 15px;
    margin-left: 0;
  }
  .page-blog-game-strategies__cta-button--secondary {
    margin-left: 0;
  }
  .page-blog-game-strategies__hero-image-container img,
  .page-blog-game-strategies__strategy-card img,
  .page-blog-game-strategies__guide-list img,
  .page-blog-game-strategies__faq-section img,
  .page-blog-game-strategies__cta-section img,
  .page-blog-game-strategies__content-area img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-game-strategies__card-image {
    height: 200px; /* Adjust height for mobile */
  }
  /* Ensure no content overflow for the main container */
  .page-blog-game-strategies {
    overflow-x: hidden;
  }
}