/* style/nh.css */
/* Custom Colors */
:root {
  --page-nh-bg-primary: #08160F;
  --page-nh-card-bg: #11271B;
  --page-nh-text-main: #F2FFF6;
  --page-nh-text-secondary: #A7D9B8;
  --page-nh-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --page-nh-border-color: #2E7A4E;
  --page-nh-glow-color: #57E38D;
  --page-nh-gold-color: #F2C14E;
  --page-nh-divider-color: #1E3A2A;
  --page-nh-deep-green: #0A4B2C;
}

.page-nh {
  background-color: var(--page-nh-bg-primary);
  color: var(--page-nh-text-main);
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-nh__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-nh__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--page-nh-gold-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.page-nh__text-block {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--page-nh-text-secondary);
}

.page-nh__inline-link {
  color: var(--page-nh-glow-color);
  text-decoration: underline;
}

.page-nh__card {
  background-color: var(--page-nh-card-bg);
  color: var(--page-nh-text-main);
  border: 1px solid var(--page-nh-border-color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-nh__card-title {
  font-size: 1.5rem;
  color: var(--page-nh-gold-color);
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-nh__card-text {
  color: var(--page-nh-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

.page-nh__btn-primary,
.page-nh__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-nh__btn-primary {
  background: var(--page-nh-btn-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-nh__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4);
}

.page-nh__btn-secondary {
  background-color: transparent;
  color: var(--page-nh-glow-color);
  border: 2px solid var(--page-nh-glow-color);
}

.page-nh__btn-secondary:hover {
  background-color: var(--page-nh-glow-color);
  color: var(--page-nh-bg-primary);
  transform: translateY(-2px);
}

/* Hero Section */
.page-nh__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles main offset */
  background-color: var(--page-nh-bg-primary);
  overflow: hidden;
}

.page-nh__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px;
  box-sizing: border-box;
}

.page-nh__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-nh__hero-content {
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.page-nh__hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--page-nh-gold-color);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-nh__hero-description {
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  color: var(--page-nh-text-secondary);
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Intro Section */
.page-nh__intro-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-nh__intro-section .page-nh__section-title {
  color: var(--page-nh-deep-green);
}

.page-nh__intro-section .page-nh__text-block {
  color: #555555;
}

.page-nh__intro-section .text-highlight {
  color: var(--page-nh-deep-green);
  font-weight: 600;
}

.page-nh__intro-section .page-nh__inline-link {
  color: var(--page-nh-deep-green);
}

/* Why Choose Section */
.page-nh__why-choose-section {
  padding: 80px 0;
  background-color: var(--page-nh-bg-primary);
}

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

.page-nh__feature-card {
  text-align: center;
}

.page-nh__feature-card .page-nh__card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Game Types Section */
.page-nh__game-types-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  color: #333333;
}

.page-nh__game-types-section .page-nh__section-title {
  color: var(--page-nh-deep-green);
}

.page-nh__game-types-section .page-nh__text-block {
  color: #555555;
  text-align: center;
}

.page-nh__game-types-section .text-highlight {
  color: var(--page-nh-deep-green);
  font-weight: 600;
}

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

.page-nh__game-type-card {
  text-align: center;
  background-color: #ffffff;
  color: #333333;
}

.page-nh__game-type-card .page-nh__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  margin-bottom: 15px;
}

.page-nh__game-type-card .page-nh__card-title {
  color: var(--page-nh-deep-green);
  font-size: 1.3rem;
}

.page-nh__game-type-card .page-nh__card-text {
  color: #666666;
  font-size: 0.95rem;
}

/* Guide Section */
.page-nh__guide-section {
  padding: 80px 0;
  background-color: var(--page-nh-bg-primary);
}

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

.page-nh__step-item {
  background-color: var(--page-nh-card-bg);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--page-nh-border-color);
}

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

.page-nh__step-title {
  font-size: 1.4rem;
  color: var(--page-nh-gold-color);
  margin-bottom: 10px;
}

.page-nh__step-text {
  color: var(--page-nh-text-secondary);
  font-size: 1rem;
}

/* Tips Section */
.page-nh__tips-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-nh__tips-section .page-nh__section-title {
  color: var(--page-nh-deep-green);
}

.page-nh__tips-section .page-nh__text-block {
  color: #555555;
  text-align: center;
}

.page-nh__tips-section .text-highlight {
  color: var(--page-nh-deep-green);
  font-weight: 600;
}

.page-nh__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-nh__list-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  background-color: #f9f9f9;
  border-left: 5px solid var(--page-nh-glow-color);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-nh__list-icon {
  font-size: 2.2rem;
  color: var(--page-nh-glow-color);
  margin-right: 20px;
  line-height: 1;
}

.page-nh__list-title {
  font-size: 1.3rem;
  color: var(--page-nh-deep-green);
  margin-top: 0;
  margin-bottom: 8px;
}

.page-nh__list-text {
  color: #666666;
  font-size: 1rem;
  line-height: 1.6;
}

.page-nh__image-container {
  text-align: center;
  margin-top: 50px;
}

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

/* Promotions Section */
.page-nh__promotions-section {
  padding: 80px 0;
  background-color: var(--page-nh-deep-green);
}

.page-nh__promotions-section .page-nh__section-title {
  color: #ffffff;
}

.page-nh__promotions-section .page-nh__text-block {
  color: var(--page-nh-text-secondary);
  text-align: center;
}

.page-nh__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.page-nh__promo-item {
  background-color: var(--page-nh-card-bg);
  padding: 30px;
  text-align: center;
}

.page-nh__promo-title {
  font-size: 1.4rem;
  color: var(--page-nh-gold-color);
  margin-bottom: 15px;
}

.page-nh__promo-text {
  color: var(--page-nh-text-secondary);
  font-size: 1rem;
}

.page-nh__cta-wrapper {
  text-align: center;
  margin-top: 50px;
}

/* Mobile App Section */
.page-nh__mobile-app-section {
  padding: 80px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-nh__mobile-app-section .page-nh__section-title {
  color: var(--page-nh-deep-green);
}

.page-nh__mobile-app-section .page-nh__text-block {
  color: #555555;
}

.page-nh__mobile-app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-nh__mobile-app-text {
  flex: 1;
}

.page-nh__app-benefits {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-nh__app-benefits .page-nh__list-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #555555;
  background: none;
  border-left: none;
  padding: 0;
  box-shadow: none;
}

.page-nh__app-benefits .page-nh__list-item::before {
  content: '✓';
  color: var(--page-nh-glow-color);
  font-weight: bold;
  margin-right: 10px;
  font-size: 1.3rem;
}

.page-nh__mobile-app-image-wrapper {
  flex: 0 0 400px; /* Fixed width for image on desktop */
  text-align: center;
}

.page-nh__mobile-app-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Support & Security Section */
.page-nh__support-security-section {
  padding: 80px 0;
  background-color: var(--page-nh-bg-primary);
}

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

.page-nh__support-card {
  text-align: center;
}

.page-nh__support-card .page-nh__card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* FAQ Section */
.page-nh__faq-section {
  padding: 80px 0;
  background-color: #f5f5f5;
  color: #333333;
}

.page-nh__faq-section .page-nh__section-title {
  color: var(--page-nh-deep-green);
}

.page-nh__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.page-nh__faq-item {
  background-color: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.page-nh__faq-item summary {
  list-style: none;
}

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

.page-nh__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--page-nh-deep-green);
  cursor: pointer;
  background-color: #e8f5e9;
  border-bottom: 1px solid #d4e9d7;
}

.page-nh__faq-question:hover {
  background-color: #d4e9d7;
}

.page-nh__faq-toggle {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1;
  color: var(--page-nh-glow-color);
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-nh__faq-item[open] .page-nh__faq-toggle {
  transform: rotate(45deg);
}

.page-nh__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  color: #555555;
  background-color: #ffffff;
}

.page-nh__faq-answer .page-nh__text-block {
  margin-bottom: 0;
}

/* Conclusion Section */
.page-nh__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--page-nh-deep-green);
}

.page-nh__conclusion-section .page-nh__section-title {
  color: #ffffff;
}

.page-nh__conclusion-section .page-nh__text-block {
  color: var(--page-nh-text-secondary);
  max-width: 900px;
  margin: 0 auto 40px auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-nh__hero-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
  }
  .page-nh__hero-description {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
  }
  .page-nh__mobile-app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-nh__mobile-app-image-wrapper {
    flex: none;
    width: 80%;
    margin-top: 30px;
  }
}

@media (max-width: 768px) {
  .page-nh__container {
    padding: 0 15px !important;
  }
  .page-nh__hero-section {
    padding: 40px 15px !important;
    padding-top: 10px !important;
  }
  .page-nh__section-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 30px;
  }
  .page-nh__text-block {
    font-size: 1rem;
  }
  .page-nh__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-nh__btn-primary,
  .page-nh__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
  }

  /* Force responsive images and videos */
  .page-nh img,
  .page-nh video {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-nh__section,
  .page-nh__card,
  .page-nh__container,
  .page-nh__video-section,
  .page-nh__video-container,
  .page-nh__video-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important; /* Ensure no horizontal scroll */
  }

  .page-nh__hero-image-wrapper {
    margin-bottom: 20px;
  }

  .page-nh__hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

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

  .page-nh__features-grid,
  .page-nh__game-types-grid,
  .page-nh__guide-steps,
  .page-nh__promo-list,
  .page-nh__support-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-nh__feature-card .page-nh__card-image,
  .page-nh__game-type-card .page-nh__card-image,
  .page-nh__step-image,
  .page-nh__support-card .page-nh__card-image {
    height: 180px;
  }

  .page-nh__list-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
  }

  .page-nh__list-icon {
    margin-right: 0;
    margin-bottom: 10px;
  }

  .page-nh__mobile-app-image-wrapper {
    width: 100%;
    flex: none;
  }

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

  .page-nh__faq-toggle {
    font-size: 1.5rem;
  }

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

  .page-nh__intro-section, .page-nh__why-choose-section, .page-nh__game-types-section, .page-nh__guide-section, .page-nh__tips-section, .page-nh__promotions-section, .page-nh__mobile-app-section, .page-nh__support-security-section, .page-nh__faq-section, .page-nh__conclusion-section {
    padding: 40px 0;
  }

  .page-nh__mobile-app-content {
    padding-left: 15px;
    padding-right: 15px;
  }
}