.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 15px;
  box-sizing: border-box;
}

/* Hero Section */
.page-nh__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-nh__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

.page-nh__hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-nh__hero-title {
  font-size: 2.8em;
  font-weight: bold;
  color: #FFD36B; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

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

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

/* General Section Styling */
.page-nh__section {
  padding: 60px 0;
}

.page-nh__section-title {
  font-size: 2.2em;
  font-weight: bold;
  color: #F2C14E; /* Main Color */
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

.page-nh__sub-title {
  font-size: 1.6em;
  color: #FFD36B; /* Glow */
  margin-top: 30px;
  margin-bottom: 20px;
  border-bottom: 2px solid #3A2A12; /* Border */
  padding-bottom: 10px;
}

.page-nh__content-area p {
  margin-bottom: 15px;
  color: #FFF6D6;
}

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

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

.page-nh__list-item::before {
  content: '⚡';
  position: absolute;
  left: 0;
  color: #F2C14E;
  font-size: 1.2em;
  line-height: 1;
}

.page-nh__numbered-list {
  list-style: none;
  padding-left: 0;
  counter-reset: my-counter;
  margin-bottom: 20px;
}

.page-nh__numbered-list .page-nh__list-item {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
}

.page-nh__numbered-list .page-nh__list-item::before {
  content: counter(my-counter) '.';
  counter-increment: my-counter;
  position: absolute;
  left: 0;
  font-weight: bold;
  color: #F2C14E;
}

/* Buttons */
.page-nh__btn-primary,
.page-nh__btn-secondary,
.page-nh__btn-play {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  text-align: center;
}

.page-nh__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button Color */
  color: #111111; /* Card BG for contrast */
  border: 2px solid transparent;
}

.page-nh__btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-nh__btn-secondary {
  background: #111111; /* Card BG */
  color: #F2C14E; /* Main Color */
  border: 2px solid #F2C14E; /* Main Color */
}

.page-nh__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
}

.page-nh__btn-play {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
  padding: 8px 20px;
  font-size: 0.9em;
}

.page-nh__btn-play:hover {
  filter: brightness(1.1);
}

.page-nh__button-group {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-nh__game-card {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-nh__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(242, 193, 78, 0.2);
}

.page-nh__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-nh__game-title {
  font-size: 1.4em;
  color: #FFD36B; /* Glow */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-nh__game-description {
  font-size: 0.95em;
  color: #FFF6D6;
  margin-bottom: 20px;
  padding: 0 15px;
}

/* FAQ Section */
.page-nh__faq-list {
  margin-top: 30px;
}

.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-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #F2C14E; /* Main Color */
  cursor: pointer;
  background-color: #1a1a1a;
  border-bottom: 1px solid #3A2A12;
  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.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  color: #FFD36B;
}

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

.page-nh__faq-answer {
  padding: 15px 25px 20px;
  font-size: 0.95em;
  color: #FFF6D6;
  line-height: 1.7;
}

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

/* Conclusion Section */
.page-nh__conclusion-section {
  text-align: center;
  padding-bottom: 80px;
}

.page-nh__conclusion-section .page-nh__hero-description {
  margin-bottom: 40px;
}

/* All images responsive base */
.page-nh img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries for Responsiveness */

/* Tablet (max-width: 1024px) */
@media (max-width: 1024px) {
  .page-nh__hero-title {
    font-size: 2.4em;
  }

  .page-nh__section-title {
    font-size: 2em;
  }

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

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

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

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-nh__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 30px;
  }

  .page-nh__hero-image-container {
    max-height: 400px;
    margin-bottom: 15px;
  }

  .page-nh__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    border-radius: 0;
  }

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

  .page-nh__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
    padding: 0 10px;
  }

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

  /* General Section Styling for Mobile */
  .page-nh__section {
    padding: 40px 0;
  }

  .page-nh__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .page-nh__sub-title {
    font-size: 1.3em;
    margin-top: 25px;
    margin-bottom: 15px;
    padding: 0 15px;
  }

  .page-nh__content-area p,
  .page-nh__list-item {
    font-size: 0.95em;
    padding: 0 15px;
  }

  /* 产品展示图区域 */
  .page-nh__games-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  .page-nh__game-card {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }

  .page-nh__game-image {
    height: 150px;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* 通用图片与容器 */
  .page-nh img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-nh__section,
  .page-nh__card,
  .page-nh__container,
  .page-nh__hero-content-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 按钮与按钮容器 */
  .page-nh__btn-primary,
  .page-nh__btn-secondary,
  .page-nh__btn-play,
  .page-nh a[class*="button"],
  .page-nh a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column; /* Ensure vertical stacking for multiple buttons */
  }

  /* Other Content Modules (FAQ) */
  .page-nh__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

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

  .page-nh__faq-item {
    margin-left: 0;
    margin-right: 0;
  }
}