.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__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 0;
  padding-top: 10px; /* Small top padding, body handles header offset */
  background-color: #0A4B2C; /* Deep Green for hero background */
  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 {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-nh__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

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

.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: 1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

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

.page-nh__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-nh__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-nh__btn-secondary:hover {
  background: #57E38D;
  color: #08160F; /* Background for contrast */
  transform: translateY(-2px);
}

.page-nh__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-nh__section-description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-nh__about-section,
.page-nh__advantages-section,
.page-nh__popular-games,
.page-nh__how-to-play,
.page-nh__promotions-section,
.page-nh__faq-section,
.page-nh__cta-bottom {
  padding: 80px 0;
}

.page-nh__dark-bg {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-nh__light-bg {
  background-color: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
}

.page-nh__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-nh__content-wrapper--reverse {
  flex-direction: row-reverse;
}

.page-nh__text-block {
  flex: 1;
}

.page-nh__image-block {
  flex: 1;
  min-width: 200px; /* Ensure images are not too small */
}

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

.page-nh__text-block h2 {
  font-size: 2.2rem;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  text-align: left;
}

.page-nh__text-block p {
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
}

.page-nh__btn-inline {
  margin-top: 20px;
}

.page-nh__grid-3-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.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 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
}

.page-nh__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.page-nh__card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
}

.page-nh__text-center {
  text-align: center;
}

.page-nh__game-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: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-nh__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  min-width: 200px;
  min-height: 200px;
}

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

.page-nh__game-title a {
  color: #F2FFF6; /* Text Main */
  text-decoration: none;
}

.page-nh__game-title a:hover {
  color: #57E38D; /* Glow */
}

.page-nh__game-description {
  font-size: 0.9rem;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 15px 15px;
}

.page-nh__btn-play {
  display: inline-block;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
  color: #F2FFF6; /* Text Main */
  padding: 10px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 20px;
  transition: background 0.3s ease;
}

.page-nh__btn-play:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
}

.page-nh__view-all {
  margin-top: 40px;
}

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

.page-nh__step-card {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-nh__step-card p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.page-nh__step-card p a {
  color: #57E38D;
  text-decoration: underline;
}

.page-nh__step-card p a:hover {
  color: #2AD16F;
}

.page-nh__step-cta {
  margin-top: auto; /* Push button to bottom */
}

.page-nh__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-nh__faq-list {
  margin-top: 40px;
}

.page-nh__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  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.15rem;
  color: #F2FFF6; /* Text Main */
  font-weight: bold;
  cursor: pointer;
  background-color: #11271B;
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}

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

.page-nh__faq-item[open] .page-nh__faq-question {
  background-color: #0A4B2C; /* Deep Green */
}

.page-nh__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #57E38D; /* Glow */
}

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

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

.page-nh__cta-bottom {
  text-align: center;
  padding: 80px 0;
}

.page-nh__cta-bottom .page-nh__description {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-nh__content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-nh__content-wrapper--reverse {
    flex-direction: column;
  }

  .page-nh__text-block h2 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .page-nh__hero-section {
    padding: 40px 0;
    padding-top: 10px !important;
  }

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

  .page-nh__description {
    font-size: 1rem;
  }

  .page-nh__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 15px;
  }

  .page-nh__btn-primary,
  .page-nh__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-nh__section-title {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-nh__section-description {
    font-size: 0.95rem;
    margin-bottom: 40px;
    padding: 0 15px;
  }

  .page-nh__about-section,
  .page-nh__advantages-section,
  .page-nh__popular-games,
  .page-nh__how-to-play,
  .page-nh__promotions-section,
  .page-nh__faq-section,
  .page-nh__cta-bottom {
    padding: 50px 0;
  }

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

  .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
  }
  
  .page-nh__section,
  .page-nh__card,
  .page-nh__container,
  .page-nh__game-card,
  .page-nh__step-card,
  .page-nh__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-nh__game-image {
    height: auto !important; /* Allow height to adjust */
  }

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

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

  .page-nh__text-block,
  .page-nh__image-block {
    flex: none;
    width: 100%;
  }

  .page-nh__grid-3-columns,
  .page-nh__game-grid,
  .page-nh__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-nh__card,
  .page-nh__game-card,
  .page-nh__step-card {
    padding: 20px;
  }

  .page-nh__step-image {
    height: auto !important;
  }

  .page-nh__text-block h2 {
    font-size: 1.8rem;
  }

  .page-nh__text-block p {
    font-size: 1rem;
  }

  .page-nh__cta-bottom .page-nh__description {
    padding: 0 15px;
  }
}