.page-huong-dan-choi-game-bai {
  font-family: Arial, sans-serif;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  line-height: 1.6;
}

.page-huong-dan-choi-game-bai__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-huong-dan-choi-game-bai__light-bg {
  background-color: #17191F; /* Card BG */
  color: #FFF3E6;
}

.page-huong-dan-choi-game-bai__dark-bg {
  background-color: #0D0E12; /* Background */
  color: #FFF3E6;
}

.page-huong-dan-choi-game-bai__section-title {
  font-size: 2.2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  color: #FF8C1A; /* Primary color for titles */
}

.page-huong-dan-choi-game-bai__section-title--light {
  color: #FFF3E6;
}

.page-huong-dan-choi-game-bai__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-huong-dan-choi-game-bai__text-block--light {
  color: #FFF3E6;
}

/* Hero Section */
.page-huong-dan-choi-game-bai__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #0D0E12;
}

.page-huong-dan-choi-game-bai__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 16px;
  gap: 40px;
  box-sizing: border-box;
}

.page-huong-dan-choi-game-bai__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #FFF3E6;
}

.page-huong-dan-choi-game-bai__main-title {
  font-size: 2.8em;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FF8C1A; /* Primary color */
}

.page-huong-dan-choi-game-bai__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF3E6;
}

.page-huong-dan-choi-game-bai__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-huong-dan-choi-game-bai__btn-primary,
.page-huong-dan-choi-game-bai__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-huong-dan-choi-game-bai__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button gradient */
  color: #ffffff;
  border: 2px solid transparent;
}

.page-huong-dan-choi-game-bai__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.4);
}

.page-huong-dan-choi-game-bai__btn-secondary {
  background-color: transparent;
  color: #FF8C1A; /* Primary color */
  border: 2px solid #FF8C1A; /* Border color */
}

.page-huong-dan-choi-game-bai__btn-secondary:hover {
  background-color: #FF8C1A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.4);
}

.page-huong-dan-choi-game-bai__hero-image {
  flex: 1 1 45%;
  text-align: center;
  min-width: 300px;
}

.page-huong-dan-choi-game-bai__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Guide Section */
.page-huong-dan-choi-game-bai__guide-section {
  padding: 60px 0;
}

.page-huong-dan-choi-game-bai__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-huong-dan-choi-game-bai__step-item {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.page-huong-dan-choi-game-bai__step-item:hover {
  transform: translateY(-5px);
}

.page-huong-dan-choi-game-bai__icon-box-media {
  width: 180px; 
  height: 180px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FF8C1A; /* Border color */
  box-shadow: 0 0 15px rgba(255, 140, 26, 0.6); /* Glow */
}

.page-huong-dan-choi-game-bai__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure it's a circle */
  display: block;
}

.page-huong-dan-choi-game-bai__step-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  color: #FF8C1A;
}

.page-huong-dan-choi-game-bai__step-description {
  font-size: 1em;
  color: #FFF3E6;
}

/* Tips Section */
.page-huong-dan-choi-game-bai__tips-section {
  padding: 60px 0;
  background-color: #17191F; /* Card BG */
}

.page-huong-dan-choi-game-bai__tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-huong-dan-choi-game-bai__tip-card {
  background-color: #0D0E12; /* Background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid #A84F0C; /* Border color */
}

.page-huong-dan-choi-game-bai__tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.4);
}

.page-huong-dan-choi-game-bai__tip-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-huong-dan-choi-game-bai__tip-title {
  font-size: 1.4em;
  font-weight: bold;
  padding: 15px 20px 10px;
  color: #FFA53A; /* Secondary color */
}

.page-huong-dan-choi-game-bai__tip-description {
  font-size: 0.95em;
  padding: 0 20px 20px;
  color: #FFF3E6;
}

/* FAQ Section */
.page-huong-dan-choi-game-bai__faq-section {
  padding: 60px 0;
}

.page-huong-dan-choi-game-bai__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-huong-dan-choi-game-bai__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-huong-dan-choi-game-bai__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #FF8C1A;
  background-color: #17191F; /* Card BG */
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-huong-dan-choi-game-bai__faq-question::-webkit-details-marker {
  display: none;
}

.page-huong-dan-choi-game-bai__faq-question:hover {
  background-color: rgba(255, 140, 26, 0.1);
}

.page-huong-dan-choi-game-bai__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFA53A;
}

.page-huong-dan-choi-game-bai__faq-item[open] .page-huong-dan-choi-game-bai__faq-toggle {
  content: "−"; /* Change to minus when open */
}

.page-huong-dan-choi-game-bai__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #FFF3E6;
}

.page-huong-dan-choi-game-bai__faq-answer p {
  margin-top: 10px;
}

/* CTA Bottom Section */
.page-huong-dan-choi-game-bai__cta-bottom-section {
  padding: 60px 0;
  text-align: center;
}

.page-huong-dan-choi-game-bai__cta-bottom-section .page-huong-dan-choi-game-bai__cta-buttons {
  justify-content: center;
  margin-top: 30px;
}

/* Generic image and container responsive styles */
.page-huong-dan-choi-game-bai img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-huong-dan-choi-game-bai__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-huong-dan-choi-game-bai__hero-content {
    flex: 1 1 100%;
    order: 2; /* Content below image on smaller screens */
  }

  .page-huong-dan-choi-game-bai__hero-image {
    flex: 1 1 100%;
    order: 1; /* Image above content on smaller screens */
    margin-bottom: 30px;
  }

  .page-huong-dan-choi-game-bai__main-title {
    font-size: 2.5em;
  }

  .page-huong-dan-choi-game-bai__cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* General */
  .page-huong-dan-choi-game-bai {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-huong-dan-choi-game-bai__content-area,
  .page-huong-dan-choi-game-bai__hero-container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-huong-dan-choi-game-bai__section-title {
    font-size: 1.8em;
    margin-bottom: 25px;
  }
  .page-huong-dan-choi-game-bai__text-block {
    font-size: 1em;
  }

  /* HERO Section */
  .page-huong-dan-choi-game-bai__hero-section {
    padding-top: 10px !important; /* Enforce small top padding */
    padding-bottom: 40px;
  }
  .page-huong-dan-choi-game-bai__main-title {
    font-size: 2em;
  }
  .page-huong-dan-choi-game-bai__hero-description {
    font-size: 1.1em;
  }
  .page-huong-dan-choi-game-bai__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    width: 100%; /* Ensure container fills width */
  }
  .page-huong-dan-choi-game-bai__btn-primary,
  .page-huong-dan-choi-game-bai__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-huong-dan-choi-game-bai__hero-side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Guide Section - Module 1 (circle images) */
  .page-huong-dan-choi-game-bai__guide-section {
    padding: 40px 0;
  }
  .page-huong-dan-choi-game-bai__guide-steps {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
  }
  .page-huong-dan-choi-game-bai__icon-box-media {
    width: 150px; /* Still square */
    height: 150px;
    border-width: 3px;
    margin-bottom: 15px;
  }
  .page-huong-dan-choi-game-bai__step-title {
    font-size: 1.3em;
  }
  .page-huong-dan-choi-game-bai__step-description {
    font-size: 0.95em;
  }

  /* Tips Section */
  .page-huong-dan-choi-game-bai__tips-section {
    padding: 40px 0;
  }
  .page-huong-dan-choi-game-bai__tips-grid {
    grid-template-columns: 1fr; /* Single column */
    gap: 20px;
  }
  .page-huong-dan-choi-game-bai__tip-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important; /* Ensure height adjusts */
  }
  .page-huong-dan-choi-game-bai__tip-title {
    font-size: 1.2em;
  }
  .page-huong-dan-choi-game-bai__tip-description {
    font-size: 0.9em;
  }

  /* FAQ Section */
  .page-huong-dan-choi-game-bai__faq-section {
    padding: 40px 0;
  }
  .page-huong-dan-choi-game-bai__faq-list {
    padding: 0;
  }
  .page-huong-dan-choi-game-bai__faq-question {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-huong-dan-choi-game-bai__faq-toggle {
    font-size: 1.3em;
  }
  .page-huong-dan-choi-game-bai__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  /* CTA Bottom Section */
  .page-huong-dan-choi-game-bai__cta-bottom-section {
    padding: 40px 0;
  }

  /* Generic image and container responsive styles (as per checklist item 5) */
  .page-huong-dan-choi-game-bai img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-huong-dan-choi-game-bai__section,
  .page-huong-dan-choi-game-bai__card,
  .page-huong-dan-choi-game-bai__container,
  .page-huong-dan-choi-game-bai__guide-steps,
  .page-huong-dan-choi-game-bai__tips-grid,
  .page-huong-dan-choi-game-bai__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
}