.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

.page-no-hu__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-no-hu__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding as body handles header offset */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-no-hu__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Cover ensures image fills space, but mobile will use contain */
  object-position: center;
  filter: brightness(0.7);
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin-top: -150px; /* Pull content up over image for visual appeal */
  background: rgba(8, 22, 15, 0.8); /* Background with transparency */
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive font size */
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-no-hu__description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #F2FFF6; /* Text Main */
  border: none;
  box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
}

.page-no-hu__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-no-hu__btn-secondary {
  background: transparent;
  color: #F2C14E; /* Gold */
  border: 2px solid #F2C14E; /* Gold border */
}

.page-no-hu__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-3px);
}

.page-no-hu__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: #F2C14E; /* Gold */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-no-hu__subtitle {
  font-size: 1.1rem;
  text-align: center;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 50px;
}

.page-no-hu__intro-section,
.page-no-hu__benefits-section,
.page-no-hu__strategies-section,
.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: #08160F; /* Background */
}

.page-no-hu__dark-section {
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-no-hu__light-bg {
  background-color: #11271B; /* Card B G */
  color: #F2FFF6; /* Text Main */
  padding: 60px 0;
}

.page-no-hu__text-contrast-fix {
  color: #F2FFF6; /* Ensure light text on dark background */
}

.page-no-hu__content-area p {
  margin-bottom: 15px;
  font-size: 1.05rem;
  color: #A7D9B8; /* Text Secondary */
}

.page-no-hu__games-showcase {
  padding: 80px 0;
}

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

.page-no-hu__game-card {
  background-color: #11271B; /* Card B G */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-no-hu__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-no-hu__game-title {
  font-size: 1.5rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-no-hu__game-description {
  font-size: 0.95rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-no-hu__btn-small {
  padding: 10px 20px;
  font-size: 1rem;
}

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

.page-no-hu__benefit-item {
  background-color: #11271B; /* Card B G */
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__benefit-title {
  font-size: 1.4rem;
  color: #22C768; /* Auxiliary Color */
  margin-bottom: 15px;
}

.page-no-hu__benefit-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-no-hu__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-no-hu__guide-list li {
  background-color: #08160F; /* Background */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-no-hu__guide-list h3 {
  font-size: 1.3rem;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-no-hu__guide-list p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
  margin-bottom: 15px;
}

.page-no-hu__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-no-hu__tips-list li {
  background-color: #11271B; /* Card B G */
  border-left: 5px solid #22C768; /* Auxiliary Color */
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-no-hu__tips-list li strong {
  color: #F2FFF6; /* Text Main */
}

.page-no-hu__promo-cta {
  padding: 80px 0;
  text-align: center;
  background: linear-gradient(90deg, #11A84E 0%, #22C768 100%); /* Green Gold gradient */
  color: #F2FFF6; /* Text Main */
}

.page-no-hu__promo-cta .page-no-hu__section-title {
  color: #F2FFF6; /* Text Main */
  text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.page-no-hu__promo-cta .page-no-hu__description {
  color: #F2FFF6; /* Text Main */
  max-width: 800px;
  margin: 0 auto 40px;
}

/* FAQ Section */
details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
  background: #11271B; /* Card B G */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

details.page-no-hu__faq-item summary.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

details.page-no-hu__faq-item summary.page-no-hu__faq-question::-webkit-details-marker {
  display: none;
}

details.page-no-hu__faq-item summary.page-no-hu__faq-question:hover {
  background: #0A4B2C; /* Deep Green */
}

.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2FFF6; /* Text Main */
}

.page-no-hu__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #57E38D; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 32px;
  text-align: center;
  transition: transform 0.3s ease;
}

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

details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 25px 25px;
  background: #08160F; /* Background */
  border-top: 1px solid #1E3A2A; /* Divider */
  border-radius: 0 0 10px 10px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1rem;
}

.page-no-hu__faq-answer p {
  margin-top: 15px;
  margin-bottom: 0;
}

/* General image responsiveness */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Media Queries --- */

@media (max-width: 1024px) {
  .page-no-hu__container {
    padding: 20px 30px;
  }

  .page-no-hu__hero-content {
    margin-top: -100px;
    padding: 30px 20px;
  }

  .page-no-hu__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

  .page-no-hu__description {
    font-size: 1rem;
  }

  .page-no-hu__section-title {
    font-size: clamp(1.8rem, 3.8vw, 2.5rem);
  }

  .page-no-hu__cta-buttons {
    gap: 15px;
  }

  .page-no-hu__btn-primary, .page-no-hu__btn-secondary {
    padding: 12px 25px;
    font-size: 1rem;
  }

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

  .page-no-hu__game-image {
    height: 180px;
  }

  .page-no-hu__game-title {
    font-size: 1.3rem;
  }

  .page-no-hu__faq-qtext {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .page-no-hu__container {
    padding: 15px;
  }

  /* HERO 主图区域 */
  .page-no-hu__hero-section {
    padding-top: 10px;
  }

  .page-no-hu__hero-image {
    object-fit: contain !important; /* Mobile: ensure full image is visible */
    aspect-ratio: unset !important; /* Remove fixed aspect ratio */
    height: auto !important;
    max-height: 300px !important; /* Limit height for mobile */
  }

  .page-no-hu__hero-content {
    margin-top: 20px; /* Adjust margin for mobile, prevent overlap */
    padding: 25px 15px;
    background: rgba(8, 22, 15, 0.95); /* Less transparency on mobile */
  }

  .page-no-hu__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    margin-bottom: 15px;
  }

  .page-no-hu__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  /* 按钮与按钮容器 */
  .page-no-hu__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu a[class*="button"],
  .page-no-hu a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px !important;
    font-size: 1rem !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    text-align: center;
  }

  .page-no-hu__section-title {
    font-size: clamp(1.5rem, 5vw, 2.2rem) !important;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .page-no-hu__subtitle {
    font-size: 0.9rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  /* 产品展示图区域 */
  .page-no-hu__games-showcase {
    padding: 40px 0;
    overflow-x: hidden !important; /* Prevent horizontal scroll */
  }

  .page-no-hu__games-grid {
    grid-template-columns: 1fr !important; /* Single column on mobile */
    gap: 20px;
  }

  .page-no-hu__game-card {
    padding-bottom: 20px;
  }

  .page-no-hu__game-image {
    height: 150px !important;
  }

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

  .page-no-hu__game-description {
    font-size: 0.9rem;
  }

  .page-no-hu__benefits-section,
  .page-no-hu__guide-section,
  .page-no-hu__strategies-section,
  .page-no-hu__promo-cta,
  .page-no-hu__faq-section {
    padding: 40px 0;
  }

  .page-no-hu__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__benefit-item {
    padding: 20px;
  }

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

  .page-no-hu__guide-list li {
    padding: 20px;
  }

  .page-no-hu__guide-list h3 {
    font-size: 1.1rem;
  }

  .page-no-hu__tips-list li {
    font-size: 0.95rem;
  }

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

  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container,
  .page-no-hu__content-area,
  .page-no-hu__hero-image-wrapper {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-no-hu__content-area p {
    font-size: 0.95rem;
  }

  details.page-no-hu__faq-item summary.page-no-hu__faq-question {
    padding: 15px;
  }

  .page-no-hu__faq-qtext {
    font-size: 1rem;
  }

  .page-no-hu__faq-toggle {
    font-size: 24px;
    width: 28px;
  }

  details.page-no-hu__faq-item .page-no-hu__faq-answer {
    padding: 0 15px 15px;
  }
}