.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: var(--background-color, #f8f8f8);
}

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

.page-no-hu__section {
  padding: 60px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-no-hu__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-no-hu__section-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333333;
  line-height: 1.2;
}

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

.page-no-hu__content-area {
  text-align: left;
  font-size: 17px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 30px;
}

.page-no-hu__content-area p {
  margin-bottom: 20px;
}

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

.page-no-hu__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid transparent;
}

.page-no-hu__btn-primary:hover {
  background-color: #1a8ccb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.page-no-hu__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-no-hu__btn-secondary:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, not var(--header-offset) */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-height: 700px;
  overflow: hidden;
  position: relative;
}

.page-no-hu__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-no-hu__hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
  padding: 20px;
  box-sizing: border-box;
}

.page-no-hu__main-title {
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
  font-size: clamp(32px, 5vw, 56px);
}

.page-no-hu__hero-description {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__cta-button {
  margin-top: 20px;
}

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

.page-no-hu__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

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

.page-no-hu__game-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #26A9E0;
  margin: 0 15px 10px;
  line-height: 1.4;
}

.page-no-hu__game-card-description {
  font-size: 15px;
  line-height: 1.7;
  color: #666666;
  padding: 0 15px;
  flex-grow: 1;
}

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

.page-no-hu__advantage-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.page-no-hu__advantage-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.2);
}

.page-no-hu__advantage-card-image {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 0 auto 20px;
  display: block;
}

.page-no-hu__advantage-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.4;
}

.page-no-hu__advantage-card-description {
  font-size: 15px;
  line-height: 1.7;
  color: #f0f0f0;
  flex-grow: 1;
}

/* How-to-Play Steps */
.page-no-hu__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__step-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  padding: 30px;
  text-align: left;
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.page-no-hu__step-card:hover {
  transform: translateY(-5px);
}

.page-no-hu__step-title {
  font-size: 20px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-no-hu__step-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  flex-grow: 1;
}

.page-no-hu__cta-bottom {
  margin-top: 50px;
}

/* Strategy List */
.page-no-hu__strategy-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  text-align: left;
}

.page-no-hu__strategy-list li {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  padding: 25px 30px;
}

.page-no-hu__strategy-list li h3 {
  font-size: 20px;
  color: #26A9E0;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4;
}

.page-no-hu__strategy-list li p {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 0;
}

/* FAQ Section */
details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
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;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}
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: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #26A9E0;
}
.page-no-hu__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 25px 20px;
  background: #f9f9f9;
  border-radius: 0 0 10px 10px;
}
.page-no-hu__faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: #555555;
  margin-bottom: 0;
}

/* Conclusion Section */
.page-no-hu__conclusion-text {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Mobile Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-content {
    padding: 15px;
  }
  .page-no-hu__main-title {
    font-size: clamp(28px, 4.5vw, 48px);
  }
  .page-no-hu__hero-description {
    font-size: 18px;
  }
  .page-no-hu__section-title {
    font-size: 30px;
  }
  .page-no-hu__content-area {
    font-size: 16px;
  }
  .page-no-hu__game-card-title,
  .page-no-hu__advantage-card-title,
  .page-no-hu__step-title {
    font-size: 20px;
  }
  .page-no-hu__game-card-description,
  .page-no-hu__advantage-card-description,
  .page-no-hu__step-card p,
  .page-no-hu__strategy-list li p,
  .page-no-hu__faq-answer p {
    font-size: 15px;
  }
  .page-no-hu__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .page-no-hu__container {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-no-hu__section-title {
    font-size: 26px;
    margin-bottom: 30px;
  }

  /* HERO 主图区域 */
  .page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding for mobile */
  }
  .page-no-hu__hero-image-wrapper {
    max-height: 400px;
  }
  .page-no-hu__hero-image {
    object-fit: contain !important; /* Prevent cropping on mobile */
    aspect-ratio: unset !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__hero-content {
    position: static;
    transform: none;
    padding: 20px 15px;
    color: #333333; /* Dark text for better contrast if image is light */
    background-color: #ffffff; /* Solid background for text */
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }
  .page-no-hu__main-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 15px;
    color: #26A9E0;
  }
  .page-no-hu__hero-description {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555555;
  }
  .page-no-hu__cta-button {
    width: 100% !important;
    margin-top: 15px;
  }

  /* 产品展示图区域 (Game Grid) */
  .page-no-hu__game-grid {
    grid-template-columns: 1fr 1fr; /* 2 columns for mobile */
    gap: 20px;
    overflow-x: hidden;
  }
  .page-no-hu__game-card {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }
  .page-no-hu__game-card-image {
    height: 160px;
  }

  /* 优势区域 (Advantages Grid) */
  .page-no-hu__advantages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__advantage-card {
    padding: 25px;
  }

  /* 步骤区域 (How-to-Play Steps) */
  .page-no-hu__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 策略列表 (Strategy List) */
  .page-no-hu__strategy-list li {
    padding: 20px;
  }
  .page-no-hu__strategy-list li h3 {
    font-size: 18px;
  }

  /* FAQ Section */
  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: 24px;
    width: 24px;
  }
  details.page-no-hu__faq-item .page-no-hu__faq-answer {
    padding: 0 15px 15px;
  }

  /* 装饰主标题 + 长文 SEO 区 */
  .page-no-hu__content-area {
    font-size: 15px;
    line-height: 1.6;
    padding: 0 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 通用图片与容器 */
  .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__advantage-card,
  .page-no-hu__step-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* 按钮与按钮容器 */
  .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;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 16px;
  }
  .page-no-hu__cta-bottom {
    display: flex;
    justify-content: center;
    padding: 0 15px;
  }
  .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;
  }
  .page-no-hu__cta-buttons {
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for multiple CTAs */
  }

  .page-no-hu__conclusion-text {
    font-size: 16px;
  }
}