.page-blog-how-to-choose-hello88-games-for-beginners {
  font-family: Arial, sans-serif;
  color: #1F2D3D;
  background-color: #F4F7FB;
}

.page-blog-how-to-choose-hello88-games-for-beginners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-how-to-choose-hello88-games-for-beginners__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 40px;
  background-color: #F4F7FB;
  padding-top: 10px; /* Small top padding for the first section */
}

.page-blog-how-to-choose-hello88-games-for-beginners__hero-image-wrapper {
  width: 100%;
  max-width: 1920px; /* Ensures image doesn't stretch beyond common monitor width */
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-blog-how-to-choose-hello88-games-for-beginners__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-blog-how-to-choose-hello88-games-for-beginners__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-blog-how-to-choose-hello88-games-for-beginners__main-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.page-blog-how-to-choose-hello88-games-for-beginners__intro-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-hello88-games-for-beginners__cta-button {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(47, 107, 255, 0.3);
}

.page-blog-how-to-choose-hello88-games-for-beginners__cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(47, 107, 255, 0.4);
}

.page-blog-how-to-choose-hello88-games-for-beginners__content-section {
  padding: 40px 0;
}

.page-blog-how-to-choose-hello88-games-for-beginners__section-title {
  font-size: 2rem;
  color: #2F6BFF;
  margin-bottom: 25px;
  font-weight: 700;
  border-bottom: 2px solid #D6E2FF;
  padding-bottom: 10px;
}

.page-blog-how-to-choose-hello88-games-for-beginners__paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-blog-how-to-choose-hello88-games-for-beginners__game-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.page-blog-how-to-choose-hello88-games-for-beginners__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-how-to-choose-hello88-games-for-beginners__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-choose-hello88-games-for-beginners__game-image {
  width: 100%;
  height: 200px; /* Minimum 200px height for content images */
  object-fit: cover;
  display: block;
}

.page-blog-how-to-choose-hello88-games-for-beginners__game-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #2F6BFF;
  margin: 15px 15px 10px;
}

.page-blog-how-to-choose-hello88-games-for-beginners__game-card-title a {
  color: #2F6BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-how-to-choose-hello88-games-for-beginners__game-card-title a:hover {
  color: #6FA3FF;
}

.page-blog-how-to-choose-hello88-games-for-beginners__game-card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #1F2D3D;
  padding: 0 15px 15px;
  flex-grow: 1;
}

.page-blog-how-to-choose-hello88-games-for-beginners__list,
.page-blog-how-to-choose-hello88-games-for-beginners__ordered-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-blog-how-to-choose-hello88-games-for-beginners__list-item {
  background-color: #FFFFFF;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #2F6BFF;
}

.page-blog-how-to-choose-hello88-games-for-beginners__ordered-list .page-blog-how-to-choose-hello88-games-for-beginners__list-item {
  counter-increment: list-counter;
  position: relative;
  padding-left: 45px;
  border-left: none;
}

.page-blog-how-to-choose-hello88-games-for-beginners__ordered-list .page-blog-how-to-choose-hello88-games-for-beginners__list-item::before {
  content: counter(list-counter);
  position: absolute;
  left: 15px;
  top: 20px;
  background-color: #2F6BFF;
  color: #FFFFFF;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9rem;
}

.page-blog-how-to-choose-hello88-games-for-beginners__list-item-title {
  font-size: 1.15rem;
  color: #2F6BFF;
  margin-top: 0;
  margin-bottom: 8px;
}

.page-blog-how-to-choose-hello88-games-for-beginners__list-item p {
  font-size: 1rem;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 0;
}

.page-blog-how-to-choose-hello88-games-for-beginners__cta-bottom {
  text-align: center;
  margin-top: 50px;
  padding: 30px;
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.page-blog-how-to-choose-hello88-games-for-beginners__cta-bottom p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 20px;
}

.page-blog-how-to-choose-hello88-games-for-beginners__related-posts {
  margin-top: 60px;
}

.page-blog-how-to-choose-hello88-games-for-beginners__post-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-blog-how-to-choose-hello88-games-for-beginners__post-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-blog-how-to-choose-hello88-games-for-beginners__post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.page-blog-how-to-choose-hello88-games-for-beginners__post-card-image {
  width: 100%;
  height: 200px; /* Minimum 200px height for content images */
  object-fit: cover;
  display: block;
}

.page-blog-how-to-choose-hello88-games-for-beginners__post-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2F6BFF;
  margin: 15px 15px 8px;
  flex-grow: 1;
}

.page-blog-how-to-choose-hello88-games-for-beginners__post-card-title a {
  color: #2F6BFF;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-blog-how-to-choose-hello88-games-for-beginners__post-card-title a:hover {
  color: #6FA3FF;
}

.page-blog-how-to-choose-hello88-games-for-beginners__post-card-date {
  font-size: 0.85rem;
  color: #1F2D3D;
  padding: 0 15px 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-blog-how-to-choose-hello88-games-for-beginners__hero-content {
    padding: 0 15px;
  }

  .page-blog-how-to-choose-hello88-games-for-beginners__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-blog-how-to-choose-hello88-games-for-beginners__intro-text {
    font-size: 1rem;
  }

  .page-blog-how-to-choose-hello88-games-for-beginners__section-title {
    font-size: 1.7rem;
  }

  .page-blog-how-to-choose-hello88-games-for-beginners__paragraph,
  .page-blog-how-to-choose-hello88-games-for-beginners__game-card-description,
  .page-blog-how-to-choose-hello88-games-for-beginners__list-item p {
    font-size: 0.95rem;
  }

  .page-blog-how-to-choose-hello88-games-for-beginners__game-types,
  .page-blog-how-to-choose-hello88-games-for-beginners__post-cards {
    grid-template-columns: 1fr;
  }

  .page-blog-how-to-choose-hello88-games-for-beginners__game-image,
  .page-blog-how-to-choose-hello88-games-for-beginners__post-card-image {
    max-width: 100%;
    height: auto;
  }
  
  .page-blog-how-to-choose-hello88-games-for-beginners__list-item {
    padding: 15px;
  }

  .page-blog-how-to-choose-hello88-games-for-beginners__ordered-list .page-blog-how-to-choose-hello88-games-for-beginners__list-item {
    padding-left: 40px;
  }

  .page-blog-how-to-choose-hello88-games-for-beginners__ordered-list .page-blog-how-to-choose-hello88-games-for-beginners__list-item::before {
    left: 10px;
    top: 15px;
    width: 22px;
    height: 22px;
    font-size: 0.85rem;
  }

  .page-blog-how-to-choose-hello88-games-for-beginners__cta-bottom p {
    font-size: 1rem;
  }
}