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

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

.page-no-hu__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #FFB04D; /* Glow */
  line-height: 1.2;
}

.page-no-hu__section-description {
  font-size: clamp(16px, 2vw, 18px);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF3E6;
}

/* HERO Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Assumes shared.css handles body padding-top */
  padding-bottom: 60px;
  background-color: #0D0E12;
}

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

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

.page-no-hu__hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFB04D; /* Glow */
  line-height: 1.1;
}

.page-no-hu__hero-description {
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 30px;
  color: #FFF3E6;
}

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

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

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

.page-no-hu__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: none;
  box-shadow: 0 4px 15px rgba(255, 140, 26, 0.4);
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #D96800 0%, #FFA53A 100%);
  box-shadow: 0 6px 20px rgba(255, 140, 26, 0.6);
  transform: translateY(-2px);
}

.page-no-hu__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FF8C1A;
  border: 2px solid #A84F0C; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu__btn-secondary:hover {
  background: #FF8C1A;
  color: #17191F;
  border-color: #FF8C1A;
  box-shadow: 0 6px 15px rgba(255, 140, 26, 0.4);
  transform: translateY(-2px);
}

/* Intro Section */
.page-no-hu__intro-section {
  padding: 60px 0;
  background-color: #17191F; /* Card BG */
}

.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 {
  text-align: center;
  background-color: #0D0E12;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
}

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FF8C1A;
  box-shadow: 0 0 15px rgba(255, 140, 26, 0.5);
}

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

.page-no-hu__feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #FFB04D;
}

.page-no-hu__feature-text {
  font-size: 16px;
  color: #FFF3E6;
}

/* Games Showcase Section */
.page-no-hu__games-showcase-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

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

.page-no-hu__game-card {
  background-color: #17191F;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
  transition: transform 0.3s ease;
}

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

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

.page-no-hu__game-title {
  font-size: 22px;
  font-weight: 700;
  padding: 15px 20px 5px;
  color: #FFB04D;
}

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

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

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

.page-no-hu__button-group {
  text-align: center;
  margin-top: 40px;
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 60px 0;
  background-color: #17191F;
}

.page-no-hu__guide-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-no-hu__guide-item {
  background-color: #0D0E12;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
}

.page-no-hu__guide-step-title {
  font-size: 24px;
  font-weight: 700;
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-no-hu__guide-item p {
  font-size: 16px;
  color: #FFF3E6;
}

/* Tips Section */
.page-no-hu__tips-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

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

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

.page-no-hu__tip-title {
  font-size: 22px;
  font-weight: 700;
  color: #FFA53A;
  margin-bottom: 10px;
}

.page-no-hu__tip-item p {
  font-size: 16px;
  color: #FFF3E6;
}

/* Promo Section */
.page-no-hu__promo-section {
  padding: 60px 0;
  background-color: #17191F;
}

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

.page-no-hu__promo-card {
  background-color: #0D0E12;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C;
  transition: transform 0.3s ease;
}

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

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

.page-no-hu__promo-title {
  font-size: 22px;
  font-weight: 700;
  padding: 15px 20px 5px;
  color: #FFB04D;
}

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

.page-no-hu__promo-title a:hover {
  text-decoration: underline;
  color: #FFA53A;
}

.page-no-hu__promo-text {
  font-size: 15px;
  padding: 0 20px 20px;
  color: #FFF3E6;
}

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

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

.page-no-hu__faq-item {
  background-color: #17191F;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  overflow: hidden;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 20px;
  font-weight: 600;
  color: #FFA53A;
  cursor: pointer;
  list-style: none; /* For details/summary */
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: 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: 24px;
  font-weight: 700;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  transform: rotate(45deg);
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #FFF3E6;
}

/* CTA Bottom Section */
.page-no-hu__cta-bottom-section {
  padding: 60px 0;
  background-color: #17191F;
  text-align: center;
}

.page-no-hu__cta-bottom-section .page-no-hu__hero-cta-buttons {
  justify-content: center;
  margin-top: 30px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
  }

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

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

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

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

  .page-no-hu__hero-container,
  .page-no-hu__intro-section .page-no-hu__container,
  .page-no-hu__games-showcase-section .page-no-hu__container,
  .page-no-hu__guide-section .page-no-hu__container,
  .page-no-hu__tips-section .page-no-hu__container,
  .page-no-hu__promo-section .page-no-hu__container,
  .page-no-hu__faq-section .page-no-hu__container,
  .page-no-hu__cta-bottom-section .page-no-hu__container {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__hero-title {
    font-size: clamp(30px, 8vw, 40px);
  }

  .page-no-hu__hero-description {
    font-size: 16px;
  }

  .page-no-hu__section-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-no-hu__section-description {
    font-size: 15px;
  }

  /* Buttons responsive */
  .page-no-hu__cta-button,
  .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;
  }

  .page-no-hu__hero-cta-buttons,
  .page-no-hu__button-group {
    flex-direction: column !important;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Module 1: Three-column circular images */
  .page-no-hu__icon-box-media {
    width: 160px;
    height: 160px;
    margin-bottom: 15px;
  }

  .page-no-hu__feature-title {
    font-size: 20px;
  }

  .page-no-hu__feature-text {
    font-size: 15px;
  }

  /* Game Grid and Promo Grid */
  .page-no-hu__game-grid,
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__game-card img,
  .page-no-hu__promo-card img {
     /* Adjust height for mobile */
  }

  .page-no-hu__game-title,
  .page-no-hu__promo-title {
    font-size: 20px;
    padding: 10px 15px 5px;
  }

  .page-no-hu__game-description,
  .page-no-hu__promo-text {
    font-size: 14px;
    padding: 0 15px 15px;
  }

  /* Guide and Tips Sections */
  .page-no-hu__guide-item,
  .page-no-hu__tip-item {
    padding: 20px;
  }

  .page-no-hu__guide-step-title,
  .page-no-hu__tip-title {
    font-size: 20px;
  }

  .page-no-hu__guide-item p,
  .page-no-hu__tip-item p {
    font-size: 15px;
  }

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

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

  .page-no-hu__faq-toggle {
    font-size: 20px;
  }

  /* General Image adaptation */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__hero-image img {
    height: auto !important;
  }

  /* Exception for circular images */
  .page-no-hu__icon-box-media img {
    height: 100% !important;
    width: 100% !important;
    object-fit: cover !important;
  }

  .page-no-hu__container {
    overflow: hidden;
  }
}

@media (max-width: 480px) {
  .page-no-hu__hero-title {
    font-size: clamp(28px, 9vw, 36px);
  }

  .page-no-hu__section-title {
    font-size: clamp(22px, 8vw, 30px);
  }

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