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

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

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Assuming shared.css handles body padding-top */
  padding-bottom: 40px;
  background-color: #ffffff;
  color: #333333;
}

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

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

.page-no-hu__main-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #26A9E0;
  max-width: 600px;
}

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-no-hu__btn-primary:hover {
  background-color: #1e87b3;
  border-color: #1e87b3;
}

.page-no-hu__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-no-hu__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1e87b3;
  border-color: #1e87b3;
}

.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;
  display: block;
}

/* Section General */
.page-no-hu__section-title {
  font-size: 2.2em;
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
}

.page-no-hu__section-description {
  font-size: 1.1em;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Intro Section */
.page-no-hu__intro-section {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-no-hu__icon-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.page-no-hu__icon-box {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-sizing: border-box;
  min-width: 280px;
}

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  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: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-no-hu__icon-box-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* Game Tabs Section */
.page-no-hu__game-tabs-section {
  background-color: #ffffff;
  color: #333333;
}

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

.page-no-hu__tab-button {
  background: none;
  border: none;
  padding: 15px 25px;
  font-size: 1.1em;
  font-weight: 600;
  color: #555555;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  top: 2px;
}

.page-no-hu__tab-button:hover,
.page-no-hu__tab-button.is-active {
  color: #26A9E0;
  border-bottom: 2px solid #26A9E0;
}

.page-no-hu__game-panel {
  display: none;
}

.page-no-hu__game-panel.is-active {
  display: block;
}

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

.page-no-hu__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333333;
  transition: transform 0.3s ease;
  display: block;
}

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

.page-no-hu__game-card img {
  width: 100%;
  height: 200px; /* Fixed height for cards */
  object-fit: cover;
  display: block;
}

.page-no-hu__game-card-title {
  font-size: 1.3em;
  font-weight: 600;
  margin: 15px 15px 10px;
  color: #26A9E0;
}

.page-no-hu__game-card-text {
  font-size: 0.95em;
  color: #555555;
  margin: 0 15px 15px;
}

/* Guide Section */
.page-no-hu__guide-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.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: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.page-no-hu__guide-step {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-sizing: border-box;
  min-width: 280px;
}

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

.page-no-hu__guide-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-no-hu__guide-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-no-hu__guide-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  display: block;
}

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

.page-no-hu__promo-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.page-no-hu__promo-card {
  flex: 1 1 calc(50% - 15px);
  max-width: calc(50% - 15px);
  background-color: #f8f8f8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  min-width: 300px;
}

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

.page-no-hu__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-no-hu__promo-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #26A9E0;
}

.page-no-hu__promo-text {
  font-size: 1em;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-no-hu__btn-promo {
  display: inline-block;
  padding: 10px 20px;
  background-color: #26A9E0;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-promo:hover {
  background-color: #1e87b3;
}

/* Trust Section */
.page-no-hu__trust-section {
  background-color: #26A9E0;
  color: #ffffff;
}

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

.page-no-hu__trust-features {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.page-no-hu__trust-item {
  flex: 1 1 calc(33.333% - 20px);
  max-width: calc(33.333% - 20px);
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-sizing: border-box;
  min-width: 280px;
}

.page-no-hu__trust-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.page-no-hu__trust-text {
  font-size: 1em;
  color: #f0f0f0;
}

.page-no-hu__trust-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 40px;
  display: block;
}

/* FAQ Section */
.page-no-hu__faq-section {
  background-color: #ffffff;
  color: #333333;
}

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

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

.page-no-hu__faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1em;
  font-weight: 600;
  color: #26A9E0;
  background-color: #f0f8ff;
}

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

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

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 10px;
  color: #26A9E0;
  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 20px 20px;
  font-size: 1em;
  color: #555555;
}

/* Call to Action Section */
.page-no-hu__cta-section {
  background-color: #26A9E0;
  color: #ffffff;
  text-align: center;
}

.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--center {
  justify-content: center;
  margin-top: 30px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__main-title {
    font-size: 2.5em;
  }

  .page-no-hu__section-title {
    font-size: 2em;
  }

  .page-no-hu__icon-box,
  .page-no-hu__guide-step,
  .page-no-hu__trust-item {
    flex: 1 1 calc(50% - 15px);
    max-width: calc(50% - 15px);
  }

  .page-no-hu__promo-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

  .page-no-hu__game-card img {
    
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 20px;
  }

  .page-no-hu__hero-container {
    flex-direction: column;
    gap: 20px;
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__hero-content,
  .page-no-hu__hero-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-no-hu__main-title {
    font-size: 2em;
    text-align: center;
    max-width: 100%;
  }

  .page-no-hu__hero-description {
    font-size: 1em;
    text-align: center;
  }

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

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-no-hu__hero-side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Section General */
  .page-no-hu__container {
    padding: 20px 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__section-title {
    font-size: 1.8em;
    margin-bottom: 15px;
  }

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

  /* Intro Section (Module 1 three-column circular images) */
  .page-no-hu__icon-box {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px;
  }

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

  .page-no-hu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

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

  /* Game Tabs Section (Seven Tabs) */
  .page-no-hu__tab-nav {
    flex-direction: column;
    align-items: center;
    border-bottom: none;
    gap: 5px;
  }

  .page-no-hu__tab-button {
    width: 100%;
    text-align: center;
    padding: 10px 15px;
    font-size: 1em;
    border-bottom: 1px solid #e0e0e0;
  }

  .page-no-hu__tab-button.is-active {
    border-bottom: 2px solid #26A9E0;
  }

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

  .page-no-hu__game-card img {
    
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Guide Section */
  .page-no-hu__guide-steps {
    flex-direction: column;
    gap: 20px;
  }

  .page-no-hu__guide-step {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px;
  }

  .page-no-hu__guide-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.8em;
    margin-bottom: 15px;
  }

  .page-no-hu__guide-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-top: 20px;
  }

  /* Promo Section */
  .page-no-hu__promo-cards {
    flex-direction: column;
    gap: 20px;
  }

  .page-no-hu__promo-card {
    max-width: 100%;
  }

  .page-no-hu__promo-image {
    height: 180px;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-no-hu__btn-promo {
    max-width: 100% !important;
    width: 100% !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Trust Section */
  .page-no-hu__trust-features {
    flex-direction: column;
    gap: 20px;
  }

  .page-no-hu__trust-item {
    flex: 1 1 100%;
    max-width: 100%;
    padding: 20px;
  }

  .page-no-hu__trust-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* FAQ Section */
  .page-no-hu__faq-list {
    margin-top: 20px;
  }

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

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

  /* Call to Action Section */
  .page-no-hu__cta-buttons--center {
    flex-direction: column;
    gap: 10px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* General image and container responsive styles */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block;
  }

  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container,
  .page-no-hu__game-card,
  .page-no-hu__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}