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

.page-no-hu__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
  padding-top: 10px; /* Small top padding, assuming body has header offset */
}

.page-no-hu__hero-image {
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-no-hu__hero-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover; /* Default cover for desktop */
  min-height: 200px; /* Ensure min size */
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 20px;
  text-align: center;
  max-width: 900px;
  margin: -80px auto 0 auto; /* Pull content up slightly over the image */
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-no-hu__main-title {
  font-size: clamp(28px, 4vw, 48px); /* H1 font size with clamp */
  color: #017439;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-no-hu__hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #555555;
  margin-bottom: 30px;
}

.page-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap; /* Allow wrapping for smaller screens */
  width: 100%; /* Ensure container takes full width */
  max-width: 100%; /* Ensure container takes full width */
  box-sizing: border-box;
  overflow: hidden;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play,
.page-no-hu__btn-register,
.page-no-hu__btn-deposit,
.page-no-hu__btn-play-game,
.page-no-hu__btn-view-promo {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure button takes full width if needed */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}

.page-no-hu__btn-primary {
  background-color: #C30808; /* Register color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

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

.page-no-hu__btn-secondary {
  background-color: #017439; /* Login color, using brand color as secondary */
  color: #FFFFFF;
  border: 2px solid #017439;
}

.page-no-hu__btn-secondary:hover {
  background-color: #005f2e;
  border-color: #005f2e;
}

/* Specific button styles for guide and promo sections */
.page-no-hu__btn-register,
.page-no-hu__btn-deposit,
.page-no-hu__btn-play-game,
.page-no-hu__btn-view-promo,
.page-no-hu__btn-play {
  background-color: #017439;
  color: #FFFFFF;
  border: 2px solid #017439;
  font-size: 16px;
  padding: 12px 25px;
  margin-top: 15px;
}

.page-no-hu__btn-register:hover,
.page-no-hu__btn-deposit:hover,
.page-no-hu__btn-play-game:hover,
.page-no-hu__btn-view-promo:hover,
.page-no-hu__btn-play:hover {
  background-color: #005f2e;
  border-color: #005f2e;
}


.page-no-hu__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-no-hu__section-title {
  font-size: clamp(24px, 3vw, 38px);
  color: #017439;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  line-height: 1.3;
}

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

.page-no-hu__text-block {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: justify;
}

.page-no-hu__text-block a {
  color: #017439;
  text-decoration: underline;
}

.page-no-hu__text-block a:hover {
  color: #005f2e;
}

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

.page-no-hu__game-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.page-no-hu__game-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  min-width: 200px; /* Min size for images */
  min-height: 200px; /* Min size for images */
}

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

.page-no-hu__game-description {
  font-size: 15px;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1; /* Ensure descriptions take available space */
}

/* Guide Section (dark background) */
.page-no-hu__guide-section {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

.page-no-hu__guide-section .page-no-hu__section-title {
  color: #ffffff;
}

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

.page-no-hu__guide-section .page-no-hu__text-block a {
  color: #FFFF00; /* Yellow for links on dark background */
}

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

.page-no-hu__step-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-no-hu__step-icon {
  width: 60px;
  height: 60px;
  background: #FFFF00; /* Yellow icon */
  color: #017439;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-no-hu__step-title {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
  font-weight: 600;
}

.page-no-hu__step-description {
  font-size: 15px;
  color: #f0f0f0;
  margin-bottom: 20px;
  flex-grow: 1;
}

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

.page-no-hu__promo-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.page-no-hu__promo-card img {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  min-width: 200px; /* Min size for images */
  min-height: 200px; /* Min size for images */
}

.page-no-hu__promo-title {
  font-size: 22px;
  color: #017439;
  margin-bottom: 10px;
  padding: 0 20px;
  font-weight: 600;
}

.page-no-hu__promo-description {
  font-size: 15px;
  color: #555555;
  padding: 0 20px;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Tips Section (dark background) */
.page-no-hu__tips-section {
  background-color: #017439; /* Brand primary color */
  color: #ffffff;
}

.page-no-hu__tips-section .page-no-hu__section-title {
  color: #ffffff;
}

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

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

.page-no-hu__tip-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-no-hu__tip-item img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
  min-width: 200px; /* Min size for images */
  min-height: 200px; /* Min size for images */
}

.page-no-hu__tip-title {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
  padding: 0 20px;
  font-weight: 600;
}

.page-no-hu__tip-description {
  font-size: 15px;
  color: #f0f0f0;
  padding: 0 20px;
  flex-grow: 1;
}

/* FAQ Section */
.page-no-hu__faq-section {
  background-color: #f9f9f9;
}

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;
}