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

.page-nh {
  color: var(--text-main);
  background-color: var(--bg-color);
  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(28px, 4vw, 42px);
  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: 3px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

.page-nh__text-block {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  text-align: justify;
}

.page-nh__inline-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-nh__inline-link:hover {
  text-decoration: underline;
  color: var(--secondary-color);
}

/* Hero Section */
.page-nh__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 600px; /* Adjusted for image aspect ratio */
  overflow: hidden;
  text-align: center;
  padding-top: 10px; /* Small top padding */
}

.page-nh__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.page-nh__hero-content {
  position: relative;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for readability */
  padding: 30px;
  border-radius: 15px;
  max-width: 900px;
  box-sizing: border-box;
}

.page-nh__main-title {
  font-size: clamp(32px, 5vw, 58px);
  color: var(--gold-color);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-nh__subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--text-main);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-nh__cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-nh__cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  opacity: 0.9;
}

.page-nh__cta-button--large {
  padding: 18px 40px;
  font-size: 20px;
}

.page-nh__cta-button--secondary {
  background: var(--deep-green);
  border: 1px solid var(--primary-color);
  margin-left: 20px;
}

.page-nh__cta-button--secondary:hover {
  background: var(--primary-color);
}

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

/* Introduction Section */
.page-nh__introduction-section,
.page-nh__game-types-section,
.page-nh__benefits-section,
.page-nh__guide-section,
.page-nh__strategy-section,
.page-nh__promotions-section,
.page-nh__faq-section,
.page-nh__conclusion-section {
  padding: 60px 0;
}

/* Game Types Section */
.page-nh__grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-nh__grid-container--two-cols {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-nh__game-card,
.page-nh__promo-card,
.page-nh__strategy-card {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  color: var(--text-main);
}

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

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

.page-nh__card-title {
  font-size: 22px;
  color: var(--gold-color);
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-nh__card-description {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-nh__card-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--button-gradient);
  color: var(--text-main);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  margin: 0 15px;
  max-width: calc(100% - 30px);
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-nh__card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
}

/* Benefits Section */
.page-nh__benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-nh__list-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease;
}

.page-nh__list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-nh__list-title {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

/* Guide Section */
.page-nh__guide-list {
  list-style: none;
  counter-reset: guide-counter;
  padding: 0;
  margin: 0;
}

.page-nh__guide-list .page-nh__list-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px 25px 25px 60px;
  margin-bottom: 20px;
  position: relative;
  text-align: left;
}

.page-nh__guide-list .page-nh__list-item::before {
  counter-increment: guide-counter;
  content: counter(guide-counter);
  position: absolute;
  left: 20px;
  top: 25px;
  width: 30px;
  height: 30px;
  background-color: var(--primary-color);
  color: var(--text-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}

/* Strategy Section */
.page-nh__strategy-card {
  padding: 25px;
}

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

/* FAQ Section */
.page-nh__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-nh__faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--text-main);
}

.page-nh__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background-color: var(--deep-green);
  border-bottom: 1px solid var(--border-color);
}

.page-nh__faq-item[open] .page-nh__faq-question {
  border-bottom: 1px solid var(--divider-color);
}

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

.page-nh__faq-toggle {
  font-size: 24px;
  line-height: 1;
  margin-left: 15px;
  color: var(--gold-color);
}

.page-nh__faq-answer {
  padding: 20px 25px;
  font-size: 16px;
  color: var(--text-secondary);
  text-align: justify;
}

/* Conclusion Section */
.page-nh__conclusion-section .page-nh__text-block {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Global image reset for responsiveness */
.page-nh img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

  .page-nh__hero-section {
    height: 450px;
    padding: 40px 0;
  }

  .page-nh__hero-content {
    padding: 20px;
    border-radius: 10px;
  }

  .page-nh__main-title {
    font-size: 36px;
    margin-bottom: 15px;
  }

  .page-nh__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-nh__cta-button,
  .page-nh__cta-button--large {
    font-size: 16px;
    padding: 12px 25px;
  }

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

  .page-nh__cta-button--secondary {
    margin-left: 0;
  }

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

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

  .page-nh__container {
    padding: 0 15px;
  }

  .page-nh__grid-container,
  .page-nh__grid-container--two-cols,
  .page-nh__benefits-list,
  .page-nh__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-nh__game-card,
  .page-nh__promo-card,
  .page-nh__strategy-card,
  .page-nh__list-item {
    padding: 20px;
  }

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

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

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

  .page-nh__faq-toggle {
    font-size: 20px;
  }

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

  /* Force responsive images/videos/buttons with !important */
  .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .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;
  }

  .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-wrap: wrap !important;
    gap: 10px;
  }

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