/* style/nh.css */

/* Base styles */
.page-nh {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light body background */
  background-color: #f8f8f8; /* Inherited from body for consistency */
}

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

.page-nh__section-title {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  color: #11A84E; /* Brand primary color for titles on light background */
}

.page-nh__sub-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: bold;
  margin-bottom: 20px;
  color: #11A84E;
}

.page-nh__text-block {
  margin-bottom: 15px;
  font-size: 17px;
  color: #333333;
}

.page-nh__highlight {
  color: #11A84E;
  font-weight: bold;
}

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

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

/* Dark background sections */
.page-nh__dark-section {
  background-color: #08160F; /* Custom background color */
  color: #F2FFF6; /* Text Main for dark background */
  padding: 60px 0;
}

.page-nh__dark-section .page-nh__section-title,
.page-nh__dark-section .page-nh__sub-title {
  color: #F2FFF6; /* Text Main for titles on dark background */
}

.page-nh__dark-section .page-nh__text-block {
  color: #A7D9B8; /* Text Secondary for general text on dark background */
}

.page-nh__dark-section .page-nh__highlight {
  color: #57E38D; /* Glow color for highlights on dark background */
}

/* Light background sections */
.page-nh__light-bg {
  background-color: #f8f8f8; /* Body background color */
  color: #333333; /* Default dark text */
  padding: 60px 0;
}

/* Buttons */
.page-nh__btn-primary,
.page-nh__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
}

.page-nh__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff; /* White text for primary button */
  border: 2px solid transparent;
}

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

.page-nh__btn-secondary {
  background: #ffffff;
  color: #11A84E; /* Brand primary color for secondary button text */
  border: 2px solid #11A84E; /* Brand primary color for secondary button border */
}

.page-nh__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

.page-nh__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Hero Section */
.page-nh__hero-section {
  padding-top: 10px; /* Small top padding for hero section */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.page-nh__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 30px;
}

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

.page-nh__hero-content {
  max-width: 900px;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-nh__main-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2FFF6; /* Text Main for hero title on dark background */
}

.page-nh__hero-description {
  font-size: 19px;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary for hero description on dark background */
}

/* Introduction Section */
.page-nh__introduction-section .page-nh__image-text-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-nh__introduction-section .page-nh__content-image {
  flex: 1 1 45%;
  min-width: 300px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-nh__introduction-section .page-nh__text-content {
  flex: 1 1 50%;
  min-width: 300px;
}

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

.page-nh__list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 17px;
  color: #333333;
}

.page-nh__list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #11A84E; /* Primary brand color for list checkmark */
  font-weight: bold;
}

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

.page-nh__card {
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-nh__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-nh__card-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-nh__card-description {
  font-size: 16px;
  padding: 0 15px;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-nh__card-button {
  margin: 0 15px;
  width: calc(100% - 30px);
}

/* Guide Section */
.page-nh__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-nh__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.page-nh__step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-nh__step-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #11A84E;
}

.page-nh__step-description {
  font-size: 16px;
  margin-bottom: 20px;
  flex-grow: 1;
  color: #333333;
}

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

.page-nh__strategy-card {
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  padding-bottom: 20px;
  text-align: center;
}

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

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

.page-nh__promo-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

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

.page-nh__promo-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-nh__promo-content .page-nh__card-title {
  color: #11A84E;
  font-size: 22px;
  margin-bottom: 10px;
}

.page-nh__promo-content .page-nh__card-description {
  color: #333333;
  font-size: 16px;
  margin-bottom: 20px;
}

/* Security Section */
.page-nh__security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-nh__feature-item {
  text-align: center;
  padding: 20px;
  background-color: #11271B; /* Card BG color */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-nh__feature-icon {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 15px;
}

.page-nh__feature-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.page-nh__feature-description {
  font-size: 15px;
}

/* FAQ Section */
.page-nh__faq-list {
  margin-top: 40px;
}

.page-nh__faq-item {
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-nh__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #11A84E; /* Primary brand color for FAQ question */
  cursor: pointer;
  background-color: #f9f9f9;
  border-bottom: 1px solid #e0e0e0;
}

.page-nh__faq-item[open] .page-nh__faq-question {
  border-bottom: 1px solid #e0e0e0;
}

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

.page-nh__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: #11A84E;
}

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

.page-nh__faq-answer {
  padding: 15px 25px;
  font-size: 16px;
  color: #333333;
  background-color: #ffffff;
}

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

/* Conclusion Section */
.page-nh__conclusion-section {
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-nh__introduction-section .page-nh__image-text-block {
    flex-direction: column;
  }
  .page-nh__introduction-section .page-nh__content-image {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .page-nh__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-nh__section-title {
    font-size: 26px;
    margin-bottom: 25px;
  }

  .page-nh__sub-title {
    font-size: 20px;
  }

  .page-nh__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }

  .page-nh__main-title {
    font-size: 28px;
  }

  .page-nh__hero-description {
    font-size: 17px;
  }

  .page-nh__text-block, .page-nh p, .page-nh li, .page-nh__card-description, .page-nh__step-description, .page-nh__feature-description, .page-nh__faq-answer p {
    font-size: 16px;
  }

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

  /* Video responsive (if any) */
  .page-nh video,
  .page-nh__video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-nh__video-section,
  .page-nh__video-container,
  .page-nh__video-wrapper {
    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;
  }

  /* Buttons responsive */
  .page-nh__cta-button,
  .page-nh__btn-primary,
  .page-nh__btn-secondary,
  .page-nh a[class*="button"],
  .page-nh a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
    flex-direction: column !important;
    gap: 15px;
  }

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

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

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

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

  .page-nh__feature-icon {
    width: 50px;
    height: 50px;
  }

  .page-nh__feature-title {
    font-size: 18px;
  }

  .page-nh__dark-section, .page-nh__light-bg {
    padding: 40px 0;
  }
}