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

.page-no-hu__hero-section {
  padding-top: 10px; /* Aligned with 8-16px top padding rule */
  padding-bottom: 40px;
  background: linear-gradient(135deg, #E0F2F7, #FFFFFF);
}

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

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

.page-no-hu__hero-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: #26A9E0;
  line-height: 1.2;
}

.page-no-hu__hero-description {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.page-no-hu__hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.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: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-no-hu__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

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

.page-no-hu__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-no-hu__btn-secondary:hover {
  background-color: #F0F8FF;
  color: #1E8BC3;
  border-color: #1E8BC3;
}

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

.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #26A9E0;
}

.page-no-hu__section-description {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

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

.page-no-hu__dark-bg {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.page-no-hu__dark-bg .page-no-hu__section-title,
.page-no-hu__dark-bg .page-no-hu__section-description,
.page-no-hu__dark-bg .page-no-hu__card-title a,
.page-no-hu__dark-bg .page-no-hu__card-text,
.page-no-hu__dark-bg .page-no-hu__card-link,
.page-no-hu__dark-bg .page-no-hu__faq-question,
.page-no-hu__dark-bg .page-no-hu__faq-answer p {
  color: #FFFFFF;
}

.page-no-hu__dark-bg .page-no-hu__game-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-no-hu__dark-bg .page-no-hu__card-link {
  color: #FFFFFF;
  border-bottom: 1px solid #FFFFFF;
}

.page-no-hu__dark-bg .page-no-hu__card-link:hover {
  color: #E0F2F7;
  border-color: #E0F2F7;
}

.page-no-hu__features-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.page-no-hu__feature-item {
  flex: 1 1 300px;
  max-width: 350px;
  text-align: center;
  background-color: #F8F8F8;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-no-hu__feature-item:hover {
  transform: translateY(-5px);
}

.page-no-hu__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #26A9E0;
  box-shadow: 0 0 0 5px rgba(38, 169, 224, 0.3);
}

.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.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

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

.page-no-hu__cta-center {
  text-align: center;
  margin-top: 40px;
}

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

.page-no-hu__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-no-hu__dark-bg .page-no-hu__game-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
}

.page-no-hu__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card appearance */
  object-fit: cover;
  display: block;
}

.page-no-hu__card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-no-hu__card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-no-hu__card-title a {
  color: #26A9E0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-no-hu__card-title a:hover {
  color: #1E8BC3;
}

.page-no-hu__card-text {
  font-size: 0.95rem;
  color: #555555;
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-no-hu__card-link {
  display: inline-block;
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 2px solid #26A9E0;
  padding-bottom: 2px;
  transition: all 0.3s ease;
  margin-top: auto; /* Push link to bottom */
}

.page-no-hu__card-link:hover {
  color: #1E8BC3;
  border-color: #1E8BC3;
}

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

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

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

.page-no-hu__guide-img-main {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-no-hu__step-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-no-hu__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  gap: 20px;
}

.page-no-hu__step-number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #26A9E0;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.page-no-hu__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin-top: 5px;
  margin-bottom: 5px;
}

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

.page-no-hu__btn-text-link {
  color: #26A9E0;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #26A9E0;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-no-hu__btn-text-link:hover {
  color: #1E8BC3;
  border-color: #1E8BC3;
}

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

.page-no-hu__faq-item {
  margin-bottom: 15px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
  background-color: rgba(0, 0, 0, 0.1);
}

.page-no-hu__faq-question:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

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

.page-no-hu__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  margin-left: 15px;
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: #FFFFFF;
  opacity: 0.9;
}

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

.page-no-hu__faq-answer a {
  color: #FFFFFF;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.page-no-hu__faq-answer a:hover {
  color: #E0F2F7;
}

/* Highlight text */
.page-no-hu .text-highlight {
    font-weight: bold;
    color: inherit;
}

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

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

  .page-no-hu__hero-content,
  .page-no-hu__hero-image {
    flex: 1 1 100%;
  }

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

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

  .page-no-hu__guide-steps,
  .page-no-hu__guide-image {
    flex: 1 1 100%;
  }

  .page-no-hu__guide-steps {
    order: 2; /* Steps below image on tablet/mobile */
  }

  .page-no-hu__guide-image {
    order: 1;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Specific top padding for mobile */
    padding-bottom: 30px;
  }

  .page-no-hu__hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }

  .page-no-hu__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
    padding: 0 15px;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Module 1 (Features Grid with round images) */
  .page-no-hu__features-grid {
    gap: 20px;
  }

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

  .page-no-hu__icon-box-media {
    width: 180px;
    height: 180px;
    border-width: 3px;
    box-shadow: 0 0 0 4px rgba(38, 169, 224, 0.2);
  }

  .page-no-hu__feature-title {
    font-size: 1.2rem;
  }

  .page-no-hu__feature-text {
    font-size: 0.9rem;
  }

  /* Game Showcase (Cards) */
  .page-no-hu__game-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .page-no-hu__card-content {
    padding: 15px;
  }

  .page-no-hu__card-title {
    font-size: 1.1rem;
  }

  .page-no-hu__card-text {
    font-size: 0.85rem;
  }

  /* Guide Section (Tutorial) */
  .page-no-hu__guide-flex-container {
    gap: 30px;
  }

  .page-no-hu__step-item {
    gap: 15px;
  }

  .page-no-hu__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  .page-no-hu__step-title {
    font-size: 1.1rem;
  }

  .page-no-hu__step-text {
    font-size: 0.9rem;
  }

  /* FAQ Section */
  .page-no-hu__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-no-hu__faq-toggle {
    font-size: 1.5rem;
  }

  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.9rem;
  }

  /* General content area padding */
  .page-no-hu__content-area {
    padding: 30px 15px;
  }

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

  .page-no-hu__section-description {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  /* Universal image and container responsive rules */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-no-hu__hero-container,
  .page-no-hu__intro-section .page-no-hu__content-area,
  .page-no-hu__game-showcase-section .page-no-hu__content-area,
  .page-no-hu__guide-section .page-no-hu__content-area,
  .page-no-hu__faq-section .page-no-hu__content-area,
  .page-no-hu__feature-item,
  .page-no-hu__game-card,
  .page-no-hu__faq-item,
  .page-no-hu__hero-cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-no-hu__hero-container {
    padding-left: 0;
    padding-right: 0;
  }

  .page-no-hu__hero-content {
    padding: 0 15px;
  }

  .page-no-hu__hero-image {
    padding: 0 15px;
  }
}

/* Ensure text contrast for default white body background */
.page-no-hu h1, .page-no-hu h2, .page-no-hu h3, .page-no-hu h4, .page-no-hu p, .page-no-hu li, .page-no-hu a {
  color: #333333; 
}

.page-no-hu__dark-bg h1, .page-no-hu__dark-bg h2, .page-no-hu__dark-bg h3, .page-no-hu__dark-bg h4, .page-no-hu__dark-bg p, .page-no-hu__dark-bg li, .page-no-hu__dark-bg a {
  color: #FFFFFF;
}

.page-no-hu__dark-bg .page-no-hu__card-link {
    border-color: #FFFFFF;
}

.page-no-hu__dark-bg .page-no-hu__card-link:hover {
    border-color: #E0F2F7;
}

.page-no-hu__faq-answer a {
    color: #FFFFFF;
}
.page-no-hu__faq-answer a:hover {
    color: #E0F2F7;
}