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

.page-blog-game-guides__hero-section {
  position: relative;
  overflow: hidden;
  background-color: #0A2463; /* Main color as fallback */
}

.page-blog-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6); /* Slightly darken image for text readability */
}

.page-blog-game-guides__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  padding: 20px;
  z-index: 10;
}

.page-blog-game-guides__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #E3B505; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.2;
}

.page-blog-game-guides__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

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

.page-blog-game-guides__hero-button:hover {
  background-color: #f5db9c; /* Lighter accent for hover */
  transform: translateY(-3px);
}

.page-blog-game-guides__content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-blog-game-guides__introduction-section,
.page-blog-game-guides__game-section,
.page-blog-game-guides__live-casino-section,
.page-blog-game-guides__responsible-gaming-section,
.page-blog-game-guides__conclusion-section {
  padding: 60px 0;
}

.page-blog-game-guides__game-section--alt-background {
  background-color: #f0f0f0;
}

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

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

.page-blog-game-guides__subsection-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-top: 30px;
  margin-bottom: 15px;
  border-left: 5px solid #E3B505;
  padding-left: 15px;
}

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

.page-blog-game-guides__cta-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  background-color: #0A2463;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.page-blog-game-guides__image-container {
  margin: 40px auto;
  text-align: center;
}

.page-blog-game-guides__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  min-height: 200px;
}

.page-blog-game-guides__read-more-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  color: #E3B505;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-blog-game-guides__read-more-link:hover {
  color: #0A2463;
}

.page-blog-game-guides__cta-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}

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

.page-blog-game-guides__cta-button--primary:hover {
  background-color: #f5db9c;
}

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

.page-blog-game-guides__cta-button--secondary:hover {
  background-color: #1a3a7c;
}

@media (max-width: 1024px) {
  .page-blog-game-guides__hero-title {
    font-size: 3em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1.2em;
  }
  .page-blog-game-guides__section-title {
    font-size: 2em;
  }
  .page-blog-game-guides__subsection-title {
    font-size: 1.6em;
  }
  .page-blog-game-guides__paragraph {
    font-size: 1em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-guides {
    padding-top: var(--header-offset, 120px); /* Ensure mobile header offset */
  }
  .page-blog-game-guides__hero-title {
    font-size: 2.2em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 1em;
  }
  .page-blog-game-guides__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-game-guides__content-wrapper {
    padding: 20px 15px;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides__subsection-title {
    font-size: 1.4em;
  }
  .page-blog-game-guides__image-container img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-game-guides__cta-group {
    flex-direction: column;
  }
  .page-blog-game-guides__cta-button {
    width: 100%;
    max-width: 300px; /* Constrain width for better mobile appearance */
  }
}