/* style/game-reviews.css */
.page-game-reviews {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  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, #0A192F 0%, #2A405F 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
  position: relative;
  overflow: hidden;
}

.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.5);
  color: #FFD700; /* Gold */
}

.page-game-reviews__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-game-reviews__hero-actions .page-game-reviews__btn {
  margin: 0 15px;
}

.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
}

.page-game-reviews__introduction, .page-game-reviews__why-trust-us, .page-game-reviews__benefits, .page-game-reviews__how-to-choose, .page-game-reviews__faq {
  padding: 60px 0;
  background-color: #0A192F;
  color: #E0E0E0;
}

.page-game-reviews__introduction p, .page-game-reviews__why-trust-us p, .page-game-reviews__benefits p, .page-game-reviews__how-to-choose p, .page-game-reviews__faq-answer {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-game-reviews__list, .page-game-reviews__list--ordered {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-game-reviews__list li, .page-game-reviews__list--ordered li {
  margin-bottom: 10px;
}

.page-game-reviews__list--ordered {
  list-style-type: decimal;
}

.page-game-reviews__image {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__featured-review {
  background-color: #1A2A40; /* Slightly lighter dark blue for contrast */
  padding: 60px 0;
  color: #E0E0E0;
}

.page-game-reviews__review-card {
  background-color: #0A192F;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-game-reviews__review-logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 30px;
  border-radius: 10px;
  border: 2px solid #FFD700;
}

.page-game-reviews__review-title {
  font-size: 2em;
  color: #FFD700; /* Gold */
  margin-bottom: 20px;
}

.page-game-reviews__review-summary, .page-game-reviews__review-verdict {
  font-size: 1.1em;
  margin-bottom: 25px;
  text-align: justify;
}

.page-game-reviews__review-features {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  text-align: left;
}

.page-game-reviews__review-features li {
  background-color: #1A2A40;
  padding: 15px;
  border-radius: 8px;
  border-left: 3px solid #FFD700; /* Gold accent */
  font-size: 1em;
}

.page-game-reviews__review-actions .page-game-reviews__btn {
  margin: 0 10px;
}

.page-game-reviews__detail-reviews {
  background-color: #0A192F;
  padding: 60px 0;
  color: #E0E0E0;
}

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

.page-game-reviews__review-item {
  background-color: #1A2A40;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews__review-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.page-game-reviews__item-title {
  font-size: 1.5em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-game-reviews__item-title a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews__item-title a:hover {
  color: #FFF;
}

.page-game-reviews__item-description {
  font-size: 1em;
  color: #B0B0B0;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-game-reviews__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A192F; /* Dark blue */
  border: 2px solid #FFD700;
}

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

.page-game-reviews__btn--secondary {
  background-color: transparent;
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

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

.page-game-reviews__btn--link {
  background-color: #FFD700;
  color: #0A192F;
  border: none;
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 5px;
  align-self: flex-start;
}

.page-game-reviews__btn--link:hover {
  background-color: #E0B800;
  color: #000;
}

.page-game-reviews__cta-section {
  background: linear-gradient(90deg, #0A192F 0%, #3A5F7F 100%); /* Another dark blue gradient */
  padding: 80px 0;
  text-align: center;
  color: #E0E0E0;
}

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

.page-game-reviews__cta-section p {
  font-size: 1.2em;
  margin-bottom: 40px;
}

.page-game-reviews__cta-actions .page-game-reviews__btn {
  margin: 0 15px;
}

.page-game-reviews__faq-item {
  background-color: #1A2A40;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews__faq-question {
  font-size: 1.3em;
  color: #FFD700; /* Gold */
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-game-reviews__faq-question::after {
  content: '+';
  font-size: 1.5em;
  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: #B0B0B0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  opacity: 0;
  padding-left: 15px;
  border-left: 2px solid #FFD700;
}

.page-game-reviews__faq-answer.active {
  max-height: 200px; /* Adjust based on expected content length */
  opacity: 1;
  margin-top: 15px;
}

/* 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__review-features {
    grid-template-columns: 1fr;
  }
  .page-game-reviews__review-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-game-reviews__review-card {
    padding: 30px;
  }
}

@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__hero-actions, .page-game-reviews__cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-game-reviews__btn {
    width: 100%;
    margin: 0;
  }
  .page-game-reviews__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-game-reviews__review-card {
    padding: 20px;
  }
  .page-game-reviews__review-title {
    font-size: 1.6em;
  }
  .page-game-reviews__item-title {
    font-size: 1.3em;
  }
  .page-game-reviews__review-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .page-game-reviews__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews__hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews__review-logo {
    max-width: 100px;
  }
}