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

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

.page-nh__section-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #F3C54D;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 30px;
  line-height: 1.2;
}

.page-nh__hero-section {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.page-nh__hero-image-wrapper {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.page-nh__hero-image {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.8);
}

.page-nh__hero-content {
  text-align: center;
  padding: 30px 20px 50px;
  background-color: #2A1212;
}

.page-nh__hero-title {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 900;
  color: #F3C54D;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-nh__hero-description {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #FFF1E8;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.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: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.page-nh__btn--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  border: none;
}

.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;
  transform: translateY(-2px);
}

.page-nh__intro-section, .page-nh__features-section, .page-nh__game-types-section, .page-nh__guide-section, .page-nh__promotions-section, .page-nh__faq-section, .page-nh__conclusion-section {
  padding: 50px 0;
}

.page-nh__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}

.page-nh__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-nh__text-content {
  flex: 1;
  line-height: 1.7;
  font-size: 1.05rem;
}

.page-nh__text-content p {
  margin-bottom: 15px;
}

.page-nh__image-content {
  flex: 1;
  display: flex;
  justify-content: center;
}

.page-nh__image-content img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element */
}

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

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

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

.page-nh__feature-item p {
  font-size: 1rem;
  color: #FFF1E8;
  line-height: 1.6;
}

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

.page-nh__game-card {
  background-color: #2A1212;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-nh__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-nh__game-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2; /* Adjust as needed */
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no grayscale */
}

.page-nh__game-card-title {
  font-size: 1.3rem;
  color: #F3C54D;
  margin: 15px 15px 5px;
  font-weight: 700;
}

.page-nh__game-card-description {
  font-size: 0.95rem;
  color: #FFF1E8;
  padding: 0 15px 20px;
  line-height: 1.5;
}

.page-nh__center-button {
  text-align: center;
  margin-top: 40px;
}

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

.page-nh__guide-list li {
  background-color: #2A1212;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  border-left: 5px solid #F3C54D;
  font-size: 1.05rem;
  line-height: 1.6;
}

.page-nh__guide-list li strong {
  color: #FFB04A;
}

.page-nh__promo-description {
  text-align: center;
  font-size: 1.05rem;
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.page-nh__promo-list {
  list-style: disc;
  margin: 20px auto;
  max-width: 800px;
  padding-left: 40px;
  font-size: 1rem;
  color: #FFF1E8;
}

.page-nh__promo-list li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-nh__faq-items {
  margin-top: 30px;
}

.page-nh__faq-item {
  background-color: #2A1212;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #6A1E1E;
  overflow: hidden;
}

.page-nh__faq-question {
  font-size: 1.2rem;
  color: #F3C54D;
  padding: 20px;
  margin: 0;
  cursor: pointer;
  position: relative;
  font-weight: 700;
}

.page-nh__faq-answer {
  font-size: 1rem;
  color: #FFF1E8;
  padding: 0 20px 20px;
  margin: 0;
  line-height: 1.6;
}

.page-nh__conclusion-section {
  background-color: #2A1212;
  text-align: center;
  padding: 60px 0;
  margin-top: 50px;
  border-top: 1px solid #6A1E1E;
}

.page-nh__conclusion-text {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto 30px;
  line-height: 1.7;
}

/* Responsive adjustments */
@media (max-width: 849px) {
  .page-nh__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-nh__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-nh__image-content img {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .page-nh__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-nh__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-nh__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
  }

  .page-nh__hero-title {
    font-size: clamp(1.5rem, 7vw, 2.5rem);
  }

  .page-nh__feature-list, .page-nh__game-cards {
    grid-template-columns: 1fr;
  }

  .page-nh__promo-list {
    padding-left: 20px;
  }
}

@media (max-width: 768px) {
  .page-nh img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 549px) {
  .page-nh__container {
    padding: 0 15px;
  }

  .page-nh__hero-content {
    padding: 20px 15px 30px;
  }

  .page-nh__btn {
    font-size: 1rem;
    padding: 12px 25px;
  }

  .page-nh__text-content, .page-nh__feature-item p, .page-nh__game-card-description, .page-nh__promo-description, .page-nh__promo-list li, .page-nh__faq-answer, .page-nh__conclusion-text {
    font-size: 0.95rem;
  }

  .page-nh__guide-list li {
    font-size: 0.95rem;
    padding: 15px;
  }
}