.page-no-hu {
  color: #FFF3E6;
  background-color: #0D0E12;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-no-hu__dark-section {
  background-color: #0D0E12;
  color: #FFF3E6;
}

.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;
  color: #FFB04D;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

/* HERO Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Aligns with shared header offset */
  padding-bottom: 60px;
  background-color: #0D0E12;
  position: relative;
  overflow: hidden;
}

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

.page-no-hu__hero-content {
  flex: 1 1 500px;
  text-align: left;
  padding-right: 20px;
}

.page-no-hu__hero-title {
  font-size: clamp(2.5em, 4vw, 3.5em);
  color: #FFB04D;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-no-hu__hero-description {
  font-size: 1.15em;
  color: #FFF3E6;
  margin-bottom: 30px;
  line-height: 1.7;
  text-align: left;
}

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

.page-no-hu__hero-image {
  flex: 1 1 400px;
  text-align: center;
}

.page-no-hu__hero-side-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 176, 77, 0.5);
}

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
  transform: translateY(-2px);
}

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

.page-no-hu__btn-secondary:hover {
  background-color: #FF8C1A;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-no-hu__btn-text-link {
  color: #FFB04D;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-no-hu__btn-text-link:hover {
  color: #FFA53A;
}

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

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

.page-no-hu__feature-item {
  text-align: center;
  background-color: #0D0E12;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
}

.page-no-hu__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FF8C1A;
  display: flex;
  align-items: center;
  justify-content: center;
}

.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.6em;
  color: #FFB04D;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu__feature-text {
  font-size: 1em;
  color: #FFF3E6;
  line-height: 1.6;
}

/* Game Types Section */
.page-no-hu__game-types-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

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

.page-no-hu__game-item {
  background-color: #17191F;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
  text-align: center;
  padding-bottom: 20px;
}

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

.page-no-hu__game-title {
  font-size: 1.5em;
  color: #FFB04D;
  margin-bottom: 10px;
  padding: 0 20px;
  font-weight: bold;
}

.page-no-hu__game-text {
  font-size: 1em;
  color: #FFF3E6;
  line-height: 1.6;
  padding: 0 20px;
}

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

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

.page-no-hu__guide-item {
  background-color: #0D0E12;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-no-hu__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-no-hu__guide-title {
  font-size: 1.4em;
  color: #FFB04D;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu__guide-text {
  font-size: 1em;
  color: #FFF3E6;
  line-height: 1.6;
  flex-grow: 1;
  margin-bottom: 20px;
}

/* Strategy Section */
.page-no-hu__strategy-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-no-hu__strategy-list {
  list-style: none;
  padding: 0;
  margin: 50px auto;
  max-width: 900px;
}

.page-no-hu__strategy-item {
  background-color: #17191F;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  border-left: 5px solid #FF8C1A;
  color: #FFF3E6;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-no-hu__strategy-item strong {
  color: #FFB04D;
}

.page-no-hu__strategy-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 176, 77, 0.4);
}

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

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

.page-no-hu__promo-card {
  background-color: #0D0E12;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
  text-align: center;
  padding-bottom: 20px;
}

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

.page-no-hu__promo-title {
  font-size: 1.5em;
  color: #FFB04D;
  margin-bottom: 10px;
  padding: 0 20px;
  font-weight: bold;
}

.page-no-hu__promo-text {
  font-size: 1em;
  color: #FFF3E6;
  line-height: 1.6;
  padding: 0 20px;
}

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

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

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

.page-no-hu__faq-item {
  background-color: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-no-hu__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFB04D;
  cursor: pointer;
  position: relative;
  user-select: none;
}

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

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  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: 1em;
  color: #FFF3E6;
  line-height: 1.7;
  animation: fadein 0.3s ease-out;
}

@keyframes fadein {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.page-no-hu__faq-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 0;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 176, 77, 0.4);
}

/* CTA Bottom Section */
.page-no-hu__cta-bottom-section {
  padding: 60px 0;
  background-color: #17191F;
  text-align: center;
}

.page-no-hu__cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-no-hu__cta-bottom-button {
  margin-top: 30px;
  font-size: 1.2em;
  padding: 16px 35px;
}

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

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

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

  .page-no-hu__hero-content {
    padding-right: 0;
  }

  .page-no-hu__hero-title {
    font-size: 2em;
    text-align: center;
  }

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

  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    font-size: 1em;
    padding: 12px 20px;
  }

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

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

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

  /* Module 1: Three-column intro (feature images) */
  .page-no-hu__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

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

  /* Game Types Section */
  .page-no-hu__game-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__game-image {
    height: 200px;
  }

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

  /* Guide Section */
  .page-no-hu__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__guide-image {
    height: 180px;
  }

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

  /* Strategy Section */
  .page-no-hu__strategy-list {
    margin: 30px auto;
  }

  .page-no-hu__strategy-item {
    padding: 20px;
    font-size: 0.95em;
  }

  /* Promo Section */
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__promo-image {
    height: 180px;
  }

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

  /* FAQ Section */
  .page-no-hu__faq-item summary {
    font-size: 1.1em;
    padding: 15px;
  }

  .page-no-hu__faq-answer {
    padding: 0 15px 15px;
    font-size: 0.95em;
  }

  .page-no-hu__faq-image {
    margin-top: 30px;
  }

  /* CTA Bottom Section */
  .page-no-hu__cta-bottom-button {
    font-size: 1.1em;
    padding: 14px 25px;
    width: 100%;
    max-width: 100%;
  }

  /* General Image & Container Responsiveness */
  .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__hero-cta-buttons,
  .page-no-hu__cta-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-no-hu__hero-cta-buttons,
  .page-no-hu__button-group,
  .page-no-hu__btn-container {
    flex-wrap: wrap !important;
    gap: 10px;
    flex-direction: column;
  }
}