/* style/game-reviews-all-games.css */
.page-game-reviews-all-games {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light text for dark background */
  background-color: #0A192F;
  line-height: 1.6;
}

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

.page-game-reviews-all-games h1,
.page-game-reviews-all-games h2,
.page-game-reviews-all-games h3 {
  color: #64FFDA;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-game-reviews-all-games h1 {
  font-size: 2.8em;
  text-align: center;
}

.page-game-reviews-all-games h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-game-reviews-all-games h3 {
  font-size: 1.6em;
}

.page-game-reviews-all-games p {
  margin-bottom: 15px;
  color: #C0C0C0;
}

.page-game-reviews-all-games__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-game-reviews-all-games__btn--primary {
  background-color: #64FFDA;
  color: #0A192F;
  border: 2px solid #64FFDA;
}

.page-game-reviews-all-games__btn--primary:hover {
  background-color: #46b399;
  border-color: #46b399;
  color: #0A192F;
}

.page-game-reviews-all-games__btn--secondary {
  background-color: transparent;
  color: #64FFDA;
  border: 2px solid #64FFDA;
}

.page-game-reviews-all-games__btn--secondary:hover {
  background-color: #64FFDA;
  color: #0A192F;
}

.page-game-reviews-all-games__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  border-radius: 4px;
  background-color: #64FFDA;
  color: #0A192F;
  border: none;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-game-reviews-all-games__btn--small:hover {
  background-color: #46b399;
}

.page-game-reviews-all-games__btn--read-more {
  background-color: transparent;
  color: #64FFDA;
  border: 1px solid #64FFDA;
  padding: 8px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
}

.page-game-reviews-all-games__btn--read-more:hover {
  background-color: #64FFDA;
  color: #0A192F;
}

/* Hero Section */
.page-game-reviews-all-games__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #0A192F 0%, #1A3A5F 100%);
  text-align: center;
  gap: 40px;
}

.page-game-reviews-all-games__hero-content {
  max-width: 800px;
}

.page-game-reviews-all-games__hero p {
  font-size: 1.2em;
  color: #C0C0C0;
  margin-bottom: 30px;
}

.page-game-reviews-all-games__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-game-reviews-all-games__hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Intro Text Section */
.page-game-reviews-all-games__intro-text {
  padding: 60px 0;
  background-color: #1A2A40;
}

.page-game-reviews-all-games__intro-text p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* Review Categories Section */
.page-game-reviews-all-games__review-categories {
  padding: 60px 0;
  background-color: #0A192F;
}

.page-game-reviews-all-games__review-categories p {
  text-align: center;
  margin-bottom: 40px;
}

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

.page-game-reviews-all-games__category-card {
  background-color: #1A2A40;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-game-reviews-all-games__category-card img {
  width: 100%;
  max-width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.page-game-reviews-all-games__category-card h3 {
  color: #64FFDA;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.4em;
}

.page-game-reviews-all-games__category-card p {
  font-size: 0.95em;
  color: #C0C0C0;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Review List Section */
.page-game-reviews-all-games__review-list {
  padding: 60px 0;
  background-color: #1A2A40;
}

.page-game-reviews-all-games__review-list p {
  text-align: center;
  margin-bottom: 40px;
}

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

.page-game-reviews-all-games__review-card {
  background-color: #0A192F;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.page-game-reviews-all-games__review-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

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

.page-game-reviews-all-games__review-content h3 {
  color: #64FFDA;
  margin-top: 0;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-game-reviews-all-games__review-content p {
  font-size: 0.95em;
  color: #C0C0C0;
  flex-grow: 1;
  margin-bottom: 15px;
}

.page-game-reviews-all-games__rating {
  color: #FFD700;
  font-size: 1.2em;
  margin-bottom: 15px;
}

/* Why Choose Section */
.page-game-reviews-all-games__why-choose {
  padding: 60px 0;
  background-color: #0A192F;
  text-align: center;
}

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

.page-game-reviews-all-games__benefit-item {
  background-color: #1A2A40;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-all-games__benefit-item img {
  width: 80px;
  height: 80px;
  margin-bottom: 15px;
}

.page-game-reviews-all-games__benefit-item h3 {
  color: #64FFDA;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-game-reviews-all-games__benefit-item p {
  color: #C0C0C0;
  font-size: 0.95em;
}

.page-game-reviews-all-games__cta-bottom {
    margin-top: 50px;
}

/* FAQ Section */
.page-game-reviews-all-games__faq {
  padding: 60px 0;
  background-color: #1A2A40;
}

.page-game-reviews-all-games__faq h2 {
  margin-bottom: 40px;
}

.page-game-reviews-all-games__faq-item {
  background-color: #0A192F;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-all-games__faq-item h3 {
  color: #64FFDA;
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 10px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-game-reviews-all-games__faq-item h3::after {
  content: '+';
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-game-reviews-all-games__faq-item.active h3::after {
  transform: rotate(45deg);
}

.page-game-reviews-all-games__faq-item p {
  color: #C0C0C0;
  font-size: 1em;
  margin-top: 15px;
  display: none; /* Hidden by default, toggled by JS */
}

.page-game-reviews-all-games__faq-item.active p {
  display: block;
}

/* Conclusion Section */
.page-game-reviews-all-games__conclusion {
  padding: 60px 0 80px;
  background-color: #0A192F;
  text-align: center;
}

.page-game-reviews-all-games__conclusion p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-game-reviews-all-games h1 {
    font-size: 2.2em;
  }

  .page-game-reviews-all-games h2 {
    font-size: 1.8em;
  }

  .page-game-reviews-all-games__hero {
    flex-direction: column;
    padding: 60px 15px;
  }

  .page-game-reviews-all-games__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-game-reviews-all-games__btn {
    width: 100%;
  }

  .page-game-reviews-all-games__category-grid,
  .page-game-reviews-all-games__grid,
  .page-game-reviews-all-games__benefits-grid {
    grid-template-columns: 1fr;
  }

  .page-game-reviews-all-games__review-card img {
    height: 180px;
  }

  .page-game-reviews-all-games__review-content,
  .page-game-reviews-all-games__category-card,
  .page-game-reviews-all-games__benefit-item,
  .page-game-reviews-all-games__faq-item {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-all-games h1 {
    font-size: 1.8em;
  }

  .page-game-reviews-all-games h2 {
    font-size: 1.5em;
  }

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

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

  .page-game-reviews-all-games__review-card img {
    height: 150px;
  }
}