/* style/no-hu.css */

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

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

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Rely on body padding-top for header offset */
  padding-bottom: 60px;
  background: #F5F7FA;
  color: #333333;
}

.page-no-hu__hero-container {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap;
}

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

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

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

.page-no-hu__hero-image {
  flex: 1 1 40%;
  text-align: center;
}

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
}

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

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

.page-no-hu__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
}

.page-no-hu__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #E53935;
  text-align: center;
  margin-bottom: 40px;
  padding-top: 40px;
}

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

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

.page-no-hu__icon-boxes {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

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

.page-no-hu__icon-box:hover {
  transform: translateY(-5px);
}

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-no-hu__icon-box-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 15px;
}

.page-no-hu__icon-box-description {
  font-size: 1rem;
  color: #333333;
}

/* Game Tabs Section */
.page-no-hu__game-tabs-section {
  padding: 60px 0;
  background-color: #F5F7FA;
}

.page-no-hu__tab-nav {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.page-no-hu__tab-button {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  padding: 12px 25px;
  font-size: 1rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

.page-no-hu__tab-button:hover {
  background-color: #f0f0f0;
  color: #E53935;
}

.page-no-hu__tab-button.is-active {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border-color: transparent;
}

.page-no-hu__game-panel {
  display: none;
}

.page-no-hu__game-panel.is-active {
  display: block;
}

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

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

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

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

.page-no-hu__game-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333333;
  margin: 15px 15px 10px;
}

.page-no-hu__btn-play {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 10px 0;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.page-no-hu__btn-play:hover {
  opacity: 0.9;
}

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

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

.page-no-hu__guide-item {
  background-color: #F5F7FA;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
}

.page-no-hu__guide-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 25px;
}

.page-no-hu__guide-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #E53935;
  margin-bottom: 15px;
}

.page-no-hu__guide-item p {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 25px;
}

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

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

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

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

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

.page-no-hu__promo-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333333;
  margin: 15px 15px 10px;
}

.page-no-hu__promo-card p {
  font-size: 1rem;
  color: #333333;
  padding: 0 15px;
  flex-grow: 1;
}

.page-no-hu__btn-details {
  display: block;
  width: calc(100% - 30px);
  margin: 15px;
  padding: 10px 0;
  background-color: #E53935;
  color: #ffffff;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.page-no-hu__btn-details:hover {
  opacity: 0.9;
}

.page-no-hu__cta-center {
  text-align: center;
}

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

.page-no-hu__trust-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.page-no-hu__trust-list li {
  background-color: #F5F7FA;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  font-size: 1rem;
  color: #333333;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.page-no-hu__trust-icon {
  font-size: 1.5rem;
  color: #E53935;
  flex-shrink: 0;
}

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

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

.page-no-hu__faq-item {
  background-color: #ffffff;
  border: 1px solid #E0E0E0;
  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.1rem;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  list-style: none;
  outline: none;
}

.page-no-hu__faq-item summary::-webkit-details-marker,
.page-no-hu__faq-item summary::marker {
  display: none;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

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

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  font-weight: bold;
  color: #E53935;
  margin-left: 15px;
}

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

/* Final CTA Section */
.page-no-hu__cta-final-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  text-align: center;
}

.page-no-hu__cta-final-section .page-no-hu__section-title,
.page-no-hu__cta-final-section .page-no-hu__section-description {
  color: #ffffff;
}

.page-no-hu__cta-final-section .page-no-hu__cta-buttons {
  justify-content: center;
}

.page-no-hu__cta-final-section .page-no-hu__btn-primary {
  background: #ffffff;
  color: #E53935;
  border-color: transparent;
}

.page-no-hu__cta-final-section .page-no-hu__btn-primary:hover {
  background: #f0f0f0;
}

.page-no-hu__cta-final-section .page-no-hu__btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-no-hu__cta-final-section .page-no-hu__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    gap: 30px;
  }

  .page-no-hu__hero-title {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
  }

  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
  }

  .page-no-hu__game-grid,
  .page-no-hu__promo-grid,
  .page-no-hu__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Ensure minimal top padding */
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 0;
  }

  .page-no-hu__hero-content {
    order: 2;
    flex: 1 1 100%;
  }

  .page-no-hu__hero-image {
    order: 1;
    flex: 1 1 100%;
    margin-bottom: 30px;
  }

  .page-no-hu__hero-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-no-hu__hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
  }

  .page-no-hu__hero-description {
    font-size: 1rem;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

  .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;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
  }

  .page-no-hu__section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 30px;
    padding-top: 30px;
  }

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

  /* Module 1 - Intro Section */
  .page-no-hu__intro-section {
    padding: 40px 0;
  }

  .page-no-hu__icon-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .page-no-hu__icon-box {
    max-width: 100%;
    padding: 25px;
  }

  .page-no-hu__icon-box-media {
    width: 120px; /* Maintain square aspect ratio */
    height: 120px;
    margin-bottom: 20px;
  }

  .page-no-hu__icon-box-title {
    font-size: 1.3rem;
  }

  .page-no-hu__icon-box-description {
    font-size: 0.9rem;
  }

  /* Game Tabs Section */
  .page-no-hu__game-tabs-section {
    padding: 40px 0;
  }

  .page-no-hu__tab-nav {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .page-no-hu__tab-button {
    width: 100%;
    padding: 10px 15px;
    font-size: 0.95rem;
  }

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

  .page-no-hu__game-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important; /* Ensure responsive height */
  }

  .page-no-hu__btn-play {
    width: calc(100% - 30px) !important;
  }

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

  .page-no-hu__guide-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-no-hu__guide-item {
    padding: 25px;
  }

  .page-no-hu__guide-item img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-no-hu__guide-item p {
    font-size: 0.9rem;
  }

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

  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .page-no-hu__promo-card img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-no-hu__btn-details {
    width: calc(100% - 30px) !important;
  }

  /* Trust Section */
  .page-no-hu__trust-section {
    padding: 40px 0;
  }

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

  .page-no-hu__trust-list li {
    padding: 15px;
    font-size: 0.95rem;
  }

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

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

  .page-no-hu__faq-qtext {
    font-size: 1rem;
  }

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

  /* Final CTA Section */
  .page-no-hu__cta-final-section {
    padding: 40px 0;
  }

  .page-no-hu__cta-final-section .page-no-hu__cta-buttons {
    flex-direction: column;
    padding: 0 15px;
  }

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

  .page-no-hu__container,
  .page-no-hu__icon-box,
  .page-no-hu__game-card,
  .page-no-hu__guide-item,
  .page-no-hu__promo-card,
  .page-no-hu__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-no-hu__container {
    padding-left: 0;
    padding-right: 0;
  }
}