.page-no-hu {
  font-family: Arial, sans-serif;
  color: #333333;
  background-color: #FFFFFF;
  line-height: 1.6;
}

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

.page-no-hu__hero-section {
  text-align: center;
  padding-top: 10px; /* Aligned with fixed header spacing rule */
  padding-bottom: 40px;
  background-color: #f0f0f0;
  position: relative;
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-height: 600px; /* Limit height for hero image */
  overflow: hidden;
}

.page-no-hu__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 10;
  padding-top: 20px;
}

.page-no-hu__main-title {
  font-size: 3.2em;
  font-weight: 700;
  color: #017439;
  margin-bottom: 15px;
  line-height: 1.2;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__intro-text {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-no-hu__btn-primary {
  background-color: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
}

.page-no-hu__btn-primary:hover {
  background-color: #a00606;
  transform: translateY(-2px);
}

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

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

.page-no-hu__btn-primary--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-no-hu__btn-primary--small {
  padding: 10px 20px;
  font-size: 1em;
}

.page-no-hu__btn-secondary--light {
  background-color: #f8f8f8;
  color: #017439;
  border-color: #017439;
}

.page-no-hu__btn-tertiary {
  display: inline-block;
  padding: 10px 20px;
  background-color: #017439;
  color: #FFFFFF;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9em;
  transition: background-color 0.3s ease;
}

.page-no-hu__btn-tertiary:hover {
  background-color: #005a2d;
}

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

.page-no-hu__section-title--light {
  color: #FFFFFF;
}

.page-no-hu__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-no-hu__section-description--light {
  color: #f0f0f0;
}

.page-no-hu__dark-section {
  background-color: #017439;
  color: #FFFFFF;
  padding: 60px 0;
}

.page-no-hu__content-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 40px;
}

.page-no-hu__content-wrapper--reversed {
  flex-direction: row-reverse;
}

.page-no-hu__text-block {
  flex: 1;
  text-align: left;
}

.page-no-hu__text-block--light {
  color: #FFFFFF;
}

.page-no-hu__text-block p {
  margin-bottom: 15px;
}

.page-no-hu__image-block {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-no-hu__image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-no-hu__grid {
  display: grid;
  gap: 30px;
}

.page-no-hu__grid--3-cols {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-no-hu__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.page-no-hu__card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-no-hu__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.page-no-hu__card-title {
  font-size: 1.5em;
  color: #017439;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-no-hu__card-text {
  font-size: 1em;
  color: #666666;
}

.page-no-hu__feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.page-no-hu__feature-list li {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  color: #FFFFFF;
}

.page-no-hu__feature-list li h3 {
  color: #FFFF00;
  margin-top: 0;
  font-size: 1.3em;
  margin-bottom: 8px;
}

.page-no-hu__feature-list li p {
  color: #f0f0f0;
  margin-bottom: 0;
}

.page-no-hu__step-list {
  list-style: decimal;
  padding-left: 20px;
  margin: 0;
  text-align: left;
}

.page-no-hu__step-list li {
  margin-bottom: 25px;
  font-size: 1.1em;
  color: #333333;
}

.page-no-hu__step-list li h3 {
  color: #017439;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 1.4em;
}

.page-no-hu__step-list li p {
  color: #555555;
}

.page-no-hu__link-text {
  color: #017439;
  text-decoration: underline;
  font-weight: 500;
}

.page-no-hu__link-text:hover {
  color: #005a2d;
}

.page-no-hu__button-group {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}

.page-no-hu__button-group--center {
  justify-content: center;
}

.page-no-hu__promo-card {
  background-color: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #333333;
  border: 1px solid #e0e0e0;
}

.page-no-hu__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

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

.page-no-hu__promo-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

/* FAQ styles */
details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question::-webkit-details-marker {
  display: none;
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question:hover {
  background: #f5f5f5;
}
.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #555555;
}

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

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

.page-no-hu__section,
.page-no-hu__card,
.page-no-hu__container,
.page-no-hu__content-wrapper,
.page-no-hu__cta-buttons,
.page-no-hu__button-group {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__main-title {
    font-size: 2.8em;
  }
  .page-no-hu__section-title {
    font-size: 2em;
  }
  .page-no-hu__grid--2-cols {
    grid-template-columns: 1fr;
  }
  .page-no-hu__content-wrapper {
    flex-direction: column;
  }
  .page-no-hu__content-wrapper--reversed {
    flex-direction: column;
  }
}

@media (max-width: 849px) {
  .page-no-hu__hero-image {
    object-fit: contain !important;
    aspect-ratio: unset !important;
  }
}

@media (max-width: 768px) {
  .page-no-hu {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-no-hu__container {
    padding: 15px;
  }

  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .page-no-hu__main-title {
    font-size: clamp(2em, 8vw, 2.5em);
    margin-bottom: 10px;
  }

  .page-no-hu__intro-text {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .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;
  }

  /* Section Titles */
  .page-no-hu__section-title {
    font-size: clamp(1.8em, 7vw, 2.2em);
    margin-top: 30px;
    margin-bottom: 20px;
  }

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

  /* General Content Blocks */
  .page-no-hu__content-wrapper {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .page-no-hu__content-wrapper--reversed {
    flex-direction: column;
  }

  .page-no-hu__text-block {
    text-align: left;
  }

  .page-no-hu__image-block {
    order: -1; /* Image first on mobile */
  }

  .page-no-hu__image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Grid Layouts */
  .page-no-hu__grid--3-cols {
    grid-template-columns: 1fr;
  }

  .page-no-hu__grid--2-cols {
    grid-template-columns: 1fr;
  }

  .page-no-hu__card {
    padding: 20px;
  }

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

  .page-no-hu__feature-list li {
    padding: 15px;
  }

  .page-no-hu__feature-list li h3 {
    font-size: 1.2em;
  }

  .page-no-hu__step-list {
    padding-left: 15px;
  }

  .page-no-hu__step-list li h3 {
    font-size: 1.2em;
  }

  /* Promotion Cards */
  .page-no-hu__promo-card {
    padding: 15px;
  }

  .page-no-hu__promo-title {
    font-size: 1.2em;
  }

  .page-no-hu__promo-text {
    font-size: 0.9em;
  }

  /* FAQ */
  details.page-no-hu__faq-item summary.page-no-hu__faq-question { padding: 15px; }
  .page-no-hu__faq-qtext { font-size: 15px; }
  details.page-no-hu__faq-item .page-no-hu__faq-answer { padding: 0 15px 15px; }

  /* Button Groups */
  .page-no-hu__button-group {
    flex-direction: column;
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .page-no-hu__dark-section {
    padding: 40px 0;
  }

  /* Ensure all containers and images are responsive */
  .page-no-hu__overview-section,
  .page-no-hu__game-types-section,
  .page-no-hu__features-section .page-no-hu__container,
  .page-no-hu__guide-section,
  .page-no-hu__strategy-section,
  .page-no-hu__promotions-section .page-no-hu__container,
  .page-no-hu__faq-section,
  .page-no-hu__conclusion-section .page-no-hu__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Specific overrides for long text areas to prevent overflow */
  .page-no-hu__text-block {
    max-width: 100%;
    overflow-x: hidden;
  }
  .page-no-hu__text-block p, .page-no-hu__text-block ul, .page-no-hu__text-block ol {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
  }
}