:root {
  --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  --color-card-bg: #11271B;
  --color-background: #08160F;
  --color-text-main: #F2FFF6;
  --color-text-secondary: #A7D9B8;
  --color-border: #2E7A4E;
  --color-glow: #57E38D;
  --color-gold: #F2C14E;
  --color-divider: #1E3A2A;
  --color-deep-green: #0A4B2C;
}

.page-no-hu {
  background-color: var(--color-background); /* #08160F - dark */
  color: var(--color-text-main); /* #F2FFF6 - light */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, relying on shared.css for body padding */
  padding-bottom: 40px;
  text-align: center;
}

.page-no-hu__hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.page-no-hu h1 {
  font-size: clamp(2.2rem, 4vw, 3rem); /* Adjusted font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.page-no-hu h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 600;
  color: var(--color-gold);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  padding: 0 15px;
}

.page-no-hu h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 15px;
}

.page-no-hu p {
  margin-bottom: 15px;
  color: var(--color-text-secondary);
}

.page-no-hu a {
  color: var(--color-gold);
  text-decoration: none;
}
.page-no-hu a:hover {
  text-decoration: underline;
}

.page-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  padding: 0 15px;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 25px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 0.3s ease;
  min-width: 180px;
  text-align: center;
  box-sizing: border-box; /* Crucial for button responsiveness */
}

.page-no-hu__btn-primary {
  background: var(--color-button-gradient);
  color: var(--color-text-main); /* Ensure light text on dark button */
  border: none;
}
.page-no-hu__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-no-hu__btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
}
.page-no-hu__btn-secondary:hover {
  background: var(--color-gold);
  color: var(--color-background);
  transform: translateY(-2px);
}

.page-no-hu__btn-text {
  background: none;
  border: none;
  color: var(--color-gold);
  padding: 0;
  min-width: unset;
  text-transform: none;
  font-weight: normal;
  text-decoration: underline;
}
.page-no-hu__btn-text:hover {
  text-decoration: none;
  color: var(--color-glow);
}

.page-no-hu__intro-section,
.page-no-hu__why-choose-section,
.page-no-hu__game-types-section,
.page-no-hu__guide-section,
.page-no-hu__tips-section,
.page-no-hu__promo-section,
.page-no-hu__faq-section,
.page-no-hu__conclusion-section {
  max-width: 1170px;
  margin: 0 auto 30px auto;
  padding: 40px 15px;
  background-color: var(--color-card-bg); /* Use card background for sections to provide contrast from overall page background */
  border-radius: 10px;
  box-sizing: border-box;
}

.page-no-hu__intro-section,
.page-no-hu__why-choose-section,
.page-no-hu__guide-section,
.page-no-hu__tips-section,
.page-no-hu__promo-section,
.page-no-hu__conclusion-section {
  text-align: center; /* Center content for these sections */
}

.page-no-hu__intro-image,
.page-no-hu__why-choose-image,
.page-no-hu__game-types-overview-image,
.page-no-hu__guide-image,
.page-no-hu__tips-image,
.page-no-hu__promo-image {
  margin-top: 30px;
  margin-bottom: 20px;
  text-align: center;
}

.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto; /* Center images */
  border-radius: 8px;
  object-fit: cover;
}

.page-no-hu ul,
.page-no-hu ol {
  list-style-position: inside;
  margin-left: 20px;
  margin-bottom: 15px;
  text-align: left;
}
.page-no-hu ul li,
.page-no-hu ol li {
  margin-bottom: 8px;
  color: var(--color-text-secondary);
}

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

.page-no-hu__game-card {
  background-color: var(--color-background); /* Darker background for game cards */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}

.page-no-hu__game-card img {
  margin-bottom: 20px;
  border-radius: 6px;
}

.page-no-hu__guide-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.page-no-hu__guide-step {
  margin-bottom: 0;
  padding: 20px;
  background-color: var(--color-background);
  border-radius: 8px;
  border: 1px solid var(--color-border);
  text-align: left;
  box-sizing: border-box;
}

.page-no-hu__promo-card {
  background-color: var(--color-background);
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
  border: 1px solid var(--color-border);
  box-sizing: border-box;
  text-align: center;
}
.page-no-hu__promo-card + .page-no-hu__promo-card {
  margin-top: 20px;
}

.page-no-hu__faq-list {
  margin-top: 30px;
}

.page-no-hu__faq-item {
  background-color: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-text-main);
  background-color: var(--color-deep-green);
  transition: background-color 0.3s ease;
  list-style: none; /* For details/summary */
}
.page-no-hu__faq-question::-webkit-details-marker {
  display: none;
}
.page-no-hu__faq-question:hover {
  background-color: var(--color-border);
}

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  margin-left: 15px;
  color: var(--color-gold);
}

.page-no-hu__faq-answer {
  padding: 15px 25px 20px;
  color: var(--color-text-secondary);
  background-color: var(--color-background);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .page-no-hu {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-no-hu h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .page-no-hu h2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-no-hu h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
  }

  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Small top padding, relying on shared.css for body padding */
    padding-bottom: 20px;
  }
  .page-no-hu__hero-content {
    padding: 0 10px;
  }

  /* CTA Buttons */
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
    padding: 0 10px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* General Content Sections */
  .page-no-hu__intro-section,
  .page-no-hu__why-choose-section,
  .page-no-hu__game-types-section,
  .page-no-hu__guide-section,
  .page-no-hu__tips-section,
  .page-no-hu__promo-section,
  .page-no-hu__faq-section,
  .page-no-hu__conclusion-section {
    padding: 20px 10px;
    margin-bottom: 20px;
    border-radius: 8px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
}