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

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

.page-game-reviews-hero {
  background: linear-gradient(135deg, #1A2E44 0%, #3a5c81 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-game-reviews-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFC107; /* Gold accent for title */
  font-weight: bold;
}

.page-game-reviews-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

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

.page-game-reviews-btn-primary {
  background-color: #1A2E44;
  color: #ffffff;
}

.page-game-reviews-btn-primary:hover {
  background-color: #0f1c2a;
  transform: translateY(-2px);
}

.page-game-reviews-btn-accent {
  background-color: #FFC107;
  color: #1A2E44;
}

.page-game-reviews-btn-accent:hover {
  background-color: #e5ad00;
  transform: translateY(-2px);
}

.page-game-reviews-btn-dark {
  background-color: #1A2E44;
  color: #FFC107;
  border: 2px solid #FFC107;
}

.page-game-reviews-btn-dark:hover {
  background-color: #0f1c2a;
  border-color: #ffffff;
  color: #ffffff;
}

.page-game-reviews-btn-light {
  background-color: #ffffff;
  color: #1A2E44;
  border: 2px solid #ffffff;
}

.page-game-reviews-btn-light:hover {
  background-color: #f0f0f0;
  color: #0f1c2a;
}

.page-game-reviews-btn-lg {
  padding: 15px 35px;
  font-size: 1.1em;
}

.page-game-reviews-btn-sm {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-game-reviews-ml-20 {
  margin-left: 20px;
}

.page-game-reviews-section {
  padding: 60px 0;
}

.page-game-reviews-section-title {
  font-size: 2.5em;
  color: #1A2E44;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
}

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

.page-game-reviews-section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555;
}

.page-game-reviews-dark-bg {
  background-color: #1A2E44;
}

.page-game-reviews-dark-bg .page-game-reviews-section-title {
  color: #ffffff;
}

.page-game-reviews-dark-bg .page-game-reviews-section-title::after {
  background-color: #FFC107;
}

.page-game-reviews-dark-bg .page-game-reviews-section-description {
  color: #e0e0e0;
}

.page-game-reviews-text-light {
  color: #ffffff !important;
}

.page-game-reviews-text-center {
  text-align: center;
}

.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: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  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.15);
}

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

.page-game-reviews-feature-title {
  font-size: 1.6em;
  color: #1A2E44;
  margin-bottom: 15px;
}

.page-game-reviews-feature-item p {
  font-size: 0.95em;
  color: #555;
}

.page-game-reviews-game-category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  background-color: #2a4768; /* Slightly lighter dark blue for cards */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-game-category:last-child {
  margin-bottom: 0;
}

.page-game-reviews-game-info {
  flex: 1;
  padding: 40px;
  color: #e0e0e0;
}

.page-game-reviews-game-image-wrapper {
  flex: 1;
  min-width: 300px;
  height: 350px;
  overflow: hidden;
}

.page-game-reviews-game-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-game-reviews-game-info p {
  margin-bottom: 20px;
  font-size: 1.05em;
  line-height: 1.7;
}

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

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

.page-game-reviews-tips-list li {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}

.page-game-reviews-tips-list li:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-game-reviews-tip-title {
  font-size: 1.5em;
  color: #1A2E44;
  margin-bottom: 15px;
}

.page-game-reviews-tip-title + p {
  color: #555;
  margin-bottom: 20px;
}

.page-game-reviews-cta-section {
  background-color: #FFC107; /* Accent background */
  color: #1A2E44;
  padding: 70px 0;
}

.page-game-reviews-cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #1A2E44;
}

.page-game-reviews-cta-description {
  font-size: 1.2em;
  max-width: 900px;
  margin: 0 auto 40px auto;
  color: #333;
}

.page-game-reviews-final-cta {
  background: linear-gradient(135deg, #1A2E44, #0f1c2a);
  padding: 80px 0;
  color: #ffffff;
}

.page-game-reviews-faq {
  margin-top: 40px;
}

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

.page-game-reviews-faq-question {
  font-size: 1.3em;
  color: #1A2E44;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-game-reviews-faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFC107;
  transition: transform 0.3s ease;
}

.page-game-reviews-faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-game-reviews-faq-answer {
  font-size: 1em;
  color: #555;
  padding-top: 10px;
  display: none;
}

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

/* Responsive Design */
@media (max-width: 992px) {
  .page-game-reviews-title {
    font-size: 2.5em;
  }
  .page-game-reviews-subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews-section-title {
    font-size: 2em;
  }
  .page-game-reviews-game-category {
    flex-direction: column;
  }
  .page-game-reviews-game-category.page-game-reviews-reverse {
    flex-direction: column;
  }
  .page-game-reviews-game-info,
  .page-game-reviews-game-image-wrapper {
    flex: none;
    width: 100%;
  }
  .page-game-reviews-game-image-wrapper {
    height: 250px;
  }
  .page-game-reviews-game-info {
    padding: 30px;
  }
  .page-game-reviews-ml-20 {
    margin-left: 0;
    margin-top: 15px;
  }
  .page-game-reviews-btn-lg {
    width: 100%;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-hero {
    padding: 60px 0;
  }
  .page-game-reviews-title {
    font-size: 2em;
  }
  .page-game-reviews-subtitle {
    font-size: 1em;
  }
  .page-game-reviews-section {
    padding: 40px 0;
  }
  .page-game-reviews-section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-feature-item {
    padding: 20px;
  }
  .page-game-reviews-feature-title {
    font-size: 1.4em;
  }
  .page-game-reviews-game-title {
    font-size: 1.7em;
  }
  .page-game-reviews-cta-title {
    font-size: 2.2em;
  }
  .page-game-reviews-cta-description {
    font-size: 1em;
  }
  .page-game-reviews-faq-question {
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-title {
    font-size: 1.8em;
  }
  .page-game-reviews-subtitle {
    font-size: 0.9em;
  }
  .page-game-reviews-section-title {
    font-size: 1.5em;
  }
  .page-game-reviews-game-image-wrapper {
    height: 200px;
  }
  .page-game-reviews-btn {
    width: 100%;
    margin-bottom: 10px;
  }
  .page-game-reviews-ml-20 {
    margin-left: 0;
    margin-top: 10px;
  }
  .page-game-reviews-cta-title {
    font-size: 1.8em;
  }
}