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

.page-blog-game-guides__hero-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background-color: #0A2463; /* Main brand color for hero background */
  color: #ffffff;
}

.page-blog-game-guides__hero-container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.page-blog-game-guides__hero-image {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px;
  margin: 0 auto 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-blog-game-guides__hero-content {
  z-index: 1;
  padding: 20px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text readability */
  max-width: 800px;
}

.page-blog-game-guides__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #E3B23C; /* Accent color for title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-blog-game-guides__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-blog-game-guides__hero-button {
  display: inline-block;
  background-color: #E3B23C; /* Accent color for button */
  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.3s ease;
}

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

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

.page-blog-game-guides__section-title {
  font-size: 2.2em;
  color: #0A2463; /* Main brand color for section titles */
  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: #E3B23C;
  border-radius: 2px;
}

.page-blog-game-guides__paragraph {
  font-size: 1.05em;
  margin-bottom: 20px;
  line-height: 1.8;
  text-align: justify;
}

.page-blog-game-guides__content-section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-blog-game-guides__content-section:last-of-type {
  border-bottom: none;
}

.page-blog-game-guides__content-image {
  width: 100%;
  height: auto;
  max-width: 1000px;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-blog-game-guides__action-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  background-color: #0A2463; /* Main brand color for action buttons */
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-blog-game-guides__faq-section {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-blog-game-guides__faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 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: 1.0em;
  color: #555;
}

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

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

.page-blog-game-guides__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0A2463, #1a3a7c); /* Gradient background with main color */
  color: #ffffff;
  text-align: center;
}

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

.page-blog-game-guides__cta-section .page-blog-game-guides__paragraph {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 1.15em;
}

.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;
  background-color: #E3B23C; /* Accent color for primary CTA */
  color: #0A2463;
  padding: 18px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2em;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-game-guides__cta-button:hover {
  background-color: #f0c96e;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-game-guides__cta-button--secondary {
  background-color: #ffffff;
  color: #0A2463;
  border: 2px solid #E3B23C;
}

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

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

@media (max-width: 768px) {
  .page-blog-game-guides__hero-section {
    padding: 30px 15px;
  }
  .page-blog-game-guides__hero-title {
    font-size: 1.8em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 0.95em;
  }
  .page-blog-game-guides__hero-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-blog-game-guides__container {
    padding: 15px;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.6em;
    margin-bottom: 30px;
  }
  .page-blog-game-guides__paragraph {
    font-size: 0.95em;
  }
  .page-blog-game-guides__content-image {
    margin: 20px auto;
  }
  .page-blog-game-guides__faq-question {
    font-size: 1.1em;
  }
  .page-blog-game-guides__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-blog-game-guides__cta-button {
    width: 100%;
    max-width: 300px;
    padding: 15px 20px;
    font-size: 1.1em;
  }
  /* Ensure content area images do not overflow on mobile */
  .page-blog-game-guides img {
    max-width: 100%;
    height: auto;
  }
  .page-blog-game-guides__content-section {
    padding: 40px 0;
  }
  .page-blog-game-guides__faq-section {
    padding: 40px 0;
  }
  .page-blog-game-guides__cta-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .page-blog-game-guides__hero-title {
    font-size: 1.5em;
  }
  .page-blog-game-guides__hero-description {
    font-size: 0.9em;
  }
  .page-blog-game-guides__hero-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-blog-game-guides__section-title {
    font-size: 1.4em;
  }
  .page-blog-game-guides__faq-question {
    font-size: 1em;
  }
}