.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default dark text for light body background */
  background-color: var(--background-color, #FFFFFF);
}

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

.page-no-hu__light-bg {
  background-color: #ffffff;
  color: #333333;
}

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

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

.page-no-hu__section-title--white {
  color: #ffffff;
}

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

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

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #017439;
  color: #ffffff;
}

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

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

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

.page-no-hu__hero-description {
  font-size: 1.2em;
  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-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

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

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

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

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

.page-no-hu__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

/* Intro Section */
.page-no-hu__intro-section {
  padding: 60px 0;
}

.page-no-hu__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  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);
}

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #017439;
}

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

.page-no-hu__feature-text {
  font-size: 1em;
  color: #555555;
}

/* Game Tabs Section */
.page-no-hu__game-tabs-section {
  padding: 60px 0;
}

.page-no-hu__tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
  gap: 10px;
}

.page-no-hu__tab-button {
  background-color: transparent;
  border: none;
  padding: 15px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color 0.3s ease, border-bottom 0.3s ease;
  border-bottom: 3px solid transparent;
}

.page-no-hu__tab-button.is-active {
  color: #ffffff;
  border-bottom: 3px solid #FFFF00;
}

.page-no-hu__tab-button:hover {
  color: #ffffff;
}

.page-no-hu__game-panels {
  margin-top: 20px;
}

.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(250px, 1fr));
  gap: 25px;
}

.page-no-hu__game-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

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

.page-no-hu__game-title {
  font-size: 1.3em;
  font-weight: bold;
  margin-bottom: 15px;
  flex-grow: 1;
  padding: 0 15px;
}

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

.page-no-hu__game-title a:hover {
  color: #FFFF00;
}

.page-no-hu__btn-play {
  background-color: #C30808;
  color: #FFFF00;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  margin: 0 15px;
  align-self: center;
  transition: background-color 0.3s ease;
}

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

/* Guide Section */
.page-no-hu__guide-section {
  padding: 60px 0;
}

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

.page-no-hu__guide-step-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-no-hu__step-number {
  font-size: 2.5em;
  font-weight: bold;
  color: #017439;
  margin-bottom: 15px;
}

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

.page-no-hu__step-text {
  font-size: 1em;
  color: #555555;
}

.page-no-hu__guide-cta {
  text-align: center;
  background-color: #f0f8f0;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-no-hu__guide-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  border-radius: 12px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__guide-cta-text {
  font-size: 1.3em;
  font-weight: bold;
  color: #017439;
  margin-bottom: 30px;
}

/* Promo Section */
.page-no-hu__promo-section {
  padding: 60px 0;
}

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

.page-no-hu__promo-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

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

.page-no-hu__promo-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
  flex-grow: 1;
  padding: 0 15px;
}

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

.page-no-hu__promo-title a:hover {
  color: #FFFF00;
}

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

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 60px 0;
}

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

.page-no-hu__faq-item {
  background-color: #f9f9f9;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.1em;
  font-weight: bold;
  color: #017439;
  cursor: pointer;
  list-style: none;
}

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

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

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

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #555555;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  content: '−';
}

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

/* Mobile responsiveness */
@media (max-width: 1024px) {
  .page-no-hu__main-title {
    font-size: 2.8em;
  }
  .page-no-hu__hero-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 20px 15px;
  }
  .page-no-hu__hero-content,
  .page-no-hu__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-no-hu__main-title {
    font-size: 2.2em !important;
    margin-bottom: 15px;
  }
  .page-no-hu__hero-description {
    font-size: 1em !important;
    margin-bottom: 25px;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }
  
  .page-no-hu__section-title {
    font-size: 2em;
  }
  .page-no-hu__section-description {
    font-size: 0.95em;
  }

  .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__content-area {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__features-grid,
  .page-no-hu__game-grid,
  .page-no-hu__guide-steps,
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-no-hu__tab-nav {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 20px;
  }
  .page-no-hu__tab-button {
    width: 100%;
    padding: 12px 15px;
    font-size: 1em;
  }

  .page-no-hu__game-card,
  .page-no-hu__promo-card {
    padding-bottom: 15px;
  }
  .page-no-hu__game-title,
  .page-no-hu__promo-title {
    font-size: 1.2em;
  }
  .page-no-hu__btn-play {
    padding: 8px 15px;
    font-size: 0.95em;
  }

  .page-no-hu__guide-image {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__guide-cta-text {
    font-size: 1.1em;
  }

  .page-no-hu__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
  }
  
  /* General image and 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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}