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

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

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

.page-nh__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-nh__text-block {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #A7D9B8; /* Text Secondary */
}

.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: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-nh__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 4px 15px rgba(34, 199, 104, 0.4);
}

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

.page-nh__btn-secondary {
  background: transparent;
  color: #2AD16F; /* Brighter green for contrast */
  border: 2px solid #2AD16F; /* Brighter green for contrast */
}

.page-nh__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  color: #F2FFF6; /* Text Main */
  transform: translateY(-2px);
}

.page-nh__cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Hero Section */
.page-nh__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  overflow: hidden;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: #08160F;
}

.page-nh__hero-image-wrapper {
  width: 100%;
  max-height: 800px; /* Limit image height */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-nh__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: 40px; /* Separates content from image */
}

.page-nh__main-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.page-nh__hero-description {
  font-size: 20px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-nh__feature-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-nh__feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.page-nh__feature-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-nh__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
}

.page-nh__feature-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

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

.page-nh__game-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.page-nh__game-card:hover {
  transform: translateY(-5px);
}

.page-nh__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-nh__game-title {
  font-size: 22px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-nh__game-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  line-height: 1.6;
}

.page-nh__game-button {
  width: auto; /* Allow button to size based on content */
  padding: 12px 25px;
  font-size: 16px;
}

/* Promotions Section */
.page-nh__dark-section {
  background-color: #0A4B2C; /* Deep Green for contrast */
  color: #F2FFF6; /* Text Main */
}

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

.page-nh__promo-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.page-nh__promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-nh__promo-title {
  font-size: 22px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-nh__promo-description {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

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

.page-nh__guide-step {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-nh__guide-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-nh__guide-title {
  font-size: 20px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

.page-nh__guide-description {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.6;
}

/* FAQ Section */
.page-nh__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-nh__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 20px;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

.page-nh__faq-item summary:hover {
  background-color: rgba(42, 209, 111, 0.1);
}

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

.page-nh__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

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

/* Call to Action Section */
.page-nh__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-nh__hero-content {
    padding: 30px 20px;
  }
  .page-nh__main-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }
  .page-nh__hero-description {
    font-size: 18px;
  }
  .page-nh__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-nh__text-block {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-nh__section-spacing {
    padding: 40px 0;
  }
  .page-nh__hero-content {
    margin-top: 20px;
  }
  .page-nh__main-title {
    font-size: clamp(28px, 8vw, 40px);
  }
  .page-nh__hero-description {
    font-size: 16px;
  }
  .page-nh__hero-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: 16px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-nh__container,
  .page-nh__section,
  .page-nh__card,
  .page-nh__hero-section,
  .page-nh__intro-section,
  .page-nh__why-choose-section,
  .page-nh__popular-games-section,
  .page-nh__promotions-section,
  .page-nh__how-to-play-section,
  .page-nh__faq-section,
  .page-nh__cta-section,
  .page-nh__hero-image-wrapper,
  .page-nh__hero-content,
  .page-nh__hero-cta-buttons,
  .page-nh__features-grid,
  .page-nh__game-cards-grid,
  .page-nh__promo-grid,
  .page-nh__guide-steps-grid,
  .page-nh__faq-list,
  .page-nh__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden !important;
  }
  .page-nh img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  .page-nh__hero-section {
    padding-top: 10px !important;
  }
  .page-nh__faq-item summary {
    font-size: 18px;
    padding: 15px 20px;
  }
  .page-nh__faq-answer {
    font-size: 15px;
    padding: 0 20px 15px 20px;
  }
  .page-nh__text-block {
    text-align: left;
    font-size: 16px;
  }
  .page-nh__feature-card,
  .page-nh__game-card,
  .page-nh__promo-card,
  .page-nh__guide-step {
    padding: 20px;
  }
  .page-nh__game-image,
  .page-nh__promo-image,
  .page-nh__guide-image {
    height: 150px;
  }
  .page-nh__hero-image-wrapper {
    max-height: 400px;
  }
}

@media (max-width: 480px) {
  .page-nh__main-title {
    font-size: clamp(24px, 7vw, 36px);
  }
  .page-nh__hero-description {
    font-size: 15px;
  }
  .page-nh__section-title {
    font-size: clamp(24px, 6vw, 32px);
  }
  .page-nh__text-block {
    font-size: 15px;
  }
  .page-nh__btn-primary,
  .page-nh__btn-secondary {
    font-size: 15px;
    padding: 10px 15px;
  }
  .page-nh__faq-item summary {
    font-size: 16px;
  }
  .page-nh__faq-answer {
    font-size: 14px;
  }
  .page-nh__feature-title,
  .page-nh__game-title,
  .page-nh__promo-title,
  .page-nh__guide-title {
    font-size: 18px;
  }
  .page-nh__feature-description,
  .page-nh__game-description,
  .page-nh__promo-description,
  .page-nh__guide-description {
    font-size: 14px;
  }
}