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

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background: linear-gradient(90deg, #26A9E0 0%, #4aaffa 100%);
  color: #ffffff;
  text-align: center;
}

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

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

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.page-no-hu__hero-description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f0f8ff;
}

.page-no-hu__cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

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

.page-no-hu__btn-primary {
  background-color: #EA7C07; /* Login color for primary action */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

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

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

.page-no-hu__btn-secondary:hover {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
}

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

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

.page-no-hu__intro-section,
.page-no-hu__guide-section,
.page-no-hu__promo-section,
.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
  color: #333333;
}

.page-no-hu__game-tabs,
.page-no-hu__strategy-section,
.page-no-hu__trust-section,
.page-no-hu__cta-final {
  padding: 60px 0;
  background-color: #26A9E0;
  color: #ffffff;
}

.page-no-hu__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-no-hu__section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: inherit;
  font-weight: 700;
}

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

.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 300px;
  max-width: 350px;
  text-align: center;
  background-color: #f8f8f8;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px 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;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #26A9E0;
  box-shadow: 0 0 0 8px rgba(38, 169, 224, 0.2);
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.page-no-hu__icon-box-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #26A9E0;
  font-weight: 600;
}

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

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

.page-no-hu__tab-button {
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: none;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.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; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.page-no-hu__game-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #333333;
}

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

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

.page-no-hu__game-title {
  font-size: 1.4rem;
  margin: 15px 10px 10px;
  font-weight: 600;
  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: bold;
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

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

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

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

.page-no-hu__step-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  gap: 15px;
}

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

.page-no-hu__step-title {
  font-size: 1.4rem;
  color: #26A9E0;
  margin-bottom: 5px;
  font-weight: 600;
}

.page-no-hu__step-text {
  font-size: 1rem;
  color: #555555;
}

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

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

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

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

.page-no-hu__strategy-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #f0f8ff;
}

.page-no-hu__strategy-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.page-no-hu__strategy-list li {
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%23EA7C07" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg>') no-repeat left center;
  background-size: 20px;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: #ffffff;
}

.page-no-hu__strategy-list li strong {
  color: #EA7C07;
}

.page-no-hu__strategy-cta {
  display: inline-block;
  margin-top: 20px;
}

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

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

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

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

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

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

.page-no-hu__promo-card-title {
  font-size: 1.5rem;
  margin: 20px 15px 10px;
  font-weight: 600;
  color: #26A9E0;
}

.page-no-hu__promo-card-text {
  font-size: 1rem;
  margin: 0 15px 20px;
  color: #555555;
}

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

.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 300px;
  max-width: 350px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-no-hu__trust-title {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #ffffff;
  font-weight: 600;
}

.page-no-hu__trust-text {
  font-size: 1rem;
  color: #f0f8ff;
}

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

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

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #26A9E0;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  list-style: none; /* For details/summary */
}

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

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
  border-bottom: none;
}

.page-no-hu__faq-toggle {
  font-size: 1.8rem;
  line-height: 1;
  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: 15px 25px 20px;
  font-size: 1rem;
  color: #555555;
  line-height: 1.6;
}

.page-no-hu__cta-final-content {
  text-align: center;
}

.page-no-hu__cta-final-button {
  margin-top: 30px;
  background-color: #EA7C07;
  border-color: #EA7C07;
}

.page-no-hu__cta-final-button:hover {
  background-color: #d16e06;
  border-color: #d16e06;
}

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

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

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

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

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

  .page-no-hu__main-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
    margin-bottom: 15px;
  }

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

  .page-no-hu__cta-group {
    flex-direction: column !important;
    gap: 10px;
    align-items: center;
  }

  .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: 12px 20px;
  }

  .page-no-hu__hero-side-image {
    margin-left: auto;
    margin-right: auto;
  }

  .page-no-hu__intro-section,
  .page-no-hu__guide-section,
  .page-no-hu__promo-section,
  .page-no-hu__faq-section,
  .page-no-hu__game-tabs,
  .page-no-hu__strategy-section,
  .page-no-hu__trust-section,
  .page-no-hu__cta-final {
    padding: 40px 0;
  }

  .page-no-hu__content-area {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-no-hu__icon-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .page-no-hu__icon-box {
    max-width: 100%;
    padding: 25px;
  }

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

  .page-no-hu__icon-box-title {
    font-size: 1.4rem;
  }

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

  .page-no-hu__tab-button {
    font-size: 1rem;
    padding: 10px 20px;
    width: 100%;
  }

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

  .page-no-hu__game-card img {
    
  }

  .page-no-hu__game-title {
    font-size: 1.2rem;
  }

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

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

  .page-no-hu__step-item {
    margin-bottom: 20px;
    gap: 10px;
  }

  .page-no-hu__step-number {
    width: 35px;
    height: 35px;
    font-size: 1.2rem;
  }

  .page-no-hu__step-title {
    font-size: 1.2rem;
  }

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

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

  .page-no-hu__strategy-list li {
    font-size: 0.95rem;
    padding-left: 25px;
    background-size: 18px;
  }

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

  .page-no-hu__promo-card img {
    
  }

  .page-no-hu__promo-card-title {
    font-size: 1.3rem;
  }

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

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

  .page-no-hu__trust-title {
    font-size: 1.4rem;
  }

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

  .page-no-hu__faq-toggle {
    font-size: 1.5rem;
  }

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

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