.page-game-reviews-new-game-analysis {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0A192F; /* Main dark blue background */
  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__container--center {
  text-align: center;
}

.page-game-reviews-new-game-analysis__hero {
  background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%); /* Dark blue gradient */
  padding: 100px 0;
  text-align: center;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.page-game-reviews-new-game-analysis__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract,ocean_pattern]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-game-reviews-new-game-analysis__hero > * {
  position: relative;
  z-index: 1;
}

.page-game-reviews-new-game-analysis__title {
  font-size: 3.5em;
  color: #FFD700; /* Gold for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-weight: bold;
}

.page-game-reviews-new-game-analysis__subtitle {
  font-size: 1.5em;
  color: #C0C0C0;
  margin-bottom: 40px;
}

.page-game-reviews-new-game-analysis__section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-game-reviews-new-game-analysis__section:last-of-type {
  border-bottom: none;
}

.page-game-reviews-new-game-analysis__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold for section titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-game-reviews-new-game-analysis__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-game-reviews-new-game-analysis__text-center {
  text-align: center;
  margin-top: 30px;
}

.page-game-reviews-new-game-analysis__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 30px auto;
  display: block;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-game-reviews-new-game-analysis__image:hover {
  transform: translateY(-5px);
}

.page-game-reviews-new-game-analysis__image--small {
  max-width: 80%;
  margin: 20px auto 15px auto;
  display: block;
  border-radius: 8px;
}

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

.page-game-reviews-new-game-analysis__grid-item {
  background-color: #1A2B40; /* Slightly lighter dark blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-game-reviews-new-game-analysis__grid-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-game-reviews-new-game-analysis__grid-item h3 {
  color: #FFD700; /* Gold for sub-titles in grid items */
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-game-reviews-new-game-analysis__list,
.page-game-reviews-new-game-analysis__list--benefits {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.page-game-reviews-new-game-analysis__list li,
.page-game-reviews-new-game-analysis__list--benefits li {
  background-color: #1A2B40;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.page-game-reviews-new-game-analysis__list li::before,
.page-game-reviews-new-game-analysis__list--benefits li::before {
  content: '✔';
  color: #FFD700;
  font-weight: bold;
  margin-right: 15px;
  font-size: 1.2em;
}

.page-game-reviews-new-game-analysis__list--benefits li {
  border-left: 5px solid #00BFFF; /* A different color for benefits list */
}

.page-game-reviews-new-game-analysis__list--benefits li::before {
  color: #00BFFF;
  content: '★';
}

.page-game-reviews-new-game-analysis__btn-group,
.page-game-reviews-new-game-analysis__cta-group {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

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

.page-game-reviews-new-game-analysis__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #0A192F; /* Dark blue text */
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-game-reviews-new-game-analysis__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews-new-game-analysis__btn--secondary {
  background-color: #0A192F; /* Dark blue button */
  color: #FFD700; /* Gold text */
  border: 2px solid #FFD700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-game-reviews-new-game-analysis__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

.page-game-reviews-new-game-analysis__btn--tertiary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-game-reviews-new-game-analysis__btn--tertiary:hover {
  background-color: #FFD700;
  color: #0A192F;
  transform: translateY(-3px);
}

.page-game-reviews-new-game-analysis__link-in-text {
  color: #FFD700; /* Gold for inline links */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-game-reviews-new-game-analysis__link-in-text:hover {
  color: #e6c200;
  text-decoration: underline;
}

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

  .page-game-reviews-new-game-analysis__subtitle {
    font-size: 1.2em;
  }

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

  .page-game-reviews-new-game-analysis__grid-item h3 {
    font-size: 1.5em;
  }
}

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

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

  .page-game-reviews-new-game-analysis__subtitle {
    font-size: 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 {
    grid-template-columns: 1fr;
  }

  .page-game-reviews-new-game-analysis__grid-item {
    padding: 20px;
  }

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

  .page-game-reviews-new-game-analysis__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

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

  .page-game-reviews-new-game-analysis__subtitle {
    font-size: 0.9em;
  }

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

  .page-game-reviews-new-game-analysis__list li,
  .page-game-reviews-new-game-analysis__list--benefits li {
    padding: 15px;
    font-size: 0.9em;
  }

  .page-game-reviews-new-game-analysis__btn {
    width: 90%;
  }
}