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

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient as hero background */
  color: #ffffff;
  text-align: center;
}

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

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

.page-no-hu__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-no-hu__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  line-height: 1.5;
}

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

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

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

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

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  border: 2px solid transparent;
}

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

.page-no-hu__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #2F6BFF; /* Main Color */
  border: 2px solid #2F6BFF; /* Main Color */
}

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

.page-no-hu__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 15px;
}

.page-no-hu__section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
}

.page-no-hu__section-description {
  font-size: 1.1rem;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-no-hu__intro-section {
  background-color: #F4F7FB; /* Background */
  padding: 40px 0;
}

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

.page-no-hu__feature-item {
  background: #ffffff; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

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

.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 #A5C4FF; /* Glow */
  box-shadow: 0 0 15px #A5C4FF;
}

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

.page-no-hu__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 10px;
}

.page-no-hu__feature-text {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
}

.page-no-hu__game-categories-section {
  background-color: #E6EEFF; /* A lighter shade of primary for contrast */
  padding: 60px 0;
}

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

.page-no-hu__game-card {
  background: #ffffff; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

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

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

.page-no-hu__game-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-no-hu__game-card-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 10px;
}

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

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

.page-no-hu__game-card-text {
  font-size: 0.95rem;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-no-hu__game-play-btn {
  width: auto;
  align-self: flex-start;
  padding: 10px 20px;
  font-size: 0.9rem;
}

.page-no-hu__guide-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-no-hu__guide-steps {
  margin-top: 40px;
}

.page-no-hu__guide-step {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}

.page-no-hu__guide-step:nth-child(even) {
  flex-direction: row-reverse;
}

.page-no-hu__guide-image {
  flex: 1 1 450px;
  max-width: 550px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: block;
}

.page-no-hu__guide-content {
  flex: 1 1 450px;
}

.page-no-hu__guide-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 15px;
}

.page-no-hu__guide-text {
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
}

.page-no-hu__guide-cta {
  margin-top: 50px;
  justify-content: center;
}

.page-no-hu__promo-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient as section background */
  color: #ffffff;
}

.page-no-hu__promo-section .page-no-hu__section-title,
.page-no-hu__promo-section .page-no-hu__section-description {
  color: #ffffff;
}

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

.page-no-hu__promo-card {
  background: rgba(255, 255, 255, 0.15); /* Slightly transparent white for dark background */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-no-hu__promo-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-no-hu__promo-text {
  font-size: 1rem;
  color: #ffffff;
  margin-bottom: 25px;
}

.page-no-hu__promo-cta {
  margin-top: 50px;
  justify-content: center;
}

.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

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

.page-no-hu__faq-item {
  background: #ffffff; /* Card BG */
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  list-style: none;
  user-select: none;
}

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

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

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF; /* Main Color */
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

.page-no-hu__cta-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient as section background */
  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__cta-buttons {
  margin-top: 40px;
  justify-content: center;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-no-hu {
    font-size: 16px;
    line-height: 1.6;
  }

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

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

  .page-no-hu__hero-content {
    text-align: center;
    order: 2;
  }

  .page-no-hu__hero-image {
    order: 1;
  }

  .page-no-hu__main-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .page-no-hu__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  /* Buttons general */
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu a[class*="button"],
  .page-no-hu a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Button containers */
  .page-no-hu__cta-buttons,
  .page-no-hu__button-group,
  .page-no-hu__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  /* Intro Section */
  .page-no-hu__content-area {
    padding: 40px 15px;
  }

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

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

  .page-no-hu__features-grid {
    grid-template-columns: 1fr;
  }

  /* Module 1 Round Image Exception */
  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 3px;
    box-shadow: 0 0 10px #A5C4FF;
  }

  /* Game Categories Section */
  .page-no-hu__game-card-image {
    height: 200px; /* Adjust height for mobile */
  }

  .page-no-hu__game-card-content {
    padding: 20px;
  }

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

  .page-no-hu__game-card-text {
    font-size: 0.9rem;
  }

  /* Guide Section */
  .page-no-hu__guide-step {
    flex-direction: column !important;
    margin-bottom: 40px;
  }

  .page-no-hu__guide-image {
    max-width: 100%;
    height: auto !important;
  }

  .page-no-hu__guide-title {
    font-size: 1.5rem;
  }

  .page-no-hu__guide-text {
    font-size: 0.95rem;
  }

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

  .page-no-hu__promo-card {
    padding: 25px;
  }

  .page-no-hu__promo-title {
    font-size: 1.4rem;
  }

  .page-no-hu__promo-text {
    font-size: 0.95rem;
  }

  /* FAQ Section */
  .page-no-hu__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

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

  .page-no-hu__faq-toggle {
    font-size: 1.3rem;
  }

  /* CTA Section */
  .page-no-hu__cta-section .page-no-hu__cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* General content area padding for all containers */
  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* All images must be responsive */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__icon-box-media img { /* Specific override for round images */
    height: 100% !important;
    object-fit: cover !important;
  }
}