.page-no-hu__hero-section {
  padding-top: 10px;
  padding-bottom: 60px;
  background-color: #f8f8f8;
  color: #333333;
}

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

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

.page-no-hu__hero-title {
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #017439;
}

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

.page-no-hu__hero-cta-buttons {
  display: flex;
  gap: 20px;
  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;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

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

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

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

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

.page-no-hu__dark-section {
  background-color: #017439;
  color: #ffffff;
}

.page-no-hu__dark-section .page-no-hu__section-title,
.page-no-hu__dark-section .page-no-hu__section-description,
.page-no-hu__dark-section .page-no-hu__promo-title,
.page-no-hu__dark-section .page-no-hu__promo-text {
  color: #ffffff;
}

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

.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #017439;
}

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

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

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

.page-no-hu__feature-item {
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background-color: #fdfdfd;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-no-hu__icon-box-media {
  width: 240px;
  height: 240px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #017439;
  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: 600;
  margin-bottom: 10px;
  color: #017439;
}

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

.page-no-hu__tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.page-no-hu__tab-button {
  background-color: #f0f0f0;
  color: #017439;
  border: 1px solid #e0e0e0;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
}

.page-no-hu__tab-button.is-active {
  background-color: #017439;
  color: #ffffff;
  border-color: #017439;
}

.page-no-hu__tab-button:hover:not(.is-active) {
  background-color: #e0e0e0;
}

.page-no-hu__game-panel {
  display: none;
}

.page-no-hu__game-panel.is-active {
  display: block;
}

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

.page-no-hu__game-card {
  background-color: #fdfdfd;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.page-no-hu__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-no-hu__game-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #017439;
  padding: 0 15px;
}

.page-no-hu__game-provider {
  font-size: 0.95rem;
  color: #777777;
  margin-bottom: 15px;
  padding: 0 15px;
}

.page-no-hu__btn-play {
  display: inline-block;
  background-color: #C30808;
  color: #FFFF00;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: 2px solid #C30808;
}

.page-no-hu__btn-play:hover {
  background-color: #a00606;
  border-color: #a00606;
}

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

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

.page-no-hu__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

.page-no-hu__step-number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #017439;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
}

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

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

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

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

.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: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.page-no-hu__promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-no-hu__promo-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
  padding: 0 15px;
}

.page-no-hu__promo-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
  margin-bottom: 20px;
  padding: 0 15px;
}

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

.page-no-hu__faq-item {
  background-color: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #017439;
  cursor: pointer;
  background-color: #f5f5f5;
  list-style: none;
}

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

.page-no-hu__faq-qtext {
  flex-grow: 1;
}

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  color: #017439;
  margin-left: 15px;
  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: 15px 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  border-top: 1px solid #e0e0e0;
}

/* General image responsiveness for all images in .page-no-hu */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

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

  .page-no-hu__hero-title {
    font-size: clamp(2rem, 8vw, 2.5rem);
    text-align: center;
  }

  .page-no-hu__hero-description {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 25px;
  }

  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

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

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

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

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

  .page-no-hu__section-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
    margin-bottom: 15px;
  }

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

  .page-no-hu__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__icon-box-media {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
  }

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

  .page-no-hu__tab-nav {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
  }

  .page-no-hu__tab-button {
    width: 100%;
    max-width: 100%;
    padding: 10px 15px;
    font-size: 0.95rem;
  }

  .page-no-hu__game-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__game-image {
    height: 180px;
  }

  .page-no-hu__game-title {
    font-size: 1.2rem;
  }

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

  .page-no-hu__guide-steps {
    width: 100%;
  }

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

  .page-no-hu__step-item {
    flex-direction: row;
    gap: 10px;
  }

  .page-no-hu__step-number {
    width: 35px;
    height: 35px;
    min-width: 35px;
    font-size: 1.1rem;
  }

  .page-no-hu__step-title {
    font-size: 1.15rem;
  }

  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__promo-image {
    height: 180px;
  }

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

  .page-no-hu__faq-item {
    margin-bottom: 10px;
  }

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

  .page-no-hu__faq-toggle {
    font-size: 1.3rem;
  }

  .page-no-hu__faq-answer {
    padding: 10px 20px 15px;
    font-size: 0.95rem;
  }

  /* General image responsiveness for all images in .page-no-hu */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Ensure containers do not overflow */
  .page-no-hu__container,
  .page-no-hu__hero-content,
  .page-no-hu__hero-image,
  .page-no-hu__features-grid,
  .page-no-hu__feature-item,
  .page-no-hu__game-panel,
  .page-no-hu__game-grid,
  .page-no-hu__game-card,
  .page-no-hu__guide-content,
  .page-no-hu__guide-steps,
  .page-no-hu__guide-image,
  .page-no-hu__promo-grid,
  .page-no-hu__promo-card,
  .page-no-hu__faq-list,
  .page-no-hu__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }
}