/* style/no-hu.css */
.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF3E6; /* Main text color for dark body background */
  background-color: #0D0E12; /* Overall page background */
}

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

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

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

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: #0D0E12; /* Ensure hero section background matches page */
}

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

.page-no-hu__hero-image {
  flex: 1 1 50%;
  text-align: center;
  order: 1; /* Image first on desktop */
}

.page-no-hu__hero-main-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.page-no-hu__hero-content {
  flex: 1 1 40%;
  order: 2; /* Content second on desktop */
  color: #FFF3E6;
}

.page-no-hu__hero-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive H1 font size */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFB04D;
}

.page-no-hu__hero-description {
  font-size: 1.15em;
  margin-bottom: 30px;
  text-align: left;
}

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

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

.page-no-hu__cta-button--primary {
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-no-hu__cta-button--primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 140, 26, 0.4);
}

.page-no-hu__cta-button--secondary {
  background: #17191F; /* Card BG color */
  color: #FFA53A; /* Auxiliary color */
  border: 2px solid #FFA53A;
}

.page-no-hu__cta-button--secondary:hover {
  background: #FFA53A;
  color: #17191F;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(255, 165, 58, 0.4);
}

/* Intro Section */
.page-no-hu__intro-section {
  background-color: #17191F; /* Card BG for dark section */
  padding: 60px 0;
  color: #FFF3E6;
}

.page-no-hu__feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-no-hu__feature-item {
  background-color: #0D0E12; /* Darker background for feature items */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C; /* Border color */
}

.page-no-hu__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FFA53A; /* Auxiliary color border for circular images */
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

.page-no-hu__feature-text {
  font-size: 1em;
  color: #FFF3E6;
}

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

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

.page-no-hu__game-card {
  background-color: #17191F; /* Card BG for game cards */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #A84F0C;
  color: #FFF3E6; /* Text Main for game card content */
  padding-bottom: 20px; /* Space for iframe below */
}

.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.6em;
  font-weight: bold;
  padding: 15px 20px 5px;
  color: #FFB04D;
}

.page-no-hu__game-card-description {
  font-size: 0.95em;
  padding: 0 20px 15px;
  color: #FFF3E6;
}

.page-no-hu__game-card .page-no-hu__cta-button--play {
  margin: 0 20px 15px;
  width: calc(100% - 40px);
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #ffffff;
  border: none;
}

.page-no-hu__game-trial-frame {
  border: none;
  border-top: 1px solid #A84F0C;
  margin-top: 15px;
  display: block;
}

/* Strategy Guide Section */
.page-no-hu__strategy-guide-section {
  background-color: #17191F; /* Card BG for dark section */
  padding: 60px 0;
  color: #FFF3E6;
}

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

.page-no-hu__guide-text {
  flex: 1 1 55%;
}

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

.page-no-hu__guide-main-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid #A84F0C;
}

.page-no-hu__guide-subtitle {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #FFA53A; /* Auxiliary color */
}

.page-no-hu__guide-text p {
  margin-bottom: 15px;
}

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

.page-no-hu__promo-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.page-no-hu__promo-image {
  flex: 1 1 45%;
  text-align: center;
}

.page-no-hu__promo-main-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  border: 1px solid #A84F0C;
}

.page-no-hu__promo-text {
  flex: 1 1 45%;
}

.page-no-hu__promo-subtitle {
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #FFA53A;
}

.page-no-hu__promo-text p {
  margin-bottom: 15px;
}

/* FAQ Section */
.page-no-hu__faq-section {
  background-color: #17191F; /* Card BG for dark section */
  padding: 60px 0;
  color: #FFF3E6;
}

.page-no-hu__faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.page-no-hu__faq-item {
  background-color: #0D0E12; /* Darker background for FAQ items */
  border: 1px solid #A84F0C;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

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

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  transform: rotate(45deg); /* Rotate for 'x' effect */
}

.page-no-hu__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: #FFF3E6;
  border-top: 1px solid #A84F0C;
}

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

/* Final CTA Section */
.page-no-hu__cta-section {
  background-color: #0D0E12;
  padding: 60px 0;
  text-align: center;
}

.page-no-hu__cta-content {
  max-width: 800px;
}

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

.page-no-hu__section,
.page-no-hu__card,
.page-no-hu__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-no-hu {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-no-hu__content-area {
    padding: 30px 15px;
  }

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

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

  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container {
    flex-direction: column;
    gap: 30px;
    padding: 0 15px;
  }

  .page-no-hu__hero-image {
    order: 1; /* Image first */
    flex: 1 1 100%;
  }

  .page-no-hu__hero-content {
    order: 2; /* Content second */
    flex: 1 1 100%;
    text-align: center;
  }

  .page-no-hu__hero-title {
    font-size: 2.2em; /* Adjust for mobile */
    text-align: center;
  }

  .page-no-hu__hero-description {
    text-align: center;
    font-size: 1.05em;
  }

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

  /* Buttons and button containers */
  .page-no-hu__cta-button,
  .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__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;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  
  .page-no-hu__cta-buttons {
    display: flex;
    flex-direction: column; /* Mobile vertical stack */
  }

  /* Module 1 (Intro Section) */
  .page-no-hu__feature-grid {
    grid-template-columns: 1fr; /* Stack columns */
  }

  .page-no-hu__icon-box-media {
    width: 200px; /* Still circular, smaller */
    height: 200px;
    margin-bottom: 15px;
  }

  /* Game Showcase Section */
  .page-no-hu__game-grid {
    grid-template-columns: 1fr; /* Stack game cards */
  }

  .page-no-hu__game-card {
    padding-bottom: 15px;
  }

  .page-no-hu__game-card-image {
    height: 180px; /* Adjust height for mobile */
  }

  .page-no-hu__game-card .page-no-hu__cta-button--play {
    margin: 0 15px 10px;
    width: calc(100% - 30px);
  }

  /* Strategy Guide Section */
  .page-no-hu__guide-content {
    flex-direction: column; /* Stack content and image */
    gap: 30px;
  }

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

  /* Promotion Section */
  .page-no-hu__promo-details {
    flex-direction: column; /* Stack image and text */
    gap: 30px;
  }

  .page-no-hu__promo-image,
  .page-no-hu__promo-text {
    flex: 1 1 100%;
  }

  /* FAQ Section */
  .page-no-hu__faq-list {
    padding: 0 15px;
  }

  .page-no-hu__faq-item summary {
    padding: 15px 20px;
    font-size: 1.05em;
  }

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

  /* General images and containers */
  .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__feature-item,
  .page-no-hu__game-card,
  .page-no-hu__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}