.page-no-hu {
  color: #FFF6D6; /* Text Main */
  background-color: #0A0A0A; /* Background */
}

.page-no-hu__hero-section {
  padding-top: 10px;
  padding-bottom: 40px;
  background-color: #0A0A0A;
}

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

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

.page-no-hu__hero-title {
  font-size: 3.2em;
  line-height: 1.2;
  font-weight: 700;
  color: #FFF6D6;
  margin-bottom: 20px;
}

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

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

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

.page-no-hu__hero-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
}

.page-no-hu__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(255, 216, 106, 0.4);
}

.page-no-hu__btn-secondary {
  background: transparent;
  color: #FFD36B;
  border: 2px solid #FFD36B;
}

.page-no-hu__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(255, 211, 107, 0.2);
}

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

.page-no-hu__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #FFF6D6;
  text-align: center;
  margin-bottom: 20px;
}

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

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

.page-no-hu__feature-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-no-hu__feature-item {
  flex: 1 1 30%;
  min-width: 280px;
  background-color: #0A0A0A;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
  transition: transform 0.3s ease;
}

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

.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 #FFD36B;
  box-shadow: 0 0 15px rgba(255, 211, 107, 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: 1.8em;
  font-weight: 600;
  color: #FFD36B;
  margin-bottom: 15px;
}

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

.page-no-hu__game-types-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-no-hu__game-type-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.page-no-hu__game-type-card {
  flex: 1 1 30%;
  min-width: 280px;
  background-color: #111111; /* Card BG */
  border-radius: 15px;
  padding-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-no-hu__card-img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  margin-bottom: 20px;
  display: block;
}

.page-no-hu__card-title {
  font-size: 1.6em;
  font-weight: 600;
  color: #FFD36B;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-no-hu__card-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #FFF6D6;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-no-hu__card-link {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.page-no-hu__card-link:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 10px rgba(255, 216, 106, 0.3);
}

.page-no-hu__guide-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG */
}

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

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

.page-no-hu__guide-step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 15px;
}

.page-no-hu__guide-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  background: #FFD36B;
  color: #111111;
  font-size: 1.4em;
  font-weight: 700;
  text-align: center;
}

.page-no-hu__guide-step-title {
  font-size: 1.5em;
  font-weight: 600;
  color: #FFD36B;
  margin-top: 5px;
  margin-bottom: 5px;
}

.page-no-hu__guide-step-text {
  font-size: 1em;
  line-height: 1.6;
  color: #FFF6D6;
}

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

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

.page-no-hu__promo-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

.page-no-hu__promo-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.page-no-hu__promo-card {
  flex: 1 1 30%;
  min-width: 280px;
  background-color: #111111; /* Card BG */
  border-radius: 15px;
  padding-bottom: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #3A2A12;
  overflow: hidden;
  transition: transform 0.3s ease;
}

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

.page-no-hu__cta-center {
  text-align: center;
}

.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: #111111; /* Card BG */
}

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

.page-no-hu__faq-item {
  background-color: #0A0A0A;
  border: 1px solid #3A2A12;
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #FFD36B;
  cursor: pointer;
  user-select: none;
  background-color: #0A0A0A;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-bottom 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
  background-color: #1a1a1a;
  border-bottom: 1px solid #3A2A12;
}

.page-no-hu__faq-question:hover {
  background-color: #1a1a1a;
}

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

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #FFF6D6;
  background-color: #0A0A0A;
}

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

.page-no-hu__faq-item summary::marker {
  display: none;
}

.page-no-hu__conclusion-section {
  padding: 60px 0;
  background-color: #0A0A0A;
}

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

/* Mobile Styles */
@media (max-width: 768px) {
  .page-no-hu {
    font-size: 15px;
  }

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

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

  .page-no-hu__hero-content {
    text-align: center;
    flex: 1 1 100%;
  }

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

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

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

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

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

  .page-no-hu__container {
    padding: 30px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__section-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

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

  .page-no-hu__intro-section,
  .page-no-hu__game-types-section,
  .page-no-hu__guide-section,
  .page-no-hu__promo-section,
  .page-no-hu__faq-section,
  .page-no-hu__conclusion-section {
    padding: 40px 0;
  }

  .page-no-hu__feature-grid,
  .page-no-hu__game-type-grid,
  .page-no-hu__promo-grid {
    flex-direction: column;
    gap: 20px;
  }

  .page-no-hu__feature-item,
  .page-no-hu__game-type-card,
  .page-no-hu__promo-card {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
  }

  .page-no-hu__feature-title {
    font-size: 1.5em;
  }

  .page-no-hu__game-type-card .page-no-hu__card-img {
    
  }

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

  .page-no-hu__guide-steps,
  .page-no-hu__guide-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-no-hu__guide-step-item {
    margin-bottom: 20px;
  }

  .page-no-hu__guide-step-number {
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 1.2em;
  }

  .page-no-hu__guide-step-title {
    font-size: 1.3em;
  }

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

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

  /* Universal image responsive for content area */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .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;
    flex-direction: column; /* Ensure vertical stacking for CTA buttons */
  }
}