.page-nh {
  font-family: 'Arial', sans-serif;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-nh__hero-section {
  position: relative;
  padding-top: 10px; /* Aligned with body padding-top from shared */
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  color: #F2FFF6;
}

.page-nh__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.6);
}

.page-nh__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  max-width: 900px;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  z-index: 1;
}

.page-nh__hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-nh__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-nh__btn-primary,
.page-nh__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-nh__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

.page-nh__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.page-nh__btn-secondary {
  background-color: transparent;
  color: #2AD16F; /* Lighter Green from Button gradient */
  border: 2px solid #2AD16F;
}

.page-nh__btn-secondary:hover {
  background-color: #2AD16F;
  color: #F2FFF6;
}

.page-nh__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-nh__section {
  padding: 60px 0;
  text-align: center;
}

.page-nh__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
}

.page-nh__section-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-nh__introduction-section {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-nh__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-nh__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-nh__game-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-nh__game-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-nh__step-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-nh__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2C14E; /* Gold */
}

.page-nh__step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-nh__promotion-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-nh__promotion-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
}

.page-nh__promotion-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-nh__promotion-description {
  font-size: 1rem;
  line-height: 1.5;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-nh__text-center {
  text-align: center;
}

.page-nh__mt-40 {
  margin-top: 40px;
}

.page-nh__why-choose-section {
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-nh__feature-item {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
}

.page-nh__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #F2FFF6; /* Text Main */
}

.page-nh__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
}

.page-nh__feature-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  margin-top: 20px;
  border-radius: 8px;
  display: block;
}

.page-nh__faq-list {
  max-width: 900px;
  margin: 40px auto 0 auto;
  text-align: left;
}

.page-nh__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-nh__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-nh__faq-question::-webkit-details-marker {
  display: none;
}

.page-nh__faq-question:hover {
  background-color: #13994A;
}

.page-nh__faq-item[open] .page-nh__faq-question {
  background-color: #13994A;
}

.page-nh__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-nh__faq-item[open] .page-nh__faq-toggle {
  content: '−';
}

.page-nh__faq-answer {
  padding: 15px 25px 25px 25px;
  font-size: 1rem;
  line-height: 1.6;
  color: #A7D9B8; /* Text Secondary */
  background-color: #11271B;
  border-top: 1px solid #1E3A2A; /* Divider */
}

.page-nh__cta-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 0;
  border-top: 5px solid #2AD16F; /* Button color for emphasis */
}

.page-nh__text-main {
  color: #F2FFF6;
}

.page-nh__text-secondary {
  color: #A7D9B8;
}

.page-nh__btn-lg {
  padding: 18px 40px;
  font-size: 1.2rem;
  margin-top: 30px;
}

/* --- Mobile Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  .page-nh__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
  }

  .page-nh__hero-image {
    height: 400px;
  }

  .page-nh__hero-content {
    top: 60%;
    transform: translate(-50%, -60%);
    padding: 15px;
  }

  .page-nh__hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-nh__hero-description {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .page-nh__hero-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100%;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .page-nh__btn-primary,
  .page-nh__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-nh__section {
    padding: 40px 0;
  }

  .page-nh__section-title {
    font-size: 2rem;
  }

  .page-nh__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  /* General image responsiveness */
  .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-nh__container,
  .page-nh__games-grid,
  .page-nh__steps-list,
  .page-nh__promotions-grid,
  .page-nh__features-grid,
  .page-nh__faq-list,
  .page-nh__hero-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

  .page-nh__games-grid,
  .page-nh__steps-list,
  .page-nh__promotions-grid,
  .page-nh__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-nh__game-image,
  .page-nh__promotion-image,
  .page-nh__feature-image {
    height: auto;
    max-height: 250px; /* Adjust as needed for better mobile view */
    object-fit: cover;
  }

  .page-nh__game-card,
  .page-nh__promotion-card,
  .page-nh__step-item,
  .page-nh__feature-item {
    padding: 20px;
  }

  .page-nh__game-title,
  .page-nh__promotion-title,
  .page-nh__step-title,
  .page-nh__feature-title {
    font-size: 1.3rem;
  }

  .page-nh__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }

  .page-nh__faq-answer {
    padding: 10px 20px 20px 20px;
  }

  .page-nh__btn-lg {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100% !important;
  }
}