/* style/nh.css */
.page-nh {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  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__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles header offset */
  overflow: hidden;
  background-color: #0A4B2C; /* Deep Green for hero background */
}

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

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

.page-nh__hero-content {
  z-index: 1;
  max-width: 800px;
  color: #F2FFF6;
}

.page-nh__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold */
}

.page-nh__hero-description {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

.page-nh__hero-cta-buttons,
.page-nh__button-group,
.page-nh__cta-final-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

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

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

.page-nh__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(42, 209, 111, 0.4);
}

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

.page-nh__btn-secondary:hover {
  background: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.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__mobile-section,
.page-nh__faq-section,
.page-nh__cta-final {
  padding: 60px 0;
}

.page-nh__dark-section {
  background-color: #0A4B2C; /* Deep Green */
}

.page-nh__intro-title,
.page-nh__why-choose-title,
.page-nh__popular-games-title,
.page-nh__promotions-title,
.page-nh__how-to-play-title,
.page-nh__mobile-title,
.page-nh__faq-title,
.page-nh__cta-final-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-nh__intro-text,
.page-nh__promotions-text,
.page-nh__mobile-text,
.page-nh__cta-final-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px auto;
  color: #A7D9B8; /* Text Secondary */
}

.page-nh__feature-image,
.page-nh__security-image,
.page-nh__promotions-image,
.page-nh__mobile-image {
  width: 100%;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  object-fit: cover;
}

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

.page-nh__card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #F2FFF6; /* Text Main */
}

.page-nh__feature-heading,
.page-nh__game-name,
.page-nh__how-to-play-step-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 15px;
}

.page-nh__feature-description,
.page-nh__game-short-desc,
.page-nh__how-to-play-step-description {
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-nh__game-card .page-nh__btn-primary {
  margin-top: 20px;
  display: inline-block;
  width: auto;
  max-width: 100%;
}

.page-nh__how-to-play-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.page-nh__how-to-play-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-nh__how-to-play-item a {
  color: #57E38D; /* Glow */
  text-decoration: underline;
}

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

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

.page-nh__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  color: #F2C14E; /* Gold */
  user-select: none;
  list-style: none; /* For details/summary */
}

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

.page-nh__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #57E38D; /* Glow */
}

.page-nh__faq-item[open] .page-nh__faq-toggle {
  transform: rotate(45deg);
}

.page-nh__faq-answer {
  padding: 0 25px 20px 25px;
  font-size: 1rem;
  color: #A7D9B8; /* Text Secondary */
}

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

/* Responsive Styles */
@media (max-width: 768px) {
  .page-nh__container {
    padding: 0 15px !important;
  }

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

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

  .page-nh__hero-description {
    font-size: 1rem;
  }

  .page-nh__hero-cta-buttons,
  .page-nh__button-group,
  .page-nh__cta-final-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: 1rem;
  }

  .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__mobile-section,
  .page-nh__faq-section,
  .page-nh__cta-final {
    padding: 40px 0;
  }

  .page-nh__intro-title,
  .page-nh__why-choose-title,
  .page-nh__popular-games-title,
  .page-nh__promotions-title,
  .page-nh__how-to-play-title,
  .page-nh__mobile-title,
  .page-nh__faq-title,
  .page-nh__cta-final-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-nh__intro-text,
  .page-nh__promotions-text,
  .page-nh__mobile-text,
  .page-nh__cta-final-description {
    font-size: 0.95rem;
  }

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

  .page-nh__section,
  .page-nh__card,
  .page-nh__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-nh__feature-image,
  .page-nh__security-image,
  .page-nh__promotions-image,
  .page-nh__mobile-image {
    margin: 30px auto;
  }

  .page-nh__features-grid,
  .page-nh__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-nh__card {
    padding: 20px;
  }

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

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

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

  .page-nh__how-to-play-item {
    padding: 20px;
  }
  
  .page-nh__how-to-play-item a {
    white-space: normal;
    word-wrap: break-word;
    display: inline-block;
  }
}