.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

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

.page-game-reviews__hero {
  background: linear-gradient(135deg, #003366 0%, #003366 60%, #FFCC00 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 450px; /* Ensure sufficient height */
}

.page-game-reviews__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00; /* Contrast with dark background */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-game-reviews__hero-image-wrapper {
  position: absolute;
  bottom: -50px; /* Adjust to show partial image */
  right: 0;
  width: 500px; /* Adjust size as needed */
  height: auto;
  opacity: 0.2;
  z-index: 0;
  filter: grayscale(100%);
}

.page-game-reviews__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

.page-game-reviews__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1.1em;
}

.page-game-reviews__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1;
  position: relative;
}

.page-game-reviews__btn--primary:hover {
  background-color: #e6b800;
  color: #002244;
}

.page-game-reviews__btn--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 1px solid #FFCC00;
}

.page-game-reviews__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  border: 1px solid #003366;
}

.page-game-reviews__btn--hero {
  background-color: #FFCC00;
  color: #003366;
  padding: 18px 35px;
  font-size: 1.2em;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.page-game-reviews__btn--hero:hover {
  background-color: #e6b800;
  color: #002244;
}

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

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

.page-game-reviews__intro-section,
.page-game-reviews__why-choose,
.page-game-reviews__get-started,
.page-game-reviews__faq {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  border-radius: 8px;
}

.page-game-reviews__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #444;
}

.page-game-reviews__game-categories {
  padding: 60px 0;
  background-color: #f0f4f7;
}

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

.page-game-reviews__category-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  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(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-game-reviews__card-title {
  font-size: 1.8em;
  color: #003366;
  margin: 25px 15px 15px 15px;
}

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

.page-game-reviews__category-card .page-game-reviews__btn {
  margin: 0 20px 25px 20px;
  width: calc(100% - 40px);
}

.page-game-reviews__cta-banner {
  background-color: #003366;
  color: #ffffff;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

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

.page-game-reviews__why-choose-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.page-game-reviews__why-choose-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-game-reviews__why-choose-text li {
  background-color: #f0f4f7;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333;
  position: relative;
  padding-left: 40px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-game-reviews__why-choose-text li::before {
  content: '✓';
  color: #FFCC00;
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.page-game-reviews__why-choose-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

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

.page-game-reviews__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-game-reviews__steps-list li {
  background-color: #e6f2ff; /* Light blue */
  border-left: 5px solid #003366;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #222;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-game-reviews__steps-list li strong {
  color: #003366;
  font-size: 1.2em;
  display: block;
  margin-bottom: 5px;
}

.page-game-reviews__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
}

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

.page-game-reviews__faq-answer {
  font-size: 1.05em;
  color: #555;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews__hero-title {
    font-size: 2.5em;
  }
  .page-game-reviews__section-title {
    font-size: 2em;
  }
  .page-game-reviews__category-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-reviews__why-choose-content {
    flex-direction: column;
  }
  .page-game-reviews__why-choose-image-wrapper {
    order: -1; /* Image above text on smaller screens */
  }
}

@media (max-width: 768px) {
  .page-game-reviews__hero {
    padding: 60px 0;
  }
  .page-game-reviews__hero-title {
    font-size: 2em;
  }
  .page-game-reviews__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews__hero-image-wrapper {
    display: none; /* Hide hero image on very small screens */
  }
  .page-game-reviews__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews__intro-section,
  .page-game-reviews__game-categories,
  .page-game-reviews__why-choose,
  .page-game-reviews__get-started,
  .page-game-reviews__faq {
    padding: 40px 0;
  }
  .page-game-reviews__cta-banner {
    padding: 30px;
  }
  .page-game-reviews__cta-title {
    font-size: 1.8em;
  }
  .page-game-reviews__cta-description {
    font-size: 1em;
  }
  .page-game-reviews__faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews__container {
    padding: 0 15px;
  }
  .page-game-reviews__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews__hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews__btn--hero {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-game-reviews__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews__card-title {
    font-size: 1.5em;
  }
  .page-game-reviews__text-block, .page-game-reviews__card-description, .page-game-reviews__why-choose-text li, .page-game-reviews__steps-list li, .page-game-reviews__faq-answer {
    font-size: 0.95em;
  }
}