.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background: #0D0E12; /* 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, body handles --header-offset */
  padding-bottom: 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-no-hu__hero-image {
  position: relative;
  width: 100%;
  height: 675px; /* Fixed height for desktop hero */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

.page-no-hu__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Desktop hero covers area */
  display: block;
}

.page-no-hu__hero-content {
  position: relative; /* Ensure content is above image if z-index is used, but it's below in DOM */
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.page-no-hu__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em);
  color: #FFB04D; /* Glow */
  margin-bottom: 15px;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.6);
}

.page-no-hu__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #FFF3E6; /* Text Main */
}

.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,
.page-no-hu__btn-play,
.page-no-hu__btn-view-promo {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
}

.page-no-hu__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 140, 26, 0.4);
}

.page-no-hu__btn-secondary {
  background: transparent;
  color: #FFA53A;
  border: 2px solid #FFA53A;
}

.page-no-hu__btn-secondary:hover {
  background: #FFA53A;
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(255, 165, 58, 0.4);
}

.page-no-hu__section-title {
  font-size: clamp(1.8em, 4vw, 2.8em);
  color: #FFB04D; /* Glow */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
  line-height: 1.3;
  text-shadow: 0 0 8px rgba(255, 176, 77, 0.4);
}

.page-no-hu__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #FFF3E6; /* Text Main */
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__intro-section,
.page-no-hu__benefits-section,
.page-no-hu__strategy-section,
.page-no-hu__faq-section {
  padding: 60px 0;
  color: #333333; /* For light background */
}

.page-no-hu__intro-section p,
.page-no-hu__benefits-section p,
.page-no-hu__strategy-section p,
.page-no-hu__faq-section p {
  color: #333333; /* Ensure readability on light background */
}

.page-no-hu__game-types-section,
.page-no-hu__how-to-play-section,
.page-no-hu__promo-section,
.page-no-hu__conclusion-section {
  padding: 60px 0;
  background: #17191F; /* Card BG */
  color: #FFF3E6; /* Text Main */
}

.page-no-hu__game-types-section p,
.page-no-hu__how-to-play-section p,
.page-no-hu__promo-section p,
.page-no-hu__conclusion-section p {
  color: #FFF3E6; /* Ensure readability on dark background */
}

.page-no-hu__text-block {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

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

.page-no-hu__game-card,
.page-no-hu__benefit-item,
.page-no-hu__strategy-card,
.page-no-hu__promo-card {
  background: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-no-hu__game-card:hover,
.page-no-hu__benefit-item:hover,
.page-no-hu__strategy-card:hover,
.page-no-hu__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(255, 140, 26, 0.2);
}

.page-no-hu__game-card img,
.page-no-hu__benefit-item img,
.page-no-hu__promo-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
  display: block;
  object-fit: cover; /* Ensure images fill space without distortion */
  min-height: 200px; /* Minimum size */
}

.page-no-hu__game-card img {
  width: 100%;
  height: 200px;
}

.page-no-hu__benefit-item img,
.page-no-hu__promo-card img {
  width: 100%;
  
}

.page-no-hu__card-title {
  font-size: 1.4em;
  color: #FFB04D; /* Glow */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-no-hu__card-text {
  font-size: 1em;
  color: #FFF3E6; /* Text Main */
  flex-grow: 1;
  margin-bottom: 20px;
}

.page-no-hu__btn-play,
.page-no-hu__btn-view-promo {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 5px;
  margin-top: auto; /* Push button to bottom */
}

.page-no-hu__btn-play:hover,
.page-no-hu__btn-view-promo:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(255, 140, 26, 0.3);
}

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

.page-no-hu__steps-list li {
  background: #0D0E12; /* Background */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__steps-list li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(255, 140, 26, 0.2);
}

.page-no-hu__step-title {
  font-size: 1.5em;
  color: #FFA53A; /* Auxiliary */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-no-hu__step-text {
  font-size: 1em;
  color: #FFF3E6; /* Text Main */
}

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

.page-no-hu__strategy-card {
  background: #ffffff;
  color: #333333;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.page-no-hu__strategy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-no-hu__strategy-card .page-no-hu__card-title {
  color: #FF8C1A; /* Main color for titles on light background */
}

.page-no-hu__strategy-card .page-no-hu__card-text {
  color: #333333; /* Dark text for light background */
}

/* FAQ styles */
details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
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: #f5f5f5;
}
.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  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: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-no-hu__conclusion-section {
  padding: 80px 0;
  text-align: center;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-image {
    height: 500px;
  }
  .page-no-hu__main-title {
    font-size: 3em;
  }
  .page-no-hu__section-title {
    font-size: 2.2em;
  }
  .page-no-hu__game-grid,
  .page-no-hu__benefits-grid,
  .page-no-hu__strategy-grid,
  .page-no-hu__promo-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  /* HERO 主图区域 */
  .page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding for mobile */
    padding-bottom: 40px;
  }
  .page-no-hu__hero-image {
    height: 300px;
    margin-bottom: 20px;
  }
  .page-no-hu__hero-image img {
    object-fit: contain !important; /* Mobile hero contains image, no cover */
    aspect-ratio: unset !important;
  }
  .page-no-hu__main-title {
    font-size: clamp(2em, 8vw, 2.5em); /* Responsive font size for H1 */
    margin-bottom: 10px;
  }
  .page-no-hu__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  /* 按钮与按钮容器 */
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__btn-play,
  .page-no-hu__btn-view-promo {
    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: 1em;
  }
  .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-wrap: wrap !important;
    gap: 10px;
  }
  
  /* 装饰主标题 + 长文 SEO 区 */
  .page-no-hu__container {
    padding: 15px;
  }
  .page-no-hu__section-title {
    font-size: clamp(1.5em, 6vw, 2em); /* Responsive font size */
    margin-bottom: 20px;
  }
  .page-no-hu__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }
  .page-no-hu__text-block {
    font-size: 0.95em;
  }
  
  /* 产品展示图区域 (Non-homepage, so it's game-grid/promo-grid) */
  .page-no-hu__game-grid,
  .page-no-hu__benefits-grid,
  .page-no-hu__strategy-grid,
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr; /* Single column for mobile */
    gap: 20px;
    margin-top: 20px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  .page-no-hu__game-card img,
  .page-no-hu__benefit-item img,
  .page-no-hu__promo-card img {
     /* Adjust image height for mobile cards */
  }

  /* 通用图片与容器 */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    object-fit: cover; /* Default for content images */
  }
  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container,
  .page-no-hu__game-card,
  .page-no-hu__benefit-item,
  .page-no-hu__strategy-card,
  .page-no-hu__promo-card {
    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__benefits-section,
  .page-no-hu__strategy-section,
  .page-no-hu__faq-section,
  .page-no-hu__game-types-section,
  .page-no-hu__how-to-play-section,
  .page-no-hu__promo-section,
  .page-no-hu__conclusion-section {
    padding: 40px 0;
  }

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