/* style/no-hu.css */

:root {
  --primary-color: #2F6BFF;
  --secondary-color: #6FA3FF;
  --text-main-color: #1F2D3D;
  --text-dark-color: #000000;
  --background-light: #F4F7FB;
  --card-background: #FFFFFF;
  --border-color: #D6E2FF;
  --glow-color: #A5C4FF;
  --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
}

.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-main-color); /* Assuming body background is light, use dark text */
  background-color: var(--background-light);
}

.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; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: var(--card-background);
}

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

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

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark-color);
}

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

.page-no-hu__cta-buttons {
  display: flex;
  gap: 20px;
  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;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-no-hu__btn-primary {
  background: var(--button-gradient);
  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: var(--primary-color);
  border: 2px solid var(--primary-color);
}

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

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

.page-no-hu__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

/* Section General Styles */
.page-no-hu__section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: var(--text-dark-color);
}

.page-no-hu__section-description {
  font-size: 1.05rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
  color: var(--text-main-color);
}

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

.page-no-hu__section-description--light {
  color: #f0f0f0;
}

/* Intro Section */
.page-no-hu__intro-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.page-no-hu__feature-item {
  text-align: center;
  padding: 30px;
  background-color: var(--card-background);
  border-radius: 12px;
  box-shadow: 0 4px 15px 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: 180px;
  height: 180px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--glow-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-no-hu__feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.page-no-hu__feature-text {
  font-size: 1rem;
  color: var(--text-main-color);
}

/* Why Choose Section */
.page-no-hu__why-choose-section {
  padding: 80px 0;
  background-color: var(--primary-color);
}

.page-no-hu__dark-section {
  background-color: var(--primary-color);
}

.page-no-hu__why-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px 40px;
}

.page-no-hu__why-list li {
  font-size: 1.1rem;
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  color: #ffffff;
}

.page-no-hu__list-icon {
  font-size: 1.4rem;
  color: var(--glow-color);
  margin-right: 15px;
  line-height: 1;
}

.page-no-hu__list-strong {
  font-weight: 700;
  color: #ffffff;
}

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

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

.page-no-hu__game-card {
  background-color: var(--card-background);
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  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-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 20px 15px 10px;
  color: var(--text-dark-color);
}

.page-no-hu__game-description {
  font-size: 0.95rem;
  padding: 0 15px 20px;
  color: var(--text-main-color);
}

.page-no-hu__game-trial-frame {
  border: none;
  width: 100%;
  height: 300px;
  display: block;
}

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

.page-no-hu__guide-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 50px;
  align-items: center;
}

.page-no-hu__guide-image {
  flex: 1 1 45%;
  min-width: 300px;
}

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

.page-no-hu__guide-steps {
  flex: 1 1 45%;
  min-width: 300px;
}

.page-no-hu__step-item {
  margin-bottom: 30px;
  padding-left: 40px;
  position: relative;
}

.page-no-hu__step-item::before {
  content: ' ' counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--primary-color);
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.page-no-hu__step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark-color);
}

.page-no-hu__step-text {
  font-size: 1rem;
  color: var(--text-main-color);
}

.page-no-hu__step-text a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Strategy Section */
.page-no-hu__strategy-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

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

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

.page-no-hu__strategy-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-no-hu__strategy-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 20px 20px 10px;
  color: var(--text-dark-color);
}

.page-no-hu__strategy-text {
  font-size: 1rem;
  padding: 0 20px 25px;
  color: var(--text-main-color);
}

/* Promo Section */
.page-no-hu__promo-section {
  padding: 80px 0;
  background-color: var(--primary-color);
  text-align: center;
}

.page-no-hu__promo-content {
  max-width: 900px;
}

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

.page-no-hu__promo-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
  border-radius: 12px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.page-no-hu__promo-text {
  font-size: 1rem;
  color: #f0f0f0;
}

.page-no-hu__btn-promo {
  margin-top: 20px;
  background: var(--button-gradient);
  color: #ffffff;
  border: 2px solid transparent;
}

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

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

.page-no-hu__faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.page-no-hu__faq-item summary {
  display: block;
  cursor: pointer;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark-color);
  list-style: none; /* Remove default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  transform: rotate(45deg);
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--text-main-color);
  line-height: 1.7;
}

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

.page-no-hu__faq-answer a {
  color: var(--primary-color);
  text-decoration: underline;
}

/* Conclusion Section */
.page-no-hu__conclusion-section {
  padding: 80px 0;
  text-align: center;
  background-color: var(--background-light);
}

.page-no-hu__cta-bottom {
  margin-top: 50px;
}

/* General Image Styles */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .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%;
  }
  .page-no-hu__main-title,
  .page-no-hu__hero-description {
    text-align: center;
  }
  .page-no-hu__cta-buttons {
    justify-content: center;
  }
  .page-no-hu__guide-content {
    flex-direction: column;
  }
  .page-no-hu__guide-image,
  .page-no-hu__guide-steps {
    flex: 1 1 100%;
  }
  .page-no-hu__icon-box-media {
    width: 160px;
    height: 160px;
  }
  .page-no-hu__why-list {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .page-no-hu {
    font-size: 15px;
  }
  .page-no-hu__container {
    padding: 0 15px;
  }
  
  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
  }
  .page-no-hu__hero-container {
    padding: 40px 0;
    gap: 30px;
  }
  .page-no-hu__main-title {
    font-size: 2.2rem;
  }
  .page-no-hu__hero-description {
    font-size: 1rem;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 20px;
    font-size: 1rem;
  }
  .page-no-hu__hero-side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Intro Section - Module 1 three-column round images */
  .page-no-hu__intro-section {
    padding: 60px 0;
  }
  .page-no-hu__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    border-width: 3px;
  }
  .page-no-hu__icon-box-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Why Choose Section */
  .page-no-hu__why-choose-section {
    padding: 60px 0;
  }
  .page-no-hu__why-list li {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  .page-no-hu__list-icon {
    font-size: 1.2rem;
    margin-right: 10px;
  }

  /* Game Showcase Section */
  .page-no-hu__game-showcase-section {
    padding: 60px 0;
  }
  .page-no-hu__game-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-no-hu__game-media img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Guide Section */
  .page-no-hu__guide-section {
    padding: 60px 0;
  }
  .page-no-hu__guide-content {
    flex-direction: column;
    gap: 30px;
  }
  .page-no-hu__guide-image img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__step-item {
    padding-left: 35px;
    margin-bottom: 25px;
  }
  .page-no-hu__step-item::before {
    width: 28px;
    height: 28px;
    font-size: 1rem;
  }
  .page-no-hu__step-title {
    font-size: 1.3rem;
  }

  /* Strategy Section */
  .page-no-hu__strategy-section {
    padding: 60px 0;
  }
  .page-no-hu__strategy-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .page-no-hu__strategy-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Promo Section */
  .page-no-hu__promo-section {
    padding: 60px 0;
  }
  .page-no-hu__promo-offers {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__btn-promo {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* FAQ Section */
  .page-no-hu__faq-section {
    padding: 60px 0;
  }
  .page-no-hu__faq-item summary {
    font-size: 1.05rem;
    padding: 18px 20px;
  }
  .page-no-hu__faq-answer {
    padding: 0 20px 18px;
  }

  /* Conclusion Section */
  .page-no-hu__conclusion-section {
    padding: 60px 0;
  }
  .page-no-hu__cta-bottom .page-no-hu__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Generic image and container rules for mobile */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__container,
  .page-no-hu__hero-content,
  .page-no-hu__hero-image,
  .page-no-hu__intro-section,
  .page-no-hu__why-choose-section,
  .page-no-hu__game-showcase-section,
  .page-no-hu__guide-section,
  .page-no-hu__strategy-section,
  .page-no-hu__promo-section,
  .page-no-hu__faq-section,
  .page-no-hu__conclusion-section,
  .page-no-hu__features-grid,
  .page-no-hu__feature-item,
  .page-no-hu__game-grid,
  .page-no-hu__game-card,
  .page-no-hu__strategy-grid,
  .page-no-hu__strategy-item,
  .page-no-hu__promo-offers,
  .page-no-hu__promo-item,
  .page-no-hu__faq-list,
  .page-no-hu__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-no-hu__hero-content, .page-no-hu__hero-image, .page-no-hu__intro-section, .page-no-hu__why-choose-section, .page-no-hu__game-showcase-section, .page-no-hu__guide-section, .page-no-hu__strategy-section, .page-no-hu__promo-section, .page-no-hu__faq-section, .page-no-hu__conclusion-section {
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-no-hu__section-title {
    font-size: 1.8rem;
  }
  .page-no-hu__section-description {
    font-size: 0.95rem;
  }
}