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

.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(1.8rem, 4vw, 2.5rem); /* H1 rule: use clamp for font-size */
  color: #26A9E0;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-no-hu__text-block {
  font-size: 1.1rem;
  margin-bottom: 20px;
  text-align: center;
}

.page-no-hu__text-block .text-kuwin {
  color: #26A9E0;
  font-weight: bold;
}

.page-no-hu__text-link {
  color: #26A9E0;
  text-decoration: underline;
}

/* Buttons */
.page-no-hu__btn-primary {
  display: inline-block;
  background-color: #26A9E0;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: 2px solid transparent;
  box-sizing: border-box;
}

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

.page-no-hu__btn-secondary {
  display: inline-block;
  background-color: #ffffff;
  color: #26A9E0;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  border: 2px solid #26A9E0;
  box-sizing: border-box;
}

.page-no-hu__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-no-hu__btn-play {
  display: inline-block;
  background-color: #EA7C07; /* Login color for play button */
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  box-sizing: border-box;
  margin-top: 15px;
}

.page-no-hu__btn-play:hover {
  background-color: #c96806;
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Assuming body padding-top is handled by shared.css */
  padding-bottom: 40px;
  background-color: #f8f8f8; /* Light background for the hero section */
}

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

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

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #26A9E0;
  margin-bottom: 15px;
  line-height: 1.2;
  font-weight: bold;
}

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

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

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

.page-no-hu__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Intro Section (Module 1) */
.page-no-hu__intro-section {
  background-color: #ffffff;
  padding: 60px 0;
}

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

.page-no-hu__feature-item {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-no-hu__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1/1;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #26A9E0;
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure image is also circular */
  display: block;
}

.page-no-hu__feature-title {
  font-size: 1.5rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

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

/* Game Types Section */
.page-no-hu__game-types-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Dark background */
  color: #ffffff; /* Light text */
}

.page-no-hu__game-types-section .page-no-hu__section-title,
.page-no-hu__game-types-section .page-no-hu__text-block {
  color: #ffffff;
}

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

.page-no-hu__game-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-bottom: 20px;
}

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

.page-no-hu__game-card-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin: 20px 15px 10px;
  font-weight: bold;
}

.page-no-hu__game-card-description {
  font-size: 1rem;
  color: #555555;
  padding: 0 15px;
  margin-bottom: 15px;
}

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

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

.page-no-hu__step-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-no-hu__step-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-bottom: 20px;
}

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

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

/* Strategy Section */
.page-no-hu__strategy-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-no-hu__strategy-list {
  list-style: disc;
  padding-left: 30px;
  margin-top: 20px;
  font-size: 1.1rem;
  color: #555555;
}

.page-no-hu__strategy-list li {
  margin-bottom: 10px;
}

.page-no-hu__strategy-list strong {
  color: #333333;
}

.page-no-hu__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Promo Section */
.page-no-hu__promo-section {
  padding: 60px 0;
  background-color: #26A9E0; /* Dark background */
  color: #ffffff; /* Light text */
}

.page-no-hu__promo-section .page-no-hu__section-title,
.page-no-hu__promo-section .page-no-hu__text-block {
  color: #ffffff;
}

.page-no-hu__promo-list {
  list-style: disc;
  padding-left: 30px;
  margin-top: 20px;
  font-size: 1.1rem;
  color: #ffffff;
}

.page-no-hu__promo-list li {
  margin-bottom: 10px;
}

.page-no-hu__promo-list strong {
  color: #ffffff;
}

/* Why Choose Section */
.page-no-hu__why-choose-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.page-no-hu__reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  text-align: center;
}

.page-no-hu__reason-item {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-no-hu__reason-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: bold;
}

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

.page-no-hu__faq-list {
  margin-top: 40px;
}

.page-no-hu__faq-item {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-no-hu__faq-item[open] {
  background: #eaf7ff; /* Lighter background when open */
  border-color: #26A9E0;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  list-style: none; /* Hide default marker */
  transition: color 0.3s ease;
}

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

.page-no-hu__faq-question:hover {
  color: #26A9E0;
}

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: #26A9E0;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  color: #26A9E0;
}

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

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

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .page-no-hu__container {
    padding: 20px 15px;
  }

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

  .page-no-hu__text-block {
    font-size: 1rem;
  }

  /* HERO Section Mobile */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Ensure minimal top padding */
    padding-bottom: 30px;
  }
  
  .page-no-hu__hero-container {
    flex-direction: column;
    padding: 20px 15px;
    gap: 20px;
  }

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

  .page-no-hu__main-title {
    font-size: 2rem;
    text-align: center;
  }

  .page-no-hu__hero-description {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 20px;
  }

  .page-no-hu__hero-buttons {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__btn-play {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    text-align: center;
  }

  /* Intro Section (Module 1) Mobile */
  .page-no-hu__intro-section {
    padding: 30px 0;
  }

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

  .page-no-hu__icon-box-media {
    width: 200px; /* Still square */
    height: 200px; /* Still square */
    margin-bottom: 10px;
  }
  
  /* Game Types Section Mobile */
  .page-no-hu__game-types-section {
    padding: 30px 0;
  }

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

  /* Guide Section Mobile */
  .page-no-hu__guide-section {
    padding: 30px 0;
  }

  .page-no-hu__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Strategy Section Mobile */
  .page-no-hu__strategy-section {
    padding: 30px 0;
  }

  .page-no-hu__strategy-list {
    padding-left: 20px;
    font-size: 1rem;
  }

  /* Promo Section Mobile */
  .page-no-hu__promo-section {
    padding: 30px 0;
  }

  .page-no-hu__promo-list {
    padding-left: 20px;
    font-size: 1rem;
  }

  /* Why Choose Section Mobile */
  .page-no-hu__why-choose-section {
    padding: 30px 0;
  }

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

  /* FAQ Section Mobile */
  .page-no-hu__faq-section {
    padding: 30px 0;
  }

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

  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }
  
  /* General image and container responsiveness for mobile */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container,
  .page-no-hu__cta-buttons,
  .page-no-hu__button-group,
  .page-no-hu__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Ensure no horizontal overflow */
  }

  .page-no-hu__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }
}

/* Dark background specific styles */
.page-no-hu__dark-section {
  background: #26A9E0;
  color: #ffffff;
}

.page-no-hu__dark-section .page-no-hu__section-title,
.page-no-hu__dark-section .page-no-hu__text-block,
.page-no-hu__dark-section .page-no-hu__text-link,
.page-no-hu__dark-section .page-no-hu__promo-list li {
  color: #ffffff;
}
.page-no-hu__dark-section .page-no-hu__text-link:hover {
  color: #f0f0f0;
}