.page-nh {
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
}

.page-nh__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-nh__hero-section {
  padding: 40px 0 60px;
  text-align: center;
  background-color: #2A1212;
  margin-bottom: 40px;
}

.page-nh__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 30px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-nh__hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-nh__main-title {
  font-size: clamp(1.8rem, 4.5vw, 3rem); /* Responsive H1 font size */
  font-weight: 700;
  color: #F3C54D;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.page-nh__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF1E8;
}

.page-nh__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-nh__btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-nh__btn--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  box-shadow: 0 4px 15px rgba(255, 176, 74, 0.3);
}

.page-nh__btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-nh__btn--secondary {
  background-color: #7E0D0D;
  color: #FFF1E8;
  border: 2px solid #6A1E1E;
}

.page-nh__btn--secondary:hover {
  background-color: #C61F1F;
  border-color: #E53030;
  transform: translateY(-2px);
}

.page-nh__btn--small {
  padding: 8px 18px;
  font-size: 0.9rem;
  border-radius: 6px;
  background: linear-gradient(180deg, #F3C54D 0%, #D86A14 100%);
  color: #140C0C;
}

.page-nh__btn--small:hover {
  opacity: 0.9;
}

.page-nh__section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  color: #F3C54D;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.page-nh__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #E53030;
  border-radius: 2px;
}

.page-nh__introduction-section,
.page-nh__features-section,
.page-nh__how-to-play-section,
.page-nh__promotions-section,
.page-nh__faq-section {
  padding: 60px 0;
  background-color: #140C0C;
}

.page-nh__introduction-section .page-nh__section-title {
  margin-bottom: 50px;
}

.page-nh__content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-nh__content-grid--reverse {
  grid-template-columns: 1fr 1fr;
}

.page-nh__text-content p {
  margin-bottom: 15px;
  color: #FFF1E8;
  font-size: 1rem;
}

.page-nh__image-wrapper {
  text-align: center;
}

.page-nh__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  object-fit: cover;
}

.page-nh__feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-nh__feature-item {
  background-color: #2A1212;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E;
}

.page-nh__feature-title {
  font-size: 1.4rem;
  color: #F3C54D;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-nh__feature-item p {
  color: #FFF1E8;
  font-size: 0.95rem;
}

.page-nh__cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.page-nh__steps-list {
  list-style: none;
  padding: 0;
}

.page-nh__steps-list li {
  background-color: #2A1212;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 5px solid #E53030;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-nh__steps-list li:last-child {
  margin-bottom: 0;
}

.page-nh__step-title {
  font-size: 1.3rem;
  color: #F3C54D;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-nh__step-title + p {
  color: #FFF1E8;
}

.page-nh__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-nh__promo-card {
  background-color: #2A1212;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #6A1E1E;
}

.page-nh__promo-image {
  width: 100%;
  height: 200px; /* Fixed height for promo images */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-nh__promo-title {
  font-size: 1.3rem;
  color: #F3C54D;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-nh__promo-description {
  font-size: 0.95rem;
  color: #FFF1E8;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-nh__faq-list {
  margin-top: 40px;
}

.page-nh__faq-item {
  background-color: #2A1212;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 20px 25px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E;
}

.page-nh__faq-question {
  font-size: 1.2rem;
  color: #F3C54D;
  margin-bottom: 10px;
  cursor: pointer;
  font-weight: 600;
}

.page-nh__faq-answer {
  font-size: 1rem;
  color: #FFF1E8;
  display: block; /* Ensure it's visible by default for static HTML */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-nh__content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-nh__content-grid--reverse {
    grid-template-columns: 1fr;
  }
  .page-nh__content-grid--reverse .page-nh__image-wrapper {
    order: -1; /* Image first on mobile for reverse grid */
  }
}

@media (max-width: 768px) {
  .page-nh__container {
    padding: 0 15px;
  }
  .page-nh__hero-section {
    padding: 30px 0 40px;
  }
  .page-nh__main-title {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .page-nh__description {
    font-size: 1rem;
  }
  .page-nh__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-nh__btn {
    width: 100%;
    max-width: 300px;
  }
  .page-nh__section-title {
    font-size: clamp(1.2rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-nh__feature-list,
  .page-nh__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-nh__feature-item,
  .page-nh__steps-list li,
  .page-nh__promo-card,
  .page-nh__faq-item {
    padding: 15px 20px;
  }
  .page-nh__feature-title,
  .page-nh__step-title,
  .page-nh__promo-title,
  .page-nh__faq-question {
    font-size: 1.1rem;
  }
  .page-nh__content-image,
  .page-nh__promo-image {
    max-width: 100%;
    height: auto;
  }
  .page-nh__introduction-section, .page-nh__features-section, .page-nh__how-to-play-section, .page-nh__promotions-section, .page-nh__faq-section {
    padding: 40px 0;
  }
}