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

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

.page-game-reviews__hero {
  background: linear-gradient(135deg, #0A6847, #1A925A);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

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

.page-game-reviews__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.page-game-reviews__btn--primary {
  background-color: #FFD700;
  color: #0A6847;
  border: 2px solid #FFD700;
}

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

.page-game-reviews__btn--secondary {
  background-color: #0A6847;
  color: #fff;
  border: 2px solid #0A6847;
}

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

.page-game-reviews__btn--large {
  padding: 15px 40px;
  font-size: 1.1em;
}

.page-game-reviews__section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

.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__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: -20px auto 40px auto;
  color: #555;
}

.page-game-reviews__grid {
  display: flex;
  gap: 40px;
  align-items: center;
}

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

.page-game-reviews__grid-item {
  flex: 1;
}

.page-game-reviews__grid-item img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-game-reviews__highlight {
  color: #0A6847;
  font-weight: bold;
}

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

.page-game-reviews__review-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-game-reviews__review-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-game-reviews__review-title {
  font-size: 1.6em;
  color: #0A6847;
  margin: 0 20px 15px 20px;
  min-height: 60px; /* Ensure consistent height for titles */
}

.page-game-reviews__review-excerpt {
  font-size: 1em;
  color: #666;
  margin: 0 20px 25px 20px;
  min-height: 90px; /* Ensure consistent height for excerpts */
}

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

.page-game-reviews__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  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;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-game-reviews__feature-title {
  font-size: 1.4em;
  color: #0A6847;
  margin-bottom: 15px;
}

.page-game-reviews__cta-section {
  background: linear-gradient(90deg, #0A6847, #1A925A);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}

.page-game-reviews__cta-content {
  max-width: 900px;
}

.page-game-reviews__cta-section .page-game-reviews__section-title {
  color: #FFD700;
}

.page-game-reviews__cta-section .page-game-reviews__section-title::after {
  background-color: #FFD700;
}

.page-game-reviews__cta-section .page-game-reviews__section-description {
  color: #e0e0e0;
  margin-bottom: 40px;
}

.page-game-reviews__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

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

.page-game-reviews__strategy ul li {
  background-color: #f2f2f2;
  border-left: 5px solid #0A6847;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1.05em;
}

.page-game-reviews__faq-item {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-game-reviews__faq-question {
  font-size: 1.3em;
  color: #0A6847;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
}

.page-game-reviews__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.page-game-reviews__faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-game-reviews__faq-answer {
  font-size: 1em;
  color: #555;
  margin-top: 0;
  display: none; /* Hidden by default */
  padding-top: 10px;
  border-top: 1px dashed #eee;
}

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

.page-game-reviews__conclusion .page-game-reviews__section-title {
  color: #0A6847;
}

.page-game-reviews__conclusion p {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #444;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews__hero-title {
    font-size: 2.5em;
  }
  .page-game-reviews__section-title {
    font-size: 2em;
  }
  .page-game-reviews__grid {
    flex-direction: column;
  }
  .page-game-reviews__grid--reverse {
    flex-direction: column;
  }
  .page-game-reviews__reviews-grid,
  .page-game-reviews__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-reviews__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-game-reviews__btn--large {
    width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .page-game-reviews__hero {
    padding: 60px 0;
  }
  .page-game-reviews__hero-title {
    font-size: 2em;
  }
  .page-game-reviews__hero-description {
    font-size: 1em;
  }
  .page-game-reviews__section {
    padding: 40px 0;
  }
  .page-game-reviews__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews__review-title {
    font-size: 1.4em;
  }
  .page-game-reviews__review-excerpt {
    min-height: auto; /* Allow content to dictate height on smaller screens */
  }
  .page-game-reviews__feature-title {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews__reviews-grid,
  .page-game-reviews__features-grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews__btn {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-game-reviews__btn--large {
    width: 90%;
    font-size: 1em;
  }
}