.page-nh {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-nh__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding */
  background-color: #2F6BFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-nh__hero-image-wrapper {
  width: 100%;
  max-height: 675px;
  overflow: hidden;
}

.page-nh__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: none; /* Ensure no filter is applied */
}

.page-nh__hero-content {
  position: relative;
  z-index: 1;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  color: #FFFFFF;
}

.page-nh__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 20px;
}

.page-nh__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-nh__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-nh__section-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #1F2D3D;
  padding-top: 60px;
}

.page-nh__game-showcase {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.page-nh__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #D6E2FF;
}

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

.page-nh__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  filter: none; /* Ensure no filter is applied */
}

.page-nh__game-card-content {
  padding: 20px;
}

.page-nh__game-card-title {
  font-size: 1.3em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-nh__game-card-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-nh__game-card-link {
  display: inline-block;
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.page-nh__game-card-link:hover {
  color: #6FA3FF;
}

.page-nh__features-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-nh__features-content {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}

.page-nh__feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-nh__feature-item {
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.6;
  color: #1F2D3D;
}

.page-nh__feature-item::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #2F6BFF;
  font-weight: bold;
  font-size: 1.2em;
}

.page-nh__features-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-nh__features-image {
  width: 100%;
  height: auto;
  display: block;
  filter: none; /* Ensure no filter is applied */
}

.page-nh__cta-button--small {
  padding: 12px 25px;
  font-size: 1em;
}

.page-nh__faq-section {
  padding: 60px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.page-nh__faq-item {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF;
}

.page-nh__faq-question {
  font-size: 1.15em;
  font-weight: 600;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 10px;
}

.page-nh__faq-answer {
  font-size: 1em;
  line-height: 1.6;
  color: #1F2D3D;
}

@media (max-width: 768px) {
  .page-nh__main-title {
    font-size: 2em;
  }

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

  .page-nh__section-title {
    font-size: 1.8em;
    padding-top: 40px;
  }

  .page-nh__game-grid {
    grid-template-columns: 1fr;
  }

  .page-nh__features-section {
    flex-direction: column;
    gap: 30px;
  }

  .page-nh__features-content, .page-nh__features-image-wrapper {
    max-width: 100%;
  }

  .page-nh__game-card-image, .page-nh__hero-image, .page-nh__features-image {
    max-width: 100%;
    height: auto;
  }

  /* Ensure all content area images are responsive and don't overflow */
  .page-nh img {
    max-width: 100%;
    height: auto;
  }

  .page-nh__game-card-image {
    height: 200px; /* Maintain minimum height */
  }

  .page-nh__hero-image-wrapper {
    max-height: none;
  }
}

/* Ensure content area images are not smaller than 200px */
.page-nh img {
  min-width: 200px;
  min-height: 200px;
}

.page-nh__game-card-image {
  min-height: 200px; /* Specific override for card images */
}

/* Additional rules for color contrast and font sizes based on requirements */
.page-nh h1, .page-nh h2, .page-nh h3, .page-nh p, .page-nh li, .page-nh a {
  color: inherit; /* Ensure text colors are set by parent or specific rules */
}

.page-nh__hero-content h1, .page-nh__hero-content p {
  color: #FFFFFF; /* White text on blue background for hero */
}

.page-nh__main-title {
  /* No fixed large font-size, rely on clamp if needed, but for now just weight/spacing */
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.page-nh__section-title {
  font-weight: 700;
}

.page-nh__game-card-title, .page-nh__faq-question {
  color: #000000; /* Custom Color_1776249996415 for these titles */
}

.page-nh__game-card-description, .page-nh__feature-item, .page-nh__faq-answer {
  color: #1F2D3D; /* Text Main color */
}

.page-nh__game-card-link {
  color: #2F6BFF; /* Main color for links */
}