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

.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;
  font-weight: bold;
  color: #017439; /* Brand primary 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;
}

/* HERO Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, not --header-offset */
  padding-bottom: 40px;
  background-color: #f5f5f5; /* Light background for hero */
}

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

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

.page-no-hu__main-title {
  font-weight: bold;
  color: #017439; /* Brand primary color */
  margin-bottom: 15px;
  font-size: clamp(2em, 4vw, 3em); /* H1 font-size with clamp */
  line-height: 1.2;
}

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

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

.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: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box;
  max-width: 100%; /* Ensure buttons don't overflow */
}

.page-no-hu__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

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

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

.page-no-hu__btn-secondary:hover {
  background-color: #017439;
  color: #ffffff;
}

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

.page-no-hu__hero-side-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

/* Intro Section (Module 1) */
.page-no-hu__intro-section {
  background-color: #ffffff;
  color: #333333;
}

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

.page-no-hu__feature-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-no-hu__icon-box-media {
  width: 200px; /* Fixed width for square image */
  height: 200px; /* Fixed height for square image */
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #017439; /* Add border for visual appeal */
  box-sizing: border-box;
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure image covers the circular area */
  display: block;
  border-radius: 50%; /* For good measure, though parent handles it */
}

.page-no-hu__feature-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
}

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

/* Game Showcase Section */
.page-no-hu__game-showcase-section {
  background-color: #f0f8f0; /* Light green background */
  color: #333333;
}

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

.page-no-hu__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-no-hu__game-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum height */
}

.page-no-hu__game-title {
  font-size: 1.4em;
  color: #017439;
  margin: 20px 15px 10px;
}

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

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

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

.page-no-hu__btn-play {
  background-color: #C30808;
  color: #FFFF00;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  display: inline-block;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: calc(100% - 30px); /* Adjust for padding */
}

.page-no-hu__btn-play:hover {
  background-color: #a00606;
}

.page-no-hu__view-more-games {
  text-align: center;
  margin-top: 40px;
}

/* Guide Section */
.page-no-hu__guide-section {
  background-color: #017439; /* Dark background */
  color: #ffffff; /* White text */
}

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

.page-no-hu__guide-step {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-no-hu__step-number {
  font-size: 3em;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.3);
  position: absolute;
  top: -10px;
  left: 10px;
  line-height: 1;
}

.page-no-hu__step-title {
  font-size: 1.4em;
  color: #ffffff;
  margin-bottom: 10px;
  margin-top: 20px;
}

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

.page-no-hu__guide-cta {
  text-align: center;
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Promo Section */
.page-no-hu__promo-section {
  background-color: #ffffff;
  color: #333333;
}

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

.page-no-hu__promo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-no-hu__promo-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 200px; /* Ensure minimum height */
}

.page-no-hu__promo-title {
  font-size: 1.4em;
  color: #017439;
  margin: 20px 15px 10px;
}

.page-no-hu__promo-description {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
}

.page-no-hu__view-all-promos {
  text-align: center;
  margin-top: 40px;
}

/* FAQ Section */
.page-no-hu__faq-section {
  background-color: #f5f5f5;
  color: #333333;
}

.page-no-hu__faq-list {
  max-width: 900px;
  margin: 0 auto;
  padding-top: 20px;
}

.page-no-hu__faq-item {
  background-color: #ffffff;
  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.1em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  outline: none;
  list-style: none; /* Hide default marker */
}

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

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #C30808; /* Use register/login color for toggle */
  transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  transform: rotate(45deg); /* Change to X or rotate for open state */
}

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

.page-no-hu__faq-answer p {
  margin-bottom: 10px;
}

/* CTA Banner Section */
.page-no-hu__cta-banner {
  background-color: #017439; /* Dark background */
  color: #ffffff; /* White text */
  text-align: center;
  padding: 60px 16px;
}

.page-no-hu__cta-banner .page-no-hu__section-title {
  color: #ffffff;
  margin-bottom: 20px;
}

.page-no-hu__cta-description {
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

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

/* 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%;
  }

  .page-no-hu__cta-buttons {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  /* General page padding */
  .page-no-hu__content-container {
    padding: 20px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 20px !important;
  }

  .page-no-hu__hero-container {
    padding: 20px 15px !important;
  }

  .page-no-hu__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em) !important; /* Adjust H1 for smaller screens */
  }

  .page-no-hu__hero-description {
    font-size: 1em !important;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px !important;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__btn-play,
  .page-no-hu__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* Module 1 (Intro Section) */
  .page-no-hu__features-grid {
    grid-template-columns: 1fr !important; /* Single column */
  }

  .page-no-hu__feature-item {
    padding: 20px !important;
  }

  .page-no-hu__icon-box-media {
    width: 150px !important; /* Still square, but smaller */
    height: 150px !important;
    margin-bottom: 15px !important;
    border-width: 2px !important;
  }

  .page-no-hu__feature-title {
    font-size: 1.3em !important;
  }

  /* Game Showcase Section */
  .page-no-hu__game-grid {
    grid-template-columns: 1fr !important; /* Single column */
  }

  .page-no-hu__game-card {
    padding-bottom: 15px !important;
  }

  .page-no-hu__game-thumbnail {
    min-height: 180px !important; /* Adjust min height */
  }

  /* Guide Section */
  .page-no-hu__guide-steps {
    grid-template-columns: 1fr !important; /* Single column */
  }

  .page-no-hu__guide-step {
    padding: 20px !important;
  }

  .page-no-hu__step-number {
    font-size: 2.5em !important;
  }

  .page-no-hu__guide-cta {
    flex-direction: column !important;
    gap: 10px !important;
    margin-top: 30px !important;
  }

  /* Promo Section */
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr !important; /* Single column */
  }

  .page-no-hu__promo-card {
    padding-bottom: 15px !important;
  }

  .page-no-hu__promo-thumbnail {
    min-height: 180px !important;
  }

  /* FAQ Section */
  .page-no-hu__faq-list {
    padding-top: 15px !important;
  }

  .page-no-hu__faq-item summary {
    padding: 15px 20px !important;
    font-size: 1em !important;
  }

  .page-no-hu__faq-answer {
    padding: 0 20px 15px !important;
  }

  /* CTA Banner Section */
  .page-no-hu__cta-banner {
    padding: 40px 15px !important;
  }

  .page-no-hu__cta-description {
    font-size: 1em !important;
  }

  /* Universal image responsive rule for content area */
  .page-no-hu img:not(.page-no-hu__icon-box-media img) { /* Exclude the specific round image */
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}