.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Main text color for dark background */
  background-color: #140C0C; /* Main page 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;
  color: #F3C54D; /* Gold color for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-no-hu__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #140C0C 0%, #2A1212 100%); /* Slight gradient for hero background */
}

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

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

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem); /* Responsive H1 font size */
  color: #F3C54D; /* Gold for main title */
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8; /* Text Main for button */
  border: 2px solid transparent;
}

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

.page-no-hu__btn-secondary {
  background: #2A1212; /* Card BG for secondary button */
  color: #FFB04A; /* Gold color for text */
  border: 2px solid #FFB04A; /* Gold border */
}

.page-no-hu__btn-secondary:hover {
  background: #FFB04A;
  color: #140C0C; /* Dark text on gold hover */
  transform: translateY(-2px);
}

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

.page-no-hu__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center image if flex item doesn't fill space */
}

/* Intro Section */
.page-no-hu__intro-section {
  padding: 60px 0;
}

/* Features Section */
.page-no-hu__features-section {
  padding: 60px 0;
}

.page-no-hu__features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.page-no-hu__feature-item {
  flex: 1 1 30%;
  min-width: 280px;
  background-color: #2A1212; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

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

.page-no-hu__icon-box-media {
  width: 200px; /* Fixed size for circular image */
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #6A1E1E; /* Border color */
  box-shadow: 0 0 15px rgba(243, 197, 77, 0.5); /* Gold shadow */
}

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

.page-no-hu__feature-title {
  font-size: 1.5em;
  color: #FFB04A; /* Gold for feature titles */
  margin-bottom: 15px;
}

.page-no-hu__feature-description {
  font-size: 1em;
  color: #FFF1E8;
}

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

/* How to Play Section */
.page-no-hu__how-to-play-section {
    padding: 60px 0;
}

.page-no-hu__how-to-play-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

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

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

.page-no-hu__how-to-play-content {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-no-hu__step-list {
    list-style: none;
    padding: 0;
}

.page-no-hu__step-item {
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu__step-title {
    font-size: 1.3em;
    color: #FFB04A;
    margin-bottom: 10px;
}

.page-no-hu__step-description {
    color: #FFF1E8;
    font-size: 1em;
}

/* Benefits Section */
.page-no-hu__benefits-section {
    padding: 60px 0;
}

.page-no-hu__benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-no-hu__benefit-item {
    flex: 1 1 30%;
    min-width: 280px;
    background-color: #2A1212;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.page-no-hu__benefit-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

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

.page-no-hu__benefit-description {
    color: #FFF1E8;
    font-size: 1em;
}

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

.page-no-hu__promo-content {
    background-color: #2A1212;
    border-radius: 12px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu__inline-link {
    color: #FFB04A;
    text-decoration: underline;
    font-weight: bold;
}

.page-no-hu__inline-link:hover {
    color: #F3C54D;
    text-decoration: none;
}

.page-no-hu__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.page-no-hu__promo-item {
    flex: 1 1 30%;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #140C0C;
    border: 1px solid #6A1E1E;
    border-radius: 8px;
    padding: 15px;
    color: #FFF1E8;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-no-hu__promo-icon {
    width: 60px; /* Small fixed size for promo icons */
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.page-no-hu__promo-text {
    font-size: 1.1em;
}

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

.page-no-hu__faq-list {
    margin-top: 40px;
}

.page-no-hu__faq-item {
    background-color: #2A1212;
    border: 1px solid #6A1E1E;
    border-radius: 8px;
    margin-bottom: 15px;
    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: bold;
    color: #F3C54D; /* Gold for FAQ questions */
    cursor: pointer;
    list-style: none; /* For details/summary */
}

/* Hide default marker for details/summary */
.page-no-hu__faq-item summary::-webkit-details-marker {
  display: none;
}
.page-no-hu__faq-item summary::marker {
  display: none;
}
.page-no-hu__faq-item summary {
    list-style: none;
}


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

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

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

.page-no-hu__faq-answer p {
    margin-bottom: 0; /* Remove default paragraph margin */
}

/* Final CTA Section */
.page-no-hu__cta-final-section {
    padding: 60px 0;
    text-align: center;
}

.page-no-hu__cta-final-content {
    background-color: #2A1212;
    border-radius: 12px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* General image styling for content area */
.page-no-hu img:not(.page-no-hu__icon-box-media img):not(.page-no-hu__promo-icon) {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Dark section default */
.page-no-hu__dark-section {
  background-color: #140C0C; /* Ensure consistent dark background */
  color: #FFF1E8;
}

/* === 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%;
    min-width: unset;
  }
  .page-no-hu__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }
  .page-no-hu__cta-buttons {
    justify-content: center;
  }
  .page-no-hu__how-to-play-grid {
    flex-direction: column;
  }
  .page-no-hu__how-to-play-image {
    order: -1; /* Image first on mobile */
  }
}

@media (max-width: 768px) {
  /* General */
  .page-no-hu__container {
    padding: 20px 15px;
  }
  .page-no-hu__section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }
  .page-no-hu__text-block {
    font-size: 1em;
  }
  .page-no-hu {
    font-size: 16px;
    line-height: 1.6;
  }

  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Small top padding, no var(--header-offset) */
    padding-bottom: 40px;
  }
  .page-no-hu__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }
  .page-no-hu__hero-description {
    font-size: 1em;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    padding: 0 15px; /* Add padding to container for buttons */
    box-sizing: border-box;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px; /* Adjust padding for mobile buttons */
  }
  .page-no-hu__hero-side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Intro, Features, How-to, Benefits, Promo, FAQ, Final CTA */
  .page-no-hu__intro-section,
  .page-no-hu__features-section,
  .page-no-hu__how-to-play-section,
  .page-no-hu__benefits-section,
  .page-no-hu__promo-section,
  .page-no-hu__faq-section,
  .page-no-hu__cta-final-section {
      padding: 40px 0;
  }

  /* Features Grid */
  .page-no-hu__features-grid {
    flex-direction: column;
    gap: 20px;
  }
  .page-no-hu__feature-item {
    flex: 1 1 100%;
    min-width: unset;
    padding: 20px;
  }
  .page-no-hu__icon-box-media {
    width: 150px; /* Smaller for mobile, but still circular */
    height: 150px;
    border-width: 2px;
  }
  .page-no-hu__icon-box-media img {
    max-width: 100% !important; /* Ensure image fits */
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* How to Play */
  .page-no-hu__how-to-play-grid {
    flex-direction: column;
    gap: 30px;
  }
  .page-no-hu__how-to-play-image,
  .page-no-hu__how-to-play-content {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-no-hu__step-item {
    padding: 15px;
    margin-bottom: 15px;
  }
  .page-no-hu__step-title {
    font-size: 1.2em;
  }
  .page-no-hu__step-description {
    font-size: 0.95em;
  }

  /* Benefits Grid */
  .page-no-hu__benefits-grid {
    flex-direction: column;
    gap: 20px;
  }
  .page-no-hu__benefit-item {
    flex: 1 1 100%;
    min-width: unset;
    padding: 15px;
  }
  .page-no-hu__benefit-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Promo Section */
  .page-no-hu__promo-content {
    padding: 30px 20px;
  }
  .page-no-hu__promo-list {
    flex-direction: column;
    gap: 15px;
  }
  .page-no-hu__promo-item {
    flex: 1 1 100%;
    min-width: unset;
    padding: 12px;
  }
  .page-no-hu__promo-icon {
    width: 50px;
    height: 50px;
  }
  .page-no-hu__promo-text {
    font-size: 1em;
  }

  /* FAQ Section */
  .page-no-hu__faq-question {
    font-size: 1.1em;
    padding: 15px;
  }
  .page-no-hu__faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 0.95em;
  }

  /* Final CTA Section */
  .page-no-hu__cta-final-content {
    padding: 40px 20px;
  }

  /* Universal image responsive for content area */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }
  /* Exception for circular images to maintain aspect ratio */
  .page-no-hu__icon-box-media img {
    height: 100% !important; /* Keep height 100% of parent for object-fit */
  }

  /* Universal container responsive */
  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container,
  .page-no-hu__feature-item,
  .page-no-hu__step-item,
  .page-no-hu__benefit-item,
  .page-no-hu__promo-content,
  .page-no-hu__promo-item,
  .page-no-hu__faq-item,
  .page-no-hu__cta-final-content {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Re-adjust padding for specific items that already have padding on content */
  .page-no-hu__container,
  .page-no-hu__hero-container {
      padding-left: 15px;
      padding-right: 15px;
  }
  .page-no-hu__feature-item,
  .page-no-hu__step-item,
  .page-no-hu__benefit-item,
  .page-no-hu__promo-item,
  .page-no-hu__faq-item {
      padding-left: 20px;
      padding-right: 20px;
  }
  .page-no-hu__promo-content,
  .page-no-hu__cta-final-content {
      padding-left: 25px;
      padding-right: 25px;
  }
}