.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #e0e0e0; /* Light text for dark background */
  line-height: 1.6;
  background-color: #0f1a29; /* Darker background based on main color */
}

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

.page-game-reviews__hero {
  background: linear-gradient(135deg, #1A2E47, #0f1a29);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.page-game-reviews__title {
  font-size: 3.5em;
  color: #FFD700; /* Auxiliary color for emphasis */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-game-reviews__subtitle {
  font-size: 1.2em;
  color: #cccccc;
  max-width: 800px;
  margin: 0 auto 30px;
}

.page-game-reviews__section {
  padding: 60px 0;
  background-color: #1A2E47; /* Main color for sections */
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews__section:nth-child(even) {
  background-color: #122136; /* Slightly different shade for alternating sections */
}

.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Auxiliary color for section titles */
  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: #FFD700;
  border-radius: 2px;
}

.page-game-reviews__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  cursor: pointer;
}

.page-game-reviews__btn--primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A2E47; /* Main color */
}

.page-game-reviews__btn--primary:hover {
  background-color: #e6c200; /* Darker auxiliary color */
  transform: translateY(-2px);
}

.page-game-reviews__btn--secondary {
  background-color: #1A2E47; /* Main color */
  color: #FFD700; /* Auxiliary color */
  border: 2px solid #FFD700;
}

.page-game-reviews__btn--secondary:hover {
  background-color: #FFD700; /* Auxiliary color */
  color: #1A2E47; /* Main color */
  transform: translateY(-2px);
}

.page-game-reviews__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  margin: 5px;
}

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

.page-game-reviews__feature-item,
.page-game-reviews__category-item,
.page-game-reviews__promotion-item {
  background-color: #2a3d54; /* Slightly lighter than main color */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews__feature-item:hover,
.page-game-reviews__category-item:hover,
.page-game-reviews__promotion-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-game-reviews__feature-title,
.page-game-reviews__category-title,
.page-game-reviews__promotion-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 15px;
}

.page-game-reviews__category-image,
.page-game-reviews__promotion-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-game-reviews__cta-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 40px;
  margin-bottom: 20px;
  color: #e0e0e0;
}

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

.page-game-reviews__step-item {
  background-color: #2a3d54;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-game-reviews__step-number {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background-color: #FFD700;
  color: #1A2E47;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-game-reviews__step-title {
  font-size: 1.3em;
  color: #FFD700;
  margin-bottom: 10px;
}

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

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

.page-game-reviews__mobile-text ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-game-reviews__mobile-text ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

.page-game-reviews__mobile-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-game-reviews__detail-item {
  background-color: #2a3d54;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-game-reviews__detail-title {
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-game-reviews__detail-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-game-reviews__detail-title a:hover {
  text-decoration: underline;
  color: #e6c200;
}

.page-game-reviews__detail-description {
  color: #cccccc;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-reviews__faq-list {
  margin-top: 30px;
}

.page-game-reviews__faq-item {
  background-color: #2a3d54;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.page-game-reviews__faq-answer {
  color: #cccccc;
  display: none;
  padding-top: 10px;
  border-top: 1px solid #3c5470;
}

.page-game-reviews__faq-question.active + .page-game-reviews__faq-answer {
  display: block;
}

.page-game-reviews__section--responsible-gaming ul {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-game-reviews__section--responsible-gaming ul li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23FFD700" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="12" y1="8" x2="12" y2="12"></line><line x1="12" y1="16" x2="12.01" y2="16"></line></svg>') no-repeat left center;
  background-size: 18px;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-game-reviews__title {
    font-size: 2.5em;
  }

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

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

  .page-game-reviews__features-grid,
  .page-game-reviews__category-grid,
  .page-game-reviews__promotion-grid,
  .page-game-reviews__steps,
  .page-game-reviews__detail-list {
    grid-template-columns: 1fr;
  }

  .page-game-reviews__mobile-content {
    flex-direction: column;
    text-align: center;
  }

  .page-game-reviews__mobile-image {
    order: -1; /* Image appears above text on mobile */
  }
}

@media (max-width: 480px) {
  .page-game-reviews__title {
    font-size: 2em;
  }

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

  .page-game-reviews__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }

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