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

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

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

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

.page-no-hu__hero-section {
  padding-top: 10px; /* Adjusted for shared header offset */
  padding-bottom: 60px;
  background: linear-gradient(135deg, #E0F7FA, #B3E5FC);
}

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

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

.page-no-hu__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%;
  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: #1e87c0;
  border-color: #1e87c0;
}

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

.page-no-hu__btn-secondary:hover {
  background-color: #26A9E0;
  color: #FFFFFF;
}

.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;
}

.page-no-hu__intro-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

.page-no-hu__feature-item {
  flex: 1 1 280px;
  max-width: 350px;
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.page-no-hu__feature-text {
  font-size: 1em;
  color: #555555;
}

.page-no-hu__game-tabs-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.page-no-hu__game-tabs {
  margin-top: 40px;
}

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

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

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

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

.page-no-hu__game-panel {
  display: none;
  animation: fadeIn 0.5s ease-in-out;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.page-no-hu__panel-subtitle {
  font-size: 1.8em;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 15px;
}

.page-no-hu__panel-description {
  font-size: 1em;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 30px;
  color: #555555;
}

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

.page-no-hu__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

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

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

.page-no-hu__game-title a:hover {
  color: #26A9E0;
}

.page-no-hu__btn-play {
  display: inline-block;
  background-color: #EA7C07;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
  box-sizing: border-box;
  max-width: 90%;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-play:hover {
  background-color: #c76505;
}

.page-no-hu__guide-section {
  padding: 80px 0;
  background-color: #f0f7ff;
}

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

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

.page-no-hu__guide-subtitle {
  font-size: 1.6em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 700;
}

.page-no-hu__guide-paragraph {
  font-size: 1em;
  color: #555555;
  margin-bottom: 15px;
}

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

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

.page-no-hu__promo-section {
  padding: 80px 0;
  background-color: #26A9E0; /* Dark background */
  color: #FFFFFF; /* Light text */
}

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

.page-no-hu__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-no-hu__promo-card:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 255, 255, 0.15);
}

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

.page-no-hu__promo-title {
  font-size: 1.4em;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: 700;
  padding: 0 15px;
}

.page-no-hu__promo-text {
  font-size: 0.95em;
  color: #E0E0E0;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-no-hu__btn-light {
  display: inline-block;
  background-color: #FFFFFF;
  color: #26A9E0;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  box-sizing: border-box;
  max-width: 90%;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-light:hover {
  background-color: #f0f0f0;
  color: #1e87c0;
}

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

.page-no-hu__trust-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

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

.page-no-hu__trust-item {
  background-color: #fcfcfc;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__trust-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

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

.page-no-hu__trust-title {
  font-size: 1.4em;
  color: #26A9E0;
  margin-bottom: 10px;
  font-weight: 700;
  padding: 0 15px;
}

.page-no-hu__trust-text {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px;
}

.page-no-hu__faq-section {
  padding: 80px 0;
  background-color: #f8f8f8;
}

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

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

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

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

.page-no-hu__faq-question:hover {
  background-color: #f0f0f0;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
  background-color: #eaf6ff;
  color: #26A9E0;
}

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #26A9E0;
  margin-left: 15px;
  line-height: 1;
}

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

.page-no-hu__faq-answer {
  padding: 15px 25px 25px;
  font-size: 1em;
  color: #555555;
  background-color: #FFFFFF;
}

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

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-no-hu__container {
    padding: 0 15px !important;
  }

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

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

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

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

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

  .page-no-hu__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em);
    text-align: center;
  }

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

  .page-no-hu__hero-cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

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

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

  .page-no-hu__intro-features {
    flex-direction: column;
    gap: 20px;
  }

  .page-no-hu__feature-item {
    max-width: 100%;
    flex: 1 1 100%;
  }

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

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

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

  .page-no-hu__tab-button {
    padding: 12px 15px;
    font-size: 1em;
    border-bottom: 1px solid #eee;
  }

  .page-no-hu__tab-button.is-active::after {
    width: 50%;
    left: 25%;
  }

  .page-no-hu__panel-subtitle {
    font-size: 1.5em;
  }

  .page-no-hu__panel-description {
    font-size: 0.95em;
  }

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

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

  .page-no-hu__guide-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-no-hu__guide-text-block,
  .page-no-hu__guide-image {
    flex: 1 1 100%;
    min-width: unset;
  }

  .page-no-hu__guide-subtitle {
    font-size: 1.4em;
    margin-top: 20px;
  }

  .page-no-hu__guide-paragraph {
    font-size: 0.95em;
  }

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

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

  .page-no-hu__promo-card {
    padding-bottom: 15px;
  }

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

  .page-no-hu__promo-text {
    font-size: 0.9em;
  }

  .page-no-hu__cta-center {
    margin-top: 30px;
  }

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

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

  .page-no-hu__trust-title {
    font-size: 1.2em;
  }

  .page-no-hu__trust-text {
    font-size: 0.9em;
  }

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

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

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

  .page-no-hu__faq-toggle {
    font-size: 1.2em;
  }

  .page-no-hu__faq-answer {
    padding: 10px 20px 20px;
    font-size: 0.95em;
  }

  /* General images for mobile */
  .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-container,
  .page-no-hu__intro-features,
  .page-no-hu__game-grid,
  .page-no-hu__promo-grid,
  .page-no-hu__trust-grid,
  .page-no-hu__game-tabs,
  .page-no-hu__hero-cta-buttons,
  .page-no-hu__cta-center {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-no-hu__hero-cta-buttons,
  .page-no-hu__tab-nav {
    flex-wrap: wrap !important;
    gap: 10px;
  }
}