/* style/nh.css */
:root {
  --page-nh-bg-color: #08160F;
  --page-nh-card-bg: #11271B;
  --page-nh-text-main: #F2FFF6;
  --page-nh-text-secondary: #A7D9B8;
  --page-nh-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-nh-border-color: #2E7A4E;
  --page-nh-glow-color: #57E38D;
  --page-nh-gold-color: #F2C14E;
  --page-nh-divider-color: #1E3A2A;
  --page-nh-deep-green: #0A4B2C;
  --page-nh-primary-color: #11A84E;
  --page-nh-secondary-color: #22C768;
}

.page-nh {
  background-color: var(--page-nh-bg-color);
  color: var(--page-nh-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

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

.page-nh__section-title {
  font-size: clamp(2em, 4vw, 3em);
  color: var(--page-nh-gold-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-nh__section-description {
  font-size: 1.1em;
  color: var(--page-nh-text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-nh__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px 0 60px;
  overflow: hidden;
}

.page-nh__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
}

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

.page-nh__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  margin-top: -150px; /* Adjust to position content over the lower part of the image */
  max-width: 900px;
  box-sizing: border-box;
}

.page-nh__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: var(--page-nh-gold-color);
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(0,255,0,0.5);
}

.page-nh__hero-description {
  font-size: 1.2em;
  color: var(--page-nh-text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-nh__btn-primary {
  background: var(--page-nh-btn-gradient);
  color: var(--page-nh-text-main);
  border: 2px solid var(--page-nh-primary-color);
  box-shadow: 0 0 15px var(--page-nh-glow-color);
}

.page-nh__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px var(--page-nh-glow-color);
  opacity: 0.9;
}

.page-nh__btn-secondary {
  background: transparent;
  color: var(--page-nh-gold-color);
  border: 2px solid var(--page-nh-gold-color);
}

.page-nh__btn-secondary:hover {
  background: var(--page-nh-gold-color);
  color: var(--page-nh-bg-color);
  transform: translateY(-3px);
}

.page-nh__introduction-section,
.page-nh__benefits-section,
.page-nh__strategy-section,
.page-nh__faq-section {
  padding: 80px 0;
  text-align: center;
}

.page-nh__dark-section {
  background-color: var(--page-nh-card-bg);
}

.page-nh__feature-list,
.page-nh__benefits-list,
.page-nh__strategy-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1000px;
  text-align: left;
}

.page-nh__feature-item,
.page-nh__benefits-item,
.page-nh__strategy-item {
  background-color: var(--page-nh-deep-green);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid var(--page-nh-border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-nh__feature-item h3,
.page-nh__benefits-item h3,
.page-nh__strategy-item h3 {
  color: var(--page-nh-gold-color);
  font-size: 1.4em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-nh__feature-item p,
.page-nh__benefits-item p,
.page-nh__strategy-item p {
  color: var(--page-nh-text-secondary);
  font-size: 1em;
}

.page-nh__icon {
  font-size: 2.5em;
  color: var(--page-nh-glow-color);
  display: block;
  margin-bottom: 10px;
}

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

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

.page-nh__card {
  background-color: var(--page-nh-card-bg);
  border-radius: 10px;
  padding: 25px;
  border: 1px solid var(--page-nh-border-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-nh__card-title {
  color: var(--page-nh-gold-color);
  font-size: 1.5em;
  margin-bottom: 15px;
}

.page-nh__card-text {
  color: var(--page-nh-text-secondary);
  font-size: 1em;
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-nh__card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  object-fit: cover;
}

.page-nh__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--page-nh-btn-gradient);
  color: var(--page-nh-text-main);
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  border: 2px solid var(--page-nh-glow-color);
}

.page-nh__promo-cta {
  margin-top: 50px;
}

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

.page-nh__faq-item {
  background-color: var(--page-nh-deep-green);
  border: 1px solid var(--page-nh-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-nh__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  color: var(--page-nh-gold-color);
  font-weight: bold;
  cursor: pointer;
  background-color: var(--page-nh-deep-green);
  user-select: none;
  list-style: none;
}

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

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

.page-nh__faq-toggle {
  font-size: 1.8em;
  line-height: 1;
  margin-left: 15px;
  color: var(--page-nh-glow-color);
}

.page-nh__faq-answer {
  padding: 0 25px 20px;
  color: var(--page-nh-text-secondary);
  font-size: 1.05em;
  line-height: 1.7;
}

.page-nh__faq-item[open] .page-nh__faq-question {
  background-color: var(--page-nh-deep-green);
}

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

.page-nh__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--page-nh-bg-color);
}

/* Image and Video responsive styles (desktop) */
.page-nh img, .page-nh video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Desktop specific video container width */
.page-nh__video-container {
  width: 100%; /* Ensure it takes full width of its parent before max-width */
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-nh {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-nh__container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-nh__hero-section {
    padding: 10px 0 30px;
  }

  .page-nh__hero-content {
    margin-top: -100px; /* Adjust for smaller screens */
    padding: 20px 15px;
  }

  .page-nh__hero-title {
    font-size: clamp(2em, 8vw, 2.5em);
  }

  .page-nh__hero-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;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-nh__introduction-section,
  .page-nh__benefits-section,
  .page-nh__strategy-section,
  .page-nh__faq-section,
  .page-nh__promotions-section,
  .page-nh__conclusion-section {
    padding: 40px 0;
  }

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

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

  .page-nh__feature-list,
  .page-nh__benefits-list,
  .page-nh__strategy-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-nh__game-type-grid,
  .page-nh__steps-grid,
  .page-nh__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }

  .page-nh__card {
    padding: 20px;
  }

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

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

  .page-nh__image-content {
    margin-top: 30px;
  }

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

  .page-nh__faq-answer {
    font-size: 0.95em;
    padding: 0 20px 15px;
  }

  /* Mobile image and video responsive styles */
  .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
  }
  
  .page-nh__video-section {
    padding-top: 10px !important;
  }

  /* Content area images min-width override for mobile if needed, but max-width 100% should handle it */
  .page-nh__introduction-section img,
  .page-nh__benefits-section img,
  .page-nh__guide-section img,
  .page-nh__strategy-section img,
  .page-nh__promotions-section img {
    min-width: unset !important; /* Allow images to scale down */
  }

  /* Ensure content area images are at least 200px wide on larger mobile screens if possible, but prioritize max-width: 100% */
  .page-nh__content-area img {
    min-width: 200px;
    /* Will be overridden by max-width: 100% !important if screen is smaller */
  }
}