.page-blog-game-reviews {
  color: #ffffff; /* Light text on dark body background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
}

.page-blog-game-reviews__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #1A1A1A;
  overflow: hidden;
  text-align: center;
}

.page-blog-game-reviews__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-blog-game-reviews__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  display: block;
}

.page-blog-game-reviews__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
}

.page-blog-game-reviews__hero-title {
  font-size: 3.2em;
  color: #FFD700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-game-reviews__hero-description {
  font-size: 1.3em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-blog-game-reviews__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-blog-game-reviews__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
}

.page-blog-game-reviews__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  background-color: #1A1A1A;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-blog-game-reviews__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 20px;
}

.page-blog-game-reviews__paragraph {
  font-size: 1.1em;
  color: #ffffff;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-blog-game-reviews__review-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-game-reviews__review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-game-reviews__review-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-blog-game-reviews__card-title {
  font-size: 1.6em;
  color: #FFD700;
  padding: 20px 20px 10px;
}

.page-blog-game-reviews__card-text {
  font-size: 1em;
  color: #f0f0f0;
  padding: 0 20px 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-blog-game-reviews__card-button {
  display: block;
  background-color: #FFD700;
  color: #1A1A1A;
  padding: 12px 20px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
  transition: background-color 0.3s ease;
}

.page-blog-game-reviews__card-button:hover {
  background-color: #e6c200;
}

.page-blog-game-reviews__additional-reviews {
  margin-top: 60px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.page-blog-game-reviews__review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.page-blog-game-reviews__list-item {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.page-blog-game-reviews__list-item:hover {
  transform: translateX(5px);
}

.page-blog-game-reviews__list-image {
  width: 200px;
  height: 150px;
  object-fit: cover;
  flex-shrink: 0;
}

.page-blog-game-reviews__list-content {
  padding: 15px 20px;
}

.page-blog-game-reviews__list-title {
  font-size: 1.4em;
  margin-bottom: 5px;
}

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

.page-blog-game-reviews__list-title a:hover {
  color: #e6c200;
  text-decoration: underline;
}

.page-blog-game-reviews__list-text {
  font-size: 0.95em;
  color: #cccccc;
}

.page-blog-game-reviews__cta-section {
  text-align: center;
  background-color: #1A1A1A;
  padding: 60px 20px;
  margin-top: 60px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-blog-game-reviews__cta-title {
  font-size: 2.8em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-blog-game-reviews__cta-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-game-reviews__cta-button--large {
  font-size: 1.3em;
  padding: 18px 40px;
}

.page-blog-game-reviews__cta-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-game-reviews__conclusion-section {
  margin-top: 60px;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-game-reviews__hero-title {
    font-size: 2.8em;
  }

  .page-blog-game-reviews__hero-description {
    font-size: 1.1em;
  }

  .page-blog-game-reviews__section-title {
    font-size: 2em;
  }

  .page-blog-game-reviews__cta-title {
    font-size: 2.2em;
  }

  .page-blog-game-reviews__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-blog-game-reviews__hero-section {
    padding: 40px 15px;
  }

  .page-blog-game-reviews__hero-title {
    font-size: 2.2em;
  }

  .page-blog-game-reviews__hero-description {
    font-size: 1em;
  }

  .page-blog-game-reviews__content-area {
    padding: 30px 15px;
  }

  .page-blog-game-reviews__review-grid {
    grid-template-columns: 1fr;
  }

  .page-blog-game-reviews__list-item {
    flex-direction: column;
    text-align: center;
  }

  .page-blog-game-reviews__list-image {
    width: 100%;
    height: 200px;
  }

  .page-blog-game-reviews__list-content {
    padding: 15px;
  }

  .page-blog-game-reviews__section-title {
    font-size: 1.8em;
  }

  .page-blog-game-reviews__cta-title {
    font-size: 1.8em;
  }

  .page-blog-game-reviews__cta-button--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }

  /* Ensure content area images do not overflow */
  .page-blog-game-reviews img {
    max-width: 100%;
    height: auto;
  }
}

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

  .page-blog-game-reviews__hero-description {
    font-size: 0.9em;
  }

  .page-blog-game-reviews__card-title {
    font-size: 1.4em;
  }

  .page-blog-game-reviews__cta-title {
    font-size: 1.5em;
  }

  .page-blog-game-reviews__cta-button {
    width: 100%;
    box-sizing: border-box;
  }
}