/* style/game-reviews.css */
.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-game-reviews__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.page-game-reviews__title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #fff;
}

.page-game-reviews__subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e0e0e0;
}

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

.page-game-reviews__btn--primary {
  background-color: #0056b3; /* Darker blue for contrast */
  color: #fff;
}

.page-game-reviews__btn--primary:hover {
  background-color: #003f80;
  transform: translateY(-2px);
}

.page-game-reviews__btn--secondary {
  background-color: #218838; /* Darker green for contrast */
  color: #fff;
  margin-left: 15px;
}

.page-game-reviews__btn--secondary:hover {
  background-color: #1a6f2c;
  transform: translateY(-2px);
}

.page-game-reviews__section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-game-reviews__section:nth-of-type(even) {
  background-color: #fff;
}

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

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

.page-game-reviews__description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 50px;
  color: #555;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-game-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-game-reviews__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-game-reviews__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-reviews__feature-item h3 {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-game-reviews__feature-item p {
  color: #666;
}

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

.page-game-reviews__type-item {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews__type-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-game-reviews__type-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin: 20px 0 10px;
  padding: 0 15px;
}

.page-game-reviews__type-item p {
  color: #666;
  padding: 0 15px 20px;
}

.page-game-reviews__review-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.page-game-reviews__review-item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews__review-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

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

.page-game-reviews__review-content h3 {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-game-reviews__review-link {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews__review-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.page-game-reviews__review-content p {
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-reviews__review-content .page-game-reviews__btn {
  margin-top: auto;
  align-self: flex-start;
}

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

.page-game-reviews__steps li {
  background-color: #fff;
  border-left: 5px solid #007bff;
  margin-bottom: 30px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.page-game-reviews__steps li h3 {
  color: #007bff;
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-game-reviews__steps li p {
  color: #555;
  font-size: 1.1em;
}

.page-game-reviews__full-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 50px auto 0;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.page-game-reviews__benefit-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-game-reviews__benefit-list li {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-game-reviews__benefit-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-game-reviews__benefit-list li p {
  font-size: 1.1em;
  color: #555;
}

.page-game-reviews__cta {
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #fff;
}

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

.page-game-reviews__cta-buttons .page-game-reviews__btn {
  margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews__title {
    font-size: 2.8em;
  }
  .page-game-reviews__subtitle {
    font-size: 1.3em;
  }
  .page-game-reviews__section-title {
    font-size: 2em;
  }
  .page-game-reviews__review-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@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: 1.1em;
  }
  .page-game-reviews__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-game-reviews__btn--secondary {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-game-reviews__cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .page-game-reviews__cta-buttons .page-game-reviews__btn {
    margin: 10px 0;
    width: 80%;
    max-width: 300px;
  }
  .page-game-reviews__grid, .page-game-reviews__type-grid, .page-game-reviews__benefit-list {
    grid-template-columns: 1fr;
  }
  .page-game-reviews__review-item {
    flex-direction: column;
  }
  .page-game-reviews__review-image {
    height: 180px;
  }
  .page-game-reviews__steps li {
    padding: 20px;
  }
  .page-game-reviews__steps li h3 {
    font-size: 1.5em;
  }
  .page-game-reviews__cta-title {
    font-size: 2em;
  }
  .page-game-reviews__cta-description {
    font-size: 1.1em;
  }
}