.page-blog-huong-dan-choi-st8 {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-blog-huong-dan-choi-st8__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-blog-huong-dan-choi-st8__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  margin-bottom: 40px;
  text-align: center;
  overflow: hidden; /* Ensure hero image doesn't overflow */
}

.page-blog-huong-dan-choi-st8__hero-image {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.page-blog-huong-dan-choi-st8__hero-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover the area */
  display: block;
}

.page-blog-huong-dan-choi-st8__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin: -100px auto 0; /* Pull content up slightly over image */
  background: rgba(17, 39, 27, 0.8); /* Card BG with transparency */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-huong-dan-choi-st8__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive font size */
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

.page-blog-huong-dan-choi-st8__lead-text {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-huong-dan-choi-st8__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-blog-huong-dan-choi-st8__section--intro,
.page-blog-huong-dan-choi-st8__section--why-st8,
.page-blog-huong-dan-choi-st8__section--guide,
.page-blog-huong-dan-choi-st8__section--tips,
.page-blog-huong-dan-choi-st8__section--games,
.page-blog-huong-dan-choi-st8__section--promotions,
.page-blog-huong-dan-choi-st8__section--faq,
.page-blog-huong-dan-choi-st8__section--conclusion {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  margin: 40px auto;
  padding: 40px 20px;
  max-width: 1200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-blog-huong-dan-choi-st8__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-blog-huong-dan-choi-st8__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #2AD16F, #13994A); /* Button gradient */
  border-radius: 2px;
}

.page-blog-huong-dan-choi-st8__text-block {
  font-size: 1.05em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
  text-align: justify;
}

.page-blog-huong-dan-choi-st8__feature-grid,
.page-blog-huong-dan-choi-st8__game-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-blog-huong-dan-choi-st8__feature-card,
.page-blog-huong-dan-choi-st8__game-category-card {
  background: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-blog-huong-dan-choi-st8__feature-card:hover,
.page-blog-huong-dan-choi-st8__game-category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-blog-huong-dan-choi-st8__feature-card img,
.page-blog-huong-dan-choi-st8__game-category-card img {
  width: 100%;
  height: auto;
  max-height: 200px; /* Limit image height in cards */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-blog-huong-dan-choi-st8__card-title {
  font-size: 1.4em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-blog-huong-dan-choi-st8__game-category-card .page-blog-huong-dan-choi-st8__card-title {
  text-decoration: none;
  color: #F2FFF6;
}

.page-blog-huong-dan-choi-st8__game-category-card .page-blog-huong-dan-choi-st8__card-title:hover {
  color: #57E38D; /* Glow */
}

.page-blog-huong-dan-choi-st8__card-text {
  font-size: 0.95em;
  color: #A7D9B8; /* Text Secondary */
  flex-grow: 1; /* Allow text to take available space */
}

.page-blog-huong-dan-choi-st8__guide-steps {
  margin-top: 40px;
}

.page-blog-huong-dan-choi-st8__guide-item {
  background: #0A4B2C; /* Deep Green */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-huong-dan-choi-st8__guide-title {
  font-size: 1.6em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-blog-huong-dan-choi-st8__guide-item p {
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 15px;
}

.page-blog-huong-dan-choi-st8__guide-item ol,
.page-blog-huong-dan-choi-st8__guide-item ul {
  color: #A7D9B8; /* Text Secondary */
  margin-left: 25px;
  margin-bottom: 20px;
  list-style-type: decimal;
}
.page-blog-huong-dan-choi-st8__guide-item ul {
  list-style-type: disc;
}

.page-blog-huong-dan-choi-st8__guide-item ol li,
.page-blog-huong-dan-choi-st8__guide-item ul li {
  margin-bottom: 10px;
}

.page-blog-huong-dan-choi-st8__guide-item strong {
  color: #F2FFF6; /* Text Main */
}

.page-blog-huong-dan-choi-st8__image-wrapper {
  margin: 25px 0;
  text-align: center;
}

.page-blog-huong-dan-choi-st8__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

.page-blog-huong-dan-choi-st8__btn-primary,
.page-blog-huong-dan-choi-st8__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%; /* Ensure button doesn't overflow */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}