.page-no-hu__hero-section {
  padding-top: 10px; /* Adjusted to 10px as per instructions, assuming shared.css handles body padding-top */
  padding-bottom: 40px;
  background-color: #017439;
  color: #ffffff;
}

.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: 40px;
}

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

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  cursor: pointer;
  box-sizing: border-box;
}

.page-no-hu__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom font color for register/login */
  border: 2px solid #C30808;
}

.page-no-hu__btn-primary:hover {
  background-color: #a30606;
  border-color: #a30606;
}

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

.page-no-hu__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #017439;
}

.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;
  display: block;
  margin: 0 auto;
}

.page-no-hu__intro-section,
.page-no-hu__guide-section,
.page-no-hu__promo-section,
.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-no-hu__game-types-section,
.page-no-hu__strategy-section,
.page-no-hu__why-choose-section,
.page-no-hu__conclusion-section {
  padding: 60px 0;
  background-color: #017439;
  color: #ffffff;
}

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

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

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

.page-no-hu__section-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 20px;
  color: inherit;
}

.page-no-hu__feature-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: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  color: #333333;
}

.page-no-hu__intro-section .page-no-hu__feature-item {
  background-color: #f0f8f0; /* Lighter background for contrast */
}

.page-no-hu__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #017439;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(1, 116, 57, 0.2);
}

.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.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #017439;
}

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

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

.page-no-hu__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-no-hu__game-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
}

.page-no-hu__game-card-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #f0f0f0;
  flex-grow: 1;
}

.page-no-hu__game-trial-frame {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
  background-color: #000;
  margin-top: 20px;
}

.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-item {
  text-align: center;
  padding: 25px;
  background-color: #f0f8f0;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  color: #333333;
}

.page-no-hu__guide-icon {
  width: 60px;
  height: 60px;
  background-color: #017439;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.page-no-hu__guide-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #017439;
}

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

.page-no-hu__content-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 40px auto 20px;
  display: block;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-no-hu__strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-no-hu__strategy-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-left: 5px solid #C30808;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
}

.page-no-hu__strategy-item strong {
  color: #FFFF00; /* Custom font color for register/login */
}

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

.page-no-hu__promo-card {
  background-color: #f0f8f0;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #333333;
}

.page-no-hu__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-no-hu__promo-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #017439;
}

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

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

.page-no-hu__advantage-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  position: relative;
  padding-left: 40px;
}

.page-no-hu__advantage-item::before {
  content: '✓';
  position: absolute;
  left: 15px;
  top: 20px;
  color: #FFFF00; /* Custom font color for register/login */
  font-weight: bold;
  font-size: 1.2rem;
}

.page-no-hu__advantage-item strong {
  color: #FFFF00;
}

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

.page-no-hu__faq-item {
  background-color: #f0f8f0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: #333333;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #017439;
  cursor: pointer;
  list-style: none; /* Hide default marker for details */
}

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

.page-no-hu__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #C30808;
}

.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: #555555;
}

.page-no-hu__conclusion-section .page-no-hu__cta-buttons {
  justify-content: center;
  margin-top: 40px;
}

/* General image styling to prevent small icons */
.page-no-hu img:not(.page-no-hu__icon-box-media img) {
  min-width: 200px;
  min-height: 200px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    padding: 30px 16px;
  }
  .page-no-hu__main-title {
    font-size: clamp(2rem, 4.5vw, 3rem);
  }
  .page-no-hu__hero-description {
    font-size: 1rem;
  }
  .page-no-hu__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
  .page-no-hu__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  .page-no-hu__feature-grid, .page-no-hu__game-showcase, .page-no-hu__guide-steps, .page-no-hu__promo-grid, .page-no-hu__advantage-list {
    gap: 20px;
  }
  .page-no-hu__icon-box-media {
    width: 180px;
    height: 180px;
  }
  .page-no-hu__btn-primary, .page-no-hu__btn-secondary {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 30px !important;
  }
  .page-no-hu__hero-container {
    flex-direction: column-reverse; /* Image first, then content */
    text-align: center;
    padding: 20px 15px !important;
    gap: 30px !important;
  }
  .page-no-hu__hero-content {
    flex: 1 1 100% !important;
    text-align: center !important;
  }
  .page-no-hu__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem) !important;
    margin-bottom: 15px !important;
  }
  .page-no-hu__hero-description {
    font-size: 0.95rem !important;
    margin-bottom: 25px !important;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px !important;
    font-size: 0.9rem !important;
  }
  .page-no-hu__hero-image {
    flex: 1 1 100% !important;
  }
  .page-no-hu__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Intro Section - Feature Grid (Circular Images) */
  .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__why-choose-section, .page-no-hu__faq-section, .page-no-hu__conclusion-section {
    padding: 40px 0 !important;
  }
  .page-no-hu__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-no-hu__section-title {
    font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
    margin-bottom: 15px !important;
  }
  .page-no-hu__section-description {
    font-size: 0.9rem !important;
    margin-bottom: 25px !important;
  }
  .page-no-hu__feature-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-no-hu__icon-box-media {
    width: 150px !important;
    height: 150px !important;
    margin-bottom: 15px !important;
  }
  .page-no-hu__feature-title {
    font-size: 1.3rem !important;
  }
  .page-no-hu__feature-text {
    font-size: 0.9rem !important;
  }

  /* Game Types Section */
  .page-no-hu__game-showcase {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-no-hu__game-card-title {
    font-size: 1.4rem !important;
  }
  .page-no-hu__game-card-text {
    font-size: 0.9rem !important;
  }
  .page-no-hu__game-trial-frame {
    height: 250px !important;
  }

  /* Guide Section */
  .page-no-hu__guide-steps {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-no-hu__guide-icon {
    width: 50px !important;
    height: 50px !important;
    font-size: 1.8rem !important;
    margin-bottom: 15px !important;
  }
  .page-no-hu__guide-title {
    font-size: 1.2rem !important;
  }
  .page-no-hu__guide-text {
    font-size: 0.9rem !important;
  }
  .page-no-hu__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin: 30px auto 15px !important;
  }

  /* Strategy Section */
  .page-no-hu__strategy-list {
    gap: 15px !important;
  }
  .page-no-hu__strategy-item {
    padding: 15px !important;
    font-size: 0.9rem !important;
  }

  /* Promo Section */
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-no-hu__promo-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__promo-title {
    font-size: 1.3rem !important;
  }
  .page-no-hu__promo-text {
    font-size: 0.9rem !important;
  }

  /* Why Choose Section */
  .page-no-hu__advantage-list {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  .page-no-hu__advantage-item {
    padding: 15px 15px 15px 40px !important;
    font-size: 0.9rem !important;
  }
  .page-no-hu__advantage-item::before {
    top: 15px !important;
    font-size: 1rem !important;
  }

  /* FAQ Section */
  .page-no-hu__faq-question {
    padding: 15px 20px !important;
    font-size: 1rem !important;
  }
  .page-no-hu__faq-toggle {
    font-size: 1.5rem !important;
  }
  .page-no-hu__faq-answer {
    padding: 0 20px 15px !important;
    font-size: 0.9rem !important;
  }

  /* Conclusion Section */
  .page-no-hu__conclusion-section .page-no-hu__cta-buttons {
    flex-direction: column !important;
  }

  /* General Image & 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,
  .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;
  }
  .page-no-hu__cta-buttons {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}