/* 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, #4da3ff);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(45deg);
}

.page-game-reviews-hero::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: rotate(-45deg);
}

.page-game-reviews-hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-game-reviews-btn-primary {
  background-color: #FFD700; /* Auxiliary color */
  color: #0056b3; /* Darker variant of primary for contrast */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-btn-primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-btn-secondary {
  background-color: #007BFF; /* Primary color */
  color: #fff;
  border: 2px solid #007BFF;
}

.page-game-reviews-btn-secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-game-reviews-btn-small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-game-reviews-btn-large {
  padding: 18px 35px;
  font-size: 1.2em;
}

.page-game-reviews-introduction, .page-game-reviews-game-types, .page-game-reviews-why-choose, .page-game-reviews-detailed-reviews, .page-game-reviews-final-cta {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.page-game-reviews-introduction {
  background-color: #fff;
}

.page-game-reviews-section-title {
  font-size: 2.5em;
  color: #007BFF;
  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-introduction p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 20px auto;
  text-align: center;
}

.page-game-reviews-image-wrapper {
  text-align: center;
  margin-top: 40px;
}

.page-game-reviews-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-image-caption {
  margin-top: 15px;
  font-style: italic;
  color: #555;
}

.page-game-reviews-game-card {
  display: flex;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 40px;
  overflow: hidden;
  padding: 30px;
  gap: 30px;
}

.page-game-reviews-game-card-reverse {
  flex-direction: row-reverse;
}

.page-game-reviews-game-card-content {
  flex: 1;
}

.page-game-reviews-game-card-image {
  flex: 1;
  min-width: 300px;
}

.page-game-reviews-game-card-image .page-game-reviews-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: none;
}

.page-game-reviews-card-title {
  font-size: 2em;
  color: #007BFF;
  margin-bottom: 20px;
}

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

.page-game-reviews-game-card ul li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05em;
}

.page-game-reviews-game-card ul li::before {
  content: '✓';
  color: #FFD700;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.page-game-reviews-why-choose {
  background-color: #eef7ff; /* Lighter variant of primary */
}

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

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

.page-game-reviews-feature-item:hover {
  transform: translateY(-5px);
}

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

.page-game-reviews-feature-item h3 {
  font-size: 1.5em;
  color: #007BFF;
  margin-bottom: 15px;
}

.page-game-reviews-feature-item p {
  color: #555;
}

.page-game-reviews-cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-game-reviews-detailed-reviews {
  background-color: #f0f0f0;
}

.page-game-reviews-section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #555;
}

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

.page-game-reviews-review-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.page-game-reviews-review-title {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-game-reviews-review-title a {
  color: #007BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews-review-title a:hover {
  color: #0056b3;
}

.page-game-reviews-review-description {
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-game-reviews-final-cta {
  background: linear-gradient(90deg, #007BFF, #0056b3);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-game-reviews-final-cta .page-game-reviews-section-title {
  color: #FFD700;
}

.page-game-reviews-final-cta p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 20px auto 40px;
}

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

  .page-game-reviews-hero-subtitle {
    font-size: 1.3em;
  }

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

  .page-game-reviews-game-card {
    flex-direction: column;
    padding: 20px;
  }

  .page-game-reviews-game-card-reverse {
    flex-direction: column;
  }

  .page-game-reviews-game-card-image {
    margin-top: 20px;
    min-width: unset;
  }

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

  .page-game-reviews-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-game-reviews-review-list {
    grid-template-columns: 1fr;
  }
}

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

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

  .page-game-reviews-hero-subtitle {
    font-size: 1.1em;
  }

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

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

  .page-game-reviews-introduction p {
    font-size: 1em;
  }

  .page-game-reviews-game-card {
    padding: 15px;
  }

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

  .page-game-reviews-feature-item h3 {
    font-size: 1.3em;
  }

  .page-game-reviews-final-cta p {
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-hero {
    padding: 60px 0;
  }

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

  .page-game-reviews-hero-subtitle {
    font-size: 0.9em;
  }

  .page-game-reviews-btn-large {
    padding: 15px 30px;
    font-size: 1em;
  }

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

  .page-game-reviews-review-title {
    font-size: 1.5em;
  }
}