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

.page-no-hu__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: #FF8C1A; /* Main color */
  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: #FFF3E6;
}

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

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

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

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

.page-no-hu__btn-secondary:hover {
  background-color: rgba(255, 140, 26, 0.1);
  transform: translateY(-2px);
}

/* HERO Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  background-color: #0D0E12;
  position: relative;
}

.page-no-hu__hero-content-wrapper {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-no-hu__hero-text-content {
  text-align: center;
  max-width: 800px;
}

.page-no-hu__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  color: #FFB04D; /* Glow */
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 0 10px rgba(255, 176, 77, 0.5);
}

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

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

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-width: 1000px;
  text-align: center;
}

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

/* Intro Section (Module 1 - Three circular images) */
.page-no-hu__intro-section {
  padding: 80px 0;
  background-color: #0D0E12;
}

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

.page-no-hu__icon-box {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-no-hu__icon-box-media {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px 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__icon-box-title {
  font-size: 1.6em;
  color: #FFB04D;
  margin-bottom: 10px;
}

.page-no-hu__icon-box-text {
  color: #FFF3E6;
  font-size: 0.95em;
}

/* Featured Games Section */
.page-no-hu__featured-games-section {
  padding: 80px 0;
  background-color: #0D0E12;
}

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

.page-no-hu__game-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  display: flex;
  flex-direction: column;
}

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

.page-no-hu__game-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-no-hu__game-card-title {
  font-size: 1.4em;
  color: #FFB04D;
  margin-bottom: 10px;
}

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

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

.page-no-hu__game-card-text {
  color: #FFF3E6;
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

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

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

.page-no-hu__guide-content {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-no-hu__guide-steps {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-no-hu__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: step-counter;
}

.page-no-hu__guide-list li {
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
}

.page-no-hu__guide-list li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FF8C1A;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-no-hu__guide-list li p {
  color: #FFF3E6;
  font-size: 0.95em;
}

.page-no-hu__guide-cta {
  margin-top: 30px;
  width: auto;
  display: table;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__guide-image-wrapper {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}

.page-no-hu__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.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: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  display: flex;
  flex-direction: column;
}

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

.page-no-hu__promo-content {
  padding: 20px;
  flex-grow: 1;
}

.page-no-hu__promo-title {
  font-size: 1.4em;
  color: #FFB04D;
  margin-bottom: 10px;
}

.page-no-hu__promo-text {
  color: #FFF3E6;
  font-size: 0.95em;
}

.page-no-hu__promo-cta {
  margin-top: 40px;
  display: block;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #FFB04D;
  cursor: pointer;
  background-color: #17191F;
  list-style: none;
}

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  color: #FF8C1A;
  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 25px 20px;
  font-size: 1em;
  color: #FFF3E6;
  line-height: 1.5;
}

/* Contact CTA Section */
.page-no-hu__contact-cta-section {
  padding: 80px 0;
  background-color: #0D0E12;
  text-align: center;
}

.page-no-hu__contact-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-no-hu__container {
    padding: 20px 15px; /* Smaller padding on mobile */
  }

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

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

  /* HERO Section mobile */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
  }

  .page-no-hu__hero-content-wrapper {
    flex-direction: column; /* Stack image and text */
    gap: 30px;
    padding: 0 15px;
  }

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

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

  .page-no-hu__hero-cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__btn-play {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 15px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Intro Section (Module 1) mobile */
  .page-no-hu__intro-section {
    padding: 40px 0;
  }

  .page-no-hu__icon-boxes {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 2px;
  }

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

  /* Featured Games Section mobile */
  .page-no-hu__featured-games-section {
    padding: 40px 0;
  }

  .page-no-hu__game-cards-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

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

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

  /* Guide Section mobile */
  .page-no-hu__guide-section {
    padding: 40px 0;
  }

  .page-no-hu__guide-content {
    flex-direction: column-reverse; /* Image above text on mobile */
    gap: 30px;
  }

  .page-no-hu__guide-steps {
    min-width: unset;
  }

  .page-no-hu__guide-list li {
    padding-left: 45px;
    margin-bottom: 20px;
  }

  .page-no-hu__guide-list li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }

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

  .page-no-hu__guide-cta {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Promo Section mobile */
  .page-no-hu__promo-section {
    padding: 40px 0;
  }

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

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

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

  .page-no-hu__promo-cta {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* FAQ Section mobile */
  .page-no-hu__faq-section {
    padding: 40px 0;
  }

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

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

  /* Contact CTA Section mobile */
  .page-no-hu__contact-cta-section {
    padding: 40px 0;
  }

  .page-no-hu__contact-cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
  }

  /* Universal image/container mobile rules */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container,
  .page-no-hu__hero-content-wrapper,
  .page-no-hu__icon-boxes,
  .page-no-hu__game-cards-grid,
  .page-no-hu__guide-content,
  .page-no-hu__promo-grid,
  .page-no-hu__faq-items,
  .page-no-hu__contact-cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden;
  }

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