/* 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, #1A2E5B 0%, #3a5c96 100%); /* Primary color gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-game-reviews__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-game-reviews__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.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: #FF8C00; /* Secondary color */
  color: #1A2E5B; /* Dark text on bright button */
}

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

.page-game-reviews__btn--secondary {
  background-color: #1A2E5B;
  color: #FF8C00;
  border: 2px solid #FF8C00;
}

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

.page-game-reviews__btn--download {
  background-color: #4CAF50;
  color: #ffffff;
  margin-left: 15px;
}

.page-game-reviews__btn--download:hover {
  background-color: #45a049;
  transform: translateY(-2px);
}

.page-game-reviews__btn--small {
  padding: 8px 15px;
  font-size: 0.9em;
  background-color: #1A2E5B;
  color: #ffffff;
  border-radius: 5px;
}

.page-game-reviews__btn--small:hover {
  background-color: #FF8C00;
  color: #1A2E5B;
}

.page-game-reviews__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-game-reviews__section:last-of-type {
  border-bottom: none;
}

.page-game-reviews__section-title {
  font-size: 2.5em;
  color: #1A2E5B;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-game-reviews__intro p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-game-reviews__img--full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 30px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-game-reviews__game-category {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 60px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-game-reviews__game-category:nth-child(even) {
  flex-direction: row-reverse; /* Alternate image and text direction */
}

.page-game-reviews__category-title {
  font-size: 2em;
  color: #1A2E5B;
  margin-bottom: 25px;
  width: 100%;
  text-align: left;
}

.page-game-reviews__game-category img {
  width: 45%;
  height: auto;
  border-radius: 8px;
  margin: 0 2.5%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.page-game-reviews__game-category p {
  width: 45%;
  margin: 0 2.5% 20px 2.5%;
  font-size: 1.05em;
  color: #444;
}

.page-game-reviews__game-category .page-game-reviews__btn {
  width: 45%;
  margin: 0 2.5%;
  text-align: center;
}

.page-game-reviews__promotions {
  background-color: #1A2E5B;
  color: #ffffff;
  text-align: center;
}

.page-game-reviews__promotions .page-game-reviews__section-title {
  color: #FF8C00;
}

.page-game-reviews__promotions p {
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 30px auto;
  opacity: 0.9;
}

.page-game-reviews__cta {
  background-color: #f0f0f0;
  text-align: center;
  padding: 80px 0;
}

.page-game-reviews__cta-content {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.page-game-reviews__cta-title {
  font-size: 2.8em;
  color: #1A2E5B;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-game-reviews__cta-description {
  font-size: 1.2em;
  color: #555;
  margin-bottom: 40px;
}

.page-game-reviews__cta-buttons a {
  margin: 0 10px;
}

.page-game-reviews__detail-pages {
  background-color: #f9f9f9;
}

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

.page-game-reviews__detail-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-game-reviews__detail-title {
  font-size: 1.4em;
  color: #1A2E5B;
  margin-bottom: 15px;
  min-height: 60px; /* Ensure consistent height for titles */
}

.page-game-reviews__detail-title a {
  color: #1A2E5B;
  text-decoration: none;
}

.page-game-reviews__detail-title a:hover {
  color: #FF8C00;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews__hero-title {
    font-size: 2.8em;
  }
  .page-game-reviews__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews__section-title {
    font-size: 2em;
  }
  .page-game-reviews__game-category img,
  .page-game-reviews__game-category p,
  .page-game-reviews__game-category .page-game-reviews__btn {
    width: 90%;
    margin: 0 5% 20px 5%;
  }
  .page-game-reviews__game-category:nth-child(even) {
    flex-direction: row; /* Reset for smaller screens */
  }
  .page-game-reviews__cta-title {
    font-size: 2.2em;
  }
  .page-game-reviews__cta-description {
    font-size: 1em;
  }
  .page-game-reviews__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-game-reviews__cta-buttons a {
    margin: 0;
  }
  .page-game-reviews__btn--download {
    margin-left: 0;
  }
}

@media (max-width: 768px) {
  .page-game-reviews__hero {
    padding: 60px 0;
  }
  .page-game-reviews__hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews__hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews__game-category {
    padding: 20px;
  }
  .page-game-reviews__category-title {
    font-size: 1.6em;
  }
  .page-game-reviews__intro p,
  .page-game-reviews__promotions p {
    font-size: 1em;
  }
  .page-game-reviews__cta-content {
    padding: 30px;
  }
  .page-game-reviews__cta-title {
    font-size: 1.8em;
  }
  .page-game-reviews__detail-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: 0.9em;
  }
  .page-game-reviews__section-title {
    font-size: 1.5em;
  }
  .page-game-reviews__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-game-reviews__cta-title {
    font-size: 1.5em;
  }
  .page-game-reviews__detail-title {
    font-size: 1.2em;
  }
  .page-game-reviews__detail-description {
    font-size: 0.85em;
  }
}