.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: var(--background-color); /* Inherit from shared */
}

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

.page-no-hu__section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

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

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

.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #F2FFF6; /* Text Main */
}

.page-no-hu__main-title {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #F2FFF6;
}

.page-no-hu__description {
  font-size: 18px;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
}

.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: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

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

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

.page-no-hu__btn-secondary {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 2px solid #57E38D; /* Glow */
}

.page-no-hu__btn-secondary:hover {
  background-color: rgba(87, 227, 141, 0.1);
  transform: translateY(-2px);
}

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

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

/* Intro Section */
.page-no-hu__intro-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
}

.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 {
  background-color: #11271B; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E; /* Border */
}

.page-no-hu__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px 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;
  border-radius: 50%; /* Ensure image is also round */
  display: block;
}

.page-no-hu__feature-title {
  font-size: 24px;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 10px;
}

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

/* Game Showcase Section */
.page-no-hu__game-showcase-section {
  background-color: #08160F; /* Background */
  padding: 60px 0;
}

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

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

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

.page-no-hu__game-thumbnail {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-no-hu__game-title {
  font-size: 22px;
  font-weight: 700;
  color: #F2FFF6; /* Text Main */
  padding: 15px 20px 5px;
}

.page-no-hu__game-provider {
  font-size: 14px;
  color: #A7D9B8; /* Text Secondary */
  padding: 0 20px 15px;
}

.page-no-hu__btn-small {
  font-size: 16px;
  padding: 10px 20px;
  margin: 0 20px;
}

.page-no-hu__view-all-games {
  text-align: center;
  margin-top: 50px;
}

/* Guide Section */
.page-no-hu__guide-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
}

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

.page-no-hu__guide-text-block {
  flex: 1 1 55%;
  min-width: 300px;
  color: #F2FFF6; /* Text Main */
}

.page-no-hu__guide-text-block p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

.page-no-hu__guide-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-top: 30px;
  margin-bottom: 15px;
}

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

.page-no-hu__guide-image-content {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-no-hu__guide-link {
  margin-top: 30px;
  display: inline-block;
}

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

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

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

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #F2FFF6; /* Text Main */
  cursor: pointer;
  background-color: #11271B;
  list-style: none; /* For details/summary */
}

.page-no-hu__faq-question::-webkit-details-marker, /* Hide default marker */
.page-no-hu__faq-question::marker {
  display: none;
}

.page-no-hu__faq-question:hover {
  background-color: rgba(46, 122, 78, 0.2); /* Border color with opacity */
}

.page-no-hu__faq-toggle {
  font-size: 24px;
  line-height: 1;
  color: #F2C14E; /* Gold */
  margin-left: 15px;
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
  line-height: 1.7;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
  background-color: rgba(46, 122, 78, 0.2);
}

/* Final CTA Section */
.page-no-hu__cta-final-section {
  background-color: #0A4B2C; /* Deep Green */
  padding: 60px 0;
}

.page-no-hu__cta-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: center;
}

.page-no-hu__cta-final-section .page-no-hu__section-title {
  color: #F2FFF6;
}

.page-no-hu__cta-final-section .page-no-hu__section-description {
  color: #A7D9B8;
}

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

.page-no-hu__cta-final-section .page-no-hu__container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: center;
}

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

.page-no-hu__cta-image-content {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container,
  .page-no-hu__guide-content,
  .page-no-hu__cta-final-section .page-no-hu__container {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu__hero-content,
  .page-no-hu__hero-image,
  .page-no-hu__guide-text-block,
  .page-no-hu__guide-image,
  .page-no-hu__cta-content,
  .page-no-hu__cta-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .page-no-hu__hero-side-image,
  .page-no-hu__guide-image-content,
  .page-no-hu__cta-image-content {
    max-width: 80%;
  }
}

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

  .page-no-hu__main-title {
    font-size: 32px;
  }

  .page-no-hu__description,
  .page-no-hu__section-description,
  .page-no-hu__feature-text,
  .page-no-hu__game-provider,
  .page-no-hu__guide-text-block p,
  .page-no-hu__faq-answer {
    font-size: 15px;
  }

  .page-no-hu__section-title {
    font-size: 28px;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 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;
  }

  .page-no-hu__container,
  .page-no-hu__feature-item,
  .page-no-hu__game-card,
  .page-no-hu__guide-content,
  .page-no-hu__faq-item,
  .page-no-hu__cta-final-section .page-no-hu__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden;
  }

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

  /* Specific override for square icon box media */
  .page-no-hu__icon-box-media {
    width: 150px !important;
    height: 150px !important;
    margin-bottom: 15px;
    border-width: 2px;
  }

  .page-no-hu__icon-box-media img {
    border-radius: 50% !important; /* Ensure roundness */
  }

  .page-no-hu__game-thumbnail {
    height: 180px !important;
  }

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

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

  .page-no-hu__hero-side-image,
  .page-no-hu__guide-image-content,
  .page-no-hu__cta-image-content {
    max-width: 100%; /* Ensure images don't overflow */
  }
}