.page-nh {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* 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__hero-section {
  position: relative;
  text-align: center;
  padding-top: 10px; /* Fixed spacing from header */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-nh__hero-image-wrapper {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

.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: 10;
  padding: 0 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-nh__hero-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow */
  line-height: 1.2;
  letter-spacing: -1px;
}

.page-nh__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF6D6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-nh__cta-button--primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #ffffff;
  border: none;
}

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

.page-nh__cta-button--secondary {
  background: #1a1a1a;
  color: #FFD36B; /* Glow */
  border: 2px solid #FFD36B;
}

.page-nh__cta-button--secondary:hover {
  background: #2a2a2a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-nh__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #FFD36B; /* Glow */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-nh__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, #FFD36B, transparent);
  border-radius: 2px;
}

.page-nh__subsection-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #F2C14E; /* Main Color */
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.page-nh__section-text {
  font-size: 1.1em;
  color: #FFF6D6;
  margin-bottom: 20px;
  text-align: left;
}

.page-nh__feature-list,
.page-nh__step-list,
.page-nh__payment-methods,
.page-nh__terms-list,
.page-nh__app-benefits {
  list-style: none;
  padding: 0;
  margin: 20px 0 40px 0;
}

.page-nh__feature-item,
.page-nh__step-item,
.page-nh__payment-item,
.page-nh__terms-item,
.page-nh__app-benefit-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 15px;
  color: #FFF6D6;
  font-size: 1.05em;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.page-nh__feature-item::before,
.page-nh__step-item::before,
.page-nh__payment-item::before,
.page-nh__terms-item::before,
.page-nh__app-benefit-item::before {
  content: '⚡'; /* Example icon, replace with specific if needed */
  color: #FFD36B;
  font-size: 1.2em;
  flex-shrink: 0;
}

.page-nh__step-item::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  background: #F2C14E;
  color: #0A0A0A;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9em;
  font-weight: bold;
}

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

.page-nh__game-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-nh__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  filter: brightness(0.8);
}

.page-nh__game-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-nh__game-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #F2C14E; /* Main Color */
  margin-bottom: 10px;
}

.page-nh__game-description {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-nh__cta-button--small {
  padding: 10px 20px;
  font-size: 0.9em;
  align-self: flex-start;
}

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

.page-nh__promo-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-nh__promo-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #FFD36B; /* Glow */
  margin-bottom: 15px;
}

.page-nh__promo-description {
  font-size: 1.05em;
  color: #FFF6D6;
}

.page-nh__button-group {
  text-align: center;
  margin-top: 40px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.page-nh__app-layout {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.page-nh__app-content {
  flex: 1;
  min-width: 300px;
}

.page-nh__app-image-wrapper {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.page-nh__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

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

.page-nh__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

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

.page-nh__faq-item summary:hover {
  background-color: #2a2a2a;
}

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

.page-nh__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 20px;
  color: #FFD36B;
}

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

.page-nh__faq-answer {
  padding: 20px 25px;
  font-size: 1.05em;
  color: #FFF6D6;
  border-top: 1px solid #3A2A12;
}

.page-nh__conclusion-content {
  text-align: center;
}

.page-nh p {
  color: #FFF6D6;
}

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

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

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

  .page-nh__hero-title {
    font-size: 2.2em;
    margin-bottom: 15px;
  }

  .page-nh__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

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

  .page-nh__cta-button {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

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

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

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

  .page-nh__subsection-title {
    font-size: 1.5em;
    margin-top: 30px;
    margin-bottom: 15px;
  }

  .page-nh__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-nh__feature-item,
  .page-nh__step-item,
  .page-nh__payment-item,
  .page-nh__terms-item,
  .page-nh__app-benefit-item {
    padding: 15px;
    font-size: 1em;
  }

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

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

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

  .page-nh__game-description {
    font-size: 0.9em;
  }

  .page-nh__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-nh__promo-card {
    padding: 20px;
  }

  .page-nh__promo-title {
    font-size: 1.4em;
  }

  .page-nh__app-layout {
    flex-direction: column;
    gap: 30px;
  }

  .page-nh__app-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-nh__faq-toggle {
    font-size: 1.3em;
  }

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

  /* Ensure all images are responsive */
  .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Ensure all content containers are responsive */
  .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__app-content,
  .page-nh__app-image-wrapper {
    padding: 0;
  }
}