.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-main-color, #FFF6D6);
  background: var(--bg-color, #0A0A0A);
}

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

.page-no-hu__section {
  padding: 60px 0;
  text-align: center;
}

.page-no-hu__dark-section {
  background: var(--bg-color, #0A0A0A);
  color: var(--text-main-color, #FFF6D6);
}

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

.page-no-hu__section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 20px;
  color: var(--text-main-color, #FFF6D6);
  font-weight: 700;
  line-height: 1.2;
}

.page-no-hu__light-bg .page-no-hu__section-title,
.page-no-hu__light-bg .page-no-hu__card-title,
.page-no-hu__light-bg .page-no-hu__benefit-title {
  color: #333333;
}

.page-no-hu__section-description {
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding, relying on body for header offset */
  padding-bottom: 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.page-no-hu__hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 1;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #ffffff;
  text-align: center;
  max-width: 900px;
}

.page-no-hu__main-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-no-hu__description-text {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 40px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.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: 700;
  text-decoration: none;
  transition: all 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: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
  color: #111111;
  border: none;
  box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-no-hu__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(242, 193, 78, 0.6);
}

.page-no-hu__btn-secondary {
  background: transparent;
  color: #FFF6D6;
  border: 2px solid #FFD36B;
}

.page-no-hu__btn-secondary:hover {
  background: #FFD36B;
  color: #111111;
}

.page-no-hu__light-bg .page-no-hu__btn-secondary {
  color: #DDA11D;
  border-color: #DDA11D;
}

.page-no-hu__light-bg .page-no-hu__btn-secondary:hover {
  background: #DDA11D;
  color: #ffffff;
}

.page-no-hu__image-wrapper {
  margin: 40px auto;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.page-no-hu__image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.page-no-hu__highlight {
  color: #F2C14E;
  font-weight: bold;
}

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

.page-no-hu__game-card,
.page-no-hu__step-card {
  background: var(--card-bg-color, #111111);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color, #3A2A12);
}

.page-no-hu__light-bg .page-no-hu__game-card,
.page-no-hu__light-bg .page-no-hu__step-card {
  background: #ffffff;
  color: #333333;
  border-color: #e0e0e0;
}

.page-no-hu__game-card img,
.page-no-hu__benefit-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-main-color, #FFF6D6);
}

.page-no-hu__light-bg .page-no-hu__card-title {
  color: #333333;
}

.page-no-hu__btn-text {
  display: inline-block;
  margin-top: 20px;
  color: #FFD36B;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-no-hu__btn-text:hover {
  color: #F2C14E;
}

.page-no-hu__light-bg .page-no-hu__btn-text {
  color: #DDA11D;
}

.page-no-hu__light-bg .page-no-hu__btn-text:hover {
  color: #F2C14E;
}

.page-no-hu__center-button {
  margin-top: 40px;
  text-align: center;
}

.page-no-hu__benefit-item {
  background: var(--card-bg-color, #111111);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid var(--border-color, #3A2A12);
}

.page-no-hu__light-bg .page-no-hu__benefit-item {
  background: #ffffff;
  color: #333333;
  border-color: #e0e0e0;
}

.page-no-hu__benefit-item img {
  
  
  object-fit: contain;
  margin-bottom: 20px;
}

.page-no-hu__benefit-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main-color, #FFF6D6);
}

.page-no-hu__light-bg .page-no-hu__benefit-title {
  color: #333333;
}

.page-no-hu__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 800px;
  text-align: left;
}

.page-no-hu__promo-list li {
  background: #ffffff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  color: #333333;
  font-size: 17px;
  border-left: 5px solid #F2C14E;
}

.page-no-hu__promo-list li strong {
  color: #DDA11D;
}

/* FAQ Styles */
details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color, #3A2A12);
  overflow: hidden;
  background: var(--card-bg-color, #111111);
  color: var(--text-main-color, #FFF6D6);
}

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: rgba(255, 255, 255, 0.05);
}

.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: var(--text-main-color, #FFF6D6);
}

.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD36B;
  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: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 5px 5px;
  text-align: left;
  color: var(--text-main-color, #FFF6D6);
}

.page-no-hu__faq-answer p {
  margin-bottom: 0;
}

.page-no-hu__final-cta {
  margin-top: 60px;
}

/* General image styling for content areas */
.page-no-hu__content-area img,
.page-no-hu__article-figure img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 10px;
}

.page-no-hu__article-body {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.page-no-hu__article-body h3 {
  font-size: 24px;
  margin-top: 30px;
  margin-bottom: 15px;
  color: var(--text-main-color, #FFF6D6);
}

.page-no-hu__light-bg .page-no-hu__article-body h3 {
  color: #333333;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__container {
    padding: 0 15px;
  }
  .page-no-hu__section {
    padding: 40px 0;
  }
  .page-no-hu__hero-content {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .page-no-hu__main-title {
    font-size: clamp(32px, 4.5vw, 50px);
  }
  .page-no-hu__description-text {
    font-size: clamp(16px, 2.2vw, 20px);
  }
  .page-no-hu__game-grid,
  .page-no-hu__benefits-grid,
  .page-no-hu__steps-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-no-hu__card-title {
    font-size: 22px;
  }
  .page-no-hu__benefit-title {
    font-size: 20px;
  }
  details.page-no-hu__faq-item summary.page-no-hu__faq-question {
    padding: 15px 18px;
  }
  .page-no-hu__faq-qtext {
    font-size: 17px;
  }
  .page-no-hu__faq-answer {
    padding: 0 18px 18px;
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero-section {
    padding-top: 10px; /* Still small top padding */
    padding-bottom: 40px;
  }
  .page-no-hu__hero-image img {
    object-fit: contain !important; /* Mobile: contain to prevent cropping */
    aspect-ratio: unset !important; /* Allow natural aspect ratio based on content */
  }
  .page-no-hu__hero-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-no-hu__main-title {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 15px;
  }
  .page-no-hu__description-text {
    font-size: clamp(15px, 4vw, 18px);
    margin-bottom: 30px;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
    width: 100%; /* Ensure container takes full width */
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 16px;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-no-hu__section {
    padding: 30px 0;
  }
  .page-no-hu__section-title {
    font-size: clamp(24px, 7vw, 36px);
    margin-bottom: 15px;
  }
  .page-no-hu__section-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .page-no-hu__image-wrapper,
  .page-no-hu__container,
  .page-no-hu__game-grid,
  .page-no-hu__benefits-grid,
  .page-no-hu__steps-grid {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow-x: hidden; /* Prevent horizontal scroll */
  }
  .page-no-hu__game-grid,
  .page-no-hu__steps-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns for game/step cards */
    gap: 15px;
  }
  .page-no-hu__benefits-grid {
    grid-template-columns: 1fr; /* 1 column for benefits */
  }
  .page-no-hu__card-title {
    font-size: 20px;
  }
  .page-no-hu__benefit-title {
    font-size: 18px;
  }
  .page-no-hu__promo-list li {
    font-size: 15px;
    padding: 12px 15px;
  }
  details.page-no-hu__faq-item summary.page-no-hu__faq-question {
    padding: 15px;
  }
  .page-no-hu__faq-qtext {
    font-size: 16px;
  }
  .page-no-hu__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }
  details.page-no-hu__faq-item .page-no-hu__faq-answer {
    padding: 0 15px 15px;
  }
  .page-no-hu p,
  .page-no-hu li {
    font-size: 15px;
  }
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-no-hu__article-body h3 {
    font-size: 20px;
  }
}