.page-blog-game-guides {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-blog-game-guides__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-blog-game-guides__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-blog-game-guides__hero-section {
  padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #0A2463; /* Primary color background */
  color: #ffffff;
}

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

.page-blog-game-guides__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 400px; /* Minimum height for hero image */
}

.page-blog-game-guides__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-blog-game-guides__hero-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

/* Introduction Section */
.page-blog-game-guides__introduction-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

/* Game Categories Section */
.page-blog-game-guides__game-categories-section {
  padding: 80px 0;
}

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

.page-blog-game-guides__card {
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  min-height: 500px; /* Ensure cards have minimum height */
}

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

.page-blog-game-guides__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-blog-game-guides__card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin: 25px 20px 15px;
  flex-grow: 0;
}

.page-blog-game-guides__card-title .page-blog-game-guides__card-link {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.page-blog-game-guides__card-title .page-blog-game-guides__card-link:hover {
  color: #FFD700;
}

.page-blog-game-guides__card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
  flex-grow: 1;
}

.page-blog-game-guides__card-button {
  display: inline-block;
  background-color: #0A2463;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-bottom: 25px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-game-guides__card-button:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-2px);
}

/* Why Bingo Plus & Responsible Gaming Sections */
.page-blog-game-guides__why-bingo-plus-section,
.page-blog-game-guides__responsible-gaming-section {
  padding: 80px 0;
  background-color: #f0f0f0;
}

.page-blog-game-guides__why-bingo-plus-section {
  background-color: #ffffff;
}

.page-blog-game-guides__flex-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-blog-game-guides__flex-content--reverse {
  flex-direction: row-reverse;
}

.page-blog-game-guides__image-wrapper {
  flex: 1;
  min-width: 300px;
}

.page-blog-game-guides__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-blog-game-guides__text-wrapper {
  flex: 1;
}

.page-blog-game-guides__text-button {
  display: inline-block;
  background-color: #FFD700;
  color: #0A2463;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-game-guides__text-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

/* FAQ Section */
.page-blog-game-guides__faq-section {
  padding: 80px 0;
}

.page-blog-game-guides__faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.page-blog-game-guides__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-blog-game-guides__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
}

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

.page-blog-game-guides__faq-answer a {
  color: #0A2463;
  text-decoration: none;
  font-weight: bold;
}

.page-blog-game-guides__faq-answer a:hover {
  text-decoration: underline;
}

/* CTA Section */
.page-blog-game-guides__cta-section {
  background-color: #0A2463;
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

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

.page-blog-game-guides__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-blog-game-guides__cta-button {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.page-blog-game-guides__cta-button--primary {
  background-color: #FFD700;
  color: #0A2463;
}

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

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

.page-blog-game-guides__cta-button--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-game-guides__hero-title {
    font-size: 3em;
  }
  .page-blog-game-guides__section-title {
    font-size: 2em;
  }
  .page-blog-game-guides__flex-content {
    flex-direction: column;
  }
  .page-blog-game-guides__flex-content--reverse {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-blog-game-guides__hero-section {
    padding: 60px 20px;
  }
  .page-blog-game-guides__hero-content {
    padding: 60px 20px;
  }
  .page-blog-game-guides__hero-title {
    font-size: 2.5em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1.1em;
  }
  .page-blog-game-guides__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-blog-game-guides__text-content {
    font-size: 1em;
  }
  .page-blog-game-guides__grid {
    grid-template-columns: 1fr;
  }
  .page-blog-game-guides__card {
    min-height: auto;
  }
  .page-blog-game-guides__card-image {
    height: 180px;
  }
  .page-blog-game-guides__card-title {
    font-size: 1.4em;
  }
  .page-blog-game-guides__card-description {
    font-size: 0.95em;
  }
  .page-blog-game-guides__why-bingo-plus-section, 
  .page-blog-game-guides__responsible-gaming-section, 
  .page-blog-game-guides__faq-section, 
  .page-blog-game-guides__cta-section {
    padding: 50px 0;
  }
  .page-blog-game-guides__faq-question {
    font-size: 1.1em;
  }
  .page-blog-game-guides__cta-description {
    font-size: 1em;
  }
  .page-blog-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-guides__cta-button {
    width: 100%;
    max-width: 300px;
  }
  /* Mobile content area images must be responsive */
  .page-blog-game-guides img {
    max-width: 100%;
    height: auto;
  }
}