.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
  padding-top: 10px; /* Small top padding for main content, body handles header offset */
}

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

.page-no-hu__section {
  padding: 60px 0;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-no-hu__dark-bg {
  background-color: #140C0C; /* Background */
  color: #FFF1E8; /* Text Main */
}

.page-no-hu__light-bg {
  background-color: #2A1212; /* Card BG, used for lighter sections for contrast */
  color: #FFF1E8; /* Text Main */
}

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

.page-no-hu__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #F3C54D; /* Gold */
  line-height: 1.2;
}

.page-no-hu__subsection-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 25px;
  color: #F3C54D; /* Gold */
}

.page-no-hu__text-block {
  font-size: 17px;
  margin-bottom: 20px;
  line-height: 1.7;
  text-align: justify;
  color: #FFF1E8;
}

.page-no-hu__text-block a {
  color: #FFB04A;
  text-decoration: underline;
}

.page-no-hu__text-block a:hover {
  color: #D86A14;
}

/* Hero Section */
.page-no-hu__hero-section {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 500px;
  padding: 10px 0 60px 0; /* Small top padding, body handles header offset */
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  order: 1; /* Image first */
}

.page-no-hu__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 600px; /* Limit hero image height on desktop */
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 10;
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
  order: 2; /* Content after image */
  background: rgba(20, 12, 12, 0.7); /* Semi-transparent background for readability */
  border-radius: 8px;
  margin-top: -80px; /* Overlap slightly with image for visual appeal, but not covering text */
}

.page-no-hu__main-title {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #F3C54D; /* Gold */
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-no-hu__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 30px;
  color: #FFF1E8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #140C0C; /* Dark text on light button for contrast */
  border: none;
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-secondary {
  background: #2A1212; /* Card BG */
  color: #FFB04A;
  border: 2px solid #FFB04A;
}

.page-no-hu__btn-secondary:hover {
  background: #FFB04A;
  color: #140C0C;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Content Images */
.page-no-hu__image-block {
  text-align: center;
  margin: 40px auto;
  max-width: 900px;
}

.page-no-hu__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Feature Grid */
.page-no-hu__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__feature-card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFB04A;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-no-hu__card-text {
  font-size: 16px;
  color: #FFF1E8;
}

/* Game Grid */
.page-no-hu__game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__game-card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-no-hu__game-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #FFB04A;
  margin: 20px 20px 10px 20px;
}

.page-no-hu__game-provider {
  font-size: 14px;
  color: #F3C54D;
  margin: 0 20px 10px 20px;
}

.page-no-hu__game-description {
  font-size: 16px;
  color: #FFF1E8;
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-no-hu__game-btn {
  margin: 0 20px 20px 20px;
  text-align: center;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
}

/* Steps List */
.page-no-hu__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-no-hu__step-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu__step-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFB04A;
  margin-bottom: 10px;
}

.page-no-hu__step-description {
  font-size: 16px;
  color: #FFF1E8;
}

.page-no-hu__step-description a {
  color: #FFB04A;
  text-decoration: underline;
}

/* Promotions */
.page-no-hu__promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__promo-card {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-no-hu__promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-no-hu__promo-card .page-no-hu__card-title {
  margin: 20px 20px 10px 20px;
  text-align: left;
}

.page-no-hu__promo-card .page-no-hu__card-text {
  padding: 0 20px 20px 20px;
  flex-grow: 1;
}

.page-no-hu__promo-btn {
  margin: 0 20px 20px 20px;
  text-align: center;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 5px;
}

.page-no-hu__promo-note {
  text-align: center;
  font-size: 15px;
  color: #F3C54D;
  margin-top: 30px;
}

.page-no-hu__promo-note a {
  color: #FFB04A;
  text-decoration: underline;
}

/* Tips List */
.page-no-hu__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-no-hu__tip-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border */
  border-radius: 10px;
  padding: 25px 30px;
  margin-bottom: 15px;
}

.page-no-hu__tip-title {
  font-size: 20px;
  font-weight: 700;
  color: #FFB04A;
  margin-bottom: 10px;
}

.page-no-hu__tip-description {
  font-size: 16px;
  color: #FFF1E8;
}

/* FAQ Section */
details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #6A1E1E; /* Border */
  overflow: hidden;
  background: #2A1212; /* Card BG */
  color: #FFF1E8;
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  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: #3A1A1A;
}
.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFB04A;
}
.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #F3C54D;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 20px 20px;
  background: #140C0C;
  border-radius: 0 0 5px 5px;
  font-size: 16px;
  color: #FFF1E8;
}

.page-no-hu__faq-answer p {
  margin: 0;
  padding: 0;
}

.page-no-hu__faq-answer a {
  color: #FFB04A;
  text-decoration: underline;
}

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

  .page-no-hu__hero-image {
    max-height: 500px;
  }

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

  .page-no-hu__main-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }

  .page-no-hu__hero-description {
    font-size: clamp(16px, 2.2vw, 20px);
  }

  .page-no-hu__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }

  .page-no-hu__subsection-title {
    font-size: clamp(20px, 2.5vw, 28px);
  }

  .page-no-hu__text-block {
    font-size: 16px;
  }

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

@media (max-width: 768px) {
  .page-no-hu {
    font-size: 16px;
    line-height: 1.6;
    padding-top: 10px; /* Consistent small top padding */
  }

  .page-no-hu__container {
    padding: 0 15px;
  }

  .page-no-hu__section {
    padding: 40px 0;
  }

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

  .page-no-hu__hero-image-wrapper {
    width: 100%;
    height: auto;
    overflow: hidden;
    box-sizing: border-box;
  }

  .page-no-hu__hero-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important; /* Mobile: contain to prevent cropping */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
    max-height: 400px; /* Adjust max height for mobile */
  }

  .page-no-hu__hero-content {
    margin-top: -40px; /* Less overlap on mobile */
    padding: 25px 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-no-hu__main-title {
    font-size: clamp(28px, 8vw, 38px);
    margin-bottom: 15px;
  }

  .page-no-hu__hero-description {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 25px;
  }

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

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }

  .page-no-hu__cta-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-no-hu__section-title {
    font-size: clamp(24px, 7vw, 32px);
    margin-bottom: 30px;
    padding: 0 10px; /* Add some padding for titles */
    text-align: center;
  }

  .page-no-hu__subsection-title {
    font-size: clamp(20px, 6vw, 26px);
    margin-top: 30px;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .page-no-hu__text-block {
    font-size: 15px;
    padding: 0 10px;
    text-align: left; /* Align left for better readability on mobile */
  }

  .page-no-hu__image-block {
    margin: 30px auto;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  /* 通用图片与容器 */
  .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__game-card,
  .page-no-hu__promo-card,
  .page-no-hu__step-item,
  .page-no-hu__tip-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 产品展示图区域 (Game Grid) */
  .page-no-hu__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevent horizontal scroll */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-no-hu__game-card {
    padding: 0;
    text-align: left;
  }

  .page-no-hu__game-card h3, .page-no-hu__game-provider, .page-no-hu__game-description, .page-no-hu__game-btn {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-no-hu__promo-card {
    padding: 0;
  }

  .page-no-hu__promo-card .page-no-hu__card-title,
  .page-no-hu__promo-card .page-no-hu__card-text,
  .page-no-hu__promo-btn {
    margin-left: 15px;
    margin-right: 15px;
  }

  .page-no-hu__feature-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-no-hu__feature-card {
    padding: 25px;
  }

  .page-no-hu__steps-list,
  .page-no-hu__tips-list,
  .page-no-hu__faq-list {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .page-no-hu__step-item,
  .page-no-hu__tip-item {
    padding: 20px;
  }

  .page-no-hu__step-title {
    font-size: 20px;
  }

  .page-no-hu__tip-title {
    font-size: 18px;
  }

  details.page-no-hu__faq-item summary.page-no-hu__faq-question {
    padding: 15px;
  }
  .page-no-hu__faq-qtext {
    font-size: 16px;
  }
  .page-no-hu__faq-toggle {
    font-size: 20px;
    width: 24px;
    height: 24px;
  }
  details.page-no-hu__faq-item .page-no-hu__faq-answer {
    padding: 0 15px 15px;
  }
}