/* style/no-hu.css */
.page-no-hu {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
  font-family: 'Arial', sans-serif;
}

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

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

.page-no-hu__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}

.page-no-hu__hero-content {
  flex: 1 1 50%;
  max-width: 50%;
}

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color */
}

.page-no-hu__intro-text {
  font-size: 1.125rem; /* 18px */
  line-height: 1.6;
  margin-bottom: 30px;
}

.page-no-hu__hero-image {
  flex: 1 1 40%;
  max-width: 40%;
  text-align: center;
}

.page-no-hu__hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.page-no-hu__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  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%, #DDA11D 100%);
  color: #111111;
  border: none;
}

.page-no-hu__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-no-hu__btn-secondary:hover {
  background: rgba(242, 193, 78, 0.1);
  transform: translateY(-2px);
}

.page-no-hu__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow */
}

.page-no-hu__section-description {
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Intro Section */
.page-no-hu__intro-section,
.page-no-hu__game-types-section,
.page-no-hu__guide-section,
.page-no-hu__tips-section,
.page-no-hu__promo-section,
.page-no-hu__why-choose-section,
.page-no-hu__faq-section {
  padding: 60px 0;
  border-bottom: 1px solid #3A2A12; /* Border */
}

.page-no-hu__intro-section:last-of-type,
.page-no-hu__why-choose-section,
.page-no-hu__faq-section {
    border-bottom: none;
}

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

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

.page-no-hu__icon-box-media {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2C14E; /* Main 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.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow */
}

.page-no-hu__feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
}

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

.page-no-hu__game-card {
  background: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #FFF6D6; /* Text Main */
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

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

.page-no-hu__card-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 20px 20px 10px;
  color: #FFD36B; /* Glow */
}

.page-no-hu__card-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 20px 20px;
  flex-grow: 1;
}

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

.page-no-hu__step-item {
  background: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

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

.page-no-hu__step-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-no-hu__step-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 20px 10px;
  color: #FFD36B; /* Glow */
}

.page-no-hu__step-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 20px;
}

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

.page-no-hu__tip-item {
  background: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border */
  transition: transform 0.3s ease;
  padding-bottom: 20px;
}

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

.page-no-hu__tip-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-no-hu__tip-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 20px 10px;
  color: #FFD36B; /* Glow */
}

.page-no-hu__tip-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 20px;
}

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

.page-no-hu__promo-card {
  background: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3A2A12; /* Border */
  text-align: center;
  padding-bottom: 30px;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-no-hu__promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-no-hu__promo-title {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 0 20px 10px;
  color: #FFD36B; /* Glow */
}

.page-no-hu__promo-description {
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0 20px 20px;
  flex-grow: 1;
}

/* Why Choose Section */
.page-no-hu__advantages-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  font-size: 1.125rem;
  line-height: 1.6;
}

.page-no-hu__advantages-list li {
  background: #111111; /* Card BG */
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #3A2A12; /* Border */
  color: #FFF6D6; /* Text Main */
}

.page-no-hu__advantages-list li strong {
  color: #F2C14E; /* Main color */
}

/* FAQ Section */
.page-no-hu__faq-list {
  margin-top: 40px;
}

.page-no-hu__faq-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.125rem;
  font-weight: 600;
  color: #FFD36B; /* Glow */
  cursor: pointer;
  list-style: none;
}

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

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  transform: rotate(45deg);
}

.page-no-hu__faq-answer {
  padding: 0 20px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
}

.page-no-hu__faq-answer p {
    margin: 0;
}

/* CTA Banner */
.page-no-hu__cta-banner {
  background: #111111; /* Card BG */
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid #3A2A12; /* Border */
}

.page-no-hu__cta-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color */
}

.page-no-hu__cta-description {
  font-size: 1.125rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    padding: 40px 0;
  }
  .page-no-hu__hero-content,
  .page-no-hu__hero-image {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .page-no-hu__hero-image {
    order: -1; /* Image above text on smaller screens */
  }
}

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

  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px !important;
  }
  .page-no-hu__hero-container {
    flex-direction: column;
    gap: 30px;
    padding: 40px 0 !important;
  }
  .page-no-hu__hero-content {
    text-align: center;
    order: 2;
  }
  .page-no-hu__hero-image {
    order: 1;
    max-width: 80%;
  }
  .page-no-hu__main-title {
    font-size: 2.2rem;
  }
  .page-no-hu__intro-text {
    font-size: 1rem;
  }

  /* CTA Button */
  .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: 12px 20px;
    font-size: 1rem;
  }

  /* Section Titles */
  .page-no-hu__section-title {
    font-size: 1.8rem;
  }
  .page-no-hu__section-description {
    font-size: 0.9375rem;
  }

  /* Intro Section - Module 1 */
  .page-no-hu__intro-section,
  .page-no-hu__game-types-section,
  .page-no-hu__guide-section,
  .page-no-hu__tips-section,
  .page-no-hu__promo-section,
  .page-no-hu__why-choose-section,
  .page-no-hu__faq-section {
    padding: 40px 0 !important;
  }
  .page-no-hu__features-grid,
  .page-no-hu__game-cards-grid,
  .page-no-hu__steps-grid,
  .page-no-hu__tips-list,
  .page-no-hu__promo-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__feature-item,
  .page-no-hu__game-card,
  .page-no-hu__step-item,
  .page-no-hu__tip-item,
  .page-no-hu__promo-card {
    padding: 20px;
  }
  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 3px;
  }
  .page-no-hu__feature-title,
  .page-no-hu__card-title,
  .page-no-hu__step-title,
  .page-no-hu__tip-title,
  .page-no-hu__promo-title {
    font-size: 1.25rem;
  }
  .page-no-hu__feature-description,
  .page-no-hu__card-description,
  .page-no-hu__step-description,
  .page-no-hu__tip-description,
  .page-no-hu__promo-description {
    font-size: 0.875rem;
  }
  .page-no-hu__game-card img,
  .page-no-hu__step-item img,
  .page-no-hu__tip-item img,
  .page-no-hu__promo-card img {
    
  }

  /* Why Choose Section */
  .page-no-hu__advantages-list {
    font-size: 1rem;
    gap: 10px;
  }
  .page-no-hu__advantages-list li {
    padding: 15px;
  }

  /* FAQ Section */
  .page-no-hu__faq-question {
    font-size: 1rem;
    padding: 15px;
  }
  .page-no-hu__faq-answer {
    font-size: 0.9375rem;
    padding: 0 15px 15px;
  }

  /* CTA Banner */
  .page-no-hu__cta-banner {
    padding: 50px 0 !important;
  }
  .page-no-hu__cta-title {
    font-size: 2rem;
  }
  .page-no-hu__cta-description {
    font-size: 1rem;
  }

  /* Universal Image Responsiveness for content images */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  /* Specific override for icon-box-media to maintain square aspect ratio */
  .page-no-hu__icon-box-media img {
      width: 100% !important;
      height: 100% !important; /* Maintain height to match width for square */
      object-fit: cover !important;
  }
}