.page-blog-how-to-choose-best-games {
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-how-to-choose-best-games__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #F2C14E 0%, #FFD36B 100%); /* Using main/accent colors for hero background */
}

.page-blog-how-to-choose-best-games__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Adjust as needed for hero image */
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-best-games__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-choose-best-games__hero-content {
  padding: 20px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
}

.page-blog-how-to-choose-best-games__main-title {
  color: #111111;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-blog-how-to-choose-best-games__description {
  color: #3A2A12;
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-choose-best-games__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
  min-width: 200px;
  min-height: 50px;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-blog-how-to-choose-best-games__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-blog-how-to-choose-best-games__content-area {
  padding: 40px 0;
}

.page-blog-how-to-choose-best-games__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-blog-how-to-choose-best-games__article-header {
  text-align: right;
  margin-bottom: 30px;
  color: #FFD36B;
  font-size: 0.9em;
}

.page-blog-how-to-choose-best-games__section {
  background-color: #111111;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

.page-blog-how-to-choose-best-games__section-title {
  color: #F2C14E;
  font-size: 2em;
  margin-bottom: 20px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid #3A2A12;
  padding-bottom: 10px;
}

.page-blog-how-to-choose-best-games__section-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
  object-fit: cover;
  min-width: 200px;
  min-height: 200px;
  display: block;
}

.page-blog-how-to-choose-best-games__text {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #FFF6D6;
}

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

.page-blog-how-to-choose-best-games__list-item {
  background-color: #1a1a1a;
  border-left: 4px solid #F2C14E;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-choose-best-games__list-title {
  color: #FFD36B;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.page-blog-how-to-choose-best-games__list-text {
  font-size: 0.95em;
  line-height: 1.6;
  color: #FFF6D6;
}

.page-blog-how-to-choose-best-games__table-of-contents {
  background-color: #111111;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

.page-blog-how-to-choose-best-games__toc-list {
  list-style: none;
  padding: 0;
}

.page-blog-how-to-choose-best-games__toc-list li {
  margin-bottom: 10px;
}

.page-blog-how-to-choose-best-games__toc-link {
  color: #FFD36B;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.page-blog-how-to-choose-best-games__toc-link:hover {
  color: #F2C14E;
  text-decoration: underline;
}

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

.page-blog-how-to-choose-best-games__game-card {
  background-color: #1a1a1a;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 200px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-blog-how-to-choose-best-games__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 211, 107, 0.2);
}

.page-blog-how-to-choose-best-games__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px;
  min-height: 200px;
}

.page-blog-how-to-choose-best-games__game-title {
  font-size: 1.4em;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-blog-how-to-choose-best-games__game-title a {
  color: #F2C14E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-how-to-choose-best-games__game-title a:hover {
  color: #FFD36B;
  text-decoration: underline;
}

.page-blog-how-to-choose-best-games__game-description {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-blog-how-to-choose-best-games__game-button {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
  border: none;
  cursor: pointer;
  min-width: 100px;
  min-height: 40px;
  font-size: 0.95em;
}

.page-blog-how-to-choose-best-games__game-button:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

.page-blog-how-to-choose-best-games__promo-button {
  display: inline-block;
  padding: 12px 25px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
  min-width: 150px;
  min-height: 45px;
  font-size: 1em;
  border: none;
  cursor: pointer;
  text-align: center;
  margin-top: 20px;
}

.page-blog-how-to-choose-best-games__promo-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 18px rgba(255, 211, 107, 0.5);
}

.page-blog-how-to-choose-best-games__faq-item {
  background-color: #1a1a1a;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-blog-how-to-choose-best-games__faq-question {
  color: #F2C14E;
  font-size: 1.2em;
  padding: 18px 25px;
  cursor: pointer;
  position: relative;
  margin: 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color 0.3s ease;
}

.page-blog-how-to-choose-best-games__faq-question::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD36B;
  transition: transform 0.3s ease;
}

.page-blog-how-to-choose-best-games__faq-question.active::after {
  content: '-';
  transform: rotate(0deg);
}

.page-blog-how-to-choose-best-games__faq-question:hover {
  background-color: #222222;
}

.page-blog-how-to-choose-best-games__faq-answer {
  background-color: #222222;
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-blog-how-to-choose-best-games__faq-answer p {
  padding-bottom: 20px;
  color: #FFF6D6;
  font-size: 1em;
  line-height: 1.6;
}

.page-blog-how-to-choose-best-games__faq-question.active + .page-blog-how-to-choose-best-games__faq-answer {
  max-height: 200px; /* Adjust as needed for content */
  padding-top: 15px;
}

.page-blog-how-to-choose-best-games__section--cta {
  text-align: center;
}

.page-blog-how-to-choose-best-games__cta-button--large {
  padding: 18px 35px;
  font-size: 1.25em;
  margin-top: 30px;
  min-width: 250px;
  min-height: 60px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-how-to-choose-best-games__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

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

  .page-blog-how-to-choose-best-games__hero-content {
    padding: 15px;
  }

  .page-blog-how-to-choose-best-games__content-area {
    padding: 20px 0;
  }

  .page-blog-how-to-choose-best-games__container {
    padding: 0 15px;
  }

  .page-blog-how-to-choose-best-games__section-title {
    font-size: 1.8em;
  }

  .page-blog-how-to-choose-best-games__list-item {
    padding: 15px;
  }

  .page-blog-how-to-choose-best-games__list-title {
    font-size: 1.2em;
  }

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

  .page-blog-how-to-choose-best-games__game-image,
  .page-blog-how-to-choose-best-games__section-image,
  .page-blog-how-to-choose-best-games__hero-image {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-blog-how-to-choose-best-games__cta-button,
  .page-blog-how-to-choose-best-games__cta-button--large,
  .page-blog-how-to-choose-best-games__game-button,
  .page-blog-how-to-choose-best-games__promo-button {
    width: 100%;
    box-sizing: border-box;
    padding-left: 10px;
    padding-right: 10px;
  }
  .page-blog-how-to-choose-best-games__faq-question {
    font-size: 1.1em;
  }
  .page-blog-how-to-choose-best-games__faq-answer p {
    font-size: 0.9em;
  }
}

/* Ensure image contrast for text */
.page-blog-how-to-choose-best-games__hero-content {
  color: #111111; /* Darker text on bright hero background for contrast */
}

.page-blog-how-to-choose-best-games__description {
  color: #3A2A12; /* Darker text on bright hero background for contrast */
}