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

.page-no-hu__hero-section {
  padding-top: 10px; /* Aligned with body padding-top, prevents double spacing */
  background: linear-gradient(135deg, #017439, #005c2d);
  position: relative;
  overflow: hidden;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-no-hu__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.page-no-hu__main-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
}

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

.page-no-hu__description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #f0f0f0;
}

.page-no-hu__description--white {
  color: #f0f0f0;
}

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

.page-no-hu__cta-button,
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: #C30808;
  color: #FFFF00;
  border: 2px solid #C30808;
}

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

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

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

.page-no-hu__about-section,
.page-no-hu__game-showcase-section,
.page-no-hu__how-to-play-section,
.page-no-hu__promotions-section,
.page-no-hu__faq-section,
.page-no-hu__article-body {
  padding: 60px 0;
}

.page-no-hu__dark-section {
  background: #017439;
  color: #FFFFFF;
}

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

.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #017439;
}

.page-no-hu__section-title--white {
  color: #FFFFFF;
}

.page-no-hu__text-block {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.page-no-hu__text-block p {
  margin-bottom: 15px;
}

.page-no-hu__text-block--white {
  color: #f0f0f0;
}

.page-no-hu__text-block--white p {
  color: #f0f0f0;
}

.page-no-hu__game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__game-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-no-hu__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-no-hu__game-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-no-hu__game-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #017439;
}

.page-no-hu__game-card-title a {
  color: #017439;
  text-decoration: none;
}

.page-no-hu__game-card-title a:hover {
  text-decoration: underline;
}

.page-no-hu__game-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-no-hu__game-card-button {
  width: 100%;
  margin-top: auto;
}

.page-no-hu__instruction-list {
  list-style-type: decimal;
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding-left: 30px;
}

.page-no-hu__instruction-list li {
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
}

.page-no-hu__instruction-list li strong {
  color: #017439;
}

.page-no-hu__tips-list {
  list-style-type: disc;
  max-width: 900px;
  margin: 40px auto 0 auto;
  padding-left: 30px;
  color: #f0f0f0;
}

.page-no-hu__tips-list li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.7;
  color: #f0f0f0;
}

.page-no-hu__tips-list li strong {
  color: #FFFFFF;
}

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

.page-no-hu__promo-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-no-hu__promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

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

.page-no-hu__promo-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-no-hu__promo-card-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #017439;
}

.page-no-hu__promo-card-title a {
  color: #017439;
  text-decoration: none;
}

.page-no-hu__promo-card-title a:hover {
  text-decoration: underline;
}

.page-no-hu__promo-card-description {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-no-hu__promo-card-button {
  width: 100%;
  margin-top: auto;
  font-size: 15px;
  padding: 10px 20px;
}

.page-no-hu__full-promo-cta {
  text-align: center;
  margin-top: 50px;
}

.page-no-hu__advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__advantage-item {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.page-no-hu__advantage-item:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-no-hu__advantage-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__advantage-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #FFFFFF;
}

.page-no-hu__advantage-description {
  font-size: 15px;
  line-height: 1.6;
  color: #f0f0f0;
}

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;
  font-size: 15px;
  line-height: 1.6;
  color: #555555;
}

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

.page-no-hu__cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #017439, #005c2d);
  text-align: center;
}

.page-no-hu__cta-content {
  max-width: 800px;
}

.page-no-hu__article-body {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
}

.page-no-hu__article-body h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #017439;
}

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

.page-no-hu__article-body ul,
.page-no-hu__article-body ol {
  margin-bottom: 15px;
  padding-left: 25px;
  color: #333333;
}

.page-no-hu__article-body li {
  margin-bottom: 8px;
  line-height: 1.6;
}

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

/* Mobile responsive styles */
@media (max-width: 1024px) {
  .page-no-hu__game-grid,
  .page-no-hu__promo-grid,
  .page-no-hu__advantages-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 849px) {
  .page-no-hu__main-hero-img {
    object-fit: contain !important; /* Prevents cropping on sides */
    aspect-ratio: unset !important; /* Allows height to adjust freely */
    filter: brightness(0.8); /* Less dark overlay for better visibility if image has text */
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero-section {
    padding-top: 10px; /* Consistent small top padding */
  }

  .page-no-hu__hero-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

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

  .page-no-hu__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 15px;
    padding: 0 15px; /* Add horizontal padding for buttons */
  }

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

  .page-no-hu__container {
    padding: 0 15px; /* General container padding for mobile */
  }

  .page-no-hu__about-section,
  .page-no-hu__game-showcase-section,
  .page-no-hu__how-to-play-section,
  .page-no-hu__promotions-section,
  .page-no-hu__faq-section,
  .page-no-hu__article-body,
  .page-no-hu__why-choose-section,
  .page-no-hu__cta-section {
    padding: 40px 0;
  }

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

  .page-no-hu__text-block {
    font-size: 15px;
    line-height: 1.6;
    text-align: left; /* Align text left for better readability on small screens */
  }

  .page-no-hu__game-grid,
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr; /* Single column layout for cards */
    gap: 25px;
  }

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

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

  .page-no-hu__instruction-list,
  .page-no-hu__tips-list {
    padding-left: 20px;
    margin-top: 30px;
  }

  .page-no-hu__instruction-list li,
  .page-no-hu__tips-list li {
    font-size: 15px;
  }

  .page-no-hu__full-promo-cta {
    margin-top: 30px;
  }

  .page-no-hu__advantages-grid {
    grid-template-columns: 1fr; /* Single column for advantages */
    gap: 25px;
  }

  .page-no-hu__advantage-icon {
    width: 80px;
    height: 80px;
  }

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

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

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

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

  .page-no-hu__article-body h3 {
    font-size: 1.5rem;
  }

  .page-no-hu__article-figure {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__game-card,
  .page-no-hu__promo-card,
  .page-no-hu__advantage-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}

/* Ensure all image containers handle overflow */
.page-no-hu__hero-image,
.page-no-hu__game-card-image,
.page-no-hu__promo-card-image,
.page-no-hu__advantage-icon,
.page-no-hu__article-figure {
  overflow: hidden;
}

.page-no-hu__game-grid,
.page-no-hu__promo-grid,
.page-no-hu__advantages-grid {
  overflow-x: hidden; /* Prevent horizontal scroll on grids */
}