.page-nh {
  padding-top: 10px;
  background-color: #140C0C;
  color: #FFF1E8;
  font-family: 'Roboto', sans-serif;
}

.page-nh__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 0 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-nh__hero-image {
  width: 100%;
  max-width: 1200px;
  height: auto;
  border-radius: 10px;
  margin-bottom: 30px;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum size */
}

.page-nh__hero-content {
  max-width: 900px;
  padding: 0 20px;
}

.page-nh__main-title {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #F3C54D; /* Gold color for H1 */
  margin-bottom: 20px;
}

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

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

.page-nh__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  min-width: 150px;
  font-size: 1rem;
}

.page-nh__btn--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C;
  border: none;
}

.page-nh__btn--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-nh__btn--secondary {
  background-color: transparent;
  color: #FFF1E8;
  border: 2px solid #6A1E1E;
}

.page-nh__btn--secondary:hover {
  background-color: #2A1212;
  border-color: #E53030;
  transform: translateY(-2px);
}

.page-nh__btn--large {
  padding: 15px 35px;
  font-size: 1.1rem;
}

.page-nh__btn--small {
  padding: 8px 15px;
  font-size: 0.9rem;
}

.page-nh__introduction-section,
.page-nh__game-showcase,
.page-nh__features-section,
.page-nh__cta-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.page-nh__section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #E53030;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-nh__section-description,
.page-nh__cta-description {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.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: #2A1212;
  border-radius: 12px;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #6A1E1E;
}

.page-nh__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
  min-width: 200px; /* Ensure minimum size */
  min-height: 200px; /* Ensure minimum size */
}

.page-nh__game-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #F3C54D;
  margin-bottom: 10px;
}

.page-nh__game-desc {
  font-size: 0.95rem;
  color: #FFF1E8;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

.page-nh__feature-item {
  background-color: #2A1212;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  border: 1px solid #6A1E1E;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-nh__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #E53030;
  margin-bottom: 15px;
}

.page-nh__feature-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF1E8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-nh__hero-section {
    padding: 15px 10px 30px;
  }

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

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

  .page-nh__hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-nh__btn {
    width: 100%;
    max-width: 300px;
  }

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

  .page-nh__introduction-section,
  .page-nh__game-showcase,
  .page-nh__features-section,
  .page-nh__cta-section {
    padding: 30px 15px;
  }

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

  .page-nh__game-image {
    max-width: 100%;
    height: auto;
  }

  /* Mobile image constraint */
  .page-nh img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .page-nh__main-title {
    font-size: 1.8rem;
  }

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

  .page-nh__btn--large {
    font-size: 1rem;
    padding: 12px 25px;
  }
}