/* style/no-hu.css */
.page-no-hu {
  font-family: Arial, sans-serif;
  color: #F2FFF6; /* Main text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

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

.page-no-hu__section-title {
  font-size: 2.5em;
  color: #F2C14E; /* Gold for main titles */
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  line-height: 1.2;
}

.page-no-hu__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em); /* H1 font size with clamp */
  color: #F2C14E; /* Gold for H1 */
  text-align: left;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
  max-width: 700px;
}

.page-no-hu__description,
.page-no-hu__text-block {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #F2FFF6; /* Light text on dark background */
}

/* --- CTA Button Styles --- */
.page-no-hu__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
}

.page-no-hu__cta-button--primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-no-hu__cta-button--primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
  transform: translateY(-2px);
}

.page-no-hu__cta-button--secondary {
  background-color: transparent;
  color: #2AD16F;
  border: 2px solid #2AD16F;
  margin-left: 15px;
}

.page-no-hu__cta-button--secondary:hover {
  background-color: #2AD16F;
  color: #ffffff;
  transform: translateY(-2px);
}

/* --- Top Section (H1 + Intro) --- */
.page-no-hu__top-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #08160F; /* Dark background */
}

.page-no-hu__top-section .page-no-hu__container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap; /* Allow wrapping for responsiveness */
}

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

.page-no-hu__image-wrapper {
  flex: 1 1 40%;
  text-align: center;
}

.page-no-hu__main-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  display: block; /* Ensure it behaves as a block element */
}

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

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

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

.page-no-hu__feature-card {
  background-color: #11271B; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  color: #F2FFF6;
}

.page-no-hu__feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-no-hu__feature-icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px; /* Not a perfect circle as per rule, but rounded */
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

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

.page-no-hu__feature-description {
  font-size: 1em;
  line-height: 1.6;
  color: #A7D9B8;
}

/* --- How to Play Section --- */
.page-no-hu__how-to-play-section {
  padding: 80px 0;
  background-color: #0A4B2C;
}

.page-no-hu__guide-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.page-no-hu__guide-step {
  background-color: #11271B;
  border-radius: 12px;
  padding: 25px;
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  color: #F2FFF6;
}

.page-no-hu__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(42, 209, 111, 0.4);
}

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

.page-no-hu__step-description {
  font-size: 0.95em;
  line-height: 1.5;
  color: #A7D9B8;
}

.page-no-hu__guide-image {
  text-align: center;
}

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

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

.page-no-hu__tips-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  color: #F2FFF6;
}

.page-no-hu__tip-item {
  background-color: #11271B;
  border-left: 5px solid #2AD16F;
  padding: 20px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  padding-left: 40px;
}

.page-no-hu__tip-item::before {
  content: "✔️";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #2AD16F;
  font-size: 1.2em;
}

.page-no-hu__tips-image {
  text-align: center;
}

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

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

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

.page-no-hu__faq-item {
  background-color: #11271B;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: #F2FFF6;
}

.page-no-hu__faq-item summary {
  list-style: none; /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  color: #F2C14E;
}

.page-no-hu__faq-item summary::-webkit-details-marker {
  display: none; /* Hide Chrome/Safari marker */
}

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  font-weight: normal;
  color: #2AD16F;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  transform: rotate(45deg); /* Rotate plus to form an X or similar */
}

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

.page-no-hu__faq-answer p {
  margin-bottom: 0;
}

/* --- CTA Banner --- */
.page-no-hu__cta-banner {
  padding: 80px 0;
  background-color: #08160F;
  text-align: center;
}

.page-no-hu__cta-title {
  font-size: 2.2em;
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-no-hu__cta-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #F2FFF6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
  .page-no-hu__section-title {
    font-size: 2em;
  }
  .page-no-hu__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }
  .page-no-hu__guide-step {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  .page-no-hu__tips-list {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
}

@media (max-width: 768px) {
  /* 1. Top Section (previously HERO) */
  .page-no-hu__top-section {
    padding-top: 10px !important; /* Small top padding */
    padding-bottom: 40px;
  }
  .page-no-hu__top-section .page-no-hu__container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .page-no-hu__content-wrapper,
  .page-no-hu__image-wrapper {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-no-hu__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    text-align: center;
    max-width: 100%;
  }
  .page-no-hu__description {
    text-align: center;
  }
  .page-no-hu__top-section .page-no-hu__cta-button {
    margin-left: auto;
    margin-right: auto;
    width: 100% !important;
    max-width: 300px !important; /* Constrain width for single button */
    display: block;
  }
  
  /* 2. Features Section (Module 1 equivalent) */
  .page-no-hu__features-section {
    padding: 60px 0;
  }
  .page-no-hu__features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-no-hu__feature-card {
    padding: 25px;
  }
  .page-no-hu__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
  }

  /* 3. How to Play Section (Guide) */
  .page-no-hu__how-to-play-section {
    padding: 60px 0;
  }
  .page-no-hu__guide-steps {
    flex-direction: column;
    gap: 15px;
  }
  .page-no-hu__guide-step {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px;
  }
  .page-no-hu__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  /* 4. Tips Section */
  .page-no-hu__tips-section {
    padding: 60px 0;
  }
  .page-no-hu__tips-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .page-no-hu__tip-item {
    font-size: 0.95em;
    padding: 15px 20px 15px 35px;
  }
  .page-no-hu__tip-item::before {
    left: 10px;
    font-size: 1em;
  }

  /* 5. FAQ Section */
  .page-no-hu__faq-section {
    padding: 60px 0;
  }
  .page-no-hu__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1em;
  }
  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  /* 6. CTA Banner */
  .page-no-hu__cta-banner {
    padding: 60px 0;
  }
  .page-no-hu__cta-title {
    font-size: 1.8em;
  }
  .page-no-hu__cta-description {
    font-size: 1em;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-no-hu__cta-button {
    margin: 0 !important; /* Override margin-left for secondary button */
    width: 100% !important;
    max-width: 300px !important; /* Constrain width for single button */
    margin-left: auto !important;
    margin-right: auto !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  /* 7. General Images and Containers */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__container,
  .page-no-hu__features-grid,
  .page-no-hu__guide-steps,
  .page-no-hu__tips-list,
  .page-no-hu__faq-list,
  .page-no-hu__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden; /* Ensure no horizontal scroll */
  }
}