/* style/blog-how-to-choose-ah88-best-games-beginner-guide.css */
:root {
  --ah88-primary-color: #F2C14E;
  --ah88-secondary-color: #FFD36B;
  --ah88-button-gradient: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  --ah88-card-bg: #111111;
  --ah88-background: #0A0A0A;
  --ah88-text-main: #FFF6D6;
  --ah88-border-color: #3A2A12;
  --ah88-glow-color: #FFD36B;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--ah88-text-main); /* Light text on dark body background */
  background-color: var(--ah88-background);
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--ah88-primary-color);
  letter-spacing: 0.05em;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--ah88-text-main);
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__btn-primary {
  display: inline-block;
  background: var(--ah88-button-gradient);
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__content-section {
  padding: 60px 0;
  background-color: var(--ah88-background);
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ah88-primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--ah88-primary-color);
  border-radius: 2px;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__text-block {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: var(--ah88-text-main);
  text-align: justify;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__card {
  background-color: var(--ah88-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--ah88-border-color);
  color: var(--ah88-text-main);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__card-title {
  font-size: 1.8rem;
  color: var(--ah88-secondary-color);
  margin-bottom: 15px;
  font-weight: 600;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__card-text {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--ah88-text-main);
  text-align: justify;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__game-categories {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 40px;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__category-item {
  background-color: var(--ah88-card-bg);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--ah88-border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__category-title {
  font-size: 2rem;
  color: var(--ah88-primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__category-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__category-description {
  font-size: 1.05rem;
  color: var(--ah88-text-main);
  text-align: justify;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__list-item {
  background-color: var(--ah88-card-bg);
  border-left: 5px solid var(--ah88-primary-color);
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05rem;
  color: var(--ah88-text-main);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--ah88-primary-color);
  border: 2px solid var(--ah88-primary-color);
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-top: 30px;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__btn-secondary:hover {
  background: var(--ah88-primary-color);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  margin: 30px auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__btn-text-link {
  color: var(--ah88-primary-color);
  text-decoration: underline;
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__btn-text-link:hover {
  color: var(--ah88-secondary-color);
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__text-link {
  color: var(--ah88-primary-color);
  text-decoration: underline;
  font-weight: bold;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__text-link:hover {
  color: var(--ah88-secondary-color);
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__faq-list {
  margin-top: 40px;
  margin-bottom: 60px;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__faq-item {
  background-color: var(--ah88-card-bg);
  border: 1px solid var(--ah88-border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #1a1a1a;
  color: var(--ah88-secondary-color);
  font-weight: bold;
  font-size: 1.15rem;
  transition: background-color 0.3s ease;
}

.page-blog-how-to-choose-ah88-best-games-beginner-guide__faq-question:hover {
  background-color: #2a2a2a;
}