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

/* Hero Section */
.page-nh__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0;
}

.page-nh__hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 0;
}

.page-nh__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page-nh__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -100px;
  background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, rgba(8, 22, 15, 1) 100%);
  border-radius: 10px;
}

.page-nh__main-title {
  font-size: clamp(2em, 5vw, 3.5em);
  font-weight: bold;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-nh__description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  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-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-nh__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: none;
}

.page-nh__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 0 15px #2AD16F;
}

.page-nh__btn-secondary {
  background: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
}

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

/* General Section Styling */
.page-nh__section {
  padding: 60px 20px;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.page-nh__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  color: #F2C14E; /* Gold */
  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-color: #2AD16F;
  border-radius: 2px;
}

.page-nh__sub-title {
  font-size: clamp(1.4em, 3vw, 2em);
  color: #2AD16F; /* Main Color */
  margin-top: 40px;
  margin-bottom: 20px;
}

.page-nh__content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-nh__content-wrapper p {
  margin-bottom: 1em;
  color: #F2FFF6; /* Text Main */
}

.page-nh__content-wrapper strong.page-nh__highlight {
  color: #F2C14E; /* Gold */
}

.page-nh__content-wrapper a {
  color: #2AD16F;
  text-decoration: underline;
}

.page-nh__content-wrapper a:hover {
  color: #13994A;
}

.page-nh__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

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

.page-nh__feature-list .page-nh__list-item {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-nh__feature-list .page-nh__list-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #2AD16F;
  padding: 10px;
}

.page-nh__feature-list .page-nh__list-title {
  color: #F2C14E; /* Gold */
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-nh__feature-list .page-nh__list-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

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

.page-nh__card {
  background-color: #11271B; /* Card B G */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: left;
  display: flex;
  flex-direction: column;
}

.page-nh__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-nh__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-nh__card-title {
  font-size: 1.3em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-nh__card-content p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  flex-grow: 1;
}

.page-nh__card-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  align-self: flex-start;
}

.page-nh__card-link:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-nh__call-to-action-text {
  margin-top: 40px;
  font-size: 1.1em;
  color: #F2FFF6;
}

/* How To Play Section - Step List */
.page-nh__step-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-nh__step-list .page-nh__list-item {
  background-color: #11271B; /* Card B G */
  padding: 25px 30px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #2AD16F;
}

.page-nh__step-list .page-nh__list-title {
  color: #F2C14E; /* Gold */
  font-size: 1.2em;
  margin-bottom: 10px;
}

.page-nh__step-list .page-nh__list-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

.page-nh__note {
  margin-top: 30px;
  font-style: italic;
  color: #A7D9B8;
}

/* Strategies Section - Strategy List (similar to feature list) */
.page-nh__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-nh__strategy-list .page-nh__list-item {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #2AD16F;
}

.page-nh__strategy-list .page-nh__list-title {
  color: #F2C14E; /* Gold */
  font-size: 1.4em;
  margin-bottom: 15px;
}

.page-nh__strategy-list .page-nh__list-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* Promotions Section - Promo Cards (similar to game cards) */
.page-nh__promo-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* FAQ Section */
.page-nh__faq {
  text-align: left;
}

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

.page-nh__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  background-color: #0A4B2C; /* Deep Green */
  color: #F2FFF6;
  font-weight: bold;
  font-size: 1.1em;
  outline: none;
  list-style: none;
}

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

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

.page-nh__faq-toggle {
  font-size: 1.5em;
  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: 20px 25px;
  background-color: #11271B; /* Card B G */
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  border-top: 1px solid #2E7A4E;
}

.page-nh__faq-answer p {
  margin-bottom: 0;
}

/* Final CTA Section */
.page-nh__final-cta {
  background-color: #0A4B2C; /* Deep Green */
  padding: 80px 20px;
  border-radius: 10px;
  margin-bottom: 40px;
}

.page-nh__final-cta .page-nh__section-title {
  color: #F2C14E; /* Gold */
}

.page-nh__final-cta .page-nh__description {
  font-size: 1.2em;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-nh__hero-content {
    margin-top: -80px;
  }
}

@media (max-width: 768px) {
  .page-nh {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-nh__hero-content {
    padding: 30px 15px;
    margin-top: -60px;
  }

  .page-nh__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
  }

  .page-nh__description {
    font-size: 1em;
  }

  .page-nh__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-nh__btn-primary,
  .page-nh__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

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

  .page-nh__section-title {
    font-size: clamp(1.6em, 6vw, 2.2em);
    margin-bottom: 30px;
  }

  .page-nh__sub-title {
    font-size: clamp(1.2em, 5vw, 1.8em);
  }

  .page-nh__content-wrapper {
    padding: 0;
  }

  .page-nh__feature-list,
  .page-nh__game-cards,
  .page-nh__promo-cards,
  .page-nh__strategy-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-nh__card-image {
    height: 180px;
  }

  .page-nh__card-content {
    padding: 15px;
  }

  .page-nh__card-title {
    font-size: 1.2em;
  }

  .page-nh__card-content p {
    font-size: 0.9em;
  }

  .page-nh__image-inline {
    margin: 20px auto;
  }

  .page-nh__step-list .page-nh__list-item {
    padding: 20px 20px;
  }

  .page-nh__faq-item summary {
    padding: 15px 20px;
    font-size: 1em;
  }

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

  .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-nh video,
  .page-nh__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  .page-nh__section,
  .page-nh__card,
  .page-nh__container,
  .page-nh__video-section,
  .page-nh__video-container,
  .page-nh__video-wrapper,
  .page-nh__cta-buttons,
  .page-nh__button-group,
  .page-nh__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }

  .page-nh__video-section {
    padding-top: 10px !important;
  }

  .page-nh__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-nh__cta-buttons > * {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .page-nh__hero-content {
    margin-top: -40px;
  }
  .page-nh__main-title {
    font-size: clamp(1.6em, 8vw, 2em);
  }
  .page-nh__section-title {
    font-size: clamp(1.4em, 7vw, 1.8em);
  }
  .page-nh__feature-list .page-nh__list-icon {
    width: 100px;
    height: 100px;
  }
}