.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #FFF1E8; /* Text Main */
  background-color: #140C0C; /* Page Background */
}

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

.page-no-hu__dark-section {
  background-color: #140C0C; /* Ensure consistency with body background */
  padding: 40px 0;
}

.page-no-hu__section-title {
  font-size: 38px;
  font-weight: 700;
  color: #F3C54D; /* Gold */
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.2;
}

.page-no-hu__text-block {
  font-size: 17px;
  line-height: 1.7;
  text-align: justify;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__text-center {
  text-align: center;
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden; /* Prevent image overflow */
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

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

.page-no-hu__hero-content {
  padding: 40px 15px;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  box-sizing: border-box;
}

.page-no-hu__main-title {
  font-size: clamp(30px, 4vw, 56px); /* Use clamp for H1 */
  font-weight: 900;
  color: #F3C54D; /* Gold */
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 0 0 10px rgba(243, 197, 77, 0.5);
}

.page-no-hu__hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #FFF1E8;
}

.page-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%; /* Ensure container takes full width for responsive */
  max-width: 700px; /* Limit button group width */
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play,
.page-no-hu__btn-promo,
.page-no-hu__btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
  box-sizing: border-box; /* Include padding/border in element's total width */
  max-width: 100%; /* Ensure button doesn't exceed container width */
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  box-shadow: 0 5px 15px rgba(216, 106, 20, 0.4);
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #FFC06A 0%, #E87A24 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(216, 106, 20, 0.6);
}

.page-no-hu__btn-secondary {
  background: #C61F1F; /* Main Color */
  color: #FFF1E8;
  border: 2px solid #E53030; /* Auxiliary Color */
  box-shadow: 0 5px 15px rgba(198, 31, 31, 0.4);
}

.page-no-hu__btn-secondary:hover {
  background: #E53030; /* Auxiliary Color */
  border-color: #FFB04A;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(198, 31, 31, 0.6);
}

.page-no-hu__btn-play {
  background: linear-gradient(180deg, #F3C54D 0%, #D86A14 100%); /* Gold to Orange */
  color: #140C0C; /* Dark text for light button */
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 15px;
}

.page-no-hu__btn-play:hover {
  background: linear-gradient(180deg, #FFD56D 0%, #E87A24 100%);
  transform: translateY(-1px);
}

.page-no-hu__btn-promo {
  background: #7E0D0D; /* Deep Red */
  color: #FFF1E8;
  padding: 12px 25px;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 15px;
}

.page-no-hu__btn-promo:hover {
  background: #C61F1F; /* Main Color */
  transform: translateY(-1px);
}

.page-no-hu__btn-link {
  background: none;
  border: 1px solid #6A1E1E; /* Border Color */
  color: #F3C54D; /* Gold */
  padding: 8px 15px;
  font-size: 15px;
  border-radius: 5px;
  margin-top: 10px;
}

.page-no-hu__btn-link:hover {
  background: #6A1E1E; /* Border Color */
  color: #FFF1E8;
}

.page-no-hu__link {
  color: #F3C54D; /* Gold */
  text-decoration: none;
  font-weight: bold;
}

.page-no-hu__link:hover {
  text-decoration: underline;
}

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

.page-no-hu__feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border Color */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu__feature-icon {
  width: 100%; /* Ensure image fills card width */
  max-width: 250px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
  border-radius: 5px;
  object-fit: cover;
  min-height: 200px; /* Enforce min size */
  min-width: 200px; /* Enforce min size */
}

.page-no-hu__card-title {
  font-size: 24px;
  font-weight: 700;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
}

.page-no-hu__card-text {
  font-size: 16px;
  color: #FFF1E8;
}

/* Game Showcase Section */
.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: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border Color */
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

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

.page-no-hu__game-thumbnail {
  width: 100%;
  height: 200px; /* Fixed height for thumbnails */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
  min-height: 200px; /* Enforce min size */
  min-width: 200px; /* Enforce min size */
}

.page-no-hu__game-card .page-no-hu__card-title {
  font-size: 20px;
  margin-top: 10px;
  margin-bottom: 5px;
  padding: 0 15px;
}

.page-no-hu__game-card .page-no-hu__card-text {
  font-size: 15px;
  padding: 0 15px;
}

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

/* How to Play Section */
.page-no-hu__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__step-item {
  background-color: #2A1212; /* Card BG */
  border: 1px solid #6A1E1E; /* Border Color */
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-no-hu__step-title {
  font-size: 22px;
  color: #F3C54D; /* Gold */
  margin-bottom: 10px;
}

.page-no-hu__step-description {
  font-size: 16px;
  color: #FFF1E8;
  margin-bottom: 15px;
}