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

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

.page-no-hu__hero-section {
  padding-top: 10px; /* Rely on body padding-top from shared.css, this is a small additional top space */
  padding-bottom: 60px;
  background-color: #0D0E12;
}

.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 45%;
  min-width: 300px;
}

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  color: #FF8C1A; /* Primary color for emphasis */
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

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

.page-no-hu__btn-secondary {
  background: #17191F;
  color: #FF8C1A;
  border: 2px solid #FF8C1A;
}

.page-no-hu__btn-secondary:hover {
  background: #FF8C1A;
  color: #17191F;
  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 10px 30px rgba(0, 0, 0, 0.3);
}

.page-no-hu__section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #FF8C1A;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.3;
}

.page-no-hu__section-description {
  font-size: 1.05rem;
  color: #FFF3E6;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.page-no-hu__intro-section,
.page-no-hu__game-types-section,
.page-no-hu__guide-section,
.page-no-hu__strategy-section,
.page-no-hu__promo-section,
.page-no-hu__faq-section,
.page-no-hu__call-to-action-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

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

.page-no-hu__feature-item {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border */
}

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FFB04D; /* Glow */
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-no-hu__feature-title {
  font-size: 1.5rem;
  color: #FFA53A; /* Auxiliary color */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu__feature-text {
  font-size: 1rem;
  color: #FFF3E6;
  line-height: 1.6;
}

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

.page-no-hu__game-card {
  background-color: #17191F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px 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; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-no-hu__game-card-title {
  font-size: 1.4rem;
  color: #FFA53A;
  padding: 20px 20px 10px;
  font-weight: bold;
}

.page-no-hu__game-card-text {
  font-size: 0.95rem;
  color: #FFF3E6;
  padding: 0 20px 20px;
  line-height: 1.6;
  flex-grow: 1;
}

.page-no-hu__game-card-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
}

.page-no-hu__game-card-button:hover {
  opacity: 0.9;
}

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

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

.page-no-hu__step-item {
  background-color: #17191F;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  border-left: 5px solid #FF8C1A;
  position: relative;
  padding-left: 60px;
}

.page-no-hu__step-number {
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #FF8C1A;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1rem;
}

.page-no-hu__step-title {
  font-size: 1.3rem;
  color: #FFA53A;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-no-hu__step-text {
  font-size: 0.95rem;
  color: #FFF3E6;
  line-height: 1.6;
}

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

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

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

.page-no-hu__strategy-item {
  background-color: #17191F;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-no-hu__strategy-title {
  font-size: 1.4rem;
  color: #FFA53A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu__strategy-text {
  font-size: 1rem;
  color: #FFF3E6;
  line-height: 1.6;
}

.page-no-hu__promo-card {
  background-color: #17191F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 40px;
}

.page-no-hu__promo-image {
  flex: 1 1 400px;
  max-width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-no-hu__promo-content {
  flex: 1 1 400px;
  padding: 30px;
}

.page-no-hu__promo-title {
  font-size: 1.8rem;
  color: #FF8C1A;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu__promo-text {
  font-size: 1.05rem;
  color: #FFF3E6;
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.page-no-hu__faq-item {
  background-color: #17191F;
  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: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #FFA53A;
  cursor: pointer;
  background-color: #17191F;
  list-style: none;
}

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

.page-no-hu__faq-question:hover {
  background-color: #2a2c33;
}

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #FF8C1A;
  margin-left: 15px;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  content: "−";
}

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

.page-no-hu__call-to-action-section {
  padding: 80px 0;
  text-align: center;
  background-color: #17191F; /* Card BG */
}

.page-no-hu__btn-large {
  padding: 16px 35px;
  font-size: 1.25rem;
  margin-top: 30px;
  display: inline-block;
}

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

/* Media Queries */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    gap: 30px;
    padding: 30px 16px;
  }

  .page-no-hu__main-title {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
  }

  .page-no-hu__hero-description {
    font-size: 1rem;
  }

  .page-no-hu__btn-primary, .page-no-hu__btn-secondary {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .page-no-hu__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }

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

  .page-no-hu__promo-image {
    max-width: 100%;
  }

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

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

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

@media (max-width: 768px) {
  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 16px;
    gap: 20px;
  }

  .page-no-hu__hero-content {
    order: 2; /* Content below image */
    flex: 1 1 100%;
  }

  .page-no-hu__hero-image {
    order: 1; /* Image above content */
    flex: 1 1 100%;
  }

  .page-no-hu__main-title {
    font-size: clamp(2rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

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

  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .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 !important;
    padding-right: 15px !important;
  }

  /* Module 1 (three-column intro) */
  .page-no-hu__intro-section {
    padding: 40px 0;
  }

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

  .page-no-hu__feature-item {
    padding: 25px;
  }

  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 3px;
    margin-bottom: 15px;
  }

  .page-no-hu__feature-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

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

  /* Game Types Section */
  .page-no-hu__game-types-section {
    padding: 40px 0;
  }

  .page-no-hu__game-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-no-hu__game-card-title {
    font-size: 1.3rem;
    padding: 15px 15px 8px;
  }

  .page-no-hu__game-card-text {
    font-size: 0.85rem;
    padding: 0 15px 15px;
  }

  .page-no-hu__game-card-button {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 10px 0;
    font-size: 0.95rem;
  }

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

  .page-no-hu__guide-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-no-hu__guide-steps {
    flex: 1 1 100%;
  }

  .page-no-hu__step-item {
    padding: 20px;
    padding-left: 55px;
    margin-bottom: 15px;
  }

  .page-no-hu__step-number {
    left: 15px;
    top: 15px;
    width: 26px;
    height: 26px;
    font-size: 1rem;
  }

  .page-no-hu__step-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

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

  .page-no-hu__guide-image {
    flex: 1 1 100%;
  }

  /* Strategy Section */
  .page-no-hu__strategy-section {
    padding: 40px 0;
  }

  .page-no-hu__strategy-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__strategy-item {
    padding: 25px;
  }

  .page-no-hu__strategy-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

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

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

  .page-no-hu__promo-card {
    flex-direction: column;
  }

  .page-no-hu__promo-image {
    max-width: 100%;
    height: auto;
  }

  .page-no-hu__promo-content {
    padding: 25px;
    text-align: center;
  }

  .page-no-hu__promo-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }

  .page-no-hu__promo-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

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

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

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

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

  /* Call to Action Section */
  .page-no-hu__call-to-action-section {
    padding: 60px 0;
  }

  .page-no-hu__btn-large {
    font-size: 1.1rem;
    padding: 14px 28px;
  }

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

  .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 !important;
    padding-right: 15px !important;
  }
  .page-no-hu__game-card-image {
    height: auto !important; /* Allow auto height for game cards on mobile */
  }
}

@media (max-width: 480px) {
  .page-no-hu__main-title {
    font-size: clamp(1.8rem, 8vw, 2.2rem);
  }

  .page-no-hu__section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .page-no-hu__btn-large {
    font-size: 1rem;
    padding: 12px 24px;
  }
}