.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #F5F7FA;
}

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

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  padding-bottom: 60px;
  background-color: #F5F7FA;
}

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

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

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

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

.page-no-hu__main-title {
  font-size: clamp(2em, 4vw, 3.2em); /* Responsive H1 font size */
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #E53935;
}

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

.page-no-hu__cta-buttons {
  display: flex;
  gap: 20px;
  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: bold;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border: 2px solid transparent;
}

.page-no-hu__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

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

.page-no-hu__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* General Section Styles */
.page-no-hu__intro-section,
.page-no-hu__guide-section,
.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: #F5F7FA;
  color: #333333;
}

.page-no-hu__games-section,
.page-no-hu__promo-section {
  padding: 60px 0;
  background-color: #E53935;
  color: #ffffff;
}

.page-no-hu__section-title {
  font-size: 2.5em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.3;
  color: inherit; /* Inherit color from section for contrast */
}

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

/* Games Section Specific */
.page-no-hu__game-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

.page-no-hu__game-type-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-no-hu__game-type-title {
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 0 15px;
  color: #E53935;
}

.page-no-hu__game-type-description {
  font-size: 1em;
  padding: 0 15px;
  color: #555555;
}

/* Guide Section Specific */
.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: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  color: #333333;
  display: flex;
  flex-direction: column;
}

.page-no-hu__step-image {
  width: 100%;
  height: 200px; /* Fixed height */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-no-hu__step-title {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 0 15px;
  color: #E53935;
}

.page-no-hu__step-description {
  font-size: 0.95em;
  padding: 0 15px;
  color: #555555;
  flex-grow: 1;
}

.page-no-hu__btn-text-link {
  display: inline-block;
  margin-top: 20px;
  color: #E53935;
  text-decoration: none;
  font-weight: bold;
  border-bottom: 2px solid #E53935;
  padding-bottom: 3px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.page-no-hu__btn-text-link:hover {
  color: #FF5A4F;
  border-color: #FF5A4F;
}

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

.page-no-hu__promo-card {
  background: rgba(255, 255, 255, 0.15); /* Slightly transparent white for dark background */
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__promo-image {
  width: 100%;
  height: 220px; /* Fixed height */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-no-hu__promo-title {
  font-size: 1.5em;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 0 15px;
  color: #ffffff;
}

.page-no-hu__promo-description {
  font-size: 0.95em;
  padding: 0 15px;
  color: #f0f0f0;
}

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

/* FAQ Section Specific */
.page-no-hu__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-no-hu__faq-item {
  background: #ffffff;
  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.15em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  list-style: none; /* Hide default marker for details */
  outline: none;
}

.page-no-hu__faq-question::-webkit-details-marker, /* Hide marker for Webkit */
.page-no-hu__faq-question::marker { /* Hide marker for Firefox */
  display: none;
}

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

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

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

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

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-no-hu__container,
  .page-no-hu__hero-container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-no-hu__hero-container {
    flex-direction: column; /* Stack image and content */
    gap: 30px;
  }

  .page-no-hu__hero-content {
    order: 2; /* Content below image */
    text-align: center;
  }

  .page-no-hu__hero-image {
    order: 1; /* Image above content */
  }

  .page-no-hu__main-title {
    font-size: 2em; /* Adjust H1 size for mobile */
    margin-bottom: 15px;
  }

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

  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 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;
  }

  /* General Section Titles */
  .page-no-hu__section-title {
    font-size: 1.8em;
    margin-bottom: 20px;
  }

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

  /* Games Section */
  .page-no-hu__game-types-grid,
  .page-no-hu__steps-grid,
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

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

  .page-no-hu__game-type-title,
  .page-no-hu__step-title,
  .page-no-hu__promo-title {
    font-size: 1.3em;
  }

  .page-no-hu__game-type-description,
  .page-no-hu__step-description,
  .page-no-hu__promo-description {
    font-size: 0.9em;
  }

  /* FAQ Section */
  .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: 0 20px 15px;
    font-size: 0.95em;
  }

  /* All images general mobile rule */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* All containers with images */
  .page-no-hu__hero-image,
  .page-no-hu__game-type-card,
  .page-no-hu__step-card,
  .page-no-hu__promo-card {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden;
  }

  /* CTA buttons and containers */
  .page-no-hu__cta-buttons {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }
  .page-no-hu__cta-center .page-no-hu__btn-primary {
    max-width: 100% !important;
    width: 100% !important;
  }
}