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

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

.page-no-hu__dark-section {
  background: linear-gradient(180deg, #E53935 0%, #FF5A4F 100%); /* Brand red gradient */
  color: #ffffff; /* White text for dark backgrounds */
}

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

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  text-align: center;
}

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

.page-no-hu__hero-content {
  flex: 1 1 500px; /* Allows content to take up more space */
  text-align: left;
  padding-right: 20px;
}

.page-no-hu__hero-image {
  flex: 1 1 400px; /* Image takes remaining space */
  text-align: center;
}

.page-no-hu__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.page-no-hu__main-title {
  font-size: clamp(2.2em, 4vw, 3.2em);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff; /* White text for dark hero */
}

.page-no-hu__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0; /* Slightly off-white for contrast */
  max-width: 700px;
}

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

.page-no-hu__cta-buttons--centered {
  justify-content: center;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-game,
.page-no-hu__btn-promo {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  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: none;
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
}

.page-no-hu__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 57, 53, 0.6);
}

.page-no-hu__btn-secondary {
  background: #ffffff;
  color: #E53935;
  border: 2px solid #E53935;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-no-hu__btn-secondary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.page-no-hu__section-title {
  font-size: clamp(1.8em, 3vw, 2.8em);
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  color: inherit; /* Inherits from section background */
}

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

.page-no-hu__intro-section {
  padding: 60px 0;
}

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

.page-no-hu__feature-item {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-no-hu__feature-item:hover {
  transform: translateY(-5px);
}

.page-no-hu__icon-box-media {
  width: 240px;
  height: 240px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FF5A4F;
  box-shadow: 0 0 0 8px rgba(255, 90, 79, 0.3);
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure image is also round */
  display: block;
}

.page-no-hu__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #E53935;
}

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

.page-no-hu__games-section {
  padding: 60px 0;
}

.page-no-hu__game-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: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
}

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

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

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

.page-no-hu__btn-game {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-no-hu__btn-game:hover {
  opacity: 0.9;
}

.page-no-hu__view-all-button-container {
  text-align: center;
  margin-top: 50px;
}

.page-no-hu__guide-section {
  padding: 60px 0;
}

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

.page-no-hu__guide-step-item {
  text-align: center;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.page-no-hu__guide-step-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-no-hu__guide-step-icon img {
  
  
  object-fit: contain;
  display: block;
}

.page-no-hu__guide-step-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #E53935;
}

.page-no-hu__guide-step-text {
  font-size: 0.95em;
  color: #555555;
}

.page-no-hu__promo-section {
  padding: 60px 0;
}

.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-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

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

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

.page-no-hu__promo-title {
  font-size: 1.4em;
  font-weight: 600;
  margin: 20px 15px 10px;
  color: #E53935;
}

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

.page-no-hu__btn-promo {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #ffffff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: opacity 0.3s ease;
}

.page-no-hu__btn-promo:hover {
  opacity: 0.9;
}

.page-no-hu__faq-section {
  padding: 60px 0;
}

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

.page-no-hu__faq-item {
  background-color: #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: 600;
  color: #333333;
  cursor: pointer;
  background-color: #f8f8f8;
  border-bottom: 1px solid #e0e0e0;
  list-style: none;
}

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

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
  border-bottom: 1px solid #ddd;
}

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

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

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

.page-no-hu__final-cta-section {
  padding: 60px 0;
  text-align: center;
}

.page-no-hu__cta-content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-no-hu {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-no-hu__container {
    padding: 20px 15px; /* Smaller padding for mobile */
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-no-hu__hero-container {
    flex-direction: column; /* Stack elements vertically */
    gap: 30px;
    padding: 30px 15px;
  }

  .page-no-hu__hero-content {
    padding-right: 0;
    text-align: center;
  }

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

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

  .page-no-hu__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    align-items: center; /* Center stacked buttons */
    width: 100%;
  }

  /* Buttons general mobile adaptation */
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__btn-game,
  .page-no-hu__btn-promo,
  .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-left: 15px;
    padding-right: 15px;
  }
  
  .page-no-hu__cta-buttons,
  .page-no-hu__button-group,
  .page-no-hu__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  /* Intro Section - Feature Grid */
  .page-no-hu__intro-section,
  .page-no-hu__games-section,
  .page-no-hu__guide-section,
  .page-no-hu__promo-section,
  .page-no-hu__faq-section,
  .page-no-hu__final-cta-section {
    padding: 30px 0;
  }

  .page-no-hu__feature-grid {
    grid-template-columns: 1fr; /* Single column for features */
  }

  .page-no-hu__icon-box-media {
    width: 200px; /* Keep square for mobile */
    height: 200px;
    margin: 0 auto 15px;
  }

  /* Games Section - Game Grid */
  .page-no-hu__game-grid {
    grid-template-columns: 1fr; /* Single column for games */
  }

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

  /* Guide Section - Guide Steps */
  .page-no-hu__guide-steps {
    grid-template-columns: 1fr; /* Single column for guide steps */
  }

  /* Promo Section - Promo Grid */
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr; /* Single column for promos */
  }

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

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

  .page-no-hu__faq-answer {
    padding: 15px 20px;
  }

  /* General image rules 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 {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}