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

.page-no-hu__section-spacing {
  padding: 80px 0;
}

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

.page-no-hu__section-title {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: #1F2D3D; /* Text Main */
  line-height: 1.2;
}

.page-no-hu__section-description {
  font-size: 18px;
  text-align: center;
  margin-bottom: 50px;
  color: #1F2D3D;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Adjusted for fixed header, small top margin */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #6FA3FF 0%, #F4F7FB 100%);
}

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

.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #1F2D3D; /* Text Main */
  text-align: left;
}

.page-no-hu__main-title {
  font-size: 52px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #2F6BFF;
}

.page-no-hu__hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

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

.page-no-hu__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
}

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

.page-no-hu__btn-secondary {
  background: #ffffff;
  color: #2F6BFF;
  border: 2px solid #2F6BFF; /* Border */
}

.page-no-hu__btn-secondary:hover {
  background: #2F6BFF;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.2);
}

.page-no-hu__hero-image {
  flex: 1 1 45%;
  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;
}

/* Intro Section */
.page-no-hu__intro-section {
  background-color: #F4F7FB; /* Background */
}

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

.page-no-hu__icon-box {
  text-align: center;
  padding: 30px;
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-no-hu__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #D6E2FF; /* Border */
  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__icon-box-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1F2D3D; /* Text Main */
}

.page-no-hu__icon-box-text {
  font-size: 16px;
  line-height: 1.6;
  color: #1F2D3D;
}

/* Game Tabs Section */
.page-no-hu__game-tabs-section {
  background-color: #FFFFFF; /* Card BG */
}

.page-no-hu__tab-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  border-bottom: 2px solid #D6E2FF; /* Border */
  padding-bottom: 10px;
}

.page-no-hu__tab-button {
  background-color: transparent;
  border: none;
  padding: 12px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.page-no-hu__tab-button.is-active {
  color: #2F6BFF;
}

.page-no-hu__tab-button.is-active::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #2F6BFF;
}

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

.page-no-hu__game-card {
  background-color: #F4F7FB; /* Background */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

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

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

.page-no-hu__game-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000000; /* Custom Color_1776249996415 */
  padding: 0 15px;
}

.page-no-hu__game-title a {
  color: #000000; /* Custom Color_1776249996415 */
  text-decoration: none;
}

.page-no-hu__game-title a:hover {
  color: #2F6BFF;
}

.page-no-hu__game-description {
  font-size: 15px;
  line-height: 1.5;
  color: #1F2D3D;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-no-hu__game-play-btn {
  padding: 10px 20px;
  font-size: 15px;
}

/* Guide Section */
.page-no-hu__guide-section {
  background-color: #F4F7FB; /* Background */
}

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

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

.page-no-hu__guide-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.page-no-hu__step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #2F6BFF;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
}

.page-no-hu__step-title {
  font-size: 22px;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 5px;
}

.page-no-hu__step-text {
  font-size: 16px;
  line-height: 1.6;
  color: #1F2D3D;
}

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

.page-no-hu__guide-visual {
  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-cta {
  margin-top: 50px;
  text-align: center;
}

/* Promo Section */
.page-no-hu__promo-section {
  background-color: #2F6BFF;
  color: #ffffff;
}

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

.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: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.page-no-hu__promo-thumbnail {
  width: 100%;
  height: 180px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-no-hu__promo-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
  padding: 0 15px;
}

.page-no-hu__promo-text {
  font-size: 15px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 20px;
  padding: 0 15px;
}

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

/* Trust Section */
.page-no-hu__trust-section {
  background-color: #F4F7FB; /* Background */
}

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

.page-no-hu__trust-text-block {
  flex: 1 1 55%;
  min-width: 300px;
}

.page-no-hu__trust-text-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #1F2D3D;
  margin-bottom: 20px;
}

.page-no-hu__trust-features {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-no-hu__trust-features li {
  font-size: 16px;
  line-height: 1.8;
  color: #1F2D3D;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
}

.page-no-hu__trust-features li::before {
  content: '✔';
  color: #2F6BFF;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.page-no-hu__feature-highlight {
  color: #000000; /* Custom Color_1776249996415 */
}

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

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

/* FAQ Section */
.page-no-hu__faq-section {
  background-color: #FFFFFF; /* Card BG */
}

.page-no-hu__faq-list {
  margin-top: 40px;
}

.page-no-hu__faq-item {
  background-color: #F4F7FB; /* Background */
  border-radius: 8px;
  margin-bottom: 15px;
  border: 1px solid #D6E2FF; /* Border */
  overflow: hidden;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 18px;
  font-weight: bold;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  transition: background-color 0.3s ease;
  list-style: none;
}

.page-no-hu__faq-item[open] > .page-no-hu__faq-question {
  background-color: #D6E2FF;
  color: #2F6BFF;
}

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

.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #2F6BFF;
  margin-left: 15px;
}

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

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

/* Blog Section */
.page-no-hu__blog-section {
  background-color: #F4F7FB; /* Background */
}

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

.page-no-hu__blog-card {
  background-color: #FFFFFF; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

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

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

.page-no-hu__blog-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.4;
}

.page-no-hu__blog-title a {
  color: #000000; /* Custom Color_1776249996415 */
  text-decoration: none;
}

.page-no-hu__blog-title a:hover {
  color: #2F6BFF;
}

.page-no-hu__blog-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: #1F2D3D;
  margin-bottom: 15px;
}

.page-no-hu__blog-date {
  font-size: 13px;
  color: #666;
  display: block;
  margin-bottom: 15px;
}

.page-no-hu__read-more-btn {
  padding: 8px 15px;
  font-size: 14px;
}

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

/* General image styling for content areas */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__main-title {
    font-size: 44px;
  }
  .page-no-hu__hero-description {
    font-size: 17px;
  }
  .page-no-hu__section-title {
    font-size: 32px;
  }
  .page-no-hu__section-description {
    font-size: 16px;
  }
  .page-no-hu__icon-box-media {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
  }
  .page-no-hu__hero-content {
    order: 2;
    text-align: center;
  }
  .page-no-hu__hero-image {
    order: 1;
    margin-bottom: 30px;
  }
  .page-no-hu__hero-side-image {
    border-radius: 8px;
  }
  .page-no-hu__main-title {
    font-size: 36px;
    line-height: 1.2;
  }
  .page-no-hu__hero-description {
    font-size: 16px;
    line-height: 1.5;
  }
  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .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__section-spacing {
    padding: 40px 0;
  }
  .page-no-hu__container {
    padding: 0 15px;
  }
  .page-no-hu__section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .page-no-hu__section-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  /* Module 1 (Intro/Features) */
  .page-no-hu__icon-boxes {
    grid-template-columns: 1fr;
  }
  .page-no-hu__icon-box-media {
    width: 180px;
    height: 180px;
    border-width: 3px;
  }
  .page-no-hu__icon-box-title {
    font-size: 20px;
  }
  .page-no-hu__icon-box-text {
    font-size: 15px;
  }

  /* Game Tabs Section */
  .page-no-hu__tab-nav {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
  }
  .page-no-hu__tab-button {
    width: 100%;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    background-color: #D6E2FF;
  }
  .page-no-hu__tab-button.is-active {
    background-color: #2F6BFF;
    color: #ffffff;
  }
  .page-no-hu__tab-button.is-active::after {
    display: none;
  }
  .page-no-hu__game-grid {
    grid-template-columns: 1fr;
  }
  .page-no-hu__game-thumbnail {
    height: 180px;
  }
  .page-no-hu__game-title {
    font-size: 18px;
  }
  .page-no-hu__game-description {
    font-size: 14px;
  }

  /* Guide Section */
  .page-no-hu__guide-content {
    flex-direction: column;
  }
  .page-no-hu__guide-steps {
    order: 2;
  }
  .page-no-hu__guide-image {
    order: 1;
    margin-bottom: 30px;
  }
  .page-no-hu__step-number {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }
  .page-no-hu__step-title {
    font-size: 18px;
  }
  .page-no-hu__step-text {
    font-size: 15px;
  }
  .page-no-hu__guide-cta {
    margin-top: 30px;
  }

  /* Promo Section */
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
  }
  .page-no-hu__promo-thumbnail {
    height: 150px;
  }
  .page-no-hu__promo-title {
    font-size: 18px;
  }
  .page-no-hu__promo-text {
    font-size: 14px;
  }
  .page-no-hu__promo-cta {
    margin-top: 30px;
  }

  /* Trust Section */
  .page-no-hu__trust-content {
    flex-direction: column;
  }
  .page-no-hu__trust-text-block {
    order: 2;
  }
  .page-no-hu__trust-image {
    order: 1;
    margin-bottom: 30px;
  }
  .page-no-hu__trust-text-block p,
  .page-no-hu__trust-features li {
    font-size: 15px;
  }

  /* FAQ Section */
  .page-no-hu__faq-question {
    padding: 15px;
    font-size: 16px;
  }
  .page-no-hu__faq-toggle {
    font-size: 20px;
  }
  .page-no-hu__faq-answer {
    padding: 0 15px 15px;
    font-size: 15px;
  }

  /* Blog Section */
  .page-no-hu__blog-grid {
    grid-template-columns: 1fr;
  }
  .page-no-hu__blog-thumbnail {
    height: 160px;
  }
  .page-no-hu__blog-title {
    font-size: 18px;
  }
  .page-no-hu__blog-excerpt {
    font-size: 14px;
  }
  .page-no-hu__blog-date {
    font-size: 12px;
  }
  .page-no-hu__read-more-btn {
    padding: 7px 12px;
    font-size: 13px;
  }
  .page-no-hu__blog-cta {
    margin-top: 30px;
  }

  /* General image and 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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  /* Special handling for circular images in mobile */
  .page-no-hu__icon-box-media img {
    height: 100% !important; /* Keep height 100% for object-fit */
    width: 100% !important;
    object-fit: cover !important;
  }
}