.page-blog-game-guides {
  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 below fixed header */
}

.page-blog-game-guides__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-game-guides__hero-section {
  position: relative;
  background-color: #000080; /* Dark blue background */
  color: #ffffff; /* White text */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-blog-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.2;
  overflow: hidden;
}

.page-blog-game-guides__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-blog-game-guides__hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 20px;
}

.page-blog-game-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-blog-game-guides__hero-description {
  font-size: 1.25em;
  margin-bottom: 40px;
  line-height: 1.5;
}

.page-blog-game-guides__hero-button,
.page-blog-game-guides__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold button */
  color: #000080; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  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-blog-game-guides__hero-button:hover,
.page-blog-game-guides__cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-blog-game-guides__section-title {
  font-size: 2.5em;
  color: #000080; /* Dark blue for section titles */
  text-align: center;
  margin-bottom: 20px;
  padding-top: 40px;
}

.page-blog-game-guides__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-blog-game-guides__introduction-section,
.page-blog-game-guides__game-categories,
.page-blog-game-guides__general-strategies,
.page-blog-game-guides__advanced-tips,
.page-blog-game-guides__faq-section,
.page-blog-game-guides__call-to-action {
  padding: 60px 0;
}

.page-blog-game-guides__introduction-section {
  background-color: #f9f9f9;
}

.page-blog-game-guides__features-grid,
.page-blog-game-guides__category-grid,
.page-blog-game-guides__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-blog-game-guides__feature-card,
.page-blog-game-guides__tip-card,
.page-blog-game-guides__category-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.page-blog-game-guides__feature-card:hover,
.page-blog-game-guides__tip-card:hover,
.page-blog-game-guides__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-blog-game-guides__feature-card img,
.page-blog-game-guides__tip-card img,
.page-blog-game-guides__category-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px; /* Enforce min image size */
  min-height: 200px; /* Enforce min image size */
}

.page-blog-game-guides__card-title {
  font-size: 1.6em;
  color: #000080;
  margin-bottom: 15px;
  flex-grow: 1; /* Allow title to take up available space */
}

.page-blog-game-guides__card-text {
  font-size: 1em;
  color: #666666;
}

.page-blog-game-guides__game-categories {
  background-color: #eef4ff; /* Light blue background */
}

.page-blog-game-guides__category-card .page-blog-game-guides__card-title {
  color: #000080;
}

.page-blog-game-guides__general-strategies {
  background-color: #fcfcfc;
}

.page-blog-game-guides__strategy-list {
  list-style-type: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-blog-game-guides__strategy-list li {
  background-color: #ffffff;
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  font-size: 1.05em;
}

.page-blog-game-guides__strategy-list li strong {
  color: #000080;
}

.page-blog-game-guides__strategy-list li a {
  color: #000080;
  text-decoration: underline;
}

.page-blog-game-guides__strategy-list li a:hover {
  color: #FFD700;
}

.page-blog-game-guides__advanced-tips {
  background-color: #f0f0f0;
}

.page-blog-game-guides__faq-section {
  background-color: #ffffff;
}

.page-blog-game-guides__faq-item {
  background-color: #f9f9f9;
  border-bottom: 1px solid #eeeeee;
  padding: 25px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
}

.page-blog-game-guides__faq-question {
  font-size: 1.3em;
  color: #000080;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-blog-game-guides__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: #FFD700;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-blog-game-guides__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-blog-game-guides__faq-answer {
  font-size: 1.05em;
  color: #666666;
  display: none;
  padding-top: 10px;
}

.page-blog-game-guides__faq-answer.active {
  display: block;
}

.page-blog-game-guides__faq-answer a {
  color: #000080;
  text-decoration: underline;
}

.page-blog-game-guides__faq-answer a:hover {
  color: #FFD700;
}

.page-blog-game-guides__call-to-action {
  background-color: #000080; /* Dark blue background */
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.page-blog-game-guides__call-to-action .page-blog-game-guides__section-title {
  color: #FFD700; /* Gold title */
}

.page-blog-game-guides__call-to-action .page-blog-game-guides__section-description {
  color: #f0f0f0;
  margin-bottom: 40px;
}

.page-blog-game-guides__cta-button--large {
  padding: 18px 40px;
  font-size: 1.25em;
  border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-blog-game-guides__hero-title {
    font-size: 3em;
  }
  .page-blog-game-guides__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1.1em;
  }
  .page-blog-game-guides__hero-section,
  .page-blog-game-guides__introduction-section,
  .page-blog-game-guides__game-categories,
  .page-blog-game-guides__general-strategies,
  .page-blog-game-guides__advanced-tips,
  .page-blog-game-guides__faq-section,
  .page-blog-game-guides__call-to-action {
    padding: 40px 0;
  }
  .page-blog-game-guides__section-description {
    margin-bottom: 30px;
  }
  .page-blog-game-guides__features-grid,
  .page-blog-game-guides__category-grid,
  .page-blog-game-guides__tips-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .page-blog-game-guides__feature-card img,
  .page-blog-game-guides__tip-card img,
  .page-blog-game-guides__category-card img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-game-guides__strategy-list {
    padding: 0 20px;
  }
  .page-blog-game-guides__faq-item {
    padding: 20px 15px;
  }
  .page-blog-game-guides__faq-question {
    font-size: 1.1em;
  }
  .page-blog-game-guides__faq-answer {
    font-size: 0.95em;
  }
}

@media (max-width: 480px) {
  .page-blog-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1em;
  }
  .page-blog-game-guides__hero-button,
  .page-blog-game-guides__cta-button--large {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides__card-title {
    font-size: 1.4em;
  }
}