.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light gray text for contrast */
  background-color: #0d123d; /* Dark background, slightly lighter than main color */
}

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

.page-game-reviews__hero {
  background: linear-gradient(135deg, #1A237E, #0d123d); /* Dark blue to slightly lighter dark blue */
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract_gaming_pattern,dark_blue_gold,subtle]');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.page-game-reviews__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 1;
}

.page-game-reviews__subtitle {
  font-size: 1.4em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-game-reviews__button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

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

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

.page-game-reviews__section {
  padding: 60px 0;
}

.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-reviews__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-reviews__description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 50px auto;
  color: #b0b0b0;
}

.page-game-reviews__content-grid {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.page-game-reviews__content-grid > div {
  flex: 1;
  min-width: 300px;
}

.page-game-reviews__text-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #cccccc;
}

.page-game-reviews__image-wrapper {
  text-align: center;
}

.page-game-reviews__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-game-reviews__category-card {
  background-color: #1A237E; /* Dark blue */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-reviews__category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.5);
}

.page-game-reviews__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-game-reviews__card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 20px 15px 10px;
  min-height: 50px;
}

.page-game-reviews__card-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews__card-title a:hover {
  color: #e5c300;
}

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

.page-game-reviews__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 10px 20px;
  margin-bottom: 20px;
}

.page-game-reviews__button--secondary:hover {
  background-color: #FFD700;
  color: #1A237E;
}

.page-game-reviews__game-article {
  background-color: #1A237E;
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__article-title {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 25px;
  text-align: center;
}

.page-game-reviews__article-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.page-game-reviews__article-image {
  flex: 0 0 350px;
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__article-text {
  flex: 1;
  min-width: 300px;
}

.page-game-reviews__article-text p {
  font-size: 1.05em;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #cccccc;
}

.page-game-reviews__article-text a {
  color: #FFD700;
  text-decoration: underline;
}

.page-game-reviews__article-text a:hover {
  color: #e5c300;
}

.page-game-reviews__cta-banner {
    background: linear-gradient(90deg, #1A237E, #3f478a);
    border-radius: 15px;
    padding: 40px;
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    flex-wrap: wrap;
}

.page-game-reviews__cta-content {
    flex: 1;
    min-width: 300px;
}

.page-game-reviews__cta-title {
    font-size: 2.2em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-game-reviews__cta-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-game-reviews__button--cta {
    margin-right: 20px;
    margin-bottom: 15px;
}

.page-game-reviews__button--cta-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.page-game-reviews__button--cta-secondary:hover {
    background-color: #FFD700;
    color: #1A237E;
}

.page-game-reviews__cta-image {
    max-width: 250px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__faq-list {
  background-color: #1A237E;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__faq-item {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-reviews__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-game-reviews__faq-question {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-game-reviews__faq-answer {
  font-size: 1.05em;
  line-height: 1.7;
  color: #cccccc;
}

.page-game-reviews__faq-answer a {
  color: #FFD700;
  text-decoration: underline;
}

.page-game-reviews__faq-answer a:hover {
  color: #e5c300;
}

.page-game-reviews__section--final-cta {
  background-color: #0d123d;
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews__final-cta-content {
  max-width: 800px;
}

.page-game-reviews__final-cta-title {
  font-size: 3em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-game-reviews__final-cta-description {
  font-size: 1.2em;
  color: #cccccc;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews__title {
    font-size: 2.8em;
  }

  .page-game-reviews__subtitle {
    font-size: 1.2em;
  }

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

  .page-game-reviews__content-grid {
    flex-direction: column;
  }

  .page-game-reviews__article-content-wrapper {
    flex-direction: column;
  }

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

  .page-game-reviews__cta-banner {
    flex-direction: column;
    text-align: center;
  }

  .page-game-reviews__cta-image {
    order: -1; /* Move image above text on smaller screens */
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-game-reviews__hero {
    padding: 80px 0;
  }

  .page-game-reviews__title {
    font-size: 2.2em;
  }

  .page-game-reviews__subtitle {
    font-size: 1em;
  }

  .page-game-reviews__button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-reviews__section {
    padding: 40px 0;
  }

  .page-game-reviews__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-game-reviews__description {
    font-size: 0.95em;
    margin-bottom: 40px;
  }

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

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

  .page-game-reviews__game-article {
    padding: 20px;
  }

  .page-game-reviews__article-title {
    font-size: 1.8em;
  }

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

  .page-game-reviews__final-cta-title {
    font-size: 2.2em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews__title {
    font-size: 1.8em;
  }
  .page-game-reviews__button--cta, .page-game-reviews__button--cta-secondary {
      width: 100%;
      margin-right: 0;
      margin-bottom: 10px;
  }
  .page-game-reviews__cta-banner {
      padding: 30px 20px;
  }
  .page-game-reviews__cta-title {
      font-size: 1.8em;
  }
  .page-game-reviews__final-cta-title {
      font-size: 1.8em;
  }
}