.page-no-hu {
  color: #FFF3E6; /* Main text color for dark body background */
  background-color: #0D0E12; /* Ensure consistency with body background */
}

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

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

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

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF3E6; /* Light text for dark background */
}

.page-no-hu__description {
  font-size: 1.1rem;
  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 {
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6; /* Light text for gradient button */
  border: 2px solid transparent;
}

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

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

.page-no-hu__btn-secondary:hover {
  background: rgba(255, 165, 58, 0.1);
  transform: translateY(-2px);
}

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

.page-no-hu__hero-side-image {
  max-width: 600px; /* Use display width for img attributes */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(255, 140, 26, 0.5); /* Glow effect */
}

/* General content sections */
.page-no-hu__intro-section,
.page-no-hu__promo-section,
.page-no-hu__popular-games-section,
.page-no-hu__why-choose-section,
.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: #0D0E12;
}

.page-no-hu__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

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

.page-no-hu__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #FFA53A, #D96800);
  margin: 15px auto 0;
  border-radius: 2px;
}

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

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

.page-no-hu__feature-item {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-no-hu__icon-box-media {
  width: 180px; /* Fixed square size */
  height: 180px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #A84F0C; /* Border color */
  box-shadow: 0 0 15px #FFB04D; /* Glow */
}

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

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

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

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

.page-no-hu__step-item {
  background-color: #17191F;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-no-hu__step-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #A84F0C;
  box-shadow: 0 0 10px rgba(255, 140, 26, 0.3);
}

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

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

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

.page-no-hu__game-cards-grid {
  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);
  display: flex;
  flex-direction: column;
}

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

.page-no-hu__card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.page-no-hu__card-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-no-hu__card-title a {
  color: #FFA53A;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-no-hu__card-title a:hover {
  color: #FFB04D;
}

.page-no-hu__card-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #FFF3E6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-no-hu__btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
  align-self: flex-start;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6;
  border: none;
}

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

.page-no-hu__advantages-list {
  list-style: none;
  padding: 0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-no-hu__advantages-list li {
  background-color: #17191F;
  padding: 18px 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #FFF3E6;
  display: flex;
  align-items: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  border-left: 5px solid #FFA53A;
}

.page-no-hu__advantages-list li strong {
  color: #FFA53A;
}

/* FAQ Section */
.page-no-hu__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-no-hu__faq-item {
  background-color: #17191F;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  color: #FFF3E6;
}

.page-no-hu__faq-item summary {
  list-style: none; /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  background-color: #17191F;
  color: #FFA53A;
  position: relative;
}

.page-no-hu__faq-item summary::-webkit-details-marker {
  display: none; /* Hide Chrome/Safari marker */
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.page-no-hu__faq-qtext {
  flex-grow: 1;
  padding-right: 15px;
}

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #FFA53A;
  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: 1rem;
  line-height: 1.6;
  color: #FFF3E6;
}

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

/* Responsive styles for screens smaller than 1024px */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-no-hu__hero-content {
    order: 2; /* Content below image on smaller screens */
  }
  .page-no-hu__hero-image {
    order: 1;
    margin-bottom: 30px;
  }
  .page-no-hu__cta-buttons {
    justify-content: center;
  }
}

/* Responsive styles for screens smaller than 768px (mobile) */
@media (max-width: 768px) {
  /* HERO section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 40px;
  }
  .page-no-hu__hero-container {
    padding: 30px 15px;
    gap: 30px;
  }
  .page-no-hu__main-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 15px;
  }
  .page-no-hu__description {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-no-hu__btn,
  .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__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;
  }

  /* General content sections */
  .page-no-hu__intro-section,
  .page-no-hu__promo-section,
  .page-no-hu__popular-games-section,
  .page-no-hu__why-choose-section,
  .page-no-hu__faq-section {
    padding: 40px 0;
  }
  .page-no-hu__content-area {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-no-hu__section-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
    margin-bottom: 30px;
  }
  .page-no-hu__text-block {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }

  /* Module 1: Three-column icon-box */
  .page-no-hu__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__icon-box-media {
    width: 150px; /* Still square */
    height: 150px;
    border: 3px solid #A84F0C;
    box-shadow: 0 0 10px #FFB04D;
  }
  .page-no-hu__feature-title {
    font-size: 1.3rem;
  }
  .page-no-hu__feature-description {
    font-size: 0.9rem;
  }

  /* Guide steps */
  .page-no-hu__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-no-hu__step-title {
    font-size: 1.4rem;
  }
  .page-no-hu__step-description {
    font-size: 0.9rem;
  }

  /* Game cards */
  .page-no-hu__game-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-no-hu__game-card img {
     /* Adjust height for mobile */
  }
  .page-no-hu__card-title {
    font-size: 1.2rem;
  }
  .page-no-hu__card-description {
    font-size: 0.85rem;
  }

  /* Why Choose Us List */
  .page-no-hu__advantages-list li {
    font-size: 0.95rem;
    padding: 15px 20px;
    margin-bottom: 10px;
  }

  /* FAQ Section */
  .page-no-hu__faq-item summary {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }

  /* Universal image responsiveness */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Exception for icon-box-media img to remain square */
  .page-no-hu__icon-box-media img {
    height: 100% !important;
    object-fit: cover !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;
    padding-right: 15px;
  }
}