/* style/game-reviews-new-game-analysis.css */
.page-game-reviews-new-game-analysis {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

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

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

.page-game-reviews-new-game-analysis__section--alt-bg {
  background-color: #f8f9fa;
}

.page-game-reviews-new-game-analysis__section--cta-dark {
  background-color: #00428d; /* Slightly darker blue for contrast */
  color: #fff;
}

.page-game-reviews-new-game-analysis__section-title {
  font-size: 2.5em;
  color: #0056b3; /* Main blue */
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.page-game-reviews-new-game-analysis__section--cta-dark .page-game-reviews-new-game-analysis__section-title,
.page-game-reviews-new-game-analysis__section--cta-dark .page-game-reviews-new-game-analysis__cta-title {
  color: #ffd700; /* Gold for titles on dark background */
}

.page-game-reviews-new-game-analysis__text-content {
  font-size: 1.1em;
  text-align: justify;
  max-width: 900px;
  margin: 0 auto;
}

.page-game-reviews-new-game-analysis__text-link {
  color: #0056b3; /* Main blue for links */
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-game-reviews-new-game-analysis__text-link:hover {
  color: #00428d; /* Darker blue on hover */
}

.page-game-reviews-new-game-analysis__section--cta-dark .page-game-reviews-new-game-analysis__text-link {
  color: #ffd700; /* Gold for links on dark background */
}

.page-game-reviews-new-game-analysis__section--cta-dark .page-game-reviews-new-game-analysis__text-link:hover {
  color: #fff; /* White on hover for dark background */
}

/* Hero Section */
.page-game-reviews-new-game-analysis__hero {
  background: linear-gradient(135deg, #0056b3 0%, #00428d 100%); /* Darker blue gradient */
  color: #fff;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-new-game-analysis__hero-content {
  z-index: 1;
  max-width: 800px;
  margin-bottom: 40px;
}

.page-game-reviews-new-game-analysis__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffd700; /* Gold for hero title */
  font-weight: 900;
  line-height: 1.2;
}

.page-game-reviews-new-game-analysis__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-game-reviews-new-game-analysis__hero-image-wrapper {
  max-width: 100%;
  padding: 0 20px;
}

.page-game-reviews-new-game-analysis__hero-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

/* Buttons */
.page-game-reviews-new-game-analysis__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-game-reviews-new-game-analysis__btn--primary {
  background-color: #ffd700; /* Gold button */
  color: #0056b3; /* Blue text on gold */
}

.page-game-reviews-new-game-analysis__btn--primary:hover {
  background-color: #ffc400; /* Slightly darker gold on hover */
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-new-game-analysis__btn--highlight {
  background-color: #0056b3; /* Blue button */
  color: #ffd700; /* Gold text on blue */
  border: 2px solid #ffd700;
}

.page-game-reviews-new-game-analysis__btn--highlight:hover {
  background-color: #00428d; /* Darker blue on hover */
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-new-game-analysis__btn--secondary {
  background-color: transparent;
  color: #ffd700; /* Gold text */
  border: 2px solid #ffd700;
}

.page-game-reviews-new-game-analysis__btn--secondary:hover {
  background-color: #ffd700;
  color: #0056b3; /* Blue text on gold */
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-game-reviews-new-game-analysis__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

/* Content Blocks */
.page-game-reviews-new-game-analysis__content-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.page-game-reviews-new-game-analysis__content-block p {
  max-width: 900px;
  text-align: justify;
}

.page-game-reviews-new-game-analysis__list {
  list-style: disc inside;
  max-width: 900px;
  margin: 20px auto;
  padding-left: 20px;
  font-size: 1.1em;
}

.page-game-reviews-new-game-analysis__list li {
  margin-bottom: 10px;
}

.page-game-reviews-new-game-analysis__image--inline {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Grid for Aspects */
.page-game-reviews-new-game-analysis__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-game-reviews-new-game-analysis__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid #0056b3;
}

.page-game-reviews-new-game-analysis__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-new-game-analysis__grid-item-title {
  font-size: 1.5em;
  color: #0056b3;
  margin-bottom: 15px;
  font-weight: 700;
}

.page-game-reviews-new-game-analysis__grid-item p {
  font-size: 1em;
  color: #555;
  text-align: justify;
}

/* Game Review Cards */
.page-game-reviews-new-game-analysis__game-review-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  border-left: 8px solid #ffd700;
}

.page-game-reviews-new-game-analysis__game-review-title {
  font-size: 2em;
  color: #0056b3;
  padding: 25px 30px;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
  background-color: #f0f8ff; /* Light blue background for title */
}

.page-game-reviews-new-game-analysis__game-review-content {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  gap: 30px;
}

.page-game-reviews-new-game-analysis__game-review-image {
  flex: 1 1 350px;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-new-game-analysis__game-review-details {
  flex: 2 1 450px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-game-reviews-new-game-analysis__game-review-details p {
  margin: 0;
  text-align: justify;
}

.page-game-reviews-new-game-analysis__game-review-details .page-game-reviews-new-game-analysis__btn {
  align-self: flex-start;
  margin-top: 15px;
}

/* CTA Section */
.page-game-reviews-new-game-analysis__cta-content {
  text-align: center;
}

.page-game-reviews-new-game-analysis__cta-title {
  font-size: 2.8em;
  margin-bottom: 40px;
  font-weight: 800;
}

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

.page-game-reviews-new-game-analysis__cta-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.page-game-reviews-new-game-analysis__cta-item-title {
  font-size: 1.8em;
  color: #ffd700;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-game-reviews-new-game-analysis__cta-item p {
  color: #e0e0e0;
  text-align: center;
  flex-grow: 1;
}

.page-game-reviews-new-game-analysis__cta-item-image {
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
}

.page-game-reviews-new-game-analysis__final-cta {
  background: linear-gradient(90deg, #0056b3, #ffd700);
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.page-game-reviews-new-game-analysis__final-cta-title {
  font-size: 3em;
  margin-bottom: 25px;
  color: #fff;
  font-weight: 900;
}

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

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews-new-game-analysis__hero-title {
    font-size: 2.8em;
  }

  .page-game-reviews-new-game-analysis__section-title {
    font-size: 2em;
  }

  .page-game-reviews-new-game-analysis__game-review-content {
    flex-direction: column;
  }

  .page-game-reviews-new-game-analysis__game-review-image {
    flex: none;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-new-game-analysis__hero {
    padding: 60px 0;
  }

  .page-game-reviews-new-game-analysis__hero-title {
    font-size: 2.2em;
  }

  .page-game-reviews-new-game-analysis__hero-description {
    font-size: 1.1em;
  }

  .page-game-reviews-new-game-analysis__section {
    padding: 40px 0;
  }

  .page-game-reviews-new-game-analysis__section-title {
    font-size: 1.8em;
  }

  .page-game-reviews-new-game-analysis__grid,
  .page-game-reviews-new-game-analysis__cta-grid {
    grid-template-columns: 1fr;
  }

  .page-game-reviews-new-game-analysis__final-cta-title {
    font-size: 2.5em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-new-game-analysis__hero-title {
    font-size: 1.8em;
  }

  .page-game-reviews-new-game-analysis__hero-description {
    font-size: 1em;
  }

  .page-game-reviews-new-game-analysis__section-title {
    font-size: 1.5em;
  }

  .page-game-reviews-new-game-analysis__btn {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-game-reviews-new-game-analysis__final-cta-title {
    font-size: 2em;
  }
}