.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);
}

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

.page-blog-game-guides__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2342;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-blog-game-guides__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  z-index: 1;
}

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

.page-blog-game-guides__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #F2C94C;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

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

.page-blog-game-guides__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-blog-game-guides__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.3s ease;
}

.page-blog-game-guides__button--primary {
  background-color: #F2C94C;
  color: #0A2342;
  border: 2px solid #F2C94C;
}

.page-blog-game-guides__button--primary:hover {
  background-color: #e0b43c;
  transform: translateY(-3px);
}

.page-blog-game-guides__button--secondary {
  background-color: transparent;
  color: #F2C94C;
  border: 2px solid #F2C94C;
}

.page-blog-game-guides__button--secondary:hover {
  background-color: rgba(242, 201, 76, 0.1);
  transform: translateY(-3px);
}

.page-blog-game-guides__introduction-section,
.page-blog-game-guides__categories-section,
.page-blog-game-guides__featured-guide-section,
.page-blog-game-guides__cta-section {
  padding: 60px 0;
}

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

.page-blog-game-guides__section-title {
  font-size: 2.5em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 30px;
}

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

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

.page-blog-game-guides__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-blog-game-guides__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-blog-game-guides__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-blog-game-guides__card-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #0A2342;
}

.page-blog-game-guides__card-title a {
  color: #0A2342;
  text-decoration: none;
}

.page-blog-game-guides__card-title a:hover {
  color: #F2C94C;
}

.page-blog-game-guides__card-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-game-guides__card-link {
  display: inline-block;
  color: #F2C94C;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
  align-self: flex-start;
}

.page-blog-game-guides__card-link:hover {
  border-color: #F2C94C;
}

.page-blog-game-guides__featured-guide-section {
  background-color: #f0f4f8;
  padding: 80px 0;
}

.page-blog-game-guides__subsection-title {
  font-size: 2em;
  color: #0A2342;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-blog-game-guides__sub-subsection-title {
  font-size: 1.6em;
  color: #0A2342;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(10, 35, 66, 0.1);
  padding-bottom: 5px;
}

.page-blog-game-guides__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  color: #444444;
}

.page-blog-game-guides__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #444444;
}

.page-blog-game-guides__list-item {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-blog-game-guides__list-item strong {
  color: #0A2342;
}

.page-blog-game-guides__cta-section {
  background-color: #0A2342;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.page-blog-game-guides__cta-section .page-blog-game-guides__section-title {
  color: #F2C94C;
}

.page-blog-game-guides__cta-section .page-blog-game-guides__section-text {
  color: #f0f0f0;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-blog-game-guides__hero-title {
    font-size: 2.8em;
  }
  .page-blog-game-guides__section-title {
    font-size: 2em;
  }
  .page-blog-game-guides__subsection-title {
    font-size: 1.8em;
  }
}

@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-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-guides__button {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides__subsection-title {
    font-size: 1.5em;
  }
  .page-blog-game-guides__sub-subsection-title {
    font-size: 1.3em;
  }
  .page-blog-game-guides__card-image {
    height: 200px;
  }
  .page-blog-game-guides__card-title {
    font-size: 1.2em;
  }
  .page-blog-game-guides__grid {
    grid-template-columns: 1fr;
  }
  /* Ensure images in content areas are responsive and not too small */
  .page-blog-game-guides img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
  }
  .page-blog-game-guides__card-image {
    min-width: 200px;
    min-height: 200px;
  }
}