/* style/game-reviews.css */
.page-game-reviews {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A2A3A; /* Dark blue auxiliary color for background */
}

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

.page-game-reviews__hero {
  background: linear-gradient(135deg, #1A2A3A 0%, #3a4a5a 100%); /* Dark blue gradient */
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
}

.page-game-reviews__hero-content {
  z-index: 1;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-game-reviews__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 0;
}

.page-game-reviews__title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold main color for titles */
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-game-reviews__subtitle {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #F0F0F0;
}

.page-game-reviews__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Gold main color */
  color: #1A2A3A; /* Dark blue text on gold button */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-game-reviews__cta-button:hover {
  background-color: #e0b800; /* Slightly darker gold on hover */
  transform: translateY(-2px);
}

.page-game-reviews__cta-button--bottom, .page-game-reviews__cta-button--final {
    margin-top: 40px;
}

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

.page-game-reviews__introduction, .page-game-reviews__criteria, .page-game-reviews__popular-games, .page-game-reviews__detailed-reviews, .page-game-reviews__tips-and-tricks, .page-game-reviews__platform-selection, .page-game-reviews__conclusion {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-game-reviews__introduction p, .page-game-reviews__criteria p, .page-game-reviews__tips-and-tricks p, .page-game-reviews__platform-selection p, .page-game-reviews__conclusion p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-game-reviews__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-game-reviews__list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-game-reviews__list li strong {
  color: #FFD700;
}

.page-game-reviews__numbered-list {
  list-style-type: decimal;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #D0D0D0;
}

.page-game-reviews__numbered-list li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

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

.page-game-reviews__grid-item {
  background-color: #2a3a4a; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-game-reviews__grid-item h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-top: 15px;
  margin-bottom: 15px;
}

.page-game-reviews__grid-item p {
  color: #C0C0C0;
  font-size: 1em;
}

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

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

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

.page-game-reviews__review-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
}

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

.page-game-reviews__review-title a:hover {
  color: #e0b800;
}

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

.page-game-reviews__btn {
  display: inline-block;
  background-color: #FFD700;
  color: #1A2A3A;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

.page-game-reviews__btn--secondary {
  background-color: #3a4a5a; /* A darker shade for secondary buttons */
  color: #FFD700;
  border: 1px solid #FFD700;
}

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

.page-game-reviews__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-game-reviews__image--inline {
    margin-top: 30px;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 80%;
    border: 2px solid #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews__image--small {
  max-width: 120px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.page-game-reviews__conclusion p {
  text-align: center;
}

.page-game-reviews__conclusion .page-game-reviews__cta-button {
  margin-left: auto;
  margin-right: auto;
  display: block;
  width: fit-content;
}

.page-game-reviews .highlight {
  color: #FFD700;
}

/* 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__review-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-game-reviews__hero {
    padding: 60px 0;
  }
  .page-game-reviews__hero-content {
    margin-bottom: 20px;
  }
  .page-game-reviews__title {
    font-size: 2em;
  }
  .page-game-reviews__subtitle {
    font-size: 1em;
  }
  .page-game-reviews__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }
  .page-game-reviews__introduction, .page-game-reviews__criteria, .page-game-reviews__popular-games, .page-game-reviews__detailed-reviews, .page-game-reviews__tips-and-tricks, .page-game-reviews__platform-selection, .page-game-reviews__conclusion {
    padding: 40px 0;
  }
  .page-game-reviews__grid {
    grid-template-columns: 1fr;
  }
  .page-game-reviews__review-list {
    grid-template-columns: 1fr;
  }
  .page-game-reviews__image--inline {
      max-width: 90%;
  }
}

@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__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
}