/* style/no-hu.css */

/* Base Styles & Typography */
.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF5E1; /* Text Main */
  background-color: #B71C1C; /* Background */
}

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

.page-no-hu__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-no-hu__section-title--light {
  color: #FFF5E1; /* Text Main */
}

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

.page-no-hu__dark-section {
  background-color: #7A0E0E; /* Deep Red */
  color: #FFF5E1;
}

/* Buttons */
.page-no-hu__cta-button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  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, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red for contrast */
  border: none;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

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

.page-no-hu__btn-secondary {
  background: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border */
}

.page-no-hu__btn-secondary:hover {
  background: #E53935; /* Auxiliary color */
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu__btn-play {
  display: block;
  width: calc(100% - 32px); /* Adjust for padding */
  margin: 16px;
  padding: 10px 0;
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red for contrast */
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: #C91F17; /* Primary color */
}

.page-no-hu__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px 16px;
  gap: 40px;
}

.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #FFF5E1; /* Text Main */
}

.page-no-hu__hero-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* Use clamp for H1 */
  font-weight: 900;
  color: #F4D34D; /* Gold */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-no-hu__hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

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

.page-no-hu__side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
}

/* Intro Section */
.page-no-hu__intro-section {
  background-color: #B71C1C; /* Background */
  padding: 60px 0;
}

.page-no-hu__icon-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-no-hu__icon-box {
  background-color: #D32F2F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF5E1;
  height: 100%; /* Ensure equal height */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-no-hu__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2B544; /* Border */
  box-shadow: 0 0 15px rgba(255, 204, 102, 0.7); /* Glow */
}

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

.page-no-hu__icon-box-title {
  font-size: 1.5em;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  margin-bottom: 15px;
}

.page-no-hu__icon-box-text {
  font-size: 1em;
  line-height: 1.5;
  flex-grow: 1;
}

/* Game Tabs Section */
.page-no-hu__game-tabs-section {
  background-color: #7A0E0E; /* Deep Red */
  padding: 60px 0;
}

.page-no-hu__tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 15px;
}

.page-no-hu__tab-button {
  background-color: #D32F2F; /* Card BG */
  color: #FFF5E1; /* Text Main */
  border: 2px solid #F2B544; /* Border */
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-no-hu__tab-button:hover {
  background-color: #E53935; /* Auxiliary color */
  transform: translateY(-2px);
}

.page-no-hu__tab-button.is-active {
  background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
  color: #7A0E0E; /* Deep Red for contrast */
  border-color: #FFD86A;
  box-shadow: 0 4px 15px rgba(255, 216, 106, 0.4);
}

.page-no-hu__game-panel {
  display: none;
}

.page-no-hu__game-panel.is-active {
  display: block;
}

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

.page-no-hu__game-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  color: #FFF5E1;
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-no-hu__game-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  margin: 15px 16px 5px;
}

.page-no-hu__game-provider {
  font-size: 0.9em;
  color: #F2B544; /* Border */
  margin-bottom: 10px;
}

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

.page-no-hu__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-no-hu__guide-step {
  background-color: #D32F2F; /* Card BG */
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF5E1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.page-no-hu__guide-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #F2B544;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-no-hu__guide-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.page-no-hu__guide-title {
  font-size: 1.3em;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  margin-bottom: 10px;
}

.page-no-hu__guide-text {
  font-size: 0.95em;
  line-height: 1.5;
  flex-grow: 1;
}

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

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

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

.page-no-hu__promo-card {
  background-color: #D32F2F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #FFF5E1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.page-no-hu__promo-title {
  font-size: 1.4em;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  margin: 20px 20px 10px;
}

.page-no-hu__promo-text {
  font-size: 1em;
  line-height: 1.5;
  margin: 0 20px 20px;
  flex-grow: 1;
}

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

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

.page-no-hu__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-no-hu__faq-item {
  background-color: #D32F2F; /* Card BG */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  color: #FFF5E1;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #F4D34D; /* Gold */
  cursor: pointer;
  background-color: #E53935; /* Auxiliary color */
  border-bottom: 1px solid #C91F17;
  list-style: none; /* For details/summary */
}

.page-no-hu__faq-item[open] > .page-no-hu__faq-question {
  border-bottom: 1px solid #F2B544;
}

.page-no-hu__faq-question::-webkit-details-marker, /* Hide default marker */
.page-no-hu__faq-question::marker {
  display: none;
}

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #FFF5E1;
}

.page-no-hu__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF5E1;
  background-color: #D32F2F;
}

/* Call to Action Section */
.page-no-hu__call-to-action-section {
  padding: 60px 0;
  text-align: center;
}

.page-no-hu__call-to-action-section .page-no-hu__cta-button {
  margin-top: 30px;
}

/* General Image Styles (for content images) */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu__hero-content, .page-no-hu__hero-image {
    flex: 1 1 100%;
  }

  .page-no-hu__hero-actions {
    justify-content: center;
  }

  .page-no-hu__icon-boxes, .page-no-hu__game-grid, .page-no-hu__promo-grid, .page-no-hu__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-no-hu__icon-box-media {
    width: 200px;
    height: 200px;
  }

  .page-no-hu__game-card img, .page-no-hu__promo-card img {
    
  }
}

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

  .page-no-hu__hero-container {
    padding: 30px 15px;
    gap: 30px;
  }

  .page-no-hu__hero-title {
    font-size: 2em; /* Adjusted for mobile */
  }

  .page-no-hu__hero-description {
    font-size: 1em;
  }

  .page-no-hu__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-no-hu__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 2. Module 1 Three-column circular images */
  .page-no-hu__icon-boxes {
    grid-template-columns: 1fr; /* Stack columns */
  }

  .page-no-hu__icon-box-media {
    width: 200px !important;
    height: 200px !important;
    border-width: 3px;
  }

  .page-no-hu__icon-box-title {
    font-size: 1.3em;
  }

  /* 3. Seven Tab Game Area */
  .page-no-hu__tab-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

  .page-no-hu__tab-button {
    width: 100%;
    box-sizing: border-box;
  }

  .page-no-hu__game-grid {
    grid-template-columns: 1fr; /* Single column */
  }

  .page-no-hu__game-card img {
    height: 200px !important; /* Maintain fixed height */
  }

  /* 4. Tutorial/Promo/Trust/FAQ/Blog/Intro 排版 */
  .page-no-hu__content-container {
    padding: 30px 15px;
  }

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

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

  .page-no-hu__guide-steps {
    grid-template-columns: 1fr; /* Single column */
  }

  .page-no-hu__promo-grid {
    grid-template-columns: 1fr; /* Single column */
  }

  .page-no-hu__promo-card img {
    
  }

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

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

  /* 5. 通用图片与容器 */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-no-hu__content-container,
  .page-no-hu__icon-box,
  .page-no-hu__game-card,
  .page-no-hu__promo-card,
  .page-no-hu__guide-step,
  .page-no-hu__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* 6. 按钮与按钮容器 */
  .page-no-hu__hero-actions,
  .page-no-hu__guide-cta,
  .page-no-hu__promo-cta,
  .page-no-hu__call-to-action-section .page-no-hu__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-direction: column !important;
    gap: 10px;
  }

  .page-no-hu__btn-play {
    width: calc(100% - 30px) !important; /* Adjust for parent padding */
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
}

@media (max-width: 480px) {
  .page-no-hu__hero-title {
    font-size: 1.8em;
  }

  .page-no-hu__section-title {
    font-size: 1.8em;
  }

  .page-no-hu__cta-button {
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-no-hu__tab-button {
    font-size: 1em;
    padding: 10px 15px;
  }

  .page-no-hu__game-card img, .page-no-hu__promo-card img {
    
  }
}