.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #F0F0F0; /* Light text on dark background */
  background-color: #0A2239; /* Main background color */
  line-height: 1.6;
}

.page-game-reviews__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A2239, #1a3a5c);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #E0B44B;
}

.page-game-reviews__hero-content {
  max-width: 900px;
  z-index: 1;
}

.page-game-reviews__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #E0B44B; /* Gold for main title */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews__cta-button {
  display: inline-block;
  background-color: #E0B44B; /* Gold button */
  color: #0A2239; /* Dark blue text on gold */
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #E0B44B;
}

.page-game-reviews__cta-button:hover {
  background-color: #f5c760; /* Lighter gold on hover */
  transform: translateY(-3px);
}

.page-game-reviews__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  z-index: 0;
}

.page-game-reviews__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-game-reviews__section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(224, 180, 75, 0.2);
}

.page-game-reviews__section:last-of-type {
  border-bottom: none;
}

.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #E0B44B; /* Gold for section titles */
  margin-bottom: 30px;
  text-align: center;
  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: #E0B44B;
  border-radius: 2px;
}

.page-game-reviews__intro p,
.page-game-reviews__why-trust p,
.page-game-reviews__get-started p,
.page-game-reviews__responsible-gaming p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #D3D3D3;
}

.page-game-reviews__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-game-reviews__category-card {
  background-color: #1a3a5c; /* Darker blue for cards */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  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 12px 25px rgba(0, 0, 0, 0.6);
}

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

.page-game-reviews__category-title {
  font-size: 1.8em;
  color: #E0B44B; /* Gold for category titles */
  margin: 25px 15px 15px;
}

.page-game-reviews__category-description {
  font-size: 1em;
  color: #C0C0C0;
  padding: 0 20px 25px;
  flex-grow: 1;
}

.page-game-reviews__detail-button {
  display: inline-block;
  background-color: #E0B44B;
  color: #0A2239;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  margin-bottom: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: 2px solid #E0B44B;
}

.page-game-reviews__detail-button:hover {
  background-color: #f5c760;
  transform: translateY(-2px);
}

.page-game-reviews__steps-list {
  list-style-type: decimal;
  padding-left: 30px;
  margin-top: 30px;
  color: #D3D3D3;
}

.page-game-reviews__steps-list li {
  margin-bottom: 15px;
  font-size: 1.1em;
}

.page-game-reviews__steps-list strong {
  color: #E0B44B;
}

.page-game-reviews__cta-button--large {
  font-size: 1.3em;
  padding: 18px 35px;
  margin-top: 40px;
}

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

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

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

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

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

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

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

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

  .page-game-reviews__intro p,
  .page-game-reviews__why-trust p,
  .page-game-reviews__get-started p,
  .page-game-reviews__responsible-gaming p {
    font-size: 1em;
  }

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

  .page-game-reviews__category-title {
    font-size: 1.6em;
  }

  .page-game-reviews__steps-list {
    padding-left: 20px;
  }

  .page-game-reviews__steps-list li {
    font-size: 1em;
  }

  .page-game-reviews__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}