.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #333333;
  background-color: #F5F7FA;
}

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

.page-no-hu__section-title {
  font-size: 36px;
  color: #E53935;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__game-card-btn,
.page-no-hu__blog-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

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

.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: #E53935;
  color: #ffffff;
}

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

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

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

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

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

.page-no-hu__hero-cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

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

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

.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;
  background-color: #F5F7FA;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-no-hu__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FF5A4F;
  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;
  color: #E53935;
  margin-bottom: 10px;
  font-weight: 600;
}

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

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

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

.page-no-hu__tab-button {
  background-color: transparent;
  border: none;
  padding: 10px 20px;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.page-no-hu__tab-button::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 4px;
  background-color: #E53935;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.page-no-hu__tab-button.is-active::after {
  transform: scaleX(1);
}

.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;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

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

.page-no-hu__game-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-no-hu__game-card-title a {
  color: #E53935;
  text-decoration: none;
}

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

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

.page-no-hu__game-card-btn {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
}

.page-no-hu__game-card-btn:hover {
  opacity: 0.9;
}

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

.page-no-hu__guide-steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-no-hu__guide-step {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-no-hu__guide-step:nth-child(even) {
  flex-direction: row-reverse;
}

.page-no-hu__guide-step-icon {
  flex: 0 0 200px;
  width: 200px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.page-no-hu__guide-step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-no-hu__guide-step-content {
  flex: 1;
}

.page-no-hu__guide-step-content h3 {
  font-size: 26px;
  color: #E53935;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-no-hu__guide-step-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

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

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

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

.page-no-hu__promo-card {
  background-color: #F5F7FA;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

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

.page-no-hu__promo-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-no-hu__promo-card-title a {
  color: #E53935;
  text-decoration: none;
}

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

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

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

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

.page-no-hu__trust-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-no-hu__trust-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
  display: block;
}

.page-no-hu__trust-item h3 {
  font-size: 24px;
  color: #E53935;
  margin-bottom: 10px;
  font-weight: 600;
}

.page-no-hu__trust-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
}

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

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

.page-no-hu__faq-item {
  background-color: #F5F7FA;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-no-hu__faq-item summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease;
}

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

.page-no-hu__faq-item summary:hover {
  background-color: #E0E0E0;
}

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

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  color: #FF5A4F;
}

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

/* Blog Section */
.page-no-hu__blog-section {
  padding: 60px 0;
}

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

.page-no-hu__blog-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

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

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

.page-no-hu__blog-card-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-no-hu__blog-card-title a {
  color: #E53935;
  text-decoration: none;
}

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

.page-no-hu__blog-card-meta {
  font-size: 14px;
  color: #666666;
  margin-bottom: 10px;
}

.page-no-hu__blog-card-text {
  font-size: 15px;
  color: #333333;
  line-height: 1.5;
  margin-bottom: 20px;
}

.page-no-hu__blog-card-link {
  color: #E53935;
  text-decoration: none;
  font-weight: 600;
}

.page-no-hu__blog-card-link:hover {
  text-decoration: underline;
}

.page-no-hu__view-all {
  text-align: center;
  margin-top: 40px;
}

/* CTA Banner */
.page-no-hu__cta-banner {
  background: linear-gradient(135deg, #E53935 0%, #FF5A4F 100%);
  padding: 80px 0;
  text-align: center;
  color: #ffffff;
}

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

.page-no-hu__cta-banner-title {
  font-size: 38px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-no-hu__cta-banner-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__cta-banner-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

.page-no-hu__cta-banner-buttons .page-no-hu__btn-secondary:hover {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

/* 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%;
    min-width: unset;
  }

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

  .page-no-hu__guide-step {
    flex-direction: column;
  }

  .page-no-hu__guide-step:nth-child(even) {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-no-hu__content-area {
    padding: 30px 15px;
  }

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

  .page-no-hu__hero-container {
    padding: 30px 15px;
    gap: 30px;
  }

  .page-no-hu__hero-title {
    font-size: clamp(24px, 7vw, 36px);
  }

  .page-no-hu__hero-description {
    font-size: 16px;
  }

  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__game-card-btn,
  .page-no-hu__blog-card-link {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px;
    font-size: 15px;
  }

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

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

  .page-no-hu__icon-box-media {
    width: 200px;
    height: 200px;
    margin: 0 auto 15px;
  }

  .page-no-hu__icon-box-title {
    font-size: 20px;
  }

  .page-no-hu__icon-box-text {
    font-size: 15px;
  }

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

  .page-no-hu__tab-nav {
    flex-direction: column;
    gap: 10px;
    border-bottom: none;
  }

  .page-no-hu__tab-button {
    font-size: 16px;
    padding: 8px 15px;
    border-bottom: 2px solid #E0E0E0;
  }

  .page-no-hu__tab-button::after {
    bottom: -2px;
  }

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

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

  .page-no-hu__game-card-title {
    font-size: 20px;
  }

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

  .page-no-hu__guide-steps {
    margin-top: 30px;
  }

  .page-no-hu__guide-step {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    margin-bottom: 30px;
  }

  .page-no-hu__guide-step:nth-child(even) {
    flex-direction: column;
  }

  .page-no-hu__guide-step-icon {
    flex: 0 0 auto;
    width: 150px;
    height: 150px;
  }

  .page-no-hu__guide-step-content h3 {
    font-size: 22px;
  }

  .page-no-hu__guide-step-content p {
    font-size: 15px;
  }

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

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

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

  .page-no-hu__promo-card-title {
    font-size: 20px;
  }

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

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

  .page-no-hu__trust-icon {
    width: 80px;
    height: 80px;
  }

  .page-no-hu__trust-item h3 {
    font-size: 20px;
  }

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

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

  .page-no-hu__faq-toggle {
    font-size: 20px;
  }

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

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

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

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

  .page-no-hu__blog-card-title {
    font-size: 20px;
  }

  .page-no-hu__blog-card-text {
    font-size: 15px;
  }

  /* CTA Banner */
  .page-no-hu__cta-banner {
    padding: 50px 0;
  }

  .page-no-hu__cta-banner-title {
    font-size: 28px;
  }

  .page-no-hu__cta-banner-description {
    font-size: 16px;
  }

  .page-no-hu__cta-banner-buttons {
    flex-direction: column;
    gap: 15px;
    padding-left: 0;
    padding-right: 0;
  }

  /* General Image and Container Rules */
  .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__hero-section,
  .page-no-hu__intro-section,
  .page-no-hu__game-tabs-section,
  .page-no-hu__guide-section,
  .page-no-hu__promo-section,
  .page-no-hu__trust-section,
  .page-no-hu__faq-section,
  .page-no-hu__blog-section,
  .page-no-hu__cta-banner {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Ensure all images in content area are responsive */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}