.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* 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; /* Small top padding, assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  background-color: #0A0A0A;
  overflow: hidden;
}

.page-no-hu__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 0;
}

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

.page-no-hu__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Main color for emphasis */
}

.page-no-hu__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #FFF6D6;
}

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

.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;
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  color: #0A0A0A; /* Ensure contrast on gold */
  border: none;
}

.page-no-hu__btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

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

.page-no-hu__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
  transform: translateY(-2px);
}

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

.page-no-hu__section-description {
  font-size: 1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #FFF6D6;
}

.page-no-hu__intro-section,
.page-no-hu__game-types-section,
.page-no-hu__guide-section,
.page-no-hu__faq-section,
.page-no-hu__cta-section {
  padding: 80px 0;
  background-color: #0A0A0A;
}

.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 {
  text-align: center;
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-no-hu__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2C14E; /* Main color border for icons */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

.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;
  margin-bottom: 15px;
  color: #FFD36B; /* Glow color */
}

.page-no-hu__feature-text {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.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: #111111; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.page-no-hu__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 20px 20px 10px;
  color: #F2C14E;
}

.page-no-hu__card-text {
  font-size: 0.95rem;
  padding: 0 20px 20px;
  color: #FFF6D6;
  flex-grow: 1;
}

.page-no-hu__btn-text {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px 0;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #0A0A0A;
  text-align: center;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-text:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
}

.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 {
  text-align: center;
  background-color: #111111; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #3A2A12; /* Border */
}

.page-no-hu__step-icon {
  width: 150px;
  height: 150px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #FFD36B; /* Glow color border */
  box-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

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

.page-no-hu__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-no-hu__step-text {
  font-size: 0.95rem;
  color: #FFF6D6;
}

.page-no-hu__cta-center {
  text-align: center;
  margin-top: 50px;
}

.page-no-hu__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__faq-item {
  background-color: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-no-hu__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  color: #F2C14E;
  background-color: #111111;
  position: relative;
  user-select: none;
}

.page-no-hu__faq-item summary::-webkit-details-marker,
.page-no-hu__faq-item summary::marker {
  display: none;
  content: "";
}

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #FFD36B;
  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 20px 20px;
  font-size: 1rem;
  color: #FFF6D6;
  line-height: 1.7;
}

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

.page-no-hu__cta-section {
  text-align: center;
  background: linear-gradient(90deg, #0A0A0A 0%, #111111 50%, #0A0A0A 100%);
  padding: 100px 0;
}

.page-no-hu__cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-no-hu__cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #F2C14E;
}

.page-no-hu__cta-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #FFF6D6;
}

/* --- 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-image {
    order: -1; /* Image above text on smaller screens */
  }

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

@media (max-width: 768px) {
  .page-no-hu__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-no-hu__hero-container {
    padding: 40px 0 !important;
    gap: 30px !important;
  }

  .page-no-hu__hero-title {
    font-size: 2.2rem !important;
  }

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

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

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.95rem !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General Image & Container - Mobile */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-no-hu__intro-section,
  .page-no-hu__game-types-section,
  .page-no-hu__guide-section,
  .page-no-hu__faq-section,
  .page-no-hu__cta-section {
    padding: 40px 0 !important;
  }

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

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

  /* Module 1 Three-column Round Images - Mobile */
  .page-no-hu__icon-box-media {
    width: 150px !important;
    height: 150px !important;
    border-width: 3px !important;
  }

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

  /* Game Grid - Mobile */
  .page-no-hu__game-grid {
    grid-template-columns: 1fr !important;
  }

  .page-no-hu__game-card img {
    
  }

  .page-no-hu__card-title {
    font-size: 1.2rem !important;
  }

  .page-no-hu__btn-text {
    width: calc(100% - 30px) !important;
    margin: 0 15px 15px !important;
  }

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

  .page-no-hu__step-icon {
    width: 120px !important;
    height: 120px !important;
  }

  .page-no-hu__step-title {
    font-size: 1.1rem !important;
  }

  /* FAQ Section - Mobile */
  .page-no-hu__faq-item summary {
    padding: 15px !important;
    font-size: 1rem !important;
  }

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

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

  .page-no-hu__cta-title {
    font-size: 2rem !important;
  }

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