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

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

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

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding as shared.css handles body padding */
  padding-bottom: 60px;
  background-color: #017439;
  color: #ffffff;
  text-align: center;
}

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

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

.page-no-hu__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFFF00; /* Register/Login font color for main title */
}

.page-no-hu__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

.page-no-hu__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-no-hu__btn-primary {
  background-color: #C30808; /* Register/Login 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: #017439;
  color: #ffffff;
  border: 2px solid #ffffff;
}

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

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

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

.page-no-hu__dark-bg .page-no-hu__section-title {
  color: #FFFF00; /* Yellow for titles on dark background */
}

.page-no-hu__intro-section p {
  font-size: 1.05em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-no-hu__features-section {
  padding: 60px 0;
}

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

.page-no-hu__feature-item {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.page-no-hu__icon-box-media {
  width: 240px;
  height: 240px;
  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;
  display: block;
  border-radius: 50%;
}

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

.page-no-hu__feature-item p {
  font-size: 0.95em;
  color: #555555;
}

.page-no-hu__game-list-section {
  padding: 60px 0;
}

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

.page-no-hu__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  display: flex;
  flex-direction: column;
}

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

.page-no-hu__game-card-title {
  font-size: 1.6em;
  font-weight: 600;
  margin: 15px 15px 10px;
  color: #017439;
}

.page-no-hu__game-card-link {
  text-decoration: none;
  color: inherit;
}

.page-no-hu__game-card-link:hover {
  color: #C30808;
}

.page-no-hu__game-card-desc {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px 20px;
  flex-grow: 1;
}

.page-no-hu__game-card .page-no-hu__btn-primary {
  margin: 0 15px 20px;
  align-self: center;
  width: calc(100% - 30px);
}

.page-no-hu__guide-section {
  padding: 60px 0;
}

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

.page-no-hu__guide-steps {
  flex: 1 1 500px;
}

.page-no-hu__guide-steps ol {
  list-style: none;
  counter-reset: guide-step;
  padding: 0;
}

.page-no-hu__guide-steps li {
  counter-increment: guide-step;
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
}

.page-no-hu__guide-steps li::before {
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 35px;
  height: 35px;
  background-color: #017439;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

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

.page-no-hu__guide-steps p {
  font-size: 1em;
  color: #555555;
}

.page-no-hu__guide-image {
  flex: 1 1 400px;
  text-align: center;
}

.page-no-hu__guide-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-no-hu__tips-section {
  padding: 60px 0;
}

.page-no-hu__tips-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-no-hu__tips-list li {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 5px solid #FFFF00;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-no-hu__tips-list h3 {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFF00;
}

.page-no-hu__tips-list p {
  font-size: 1em;
  color: #f0f0f0;
}

.page-no-hu__tips-image {
  text-align: center;
  margin-top: 30px;
}

.page-no-hu__tips-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-no-hu__promo-section {
  padding: 60px 0;
  text-align: center;
}

.page-no-hu__promo-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.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: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  color: #FFFF00; /* Yellow for FAQ questions on dark background */
  background-color: rgba(0, 0, 0, 0.2);
  list-style: none;
}

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  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: 0 25px 15px;
  font-size: 1em;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-no-hu__cta-final-section {
  padding: 60px 0;
  text-align: center;
}

.page-no-hu__cta-final-section p {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu__hero-content {
    text-align: center;
  }

  .page-no-hu__cta-buttons {
    justify-content: center;
  }

  .page-no-hu__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

  .page-no-hu__section-title {
    font-size: 2em;
  }

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

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

  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container,
  .page-no-hu__content-area {
    padding: 20px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    margin-bottom: 15px;
  }

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

  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

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

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

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

  .page-no-hu__feature-item {
    max-width: 100%;
    padding: 15px;
  }

  .page-no-hu__icon-box-media {
    width: 160px;
    height: 160px;
    margin-bottom: 15px;
    border: 3px solid #017439;
  }

  .page-no-hu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

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

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

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

  .page-no-hu__game-card-title {
    font-size: 1.4em;
  }

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

  .page-no-hu__guide-steps li {
    padding-left: 45px;
    margin-bottom: 20px;
  }

  .page-no-hu__guide-steps li::before {
    width: 30px;
    height: 30px;
    font-size: 1em;
  }

  .page-no-hu__guide-steps h3 {
    font-size: 1.2em;
  }

  .page-no-hu__guide-image img {
    max-width: 100%;
    height: auto;
  }

  .page-no-hu__tips-list li {
    padding: 15px;
    margin-bottom: 15px;
  }

  .page-no-hu__tips-list h3 {
    font-size: 1.3em;
  }

  .page-no-hu__promo-section p,
  .page-no-hu__cta-final-section p {
    font-size: 1em;
  }

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

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

  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !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;
  }
}