/* style/no-hu.css */
.page-no-hu {
  background-color: var(--main-bg, #0A0A0A); /* Fallback to dark background */
  color: #FFF6D6; /* Main text color for dark background */
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

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

.page-no-hu__section-spacing {
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-no-hu__section-title {
  font-size: 36px;
  font-weight: 700;
  color: #F2C14E; /* Title color */
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

.page-no-hu__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFD36B;
  border-radius: 2px;
}

.page-no-hu__section-title--light {
  color: #FFF6D6;
}

.page-no-hu__text-block {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 20px;
  color: #FFF6D6;
}

.page-no-hu__text-block--light {
  color: #FFF6D6;
}

.page-no-hu__highlight {
  color: #FFD36B;
  font-weight: 700;
}

/* Hero Section */
.page-no-hu__hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 10px; /* Small top padding */
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0A0A0A; /* Ensure dark background for contrast */
}

.page-no-hu__hero-image-wrapper {
  width: 100%;
  max-height: 675px; /* Maintain aspect ratio or max height */
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
}

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

.page-no-hu__hero-content {
  text-align: center;
  max-width: 900px;
  padding: 0 20px;
  z-index: 1; /* Ensure content is above any potential background layers */
}

.page-no-hu__hero-title {
  font-size: clamp(36px, 5vw, 48px); /* Use clamp for H1 */
  font-weight: 800;
  color: #FFD36B;
  margin-bottom: 15px;
  line-height: 1.2;
}

.page-no-hu__hero-description {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #FFF6D6;
  margin-bottom: 30px;
  line-height: 1.5;
}

.page-no-hu__hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  width: 100%; /* Ensure container takes full width */
  max-width: 450px; /* Max width for button group */
  margin: 0 auto;
}

/* Button Styles */
.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: 14px 28px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure buttons are responsive */
  box-sizing: border-box;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text wrapping */
}