.page-blog-how-to-choose-best-games {
  padding-top: 10px; /* Small top padding to avoid direct header overlap, body handles main offset */
  background-color: #08160F;
  color: #F2FFF6;
}

.page-blog-how-to-choose-best-games__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1390px;
  margin: 0 auto;
  padding: 0 15px 40px;
}

.page-blog-how-to-choose-best-games__hero-banner {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-best-games__hero-banner img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/5; /* Approx 1920x600 */
  object-fit: cover;
  object-position: center;
}

.page-blog-how-to-choose-best-games__hero-content {
  max-width: 900px;
}

.page-blog-how-to-choose-best-games__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F2FFF6;
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 4.5vw, 3rem); /* Use clamp for responsive H1 */
}

.page-blog-how-to-choose-best-games__description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #A7D9B8;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-best-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #F2FFF6;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

.page-blog-how-to-choose-best-games__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 199, 104, 0.6);
}

.page-blog-how-to-choose-best-games__content-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 15px;
}

.page-blog-how-to-choose-best-games__section-padding {
  padding: 60px 15px;
}

.page-blog-how-to-choose-best-games__bg-card {
  background-color: #11271B;
  border-radius: 12px;
  margin-bottom: 40px;
}

.page-blog-how-to-choose-best-games__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #F2FFF6;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

.page-blog-how-to-choose-best-games__article-body p {
  font-size: 1rem;
  line-height: 1.7;
  color: #A7D9B8;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-best-games__article-body strong {
  color: #F2FFF6;
}

.page-blog-how-to-choose-best-games__list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-best-games__list-item {
  background-color: #0A4B2C;
  border-left: 4px solid #2AD16F;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 1rem;
  color: #F2FFF6;
  line-height: 1.6;
}

.page-blog-how-to-choose-best-games__list-item:last-child {
  margin-bottom: 0;
}

.page-blog-how-to-choose-best-games__image-container {
  margin: 30px auto;
  text-align: center;
  max-width: 800px; /* Constrain content images */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-best-games__image-container--full-width {
  max-width: 100%; /* For wider content images if needed */
}

.page-blog-how-to-choose-best-games__image-container img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Ensure no image filters */
  min-width: 200px; /* Minimum size requirement */
  min-height: 200px; /* Minimum size requirement */
}

.page-blog-how-to-choose-best-games__image-caption {
  font-size: 0.875rem;
  color: #A7D9B8;
  padding: 10px;
  background-color: #0A4B2C;
}

.page-blog-how-to-choose-best-games__game-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-choose-best-games__category-card {
  background-color: #0A4B2C;
  border: 1px solid #2E7A4E;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-how-to-choose-best-games__category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(34, 199, 104, 0.3);
}

.page-blog-how-to-choose-best-games__category-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold color for category titles */
  margin-bottom: 15px;
}

.page-blog-how-to-choose-best-games__category-description {
  font-size: 0.95rem;
  color: #A7D9B8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-best-games__category-link {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #22C768;
  color: #F2FFF6;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.2s ease;
}

.page-blog-how-to-choose-best-games__category-link:hover {
  background-color: #11A84E;
}

.page-blog-how-to-choose-best-games__inline-link {
  color: #57E38D; /* Glow color for inline links */
  text-decoration: underline;
  transition: color 0.2s ease;
}

.page-blog-how-to-choose-best-games__inline-link:hover {
  color: #2AD16F;
}

.page-blog-how-to-choose-best-games__faq-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 15px;
}

.page-blog-how-to-choose-best-games__faq-list {
  margin-top: 30px;
}

.page-blog-how-to-choose-best-games__faq-item {
  background-color: #11271B;
  border: 1px solid #2E7A4E;
  border-radius: 8px;
  padding: 20px 25px;
  margin-bottom: 15px;
}

.page-blog-how-to-choose-best-games__faq-item:last-child {
  margin-bottom: 0;
}

.page-blog-how-to-choose-best-games__faq-question {
  font-size: 1.25rem;
  color: #F2FFF6;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-blog-how-to-choose-best-games__faq-answer {
  font-size: 1rem;
  color: #A7D9B8;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-blog-how-to-choose-best-games__hero-banner {
    border-radius: 8px;
  }

  .page-blog-how-to-choose-best-games__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }

  .page-blog-how-to-choose-best-games__description {
    font-size: 1rem;
  }

  .page-blog-how-to-choose-best-games__cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .page-blog-how-to-choose-best-games__section-title {
    font-size: clamp(1.3rem, 5vw, 2rem);
    margin-bottom: 30px;
  }

  .page-blog-how-to-choose-best-games__section-padding {
    padding: 40px 15px;
  }

  .page-blog-how-to-choose-best-games__list-item {
    font-size: 0.95rem;
    padding: 12px 15px;
  }

  .page-blog-how-to-choose-best-games__game-categories {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-choose-best-games__category-card {
    padding: 20px;
  }

  .page-blog-how-to-choose-best-games__category-title {
    font-size: 1.3rem;
  }

  .page-blog-how-to-choose-best-games__category-description {
    font-size: 0.9rem;
  }

  .page-blog-how-to-choose-best-games__faq-question {
    font-size: 1.1rem;
  }

  .page-blog-how-to-choose-best-games__faq-answer {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-best-games__content-section img,
  .page-blog-how-to-choose-best-games__hero-banner img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-blog-how-to-choose-best-games__hero-section {
    padding: 0 10px 30px;
  }

  .page-blog-how-to-choose-best-games__main-title {
    font-size: clamp(1.3rem, 7vw, 2rem);
  }

  .page-blog-how-to-choose-best-games__description {
    font-size: 0.9rem;
  }

  .page-blog-how-to-choose-best-games__cta-button {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .page-blog-how-to-choose-best-games__section-title {
    font-size: clamp(1.2rem, 6vw, 1.8rem);
    margin-bottom: 25px;
  }

  .page-blog-how-to-choose-best-games__section-padding {
    padding: 30px 10px;
  }

  .page-blog-how-to-choose-best-games__article-body p,
  .page-blog-how-to-choose-best-games__list-item,
  .page-blog-how-to-choose-best-games__category-description,
  .page-blog-how-to-choose-best-games__faq-answer {
    font-size: 0.9rem;
  }

  .page-blog-how-to-choose-best-games__image-caption {
    font-size: 0.8rem;
  }

  .page-blog-how-to-choose-best-games__faq-question {
    font-size: 1rem;
  }
}