.page-game-reviews-latest-games {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f4f7f6; /* Light background for readability */
}

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

.page-game-reviews-latest-games__hero-section {
  background: linear-gradient(135deg, #003366, #1a4d80); /* Dark blue gradient */
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-game-reviews-latest-games__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFCC00; /* Accent color for title */
  position: relative;
  z-index: 1;
}

.page-game-reviews-latest-games__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.page-game-reviews-latest-games__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.page-game-reviews-latest-games__btn--primary {
  background-color: #FFCC00; /* Accent color */
  color: #003366; /* Dark text for contrast */
  border: 2px solid #FFCC00;
}

.page-game-reviews-latest-games__btn--primary:hover {
  background-color: #e6b800;
  border-color: #e6b800;
}

.page-game-reviews-latest-games__btn--secondary {
  background-color: #003366; /* Primary color */
  color: #FFCC00; /* Accent text for contrast */
  border: 2px solid #003366;
}

.page-game-reviews-latest-games__btn--secondary:hover {
  background-color: #002244;
  border-color: #002244;
}

.page-game-reviews-latest-games__btn--ghost {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
  margin-left: 20px;
}

.page-game-reviews-latest-games__btn--ghost:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-game-reviews-latest-games__intro-section,
.page-game-reviews-latest-games__review-grid,
.page-game-reviews-latest-games__features-section,
.page-game-reviews-latest-games__guide-section,
.page-game-reviews-latest-games__cta-section {
  padding: 60px 0;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.page-game-reviews-latest-games__section-title {
  font-size: 2.5em;
  color: #003366; /* Primary color */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-game-reviews-latest-games__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Accent underline */
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-game-reviews-latest-games__text-content {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
  color: #555;
}

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

.page-game-reviews-latest-games__review-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-game-reviews-latest-games__review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-game-reviews-latest-games__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-game-reviews-latest-games__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-game-reviews-latest-games__card-title {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #003366;
}

.page-game-reviews-latest-games__card-title a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews-latest-games__card-title a:hover {
  color: #FFCC00;
}

.page-game-reviews-latest-games__card-excerpt {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-game-reviews-latest-games__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-game-reviews-latest-games__feature-item {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-game-reviews-latest-games__feature-item:hover {
  transform: translateY(-3px);
}

.page-game-reviews-latest-games__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.1));
}

.page-game-reviews-latest-games__feature-title {
  font-size: 1.3em;
  color: #003366;
  margin-bottom: 10px;
}

.page-game-reviews-latest-games__feature-description {
  font-size: 0.95em;
  color: #777;
}

.page-game-reviews-latest-games__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-game-reviews-latest-games__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-counter;
}

.page-game-reviews-latest-games__guide-list li {
  background-color: #fdfdfd;
  margin-bottom: 20px;
  padding: 25px;
  border-left: 5px solid #003366; /* Primary color accent */
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  position: relative;
  padding-left: 70px; /* Space for counter */
}

.page-game-reviews-latest-games__guide-list li::before {
  counter-increment: guide-counter;
  content: "0" counter(guide-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  font-size: 1.8em;
  font-weight: bold;
  color: #FFCC00; /* Accent color for numbers */
  line-height: 1;
}

.page-game-reviews-latest-games__guide-list h3 {
  font-size: 1.4em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-game-reviews-latest-games__guide-list h3 a {
  color: #003366;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-game-reviews-latest-games__guide-list h3 a:hover {
  color: #FFCC00;
}

.page-game-reviews-latest-games__guide-list p {
  color: #666;
  margin-bottom: 0;
}

.page-game-reviews-latest-games__cta-section {
  text-align: center;
  background-color: #003366; /* Primary color background */
  color: #fff;
  padding: 80px 0;
  border-radius: 0;
  box-shadow: none;
}

.page-game-reviews-latest-games__cta-section .page-game-reviews-latest-games__section-title {
  color: #FFCC00; /* Accent color for title */
}

.page-game-reviews-latest-games__cta-section .page-game-reviews-latest-games__section-title::after {
  background-color: #fff;
}

.page-game-reviews-latest-games__cta-section .page-game-reviews-latest-games__text-content {
  color: #e0e0e0;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-game-reviews-latest-games__hero-title {
    font-size: 2.8em;
  }
  .page-game-reviews-latest-games__hero-subtitle {
    font-size: 1.3em;
  }
  .page-game-reviews-latest-games__section-title {
    font-size: 2em;
  }
}

@media (max-width: 768px) {
  .page-game-reviews-latest-games__hero-section,
  .page-game-reviews-latest-games__intro-section,
  .page-game-reviews-latest-games__review-grid,
  .page-game-reviews-latest-games__features-section,
  .page-game-reviews-latest-games__guide-section,
  .page-game-reviews-latest-games__cta-section {
    padding: 40px 0;
  }
  .page-game-reviews-latest-games__hero-title {
    font-size: 2.2em;
  }
  .page-game-reviews-latest-games__hero-subtitle {
    font-size: 1.1em;
  }
  .page-game-reviews-latest-games__btn {
    padding: 12px 25px;
    font-size: 0.9em;
  }
  .page-game-reviews-latest-games__btn--ghost {
    margin-left: 10px;
    margin-top: 10px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .page-game-reviews-latest-games__text-content {
    font-size: 1em;
  }
  .page-game-reviews-latest-games__card-title {
    font-size: 1.3em;
  }
  .page-game-reviews-latest-games__feature-item {
    padding: 20px;
  }
  .page-game-reviews-latest-games__feature-icon {
    width: 50px;
    height: 50px;
  }
  .page-game-reviews-latest-games__guide-list li {
    padding-left: 60px;
  }
  .page-game-reviews-latest-games__guide-list li::before {
    left: 15px;
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .page-game-reviews-latest-games__hero-title {
    font-size: 1.8em;
  }
  .page-game-reviews-latest-games__hero-subtitle {
    font-size: 1em;
  }
  .page-game-reviews-latest-games__btn {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
  .page-game-reviews-latest-games__btn--ghost {
    margin-left: 0;
  }
  .page-game-reviews-latest-games__section-title {
    font-size: 1.8em;
  }
  .page-game-reviews-latest-games__card-image {
    height: 150px;
  }
  .page-game-reviews-latest-games__card-content {
    padding: 15px;
  }
  .page-game-reviews-latest-games__feature-title {
    font-size: 1.1em;
  }
}