.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
}

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

.page-no-hu__section-title {
  font-size: 2.5em;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.page-no-hu__section-description {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  background-color: #08160F; /* Background */
  position: relative;
  overflow: hidden;
}

.page-no-hu__hero-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.page-no-hu__hero-content {
  flex: 1;
  max-width: 50%;
  text-align: left;
}

.page-no-hu__hero-title {
  font-size: 3.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 900;
}

.page-no-hu__hero-description {
  font-size: 1.2em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.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-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button */
  color: #F2FFF6; /* Text Main */
  border: none;
}

.page-no-hu__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-no-hu__btn-secondary {
  background: none;
  color: #2AD16F; /* Button color for text */
  border: 2px solid #2AD16F; /* Button color for border */
}

.page-no-hu__btn-secondary:hover {
  background-color: rgba(42, 209, 111, 0.1);
  transform: translateY(-2px);
}

.page-no-hu__hero-image {
  flex: 1;
  max-width: 50%;
  text-align: center;
}

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

/* Intro Section */
.page-no-hu__intro-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-no-hu__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background-color: #11271B; /* Card BG */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-no-hu__icon-box-media {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2C14E; /* Gold */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.5);
}

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

.page-no-hu__feature-title {
  font-size: 1.8em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu__feature-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
}

/* Game Showcase Section */
.page-no-hu__game-showcase-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

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

.page-no-hu__game-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
  display: flex;
  flex-direction: column;
}

.page-no-hu__game-card-img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
}

.page-no-hu__game-card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-no-hu__game-card-title {
  font-size: 1.5em;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-no-hu__game-card-text {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-no-hu__guide-image {
  flex: 1;
  min-width: 40%;
}

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

.page-no-hu__guide-text {
  flex: 1;
  min-width: 50%;
}

.page-no-hu__guide-text p {
  font-size: 1.1em;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 25px;
}

.page-no-hu__guide-steps {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 30px;
}

.page-no-hu__guide-steps li {
  color: #F2FFF6; /* Text Main */
  margin-bottom: 15px;
  font-size: 1em;
}

.page-no-hu__guide-steps li strong {
  color: #F2C14E; /* Gold */
}

.page-no-hu__guide-cta {
  margin-top: 20px;
}

/* Benefits Section */
.page-no-hu__benefits-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
}

.page-no-hu__benefits-content {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

.page-no-hu__benefits-image {
  flex: 1;
  min-width: 40%;
}

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

.page-no-hu__benefits-list {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-no-hu__benefits-item {
  background-color: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  border: 1px solid #2E7A4E; /* Border */
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-no-hu__benefits-item:last-child {
  margin-bottom: 0;
}

.page-no-hu__benefits-item-title {
  font-size: 1.4em;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
  font-weight: bold;
}

.page-no-hu__benefits-item p {
  color: #A7D9B8; /* Text Secondary */
  font-size: 0.95em;
}

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 80px 0;
  background-color: #08160F; /* Background */
}

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

.page-no-hu__faq-item {
  background-color: #11271B; /* Card BG */
  border: 1px solid #2E7A4E; /* Border */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

.page-no-hu__faq-item[open] {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B; /* Card BG */
  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;
  color: #F2C14E; /* Gold */
  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 20px;
  color: #A7D9B8; /* Text Secondary */
  font-size: 1em;
  line-height: 1.6;
}

/* CTA Section */
.page-no-hu__cta-section {
  padding: 80px 0;
  background-color: #0A4B2C; /* Deep Green */
  text-align: center;
}

.page-no-hu__cta-image {
  margin: 40px auto;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-no-hu__cta-main-img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-no-hu__cta-button {
  margin-top: 30px;
  font-size: 1.3em;
  padding: 18px 40px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-no-hu__hero-title {
    font-size: 3em;
  }
  .page-no-hu__section-title {
    font-size: 2em;
  }
  .page-no-hu__hero-container,
  .page-no-hu__guide-content,
  .page-no-hu__benefits-content {
    flex-direction: column;
    text-align: center;
  }
  .page-no-hu__hero-content,
  .page-no-hu__hero-image,
  .page-no-hu__guide-image,
  .page-no-hu__guide-text,
  .page-no-hu__benefits-image,
  .page-no-hu__benefits-list {
    max-width: 100%;
    text-align: center;
  }
  .page-no-hu__hero-cta-buttons {
    justify-content: center;
  }
  .page-no-hu__features-grid,
  .page-no-hu__game-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
  }
  .page-no-hu__hero-container {
    padding: 30px 15px;
  }
  .page-no-hu__hero-title {
    font-size: 2.2em;
  }
  .page-no-hu__hero-description {
    font-size: 1em;
  }
  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    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: 1em;
  }
  .page-no-hu__hero-main-img {
    width: 100% !important;
    height: auto !important;
  }

  /* General Section Titles & Descriptions */
  .page-no-hu__section-title {
    font-size: 1.8em;
    padding: 0 15px;
  }
  .page-no-hu__section-description {
    font-size: 0.95em;
    padding: 0 15px;
    margin-bottom: 30px;
  }
  .page-no-hu__container {
    padding: 0 15px;
  }

  /* Intro Section - Module 1 (Round Images) */
  .page-no-hu__intro-section {
    padding: 50px 0;
  }
  .page-no-hu__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__icon-box-media {
    width: 180px;
    height: 180px;
  }
  .page-no-hu__feature-title {
    font-size: 1.5em;
  }
  .page-no-hu__feature-text {
    font-size: 0.9em;
  }

  /* Game Showcase Section */
  .page-no-hu__game-showcase-section {
    padding: 50px 0;
  }
  .page-no-hu__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__game-card-img {
    height: 200px;
  }
  .page-no-hu__game-card-title {
    font-size: 1.3em;
  }
  .page-no-hu__game-card-text {
    font-size: 0.85em;
  }

  /* Guide Section */
  .page-no-hu__guide-section {
    padding: 50px 0;
  }
  .page-no-hu__guide-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-no-hu__guide-main-img {
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__guide-text p {
    font-size: 1em;
  }
  .page-no-hu__guide-steps li {
    font-size: 0.95em;
  }
  .page-no-hu__guide-cta {
    font-size: 1.1em;
    padding: 15px 25px;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Benefits Section */
  .page-no-hu__benefits-section {
    padding: 50px 0;
  }
  .page-no-hu__benefits-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-no-hu__benefits-main-img {
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__benefits-item-title {
    font-size: 1.2em;
  }
  .page-no-hu__benefits-item p {
    font-size: 0.9em;
  }

  /* FAQ Section */
  .page-no-hu__faq-section {
    padding: 50px 0;
  }
  .page-no-hu__faq-list {
    margin-top: 30px;
  }
  .page-no-hu__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-no-hu__faq-answer {
    font-size: 0.9em;
    padding: 0 20px 15px;
  }

  /* CTA Section */
  .page-no-hu__cta-section {
    padding: 50px 0;
  }
  .page-no-hu__cta-image {
    margin: 30px auto;
  }
  .page-no-hu__cta-main-img {
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__cta-button {
    font-size: 1.1em;
    padding: 15px 30px;
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Universal Image & Container Mobile Rules */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  /* Exception for round feature images */
  .page-no-hu__icon-box-media img {
    height: 100% !important;
    object-fit: cover !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;
  }
}

@media (max-width: 480px) {
  .page-no-hu__hero-title {
    font-size: 1.8em;
  }
  .page-no-hu__section-title {
    font-size: 1.5em;
  }
  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
  }
  .page-no-hu__hero-cta-buttons {
    gap: 10px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    font-size: 0.9em;
    padding: 10px 15px;
  }
  .page-no-hu__faq-question {
    font-size: 1em;
    padding: 12px 15px;
  }
  .page-no-hu__faq-answer {
    font-size: 0.85em;
    padding: 0 15px 12px;
  }
}