/* Base Styles & Typography */
.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
  padding-top: 10px; /* Small top padding, relying on shared for header offset */
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 15px;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #FFF3E6;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: #FFA53A; /* Auxiliary color */
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #D96800; /* Deep Orange */
  border-radius: 2px;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__sub-title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #FF8C1A; /* Primary color */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi p {
  margin-bottom: 15px;
  color: #FFF3E6;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__list,
.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__ordered-list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__ordered-list {
  list-style-type: decimal;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__list li,
.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__ordered-list li {
  margin-bottom: 8px;
  color: #FFF3E6;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__dark-bg {
  background-color: #0D0E12;
  color: #FFF3E6;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__light-bg {
  background-color: #17191F; /* Card BG */
  color: #FFF3E6;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__text-contrast-fix {
  color: #FFF3E6 !important;
}

/* Hero Section */
.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
  overflow: hidden;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__hero-image-wrapper {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__hero-content {
  max-width: 900px;
  text-align: center;
  padding: 0 15px;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF3E6;
}

/* Buttons */
.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__btn-primary,
.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
  transform: translateY(-2px);
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__btn-secondary {
  background: transparent;
  color: #FF8C1A; /* Primary color */
  border: 2px solid #FF8C1A; /* Border */
  box-shadow: 0 2px 10px rgba(255, 140, 26, 0.2);
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__btn-secondary:hover {
  background: rgba(255, 140, 26, 0.1);
  color: #FFA53A;
  border-color: #FFA53A;
  transform: translateY(-2px);
}

/* Article Content */
.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__content-area {
  padding-top: 40px;
  padding-bottom: 60px;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__article-figure {
  margin: 30px auto;
  max-width: 800px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__article-figure img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 800px; /* Base width for layout */
  height: 600px; /* Base height for layout */
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__article-figure figcaption {
  background-color: #17191F;
  color: #FFF3E6;
  padding: 15px;
  font-size: 0.95rem;
  text-align: center;
}

/* FAQ Section */
details.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #A84F0C; /* Border color */
  overflow: hidden;
  background: #17191F; /* Card BG */
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

details.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-item summary.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF3E6;
}

details.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-item summary.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-item summary.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-question:hover {
  background: rgba(255, 140, 26, 0.1);
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-qtext {
  flex: 1;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF3E6;
}

.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FF8C1A; /* Primary color */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-item .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-answer {
  padding: 0 20px 20px;
  background: rgba(0,0,0,0.1);
  border-radius: 0 0 8px 8px;
  color: #FFF3E6;
}

/* Global Image Styles */
.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__hero-image-wrapper {
    max-height: 400px;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__hero-image {
    object-fit: contain !important; /* Ensure image is not cropped on smaller screens */
    aspect-ratio: unset !important;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__section-title {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__sub-title {
    font-size: clamp(1.2rem, 2.8vw, 1.8rem);
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__description {
    font-size: 1rem;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-qtext {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi {
    font-size: 15px;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* HERO 主图区域 */
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__hero-image-wrapper {
    max-height: 300px;
    margin-bottom: 15px;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__description {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  /* 产品展示图区域 - Not applicable for this page type */
  /* 装饰主标题 + 长文 SEO 区 */
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__sub-title {
    font-size: clamp(1.2rem, 5vw, 1.5rem);
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__article-figure {
    margin: 20px auto;
    max-width: 100% !important;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__article-figure img {
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__article-figure figcaption {
    padding: 10px;
    font-size: 0.85rem;
  }
  /* 通用图片与容器 */
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__content-area,
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* 按钮与按钮容器 */
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__btn-primary,
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  /* FAQ */
  details.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-item summary.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-question {
    padding: 15px;
  }
  .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-qtext {
    font-size: 0.95rem;
  }
  details.page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-item .page-blog-huong-dan-choi-game-no-hu-cho-nguoi-moi__faq-answer {
    padding: 0 15px 15px;
  }
}