/* style/no-hu.css */
.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
  line-height: 1.6;
}

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

.page-no-hu__section-title {
  font-size: 3em;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

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

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  background-color: #F4F7FB;
}

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

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

.page-no-hu__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(47, 107, 255, 0.2);
}

.page-no-hu__hero-content {
  flex: 1 1 45%;
  order: 1; /* Text first on desktop */
}

.page-no-hu__main-title {
  font-size: clamp(2.5em, 4vw, 3.5em);
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.page-no-hu__hero-description {
  font-size: 1.2em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
  max-width: 100%;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.6);
}

.page-no-hu__btn-secondary {
  background-color: #ffffff; /* Card BG */
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-no-hu__btn-secondary:hover {
  background-color: #2F6BFF;
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.page-no-hu__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background-color: #FFFFFF; /* Card BG */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

.page-no-hu__feature-item:hover {
  transform: translateY(-10px);
}

.page-no-hu__icon-box-media {
  width: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #A5C4FF; /* Glow */
  box-shadow: 0 0 20px rgba(165, 196, 255, 0.6);
}

.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.8em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-no-hu__feature-text {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
}

/* Game Tabs Section */
.page-no-hu__game-tabs-section {
  background-color: #2F6BFF; /* Primary */
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

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

.page-no-hu__tab-button {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  outline: none;
}

.page-no-hu__tab-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.page-no-hu__tab-button.is-active {
  background-color: #ffffff;
  color: #2F6BFF;
  border-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.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;
  margin-bottom: 50px;
}

.page-no-hu__game-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  border: 1px solid #D6E2FF; /* Border */
}

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

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

.page-no-hu__game-title {
  font-size: 1.5em;
  color: #000000; /* Custom Color_1776249996415 */
  margin: 20px 15px 5px;
  font-weight: 700;
}

.page-no-hu__game-meta {
  font-size: 0.9em;
  color: #6FA3FF;
  margin-bottom: 20px;
}

.page-no-hu__game-card .page-no-hu__btn-primary {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 25px;
  font-size: 1em;
}

.page-no-hu__trial-section {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

.page-no-hu__trial-title {
  font-size: 2em;
  color: #ffffff;
  margin-bottom: 25px;
  font-weight: 700;
}

.page-no-hu__game-trial-frame {
  border: none;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  height: 600px;
  display: block;
  margin: 0 auto;
}

/* Why Choose Section */
.page-no-hu__why-choose-section {
  background-color: #F4F7FB;
  padding-bottom: 60px;
}

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

.page-no-hu__benefit-item {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background-color: #FFFFFF; /* Card BG */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

.page-no-hu__benefit-item:hover {
  transform: translateY(-10px);
}

.page-no-hu__benefit-image {
  max-width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 25px;
  display: block;
}

.page-no-hu__benefit-title {
  font-size: 1.8em;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
  font-weight: 700;
}

.page-no-hu__benefit-text {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
}

/* Guide Section */
.page-no-hu__guide-section {
  background-color: #2F6BFF; /* Primary */
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.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(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__guide-step {
  text-align: center;
  padding: 30px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-no-hu__step-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #ffffff;
  color: #2F6BFF;
  border-radius: 50%;
  font-size: 2em;
  font-weight: 700;
  margin: 0 auto 20px;
}

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

.page-no-hu__step-text {
  font-size: 1em;
  color: #ffffff;
  opacity: 0.9;
}

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

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

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

.page-no-hu__promo-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid #D6E2FF; /* Border */
}

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

.page-no-hu__promo-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-no-hu__promo-title {
  font-size: 1.8em;
  color: #000000; /* Custom Color_1776249996415 */
  margin: 0 15px 10px;
  font-weight: 700;
}

.page-no-hu__promo-text {
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  margin: 0 15px 20px;
}

/* FAQ Section */
.page-no-hu__faq-section {
  background-color: #2F6BFF; /* Primary */
  color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}

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

.page-no-hu__faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-no-hu__faq-item {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #D6E2FF; /* Border */
  color: #1F2D3D;
}

.page-no-hu__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  outline: none;
  color: #000000; /* Custom Color_1776249996415 */
}

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

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  content: '−';
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #1F2D3D; /* Text Main */
  line-height: 1.8;
}

/* Bottom CTA Section */
.page-no-hu__cta-bottom-section {
  background-color: #F4F7FB;
  padding-top: 60px;
  padding-bottom: 80px;
  text-align: center;
}

.page-no-hu__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 30px;
  display: inline-block;
}

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .page-no-hu__section-title {
    font-size: 2.5em;
  }

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

  .page-no-hu__hero-image {
    order: 1;
  }

  .page-no-hu__hero-content {
    order: 2;
  }

  .page-no-hu__main-title {
    font-size: clamp(2em, 5vw, 2.8em);
  }

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

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

  .page-no-hu__game-trial-frame {
    height: 450px;
  }

  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-no-hu {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-no-hu__content-container {
    padding: 20px 15px;
  }

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

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

  .page-no-hu__main-title {
    font-size: clamp(1.8em, 7vw, 2.5em) !important;
    margin-bottom: 15px;
  }

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

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

  /* Buttons Mobile */
  .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;
  }

  /* Section Titles & Descriptions Mobile */
  .page-no-hu__section-title {
    font-size: 2em !important;
    margin-bottom: 15px;
  }

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

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

  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border-width: 3px;
  }

  .page-no-hu__feature-title {
    font-size: 1.5em;
  }

  /* Game Tabs Section Mobile */
  .page-no-hu__tab-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
  }

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

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

  .page-no-hu__game-image {
    height: 180px;
  }

  .page-no-hu__game-title {
    font-size: 1.3em;
  }

  .page-no-hu__trial-section {
    padding: 25px;
  }

  .page-no-hu__trial-title {
    font-size: 1.5em;
    margin-bottom: 20px;
  }

  .page-no-hu__game-trial-frame {
    height: 300px;
  }

  /* Why Choose Section Mobile */
  .page-no-hu__benefit-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__benefit-image {
    height: 200px;
  }

  .page-no-hu__benefit-title {
    font-size: 1.5em;
  }

  /* Guide Section Mobile */
  .page-no-hu__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__step-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.8em;
  }

  .page-no-hu__step-title {
    font-size: 1.4em;
  }

  /* Promo Section Mobile */
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__promo-image {
    height: 220px;
  }

  .page-no-hu__promo-title {
    font-size: 1.5em;
  }

  /* FAQ Section Mobile */
  .page-no-hu__faq-item summary {
    padding: 15px 20px;
    font-size: 1.1em;
  }

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

  /* Bottom CTA Section Mobile */
  .page-no-hu__btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
    margin-top: 25px;
  }

  /* Universal Image & Container Responsiveness */
  .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__content-container,
  .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;
  }
  .page-no-hu__icon-box-media {
    width: 200px !important;
    height: 200px !important;
  }
}

/* Ensure images in content areas are not smaller than 200px on desktop */
.page-no-hu__feature-item img, 
.page-no-hu__game-card img, 
.page-no-hu__benefit-item img, 
.page-no-hu__promo-card img {
  min-width: 200px;
  min-height: 200px;
}