.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default dark text for light body background */
  background-color: #FFFFFF;
}

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

.page-no-hu__section {
  padding: 60px 0;
  text-align: center;
}

.page-no-hu__dark-section {
  background-color: #26A9E0; /* Brand primary color */
  color: #FFFFFF;
}

.page-no-hu__light-bg {
  background-color: #FFFFFF;
  color: #333333;
}

.page-no-hu__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-no-hu__section-description {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Hero Section */
.page-no-hu__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  overflow: hidden;
}

.page-no-hu__hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust as needed for desktop */
  overflow: hidden;
}

.page-no-hu__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Cover for desktop */
  display: block;
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 40px;
}

.page-no-hu__main-title {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-no-hu__tagline {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #FFFFFF;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.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: 18px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

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

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

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

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

/* About Slots Section */
.page-no-hu__about-slots .page-no-hu__content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__content-item {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.page-no-hu__content-item .page-no-hu__item-title {
  font-size: 24px;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 15px;
}

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

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

.page-no-hu__feature-card {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-no-hu__feature-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  min-width: 200px;
  min-height: 200px;
}

.page-no-hu__feature-card .page-no-hu__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-no-hu__feature-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
}

/* Top Games Section */
.page-no-hu__top-games .page-no-hu__section-title,
.page-no-hu__top-games .page-no-hu__section-description {
  color: #FFFFFF;
}

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

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

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

.page-no-hu__game-card .page-no-hu__card-title {
  font-size: 22px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-no-hu__game-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-no-hu__game-card .page-no-hu__btn-secondary {
  font-size: 16px;
  padding: 10px 20px;
}

/* How To Play Section */
.page-no-hu__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__step-card {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
}

.page-no-hu__step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #26A9E0;
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  border: 3px solid #FFFFFF;
}

.page-no-hu__step-card .page-no-hu__card-title {
  font-size: 20px;
  font-weight: 600;
  color: #26A9E0;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-no-hu__step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 20px;
}

.page-no-hu__btn-link {
  color: #EA7C07;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-no-hu__btn-link:hover {
  color: #d46b00;
  text-decoration: underline;
}

/* Promotion Section */
.page-no-hu__promotion-section .page-no-hu__section-title,
.page-no-hu__promotion-section .page-no-hu__section-description {
  color: #FFFFFF;
}

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

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

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

.page-no-hu__promo-card .page-no-hu__card-title {
  font-size: 20px;
  font-weight: 700;
  color: #26A9E0;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-no-hu__promo-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  padding: 0 15px;
}

.page-no-hu__promo-card .page-no-hu__btn-primary {
  font-size: 16px;
  padding: 10px 20px;
}

/* Integration Section (Article Body) */
.page-no-hu__integration-section {
  text-align: left;
}

.page-no-hu__integration-section .page-no-hu__section-title {
  text-align: center;
  color: #26A9E0;
}

.page-no-hu__article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 0;
  line-height: 1.8;
  font-size: 17px;
  color: #444444;
}

.page-no-hu__article-body h3 {
  font-size: 24px;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-no-hu__article-body p {
  margin-bottom: 15px;
}

.page-no-hu__article-figure {
  margin: 30px 0;
  text-align: center;
}

.page-no-hu__article-figure img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
  min-width: 200px;
  min-height: 200px;
}

.page-no-hu__article-figure figcaption {
  font-style: italic;
  font-size: 14px;
  color: #777777;
  margin-top: 10px;
}

/* FAQ Section */
.page-no-hu__faq-list {
  max-width: 800px;
  margin: 40px auto 0;
  text-align: left;
}

details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}

details.page-no-hu__faq-item summary.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}

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

details.page-no-hu__faq-item summary.page-no-hu__faq-question:hover {
  background: #f5f5f5;
}

.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}

.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.page-no-hu__faq-answer p {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

/* Final CTA Section */
.page-no-hu__cta-final-section .page-no-hu__section-title,
.page-no-hu__cta-final-section .page-no-hu__section-description {
  color: #FFFFFF;
}

.page-no-hu__cta-final-section .page-no-hu__cta-buttons {
  margin-top: 40px;
}

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

/* Media Queries for Responsive Design */
@media (max-width: 1024px) {
  .page-no-hu__hero-image-wrapper {
    height: 450px;
  }
}

@media (max-width: 768px) {
  .page-no-hu__section {
    padding: 40px 0;
  }

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

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

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

  .page-no-hu__hero-image-wrapper {
    height: 250px;
    aspect-ratio: unset !important; /* Ensure aspect ratio is not fixed */
  }

  .page-no-hu__hero-image {
    object-fit: contain !important; /* Contain for mobile, prevent cropping */
  }

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

  .page-no-hu__tagline {
    font-size: 16px;
    margin-bottom: 30px;
  }

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

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

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

  /* About Slots Mobile */
  .page-no-hu__about-slots .page-no-hu__content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__content-item {
    padding: 25px;
  }

  .page-no-hu__content-item .page-no-hu__item-title {
    font-size: 20px;
  }

  /* Features Mobile */
  .page-no-hu__features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__feature-image {
    height: 200px;
  }

  .page-no-hu__feature-card .page-no-hu__card-title {
    font-size: 18px;
  }

  /* Top Games Mobile */
  .page-no-hu__products-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for mobile */
    gap: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }

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

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

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

  .page-no-hu__game-card p {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .page-no-hu__game-card .page-no-hu__btn-secondary {
    font-size: 14px;
    padding: 8px 15px;
  }

  /* How To Play Mobile */
  .page-no-hu__steps-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__step-card {
    padding: 25px;
  }

  /* Promotion Section Mobile */
  .page-no-hu__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  /* Article Body Mobile */
  .page-no-hu__article-body {
    font-size: 16px;
    line-height: 1.6;
    padding: 15px;
    max-width: 100% !important; /* Ensure content fits */
    box-sizing: border-box !important;
  }

  .page-no-hu__article-body h3 {
    font-size: 20px;
  }

  .page-no-hu__article-figure {
    margin: 20px 0;
  }

  /* FAQ Mobile */
  details.page-no-hu__faq-item summary.page-no-hu__faq-question {
    padding: 15px;
  }

  .page-no-hu__faq-qtext {
    font-size: 15px;
  }

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