/* style/no-hu.css */
:root {
  --primary-color: #E53935;
  --secondary-color: #FF5A4F;
  --text-main-color: #333333;
  --card-bg-color: #FFFFFF;
  --bg-color-page: #F5F7FA;
  --border-color: #E0E0E0;
}

.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Default text color for light backgrounds */
}

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

.page-no-hu__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-no-hu__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #555555;
}

.page-no-hu__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 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: var(--card-bg-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.page-no-hu__btn-secondary:hover {
  background: var(--primary-color);
  color: #ffffff;
}

/* HERO Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Assuming body handles var(--header-offset) */
  padding-bottom: 60px;
  background-color: var(--bg-color-page);
}

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

.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: var(--text-main-color);
}

.page-no-hu__hero-title {
  font-size: 3.2em;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.page-no-hu__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #555555;
}

.page-no-hu__hero-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-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Introduction / Key Features Section (Module 1) */
.page-no-hu__intro-section {
  padding: 80px 0;
  background-color: var(--card-bg-color);
}

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

.page-no-hu__feature-item {
  background-color: #ffffff;
  padding: 30px;
  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;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(229, 57, 53, 0.2);
}

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

.page-no-hu__feature-title {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

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

/* Game Showcase Section */
.page-no-hu__game-showcase-section {
  padding: 80px 0;
  background-color: var(--bg-color-page);
}

.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: var(--card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-no-hu__game-media {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.page-no-hu__game-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-no-hu__game-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-no-hu__game-title a:hover {
  text-decoration: underline;
}

.page-no-hu__game-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-no-hu__btn-play {
  padding: 10px 20px;
  font-size: 1em;
  background: linear-gradient(180deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  color: #ffffff;
  border: none;
  border-radius: 6px;
}

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

.page-no-hu__more-games-cta {
  text-align: center;
  margin-top: 50px;
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  color: #ffffff; /* Dark background, so white text */
}

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

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

.page-no-hu__guide-step-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #ffffff;
  color: var(--primary-color);
  border-radius: 50%;
  font-size: 2em;
  font-weight: bold;
  margin: 0 auto 20px;
}

.page-no-hu__step-title {
  font-size: 1.8em;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu__step-text {
  font-size: 1em;
  color: #f0f0f0;
  margin-bottom: 20px;
}

.page-no-hu__guide-step-item img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  margin-top: 20px;
}

.page-no-hu__guide-cta {
  text-align: center;
  margin-top: 60px;
}

/* Promotions Section */
.page-no-hu__promo-section {
  padding: 80px 0;
  background-color: var(--bg-color-page);
}

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

.page-no-hu__promo-card {
  background-color: var(--card-bg-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-no-hu__promo-media {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

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

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

.page-no-hu__promo-title {
  font-size: 1.5em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-no-hu__promo-title a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-no-hu__promo-title a:hover {
  text-decoration: underline;
}

.page-no-hu__promo-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
}

.page-no-hu__promo-cta {
  text-align: center;
  margin-top: 50px;
}

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 80px 0;
  background-color: var(--card-bg-color);
}

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

.page-no-hu__faq-item {
  background-color: #f9f9f9;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--text-main-color);
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid transparent;
  transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
  list-style: none; /* For details/summary */
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
  background-color: var(--bg-color-page);
  border-bottom-color: var(--border-color);
}

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

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  margin-left: 15px;
  color: var(--primary-color);
}

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

/* Final Call to Action Section */
.page-no-hu__cta-section {
  padding: 80px 0;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #ffffff; /* Dark background, so white text */
}

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

.page-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-title {
    font-size: 2.8em;
  }
  .page-no-hu__section-title {
    font-size: 2.2em;
  }
  .page-no-hu__hero-container {
    padding-top: 30px;
  }
  .page-no-hu__intro-section, .page-no-hu__game-showcase-section, .page-no-hu__guide-section, .page-no-hu__promo-section, .page-no-hu__faq-section, .page-no-hu__cta-section {
    padding: 60px 0;
  }
  .page-no-hu__icon-box-media {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 768px) {
  /* HERO Section Mobile */
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-no-hu__hero-container {
    flex-direction: column;
    padding-top: 20px;
  }
  .page-no-hu__hero-content,
  .page-no-hu__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }
  .page-no-hu__hero-title {
    font-size: 2.2em;
    text-align: center;
  }
  .page-no-hu__hero-description {
    font-size: 1em;
    text-align: center;
  }
  .page-no-hu__hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .page-no-hu__btn {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
  }

  /* Module 1 - Intro Section Mobile */
  .page-no-hu__intro-section {
    padding: 40px 0;
  }
  .page-no-hu__section-title {
    font-size: 1.8em;
  }
  .page-no-hu__section-description {
    font-size: 0.95em;
  }
  .page-no-hu__features-grid {
    grid-template-columns: 1fr;
  }
  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 3px;
    box-shadow: 0 0 0 6px rgba(229, 57, 53, 0.2);
  }
  .page-no-hu__feature-title {
    font-size: 1.5em;
  }

  /* Game Showcase Section Mobile */
  .page-no-hu__game-showcase-section {
    padding: 40px 0;
  }
  .page-no-hu__game-grid {
    grid-template-columns: 1fr;
  }
  .page-no-hu__game-media {
    height: 180px;
  }
  .page-no-hu__game-title {
    font-size: 1.3em;
  }
  .page-no-hu__game-description {
    font-size: 0.9em;
  }
  .page-no-hu__more-games-cta {
    margin-top: 30px;
  }

  /* Guide Section Mobile */
  .page-no-hu__guide-section {
    padding: 40px 0;
  }
  .page-no-hu__guide-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .page-no-hu__step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.8em;
  }
  .page-no-hu__step-title {
    font-size: 1.5em;
  }
  .page-no-hu__step-text {
    font-size: 0.95em;
  }
  .page-no-hu__guide-cta {
    margin-top: 40px;
  }

  /* Promotions Section Mobile */
  .page-no-hu__promo-section {
    padding: 40px 0;
  }
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-no-hu__promo-media {
    height: 180px;
  }
  .page-no-hu__promo-title {
    font-size: 1.3em;
  }
  .page-no-hu__promo-description {
    font-size: 0.9em;
  }
  .page-no-hu__promo-cta {
    margin-top: 30px;
  }

  /* FAQ Section Mobile */
  .page-no-hu__faq-section {
    padding: 40px 0;
  }
  .page-no-hu__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }
  .page-no-hu__faq-toggle {
    font-size: 1.2em;
  }
  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95em;
  }

  /* Final CTA Section Mobile */
  .page-no-hu__cta-section {
    padding: 40px 0;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }

  /* General Image and Container Mobile */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__container,
  .page-no-hu__hero-section,
  .page-no-hu__intro-section,
  .page-no-hu__game-showcase-section,
  .page-no-hu__guide-section,
  .page-no-hu__promo-section,
  .page-no-hu__faq-section,
  .page-no-hu__cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Exception for circular images to maintain aspect ratio */
  .page-no-hu__icon-box-media img {
    height: 100% !important; /* Keep height 100% for object-fit */
    object-fit: cover !important;
  }
}

@media (max-width: 480px) {
  .page-no-hu__hero-title {
    font-size: 1.8em;
  }
  .page-no-hu__section-title {
    font-size: 1.6em;
  }
  .page-no-hu__btn {
    font-size: 1em;
    padding: 10px 15px;
  }
  .page-no-hu__icon-box-media {
    width: 120px;
    height: 120px;
  }
  .page-no-hu__step-number {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.5em;
  }
}