.page-blog-game-reviews {
  color: #ffffff; /* Light text on dark body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-blog-game-reviews__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  text-align: center;
  padding: 40px 20px;
  overflow: hidden;
}

.page-blog-game-reviews__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  opacity: 0.3; /* Subtle overlay to ensure text readability */
}

.page-blog-game-reviews__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
  border-radius: 10px;
}

.page-blog-game-reviews__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Gold primary color */
  margin-bottom: 20px;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

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

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

.page-blog-game-reviews__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-size: 1.1em;
  text-align: center;
  min-width: 200px; /* Ensure buttons are not too small */
}

.page-blog-game-reviews__button--primary {
  background-color: #FFD700; /* Gold */
  color: #1A1A1A; /* Dark text */
  border: 2px solid #FFD700;
}

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

.page-blog-game-reviews__button--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
}

.page-blog-game-reviews__button--secondary:hover {
  background-color: #FFD700;
  color: #1A1A1A;
  transform: translateY(-3px);
}

.page-blog-game-reviews__button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  min-width: unset;
}

.page-blog-game-reviews__button--large {
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 250px;
}

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

.page-blog-game-reviews__section-title {
  font-size: 2.8em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 20px;
  border-bottom: 2px solid rgba(255, 215, 0, 0.3);
  padding-bottom: 15px;
}

.page-blog-game-reviews__sub-section-title {
  font-size: 2.2em;
  color: #f0f0f0;
  margin-top: 50px;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-game-reviews__section-intro {
  font-size: 1.1em;
  color: #cccccc;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-game-reviews__list-item {
  background-color: rgba(26, 26, 26, 0.8); /* Semi-transparent dark background */
  border-left: 5px solid #FFD700;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05em;
  color: #f0f0f0;
}

.page-blog-game-reviews__list-item strong {
  color: #FFD700;
}

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

.page-blog-game-reviews__category-card {
  background-color: #1A1A1A; /* Auxiliary dark color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-game-reviews__category-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  margin-bottom: 20px;
}

.page-blog-game-reviews__card-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-blog-game-reviews__card-link {
  color: #FFD700;
  text-decoration: none;
}

.page-blog-game-reviews__card-link:hover {
  text-decoration: underline;
}

.page-blog-game-reviews__card-description {
  color: #cccccc;
  font-size: 0.95em;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-blog-game-reviews__review-articles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.page-blog-game-reviews__review-card {
  background-color: #1A1A1A;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-blog-game-reviews__review-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 400px; /* Limit image height */
}

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

.page-blog-game-reviews__review-summary {
  color: #cccccc;
  font-size: 1em;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-blog-game-reviews__process-step {
  background-color: #1A1A1A;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  border-top: 4px solid #FFD700;
}

.page-blog-game-reviews__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-blog-game-reviews__step-description {
  color: #cccccc;
  font-size: 0.95em;
}

.page-blog-game-reviews__process-image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-game-reviews__faq-container {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-game-reviews__faq-item {
  background-color: rgba(26, 26, 26, 0.8);
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
}

.page-blog-game-reviews__faq-question {
  font-size: 1.2em;
  color: #FFD700;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-blog-game-reviews__faq-question::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

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

.page-blog-game-reviews__faq-answer {
  color: #cccccc;
  font-size: 1em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.page-blog-game-reviews__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content */
  margin-top: 10px;
}

.page-blog-game-reviews__call-to-action {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: rgba(255, 215, 0, 0.1); /* Light gold background for CTA */
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

/* Responsive Design */
@media (min-width: 769px) {
  .page-blog-game-reviews__review-card {
    flex-direction: row;
  }

  .page-blog-game-reviews__review-image {
    width: 40%;
    max-height: unset;
  }

  .page-blog-game-reviews__review-content {
    width: 60%;
  }

  .page-blog-game-reviews__review-card:nth-child(even) {
    flex-direction: row-reverse;
  }

  .page-blog-game-reviews__hero-section {
    min-height: 600px;
  }

  .page-blog-game-reviews__hero-title {
    font-size: 4.5em;
  }

  .page-blog-game-reviews__hero-description {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-reviews__hero-title {
    font-size: 2.5em;
  }

  .page-blog-game-reviews__hero-description {
    font-size: 1em;
  }

  .page-blog-game-reviews__button {
    width: 100%;
    min-width: unset;
  }

  .page-blog-game-reviews__section-title {
    font-size: 2em;
  }

  .page-blog-game-reviews__sub-section-title {
    font-size: 1.8em;
  }

  .page-blog-game-reviews__category-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-game-reviews__review-card {
    flex-direction: column;
  }

  .page-blog-game-reviews__review-image {
    width: 100%;
    height: auto;
  }

  /* Ensure content images are responsive and do not overflow */
  .page-blog-game-reviews img {
    max-width: 100%;
    height: auto;
  }

  .page-blog-game-reviews__process-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-game-reviews__process-step {
    padding: 20px;
  }

  .page-blog-game-reviews__step-title {
    font-size: 1.4em;
  }

  .page-blog-game-reviews__faq-question {
    font-size: 1.1em;
  }

  .page-blog-game-reviews__call-to-action {
    padding: 30px 15px;
  }

  .page-blog-game-reviews__button--large {
    min-width: unset;
  }
}