.page-nh {
  --primary-color: #11A84E;
  --secondary-color: #22C768;
  --text-main-color: #F2FFF6;
  --text-secondary-color: #A7D9B8;
  --background-dark-color: #08160F;
  --card-bg-color: #11271B;
  --border-color: #2E7A4E;
  --glow-color: #57E38D;
  --gold-color: #F2C14E;
  --divider-color: #1E3A2A;
  --deep-green-color: #0A4B2C;

  font-family: 'Arial', sans-serif;
  color: var(--text-main-color); /* Default text color for the page */
  background-color: var(--background-dark-color); /* Ensure consistency with body background */
}

.page-nh__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 20px 60px; /* Small top padding, more bottom padding */
  overflow: hidden;
  background: var(--background-dark-color);
}

.page-nh__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.page-nh__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4); /* Darken image for text readability */
}

.page-nh__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for text */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-nh__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--gold-color);
  margin-bottom: 20px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-nh__description {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--text-main-color);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-nh__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-nh__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-nh__btn-secondary {
  background: var(--card-bg-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: 0 5px 15px rgba(17, 168, 78, 0.2);
}

.page-nh__btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--primary-color);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(17, 168, 78, 0.4);
}

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

.page-nh__intro-section {
  background-color: var(--background-dark-color);
  color: var(--text-main-color);
}

.page-nh__game-types-section {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

.page-nh__why-choose-section {
  background-color: var(--background-dark-color);
  color: var(--text-main-color);
}

.page-nh__guide-section {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

.page-nh__tips-section {
  background-color: var(--background-dark-color);
  color: var(--text-main-color);
}

.page-nh__promotions-section {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

.page-nh__mobile-section {
  background-color: var(--background-dark-color);
  color: var(--text-main-color);
}

.page-nh__faq-section {
  background-color: var(--card-bg-color);
  color: var(--text-main-color);
}

.page-nh__cta-bottom-section {
  background-color: var(--deep-green-color);
  color: var(--text-main-color);
  text-align: center;
  padding: 80px 20px;
}

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

.page-nh__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--gold-color);
  text-align: center;
  margin-bottom: 40px;
  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: var(--primary-color);
  border-radius: 2px;
}

.page-nh__text-block {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--text-secondary-color);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-nh__highlight {
  color: var(--gold-color);
  font-weight: 700;
}

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

.page-nh__game-card,
.page-nh__promo-card {
  background: var(--background-dark-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  border: 1px solid var(--border-color);
}

.page-nh__game-card:hover,
.page-nh__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-nh__game-image,
.page-nh__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-nh__card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-color);
  padding: 20px 20px 10px;
}

.page-nh__card-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
  padding: 0 20px 20px;
}

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

.page-nh__feature-item {
  background: var(--card-bg-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-nh__feature-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.page-nh__feature-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary-color);
}

.page-nh__guide-list {
  list-style: none;
  counter-reset: guide-step;
  padding: 0;
  margin-top: 40px;
}

.page-nh__guide-list li {
  background: var(--background-dark-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  position: relative;
  padding-left: 80px;
}

.page-nh__guide-list li::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 25px;
  top: 30px;
  background: var(--primary-color);
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 0 10px rgba(34, 199, 104, 0.5);
}

.page-nh__guide-step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 10px;
}

.page-nh__guide-step-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary-color);
}

.page-nh__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-nh__tips-list li {
  background: var(--card-bg-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
}

.page-nh__tip-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-nh__tip-description {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary-color);
}

.page-nh__mobile-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-nh__mobile-text {
  flex: 1;
  min-width: 300px;
}

.page-nh__mobile-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-nh__mobile-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-color);
}

.page-nh__mobile-subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-color);
  margin-bottom: 20px;
}

.page-nh__mobile-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-nh__mobile-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary-color);
}

.page-nh__list-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-right: 10px;
  font-weight: 700;
}

.page-nh__btn-download {
  margin-top: 20px;
}

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

.page-nh__faq-item {
  background: var(--background-dark-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-nh__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background: var(--card-bg-color);
  color: var(--text-main-color);
  font-size: 1.2rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

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

.page-nh__faq-item summary:hover {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-nh__faq-item[open] summary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.page-nh__faq-qtext {
  flex-grow: 1;
}

.page-nh__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-nh__faq-item[open] .page-nh__faq-toggle {
  transform: rotate(45deg);
}

.page-nh__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary-color);
  background: var(--background-dark-color);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-nh__hero-content {
    padding: 30px;
  }
  .page-nh__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-nh__description {
    font-size: 1.05rem;
  }
  .page-nh__section-title {
    font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  }
  .page-nh__game-grid,
  .page-nh__promo-grid,
  .page-nh__features-list {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .page-nh__hero-section {
    padding: 10px 15px 40px;
  }
  .page-nh__hero-content {
    padding: 20px;
    border-radius: 10px;
  }
  .page-nh__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-nh__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .page-nh__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .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__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-nh__section-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 30px;
  }
  .page-nh__text-block {
    font-size: 0.95rem;
  }

  .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-nh__game-image,
  .page-nh__promo-image {
    height: 200px; /* Adjust height for mobile */
  }
  .page-nh__game-card,
  .page-nh__promo-card,
  .page-nh__feature-item,
  .page-nh__guide-list li,
  .page-nh__tips-list li,
  .page-nh__faq-item {
    border-radius: 10px;
    padding: 20px;
  }
  .page-nh__game-card:hover,
  .page-nh__promo-card:hover {
    transform: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  }

  .page-nh__card-title {
    font-size: 1.3rem;
    padding: 15px 0 5px;
  }
  .page-nh__card-description {
    font-size: 0.9rem;
    padding: 0 0 15px;
  }

  .page-nh__feature-title {
    font-size: 1.4rem;
  }
  .page-nh__feature-description {
    font-size: 0.9rem;
  }

  .page-nh__guide-list li {
    padding-left: 65px;
  }
  .page-nh__guide-list li::before {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
    left: 18px;
    top: 20px;
  }
  .page-nh__guide-step-title {
    font-size: 1.3rem;
  }
  .page-nh__guide-step-description {
    font-size: 0.9rem;
  }

  .page-nh__tip-title {
    font-size: 1.3rem;
  }
  .page-nh__tip-description {
    font-size: 0.9rem;
  }

  .page-nh__mobile-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-nh__mobile-subtitle {
    font-size: 1.5rem;
  }
  .page-nh__mobile-list li {
    font-size: 0.95rem;
  }
  .page-nh__list-icon {
    font-size: 1.3rem;
  }

  .page-nh__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1rem;
  }
  .page-nh__faq-toggle {
    font-size: 1.5rem;
  }
  .page-nh__faq-answer {
    padding: 10px 20px 20px;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .page-nh__hero-content {
    padding: 15px;
  }
  .page-nh__main-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
  }
  .page-nh__description {
    font-size: 0.9rem;
  }
  .page-nh__btn-primary,
  .page-nh__btn-secondary {
    padding: 10px 15px;
    font-size: 0.95rem;
  }
  .page-nh__section-title {
    font-size: clamp(1.3rem, 6vw, 1.8rem);
  }
  .page-nh__text-block {
    font-size: 0.9rem;
  }
  .page-nh__game-image,
  .page-nh__promo-image {
    height: 180px;
  }
  .page-nh__card-title {
    font-size: 1.2rem;
  }
  .page-nh__feature-title {
    font-size: 1.2rem;
  }
  .page-nh__guide-list li {
    padding: 15px 15px 15px 55px;
  }
  .page-nh__guide-list li::before {
    left: 15px;
    top: 15px;
    width: 30px;
    height: 30px;
    font-size: 1.1rem;
  }
  .page-nh__guide-step-title {
    font-size: 1.2rem;
  }
  .page-nh__mobile-subtitle {
    font-size: 1.3rem;
  }
  .page-nh__mobile-list li {
    font-size: 0.9rem;
  }
  .page-nh__faq-item summary {
    font-size: 1rem;
  }
  .page-nh__faq-toggle {
    font-size: 1.3rem;
  }
}