.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

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

.page-no-hu__section-title {
  font-size: 3em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-no-hu__btn-primary:hover {
  background-color: #1e87b3;
  border-color: #1e87b3;
}

.page-no-hu__btn-primary--large {
  padding: 15px 30px;
  font-size: 1.2em;
}

.page-no-hu__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-no-hu__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

/* HERO Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding for header offset */
  padding-bottom: 60px;
  background-color: #f0f8ff; /* Light background for hero */
}

.page-no-hu__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 16px;
}

.page-no-hu__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  color: #333333;
}

.page-no-hu__hero-title {
  font-size: clamp(2.5em, 5vw, 3.8em); /* Clamp for responsive H1 */
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-no-hu__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

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

.page-no-hu__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Intro Section (Module 1 - 3 columns with circular images) */
.page-no-hu__intro-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

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

.page-no-hu__feature-item {
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.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 #26A9E0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e0f2f7;
}

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

.page-no-hu__feature-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-bottom: 10px;
}

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

/* Why Choose Section */
.page-no-hu__why-choose-section {
  padding: 60px 0;
  background-color: #f0f8ff;
}

.page-no-hu__why-choose-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-no-hu__why-choose-content {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-no-hu__why-choose-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-no-hu__why-choose-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="%2326A9E0"><path d="M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z"/></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #333333;
}

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

.page-no-hu__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

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

.page-no-hu__game-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

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

.page-no-hu__game-card-title {
  font-size: 1.5em;
  color: #26A9E0;
  padding: 15px;
  margin-bottom: 0;
}

.page-no-hu__game-card-description {
  font-size: 1em;
  color: #555555;
  padding: 0 15px 15px;
}

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

.page-no-hu__how-to-play-grid {
  display: flex;
  flex-wrap: wrap-reverse; /* Image at bottom on mobile */
  align-items: center;
  gap: 40px;
}

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

.page-no-hu__steps-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 20px;
}

.page-no-hu__steps-list li {
  counter-increment: step-counter;
  margin-bottom: 20px;
  padding-left: 45px;
  position: relative;
  font-size: 1.1em;
  color: #333333;
}

.page-no-hu__steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1em;
}

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

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

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

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

.page-no-hu__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  list-style: none;
  outline: none;
}

.page-no-hu__faq-item summary::-webkit-details-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: #555555;
}

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

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

/* CTA Section */
.page-no-hu__cta-section {
  padding: 80px 0;
  background-color: #26A9E0;
  color: #FFFFFF;
  text-align: center;
}

.page-no-hu__cta-section .page-no-hu__section-title,
.page-no-hu__cta-section .page-no-hu__section-description {
  color: #FFFFFF;
}

.page-no-hu__cta-section .page-no-hu__btn-primary {
  background-color: #EA7C07; /* Login color for prominent CTA */
  border-color: #EA7C07;
}

.page-no-hu__cta-section .page-no-hu__btn-primary:hover {
  background-color: #c46406;
  border-color: #c46406;
}

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

/* Media Queries */
@media (max-width: 1024px) {
  .page-no-hu__hero-title {
    font-size: clamp(2em, 4.5vw, 3.5em);
  }
  .page-no-hu__section-title {
    font-size: 2.5em;
  }
  .page-no-hu__section-title--large {
    font-size: 3em;
  }
  .page-no-hu__hero-container,
  .page-no-hu__why-choose-grid,
  .page-no-hu__how-to-play-grid {
    flex-direction: column;
    text-align: center;
  }
  .page-no-hu__hero-content,
  .page-no-hu__hero-image,
  .page-no-hu__why-choose-content,
  .page-no-hu__why-choose-image,
  .page-no-hu__how-to-play-content,
  .page-no-hu__how-to-play-image {
    flex: 1 1 100%;
  }
  .page-no-hu__hero-cta-buttons {
    justify-content: center;
  }
  .page-no-hu__icon-box-media {
    width: 200px;
    height: 200px;
  }
  .page-no-hu__game-card-image {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .page-no-hu {
    font-size: 15px;
  }
  .page-no-hu__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  /* HERO Section - Mobile */
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }
  .page-no-hu__hero-container {
    padding: 20px 15px !important;
    gap: 20px !important;
  }
  .page-no-hu__hero-title {
    font-size: 2.2em !important;
    margin-bottom: 15px !important;
  }
  .page-no-hu__hero-description {
    font-size: 1em !important;
    margin-bottom: 25px !important;
  }
  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 10px 15px !important;
    font-size: 1em !important;
  }
  .page-no-hu__btn-primary--large {
    padding: 12px 20px !important;
    font-size: 1.1em !important;
  }
  .page-no-hu__hero-image {
    order: -1; /* Image above text on mobile for hero */
  }

  /* Intro Section (Module 1 - 3 columns with circular images) - Mobile */
  .page-no-hu__intro-section {
    padding: 40px 0 !important;
  }
  .page-no-hu__section-title {
    font-size: 2em !important;
    margin-bottom: 15px !important;
  }
  .page-no-hu__section-title--large {
    font-size: 2.5em !important;
  }
  .page-no-hu__section-description {
    font-size: 0.95em !important;
    margin-bottom: 25px !important;
  }
  .page-no-hu__icon-box-media {
    width: 160px !important;
    height: 160px !important;
    border-width: 3px !important;
  }
  .page-no-hu__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-no-hu__feature-item {
    padding: 15px !important;
  }

  /* Why Choose Section - Mobile */
  .page-no-hu__why-choose-section {
    padding: 40px 0 !important;
  }
  .page-no-hu__why-choose-list li {
    font-size: 1em !important;
    padding-left: 25px !important;
    background-size: 18px !important;
    margin-bottom: 10px !important;
  }

  /* Game Types Section - Mobile */
  .page-no-hu__game-types-section {
    padding: 40px 0 !important;
  }
  .page-no-hu__game-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-no-hu__game-card-image {
    height: 150px !important;
  }
  .page-no-hu__game-card-title {
    font-size: 1.3em !important;
  }

  /* How To Play Section - Mobile */
  .page-no-hu__how-to-play-section {
    padding: 40px 0 !important;
  }
  .page-no-hu__steps-list li {
    font-size: 1em !important;
    padding-left: 40px !important;
  }
  .page-no-hu__steps-list li::before {
    width: 25px !important;
    height: 25px !important;
    font-size: 0.9em !important;
  }

  /* FAQ Section - Mobile */
  .page-no-hu__faq-section {
    padding: 40px 0 !important;
  }
  .page-no-hu__faq-item summary {
    padding: 15px 20px !important;
    font-size: 1.1em !important;
  }
  .page-no-hu__faq-answer {
    padding: 0 20px 15px !important;
    font-size: 0.95em !important;
  }
  .page-no-hu__faq-toggle {
    font-size: 1.3em !important;
  }

  /* CTA Section - Mobile */
  .page-no-hu__cta-section {
    padding: 50px 0 !important;
  }

  /* General image and container responsiveness for mobile */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__content-image {
    width: 100% !important;
    height: auto !important;
  }
}