/* style/no-hu.css */

/* Base styles for the page */
.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Text Main */
  background-color: #0D0E12; /* Background */
}

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

.page-no-hu__section-title {
  font-size: 2.5em;
  color: #FF8C1A; /* Primary color for titles */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-no-hu__section-title--light {
  color: #FFF3E6;
}

.page-no-hu__sub-title {
  font-size: 1.8em;
  color: #FFA53A; /* Secondary color for subtitles */
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-no-hu__intro-text {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF3E6;
}

.page-no-hu__intro-text--light {
  color: #FFF3E6;
}

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

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-link {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #FFF3E6; /* Text Main */
  border: none;
  margin: 10px;
}

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

.page-no-hu__btn-secondary {
  background: #17191F; /* Card BG */
  color: #FF8C1A; /* Primary color */
  border: 2px solid #A84F0C; /* Border */
  margin: 10px;
}

.page-no-hu__btn-secondary:hover {
  background: #FF8C1A;
  color: #FFF3E6;
  border-color: #FF8C1A;
}

.page-no-hu__btn-link {
  background: transparent;
  color: #FFA53A; /* Secondary color */
  border: none;
  padding: 8px 15px;
  font-size: 0.9em;
}

.page-no-hu__btn-link:hover {
  text-decoration: underline;
  color: #FFB04D; /* Glow */
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top spacing to avoid double padding with body */
  padding-bottom: 60px;
  background-color: #0D0E12;
}

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

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

.page-no-hu__main-title {
  font-size: 3.2em;
  color: #FF8C1A; /* Primary color */
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-no-hu__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  line-height: 1.5;
}

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

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

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

/* Info Section (3 columns) */
.page-no-hu__info-section {
  background-color: #0D0E12;
  padding-bottom: 60px;
}

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

.page-no-hu__feature-item {
  background-color: #17191F; /* Card BG */
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
}

.page-no-hu__feature-icon {
  width: 100%; /* Ensure images are not small icons */
  max-width: 200px; /* Example size, adjust as needed */
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__feature-title {
  font-size: 1.5em;
  color: #FFA53A; /* Secondary color */
  margin-bottom: 10px;
}

.page-no-hu__feature-text {
  color: #FFF3E6;
}

/* Game Types Section (Game Cards) */
.page-no-hu__game-types-section {
  background-color: #0D0E12;
  padding-bottom: 60px;
}

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

.page-no-hu__game-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #FFF3E6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-no-hu__game-card-content {
  padding: 20px;
}

.page-no-hu__game-card-title {
  font-size: 1.4em;
  color: #FF8C1A; /* Primary color */
  margin-bottom: 10px;
}

.page-no-hu__game-card-desc {
  font-size: 0.95em;
  color: #FFF3E6;
}

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

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

.page-no-hu__text-content {
  flex: 1 1 55%;
  min-width: 300px;
}

.page-no-hu__text-content p {
  margin-bottom: 15px;
  color: #FFF3E6;
}

.page-no-hu__list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #FFF3E6;
}

.page-no-hu__list li {
  margin-bottom: 8px;
}

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

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

.page-no-hu__cta-buttons-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
}

/* Promotion Section */
.page-no-hu__promo-section {
  background-color: #0D0E12;
  padding-bottom: 60px;
}

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

.page-no-hu__promo-card {
  background-color: #17191F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #FFF3E6;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #A84F0C; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-no-hu__promo-card-content {
  padding: 20px;
}

.page-no-hu__promo-card-title {
  font-size: 1.4em;
  color: #FF8C1A; /* Primary color */
  margin-bottom: 10px;
}

.page-no-hu__promo-card-desc {
  font-size: 0.95em;
  color: #FFF3E6;
  margin-bottom: 15px;
}

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

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

.page-no-hu__faq-item {
  background-color: #17191F; /* Card BG */
  border: 1px solid #A84F0C; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.15em;
  font-weight: bold;
  color: #FFA53A; /* Secondary color */
  cursor: pointer;
  list-style: none; /* For details/summary */
}

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

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  margin-left: 15px;
  color: #FFF3E6;
}

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

/* Register CTA Section */
.page-no-hu__register-cta-section {
  background: linear-gradient(90deg, #D96800 0%, #FF8C1A 100%); /* Deep Orange to Primary */
  padding: 80px 16px;
  text-align: center;
}

.page-no-hu__register-cta-content {
  padding: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__main-title {
    font-size: 2.8em;
  }
  .page-no-hu__description {
    font-size: 1.1em;
  }
  .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%;
    max-width: 100%;
  }
  .page-no-hu__cta-buttons {
    justify-content: center;
  }
  .page-no-hu__content-wrapper {
    flex-direction: column;
  }
  .page-no-hu__text-content,
  .page-no-hu__image-content {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .page-no-hu__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px !important;
  }
  .page-no-hu__hero-container {
    padding: 20px 0 !important;
    gap: 20px !important;
  }
  .page-no-hu__main-title {
    font-size: 2em !important;
    margin-bottom: 15px !important;
  }
  .page-no-hu__description {
    font-size: 1em !important;
    margin-bottom: 20px !important;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .page-no-hu__main-visual {
    max-width: 100% !important;
    height: auto !important;
  }

  /* Info Section (Module 1 equivalent) */
  .page-no-hu__info-section .page-no-hu__container {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .page-no-hu__section-title {
    font-size: 1.8em !important;
    margin-bottom: 15px !important;
  }
  .page-no-hu__intro-text {
    font-size: 0.95em !important;
    margin-bottom: 25px !important;
  }
  .page-no-hu__features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-no-hu__feature-item {
    padding: 20px !important;
  }
  .page-no-hu__feature-icon {
    max-width: 180px !important;
    height: auto !important;
  }
  .page-no-hu__feature-title {
    font-size: 1.3em !important;
  }

  /* Game Types Section */
  .page-no-hu__game-types-section .page-no-hu__container {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .page-no-hu__game-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-no-hu__game-card-img {
    
  }
  .page-no-hu__game-card-title {
    font-size: 1.2em !important;
  }

  /* Strategy Section */
  .page-no-hu__strategy-section .page-no-hu__container {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .page-no-hu__content-wrapper {
    gap: 20px !important;
  }
  .page-no-hu__sub-title {
    font-size: 1.4em !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
  }
  .page-no-hu__text-content p,
  .page-no-hu__list li {
    font-size: 0.95em !important;
  }
  .page-no-hu__strategy-img {
    max-width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__cta-buttons-inline {
    flex-direction: column !important;
    gap: 10px !important;
  }

  /* Promo Section */
  .page-no-hu__promo-section .page-no-hu__container {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .page-no-hu__promo-card-img {
    
  }
  .page-no-hu__promo-card-title {
    font-size: 1.2em !important;
  }

  /* FAQ Section */
  .page-no-hu__faq-section .page-no-hu__container {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .page-no-hu__faq-question {
    padding: 15px 20px !important;
    font-size: 1em !important;
  }
  .page-no-hu__faq-toggle {
    font-size: 1.2em !important;
  }
  .page-no-hu__faq-answer {
    padding: 0 20px 15px !important;
    font-size: 0.9em !important;
  }

  /* Register CTA Section */
  .page-no-hu__register-cta-section {
    padding: 50px 15px !important;
  }
  .page-no-hu__register-cta-content .page-no-hu__cta-buttons {
    flex-direction: column !important;
    gap: 10px !important;
  }

  /* General image and container rules 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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}