.page-nh {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main for dark body background */
  background-color: #0a0a0a; /* Body background from shared.css */
}

.page-nh__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 10px 0 60px 0; /* Small top padding, larger bottom for content */
  overflow: hidden;
  color: #FFF5E1;
}

.page-nh__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.page-nh__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-nh__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 20px;
  margin-top: 50px; /* Adjust based on header height */
}

.page-nh__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF5E1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-nh__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 30px;
  color: #FFF5E1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-nh__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button gradient */
  color: #333333; /* Dark text for contrast on bright gradient */
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-nh__cta-button:hover {
  background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-nh__section {
  padding: 60px 20px;
  text-align: center;
  color: #FFF5E1;
  background-color: #B71C1C; /* Background color from custom palette */
}

.page-nh__dark-bg {
  background-color: #0a0a0a; /* Dark background from body */
  color: #FFF5E1;
}

.page-nh__bg-red {
  background-color: #B71C1C; /* Custom background color */
  color: #FFF5E1;
}

.page-nh__card {
  background-color: #D32F2F; /* Card BG from custom palette */
  color: #FFF5E1;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: left;
  border: 1px solid #F2B544; /* Border from custom palette */
}

.page-nh__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 40px;
  color: #FFF5E1;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-nh__sub-title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #FFCC66; /* Glow color for sub-titles */
}

.page-nh__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-nh__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-nh__list-item {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  color: #FFF5E1;
}

.page-nh__list-item::before {
  content: '★'; /* Custom bullet point */
  position: absolute;
  left: 0;
  color: #F4D34D; /* Gold color */
  font-weight: bold;
}

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

.page-nh__game-image, .page-nh__promo-image, .page-nh__security-icon {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  object-fit: cover;
  min-height: 200px; /* Enforce min size */
}

.page-nh__game-title, .page-nh__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFCC66; /* Glow color */
}

.page-nh__game-description, .page-nh__promo-description {
  font-size: 1rem;
  color: #FFF5E1;
  margin-bottom: 20px;
}

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

.page-nh__steps-list {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  counter-reset: step-counter;
}

.page-nh__steps-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 30px;
  text-align: left;
}

.page-nh__steps-item::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #C91F17; /* Main brand color */
  color: #FFF5E1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

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

.page-nh__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFF5E1;
  cursor: pointer;
  background-color: #C91F17; /* Main brand color */
  border-bottom: 1px solid #E53935;
  list-style: none; /* For details/summary */
}

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

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

.page-nh__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #FFD86A; /* Gold color for toggle */
  margin-left: 15px;
}

.page-nh__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1rem;
  color: #FFF5E1;
  background-color: #D32F2F; /* Card BG color */
  border-top: 1px solid #E53935; /* Auxiliary color */
}

.page-nh__copyright-info {
  padding: 30px 20px;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 245, 225, 0.7); /* Lighter version of Text Main */
  background-color: #0a0a0a; /* Dark body background */
  border-top: 1px solid rgba(255, 245, 225, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-nh__hero-section {
    padding: 10px 0 40px 0;
  }

  .page-nh__hero-content {
    margin-top: 30px;
  }

  .page-nh__main-title {
    font-size: 2rem;
  }

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

  .page-nh__cta-button {
    width: 100% !important;
    max-width: 300px !important; /* Limit width to prevent overly wide buttons */
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  .page-nh__section {
    padding: 40px 15px;
  }

  .page-nh__section-title {
    font-size: 1.8rem;
  }

  .page-nh__sub-title {
    font-size: 1.2rem;
  }

  .page-nh__content-area {
    padding: 0 10px;
  }

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

  .page-nh__game-image, .page-nh__promo-image, .page-nh__security-icon, .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px !important;
    min-height: 200px !important;
    object-fit: cover;
  }

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

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

  .page-nh__copyright-info {
    padding: 20px 15px;
  }

  .page-nh__steps-item {
    padding-left: 60px;
  }

  .page-nh__steps-item::before {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  /* Ensure all containers with images/buttons are responsive */
  .page-nh__hero-section,
  .page-nh__section,
  .page-nh__game-grid,
  .page-nh__promo-grid,
  .page-nh__security-grid,
  .page-nh__game-card,
  .page-nh__promo-card,
  .page-nh__security-item,
  .page-nh__faq-list,
  .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;
    overflow: hidden !important; /* Prevent horizontal scroll */
  }

  /* Multiple buttons in a row */
  .page-nh__cta-buttons, .page-nh__button-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .page-nh__cta-button {
    margin: 0 auto; /* Center buttons if they are not full width */
  }
}