.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Background */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.page-no-hu__section {
  padding: 60px 0;
  text-align: center;
}

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

.page-no-hu__section-title--white {
  color: #FFF1E8;
}

.page-no-hu__section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #FFF1E8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__section-subtitle--white {
  color: #f0f0f0;
}

.page-no-hu__section-text {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
  color: #FFF1E8;
}

.page-no-hu__section-text:last-child {
  margin-bottom: 0;
}

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

.page-no-hu__hero-image-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.page-no-hu__hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent overlay for text readability */
  border-radius: 10px;
}

.page-no-hu__hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  color: #FFB04A;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-no-hu__hero-description {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #FFF1E8;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

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

/* Buttons */
.page-no-hu__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn--primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  border: none;
  box-shadow: 0 5px 15px rgba(216, 106, 20, 0.4);
}

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

.page-no-hu__btn--secondary {
  background: transparent;
  color: #FFB04A;
  border: 2px solid #FFB04A;
  box-shadow: 0 5px 15px rgba(255, 176, 74, 0.2);
}

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

.page-no-hu__btn--small {
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 30px;
}

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

/* Intro Section */
.page-no-hu__intro-section .page-no-hu__section-text {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.page-no-hu__features-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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu__feature-card-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-no-hu__feature-card-description {
  font-size: 16px;
  color: #FFF1E8;
  line-height: 1.7;
}

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

.page-no-hu__game-card {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
}

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

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

.page-no-hu__game-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFB04A;
  padding: 15px 20px 5px;
}

.page-no-hu__game-card-description {
  font-size: 15px;
  color: #FFF1E8;
  padding: 0 20px 15px;
  line-height: 1.6;
}

.page-no-hu__game-card .page-no-hu__btn--small {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

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

.page-no-hu__guide-item {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu__guide-item-title {
  font-size: 22px;
  font-weight: 700;
  color: #F3C54D;
  margin-bottom: 15px;
}

.page-no-hu__guide-item p {
  font-size: 16px;
  color: #FFF1E8;
  line-height: 1.7;
}

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

.page-no-hu__tips-item {
  background-color: #2A1212;
  border: 1px solid #6A1E1E;
  border-radius: 10px;
  padding: 30px;
  text-align: left;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu__tips-item-title {
  font-size: 22px;
  font-weight: 700;
  color: #F3C54D;
  margin-bottom: 15px;
}

.page-no-hu__tips-item p {
  font-size: 16px;
  color: #FFF1E8;
  line-height: 1.7;
}

/* Promo Section */
.page-no-hu__promo-section {
  background-color: #C61F1F; /* Main Color */
  padding: 80px 0;
}

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

.page-no-hu__promo-card {
  background-color: #E53030; /* Accent Color */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu__promo-card-image {
  width: 100%;
  max-width: 280px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__promo-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFF1E8;
  margin-bottom: 15px;
}

.page-no-hu__promo-card-description {
  font-size: 16px;
  color: #FFF1E8;
  line-height: 1.7;
}

/* FAQ Section */
.page-no-hu__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #6A1E1E;
  overflow: hidden;
  background: #2A1212; /* Card BG */
}

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: #3a1c1c;
}

.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #FFF1E8;
}

.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFB04A;
  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: #1e0f0f;
  border-radius: 0 0 5px 5px;
  text-align: left;
  color: #FFF1E8;
}

.page-no-hu__faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* CTA Section */
.page-no-hu__cta-section {
  background-color: #0d0808;
  padding: 80px 0;
}

.page-no-hu__cta-container {
  max-width: 800px;
}

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

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-no-hu__hero-title {
    font-size: clamp(32px, 4.5vw, 55px);
  }
  .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__section-subtitle {
    font-size: clamp(15px, 1.8vw, 18px);
  }
  .page-no-hu__features-grid,
  .page-no-hu__games-grid,
  .page-no-hu__guide-list,
  .page-no-hu__tips-list,
  .page-no-hu__promo-cards {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

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

  /* HERO 主图区域 */
  .page-no-hu__hero-section {
    min-height: 500px;
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .page-no-hu__hero-image {
    object-fit: contain !important; /* 禁止裁切 */
    aspect-ratio: unset !important;
  }
  .page-no-hu__hero-content {
    padding: 15px;
    max-width: 95%;
  }
  .page-no-hu__hero-title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 15px;
  }
  .page-no-hu__hero-description {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 25px;
  }
  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-no-hu__btn {
    padding: 12px 25px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* 产品展示图区域 & 通用图片与容器 */
  .page-no-hu__features-grid,
  .page-no-hu__games-grid,
  .page-no-hu__guide-list,
  .page-no-hu__tips-list,
  .page-no-hu__promo-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__game-card-image, .page-no-hu__feature-card-image, .page-no-hu__promo-card-image {
    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__promo-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-no-hu__intro-section .page-no-hu__section-text {
    text-align: justify;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-no-hu__section-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 15px;
  }
  .page-no-hu__section-subtitle {
    font-size: clamp(14px, 4vw, 16px);
    margin-bottom: 30px;
  }
  .page-no-hu__section-text {
    font-size: 15px;
  }
  .page-no-hu__article-body, .page-no-hu__article-figure {
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center;
  }

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

  /* FAQ */
  details.page-no-hu__faq-item summary.page-no-hu__faq-question { padding: 15px; }
  .page-no-hu__faq-qtext { font-size: 16px; }
  details.page-no-hu__faq-item .page-no-hu__faq-answer { padding: 0 15px 15px; }
}