/* style/no-hu.css */
/* Base styles for .page-no-hu, applying global text color for dark background */
.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #FFF6D6; /* Text Main for dark background */
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css var(--site-bg) */
}

.page-no-hu__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-no-hu__section-title {
  font-size: 3em;
  font-weight: bold;
  color: #F2C14E; /* Primary color for titles */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-no-hu__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF6D6;
}

/* --- Hero Section --- */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background: #0A0A0A; /* Explicit background for the section */
}

.page-no-hu__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: left;
}

.page-no-hu__main-title {
  font-size: 3.5em;
  font-weight: 700;
  color: #F2C14E;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-no-hu__hero-description {
  font-size: 1.2em;
  color: #FFF6D6;
  margin-bottom: 30px;
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%; /* For mobile responsiveness */
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111; /* Dark text for light button background */
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

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

.page-no-hu__btn-secondary:hover {
  background: #F2C14E;
  color: #111111;
}

.page-no-hu__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-no-hu__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  display: block;
  margin: 0 auto;
}

/* --- Intro Section (Why Choose) --- */
.page-no-hu__intro-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.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-item {
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 1px solid #3A2A12; /* Border color */
  transition: transform 0.3s ease;
}

.page-no-hu__feature-item:hover {
  transform: translateY(-5px);
}

.page-no-hu__icon-box-media {
  width: 180px; /* Smaller for icon-like */
  height: 180px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  background-color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFD36B; /* Glow color */
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.page-no-hu__feature-title {
  font-size: 1.8em;
  font-weight: 600;
  color: #F2C14E;
  margin-bottom: 15px;
}

.page-no-hu__feature-text {
  font-size: 1em;
  color: #FFF6D6;
}

/* --- Game List Section --- */
.page-no-hu__game-list-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

.page-no-hu__game-card {
  background-color: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-no-hu__game-card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #F2C14E;
  padding: 15px 20px 10px;
}

.page-no-hu__game-card-title a {
  color: #F2C14E;
  text-decoration: none;
}

.page-no-hu__game-card-title a:hover {
  text-decoration: underline;
}

.page-no-hu__game-card-text {
  font-size: 0.95em;
  color: #FFF6D6;
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-no-hu__btn-play {
  margin: 0 20px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border-radius: 8px;
  font-size: 1em;
  padding: 12px 25px;
}

.page-no-hu__btn-play:hover {
  background: linear-gradient(180deg, #DDA11D 0%, #FFD86A 100%);
}

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

/* --- Guide Section --- */
.page-no-hu__guide-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

.page-no-hu__guide-step-item {
  background-color: #111111;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid #3A2A12;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.page-no-hu__guide-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #F2C14E;
  color: #111111;
  font-size: 1.8em;
  font-weight: bold;
  margin-bottom: 20px;
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.page-no-hu__guide-step-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #F2C14E;
  margin-bottom: 10px;
}

.page-no-hu__guide-step-text {
  font-size: 1em;
  color: #FFF6D6;
}

/* --- Promo Section --- */
.page-no-hu__promo-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

.page-no-hu__promo-card {
  background-color: #111111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-no-hu__promo-card-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #F2C14E;
  padding: 15px 20px 10px;
}

.page-no-hu__promo-card-text {
  font-size: 0.95em;
  color: #FFF6D6;
  padding: 0 20px 15px;
  flex-grow: 1;
}

/* --- FAQ Section --- */
.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

.page-no-hu__faq-item {
  background-color: #111111;
  border: 1px solid #3A2A12;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: 600;
  color: #F2C14E;
  cursor: pointer;
  background-color: #1a1a1a;
  user-select: none;
}

.page-no-hu__faq-question::-webkit-details-marker,
.page-no-hu__faq-question::marker {
  display: none;
  content: "";
}

.page-no-hu__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 15px;
  width: 24px;
  text-align: center;
}

.page-no-hu__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #FFF6D6;
}

/* --- Final CTA Section --- */
.page-no-hu__final-cta-section {
  padding: 60px 0 80px;
  background-color: #0A0A0A;
  text-align: center;
}

.page-no-hu__final-cta-content {
  max-width: 800px;
}

.page-no-hu__btn-large {
  padding: 18px 40px;
  font-size: 1.3em;
  margin-top: 30px;
}

/* --- General Image Responsiveness --- */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
  filter: none; /* Ensure no CSS filter changes image color */
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  /* 1. HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Small top padding for mobile */
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }

  .page-no-hu__hero-content {
    text-align: center;
    min-width: unset;
    width: 100%;
  }

  .page-no-hu__main-title {
    font-size: 2.5em;
    margin-bottom: 15px;
  }

  .page-no-hu__hero-description {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__btn-play,
  .page-no-hu__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__hero-image {
    min-width: unset;
    width: 100%;
  }

  .page-no-hu__hero-side-image {
    max-width: 100% !important;
    height: auto !important;
  }

  /* 2. Module 1 (Intro Section) Three-column square images */
  .page-no-hu__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-no-hu__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

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

  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 15px;
  }

  .page-no-hu__feature-title {
    font-size: 1.5em;
  }

  /* 3. Seven Tab Game Area (Not present in this page, but if it were, its mobile rules would be here) */
  /* Example if present:
  .page-no-hu__game-tabs {
    flex-direction: column;
  }
  .page-no-hu__tab-nav {
    flex-direction: column;
  }
  .page-no-hu__game-panel {
    padding: 15px;
  }
  */

  /* 4. Guide/Promo/FAQ/Trust/Blog/Intro 排版 */
  .page-no-hu__guide-section,
  .page-no-hu__promo-section,
  .page-no-hu__faq-section,
  .page-no-hu__final-cta-section {
    padding: 40px 0;
  }

  .page-no-hu__game-cards-grid,
  .page-no-hu__guide-steps,
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__game-card-image,
  .page-no-hu__promo-card-image {
    height: 180px !important; /* Adjust height for mobile cards */
    max-width: 100% !important;
    width: 100% !important;
  }

  .page-no-hu__game-card-title,
  .page-no-hu__promo-card-title {
    font-size: 1.3em;
  }

  .page-no-hu__faq-question {
    font-size: 1em;
    padding: 15px;
  }

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

  /* 5. 通用图片与容器 */
  .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__feature-item,
  .page-no-hu__game-card,
  .page-no-hu__guide-step-item,
  .page-no-hu__promo-card,
  .page-no-hu__faq-item,
  .page-no-hu__final-cta-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 6. 按钮与按钮容器 */
  .page-no-hu__cta-full-width a {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__cta-buttons {
    display: flex;
    flex-direction: column; /* Ensure vertical stacking for multiple buttons */
    gap: 10px;
  }
}