.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  background: #0A0A0A; /* Background color */
  color: #FFF6D6; /* Main text color */
}

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

.page-no-hu__dark-section {
  background: #0A0A0A;
  color: #FFF6D6;
}

.page-no-hu__light-bg {
  background: #111111; /* Card BG color */
  color: #FFF6D6;
}

.page-no-hu__section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #F2C14E; /* Main color */
  line-height: 1.2;
}

.page-no-hu__section-title--light {
  color: #FFF6D6;
}

.page-no-hu__section-description {
  font-size: 18px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  color: #FFF6D6;
}

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, shared.css handles body padding */
  padding-bottom: 50px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Fixed height for desktop */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-no-hu__hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 40px 20px;
  margin-top: -100px; /* Overlap slightly for design */
  background: rgba(10, 10, 10, 0.85); /* Slightly transparent background for readability */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-no-hu__main-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  margin-bottom: 20px;
  color: #FFD36B; /* Glow color */
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

.page-no-hu__hero-description {
  font-size: 19px;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-no-hu__hero-cta-buttons,
.page-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-no-hu__cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: all 0.3s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #FFF6D6;
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-no-hu__btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-no-hu__btn-secondary {
  background: transparent;
  color: #F2C14E;
  border: 2px solid #F2C14E;
}

.page-no-hu__btn-secondary:hover {
  background: #F2C14E;
  color: #0A0A0A;
  transform: translateY(-3px);
}

.page-no-hu__intro-section,
.page-no-hu__features-section,
.page-no-hu__game-types-section,
.page-no-hu__how-to-play-section,
.page-no-hu__tips-section,
.page-no-hu__promotions-section,
.page-no-hu__faq-section,
.page-no-hu__final-cta-section {
  padding: 60px 0;
}

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

.page-no-hu__feature-card,
.page-no-hu__game-type-card,
.page-no-hu__promotion-card {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: #FFF6D6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-no-hu__feature-card:hover,
.page-no-hu__game-type-card:hover,
.page-no-hu__promotion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-no-hu__feature-icon,
.page-no-hu__game-type-image,
.page-no-hu__promotion-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-no-hu__game-type-image, .page-no-hu__promotion-image {
  max-width: 100%; /* Ensure images fill card width */
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
}

.page-no-hu__card-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F2C14E;
}

.page-no-hu__card-description {
  font-size: 16px;
  color: #FFF6D6;
  flex-grow: 1;
}

.page-no-hu__promotion-button {
  margin-top: 20px;
}

.page-no-hu__how-to-play-list,
.page-no-hu__tips-list {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 0 auto;
}

.page-no-hu__how-to-play-item,
.page-no-hu__tip-item {
  background: #111111; /* Card BG */
  border: 1px solid #3A2A12; /* Border */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #FFF6D6;
}

.page-no-hu__step-title,
.page-no-hu__tip-title {
  font-size: 20px;
  font-weight: bold;
  color: #FFD36B; /* Glow color */
  margin-bottom: 10px;
}

.page-no-hu__how-to-play-item p,
.page-no-hu__tip-item p {
  font-size: 16px;
  color: #FFF6D6;
}

.page-no-hu__how-to-play-item a {
  color: #F2C14E;
  text-decoration: underline;
}

.page-no-hu__how-to-play-item a:hover {
  color: #FFD36B;
}

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

/* FAQ styles */
details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
  overflow: hidden;
  background: #111111; /* Card BG */
  color: #FFF6D6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #FFF6D6;
}
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: rgba(242, 193, 78, 0.1);
}
.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E;
}
.page-no-hu__faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #FFD36B;
  flex-shrink: 0;
  margin-left: 15px;
  width: 30px;
  text-align: center;
}
details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 25px 25px;
  background: #0A0A0A; /* Background */
  border-radius: 0 0 10px 10px;
  color: #FFF6D6;
}

.page-no-hu__faq-answer p {
  margin: 0;
  font-size: 16px;
}

.page-no-hu__final-cta-section {
  padding-bottom: 80px;
}

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

/* Media Queries */
@media (max-width: 1024px) {
  .page-no-hu__hero-content {
    padding: 30px 15px;
    margin-top: -80px;
  }
  .page-no-hu__main-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }
  .page-no-hu__hero-description {
    font-size: 17px;
  }
  .page-no-hu__section-title {
    font-size: clamp(26px, 3.5vw, 38px);
  }
  .page-no-hu__section-description {
    font-size: 17px;
    margin-bottom: 30px;
  }
  .page-no-hu__cta-button {
    padding: 12px 25px;
    font-size: 16px;
  }
  .page-no-hu__feature-card,
  .page-no-hu__game-type-card,
  .page-no-hu__promotion-card {
    padding: 25px;
  }
  .page-no-hu__card-title {
    font-size: 20px;
  }
  .page-no-hu__card-description {
    font-size: 15px;
  }
  .page-no-hu__step-title,
  .page-no-hu__tip-title {
    font-size: 18px;
  }
  .page-no-hu__how-to-play-item p,
  .page-no-hu__tip-item p {
    font-size: 15px;
  }
  details.page-no-hu__faq-item summary.page-no-hu__faq-question {
    padding: 15px 20px;
  }
  .page-no-hu__faq-qtext {
    font-size: 17px;
  }
  .page-no-hu__faq-toggle {
    font-size: 26px;
    width: 28px;
  }
  details.page-no-hu__faq-item .page-no-hu__faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 849px) {
  .page-no-hu__hero-image {
    object-fit: contain !important; /* Prevent cropping on smaller screens */
    aspect-ratio: unset !important; /* Allow natural aspect ratio */
    max-height: 500px; /* Adjust max height for better visibility */
  }
}

@media (max-width: 768px) {
  .page-no-hu__container {
    padding: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 30px;
  }

  .page-no-hu__hero-image-wrapper {
    max-height: 400px;
  }

  .page-no-hu__hero-content {
    padding: 25px 15px;
    margin-top: -60px;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

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

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

  .page-no-hu__hero-cta-buttons,
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
  }

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

  .page-no-hu__intro-section,
  .page-no-hu__features-section,
  .page-no-hu__game-types-section,
  .page-no-hu__how-to-play-section,
  .page-no-hu__tips-section,
  .page-no-hu__promotions-section,
  .page-no-hu__faq-section,
  .page-no-hu__final-cta-section {
    padding: 40px 0;
  }

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

  .page-no-hu__section-description {
    font-size: 16px;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .page-no-hu__features-grid,
  .page-no-hu__game-types-grid,
  .page-no-hu__promotions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 15px;
  }

  .page-no-hu__feature-card,
  .page-no-hu__game-type-card,
  .page-no-hu__promotion-card {
    padding: 20px;
  }

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

  .page-no-hu__card-description {
    font-size: 15px;
  }

  .page-no-hu__feature-icon,
  .page-no-hu__game-type-image,
  .page-no-hu__promotion-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    margin-bottom: 15px;
  }

  .page-no-hu__game-type-image, .page-no-hu__promotion-image {
    height: 180px; /* Adjust height for mobile */
  }

  .page-no-hu__how-to-play-item,
  .page-no-hu__tip-item {
    padding: 20px;
    margin-bottom: 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__step-title,
  .page-no-hu__tip-title {
    font-size: 17px;
  }

  .page-no-hu__how-to-play-item p,
  .page-no-hu__tip-item p {
    font-size: 15px;
  }

  details.page-no-hu__faq-item summary.page-no-hu__faq-question {
    padding: 15px;
  }
  .page-no-hu__faq-qtext {
    font-size: 16px;
  }
  .page-no-hu__faq-toggle {
    font-size: 24px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-no-hu__faq-item .page-no-hu__faq-answer {
    padding: 0 15px 15px;
  }
  .page-no-hu__faq-answer p {
    font-size: 15px;
  }
}