/* style/no-hu.css */
:root {
  --page-no-hu-primary-color: #11A84E;
  --page-no-hu-secondary-color: #22C768;
  --page-no-hu-card-bg: #11271B;
  --page-no-hu-background: #08160F;
  --page-no-hu-text-main: #F2FFF6;
  --page-no-hu-text-secondary: #A7D9B8;
  --page-no-hu-border: #2E7A4E;
  --page-no-hu-glow: #57E38D;
  --page-no-hu-gold: #F2C14E;
  --page-no-hu-divider: #1E3A2A;
  --page-no-hu-deep-green: #0A4B2C;
}

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

.page-no-hu__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  background-color: var(--page-no-hu-deep-green);
  overflow: hidden;
}

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

.page-no-hu__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5); /* Darken image for text readability */
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  color: var(--page-no-hu-text-main);
}

.page-no-hu__hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--page-no-hu-gold);
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-no-hu__hero-description {
  font-size: clamp(1rem, 2vw, 1.3rem);
  margin-bottom: 30px;
  color: var(--page-no-hu-text-secondary);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.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 {
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
  color: var(--page-no-hu-text-main);
  border: none;
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
}

.page-no-hu__btn-secondary {
  background: var(--page-no-hu-card-bg);
  color: var(--page-no-hu-text-main);
  border: 2px solid var(--page-no-hu-border);
}

.page-no-hu__btn-secondary:hover {
  background: var(--page-no-hu-border);
  color: var(--page-no-hu-text-main);
  transform: translateY(-2px);
}

.page-no-hu__section {
  padding: 80px 0;
}

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

.page-no-hu__section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--page-no-hu-gold);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-no-hu__text-block {
  font-size: 1.1rem;
  color: var(--page-no-hu-text-secondary);
  margin-bottom: 20px;
  text-align: justify;
}

.page-no-hu__text-link {
  color: var(--page-no-hu-primary-color);
  text-decoration: underline;
}

.page-no-hu__text-link:hover {
  color: var(--page-no-hu-gold);
}

.page-no-hu__image-content {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.page-no-hu__card-bg {
  background-color: var(--page-no-hu-card-bg);
}

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

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

.page-no-hu__card {
  background-color: var(--page-no-hu-background);
  border: 1px solid var(--page-no-hu-border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease;
  color: var(--page-no-hu-text-main);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-no-hu__card:hover {
  transform: translateY(-5px);
}

.page-no-hu__card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--page-no-hu-primary-color);
  margin-bottom: 15px;
}

.page-no-hu__card-text {
  font-size: 1rem;
  color: var(--page-no-hu-text-secondary);
}

.page-no-hu__ordered-list,
.page-no-hu__unordered-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-no-hu__ordered-list li,
.page-no-hu__unordered-list li {
  background-color: var(--page-no-hu-card-bg);
  border: 1px solid var(--page-no-hu-border);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  color: var(--page-no-hu-text-main);
}

.page-no-hu__list-title {
  font-size: 1.3rem;
  color: var(--page-no-hu-gold);
  margin-bottom: 10px;
}

.page-no-hu__ordered-list li p,
.page-no-hu__unordered-list li p {
  font-size: 1rem;
  color: var(--page-no-hu-text-secondary);
  text-align: justify;
}

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

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

.page-no-hu__icon-list-item {
  background-color: var(--page-no-hu-card-bg);
  border: 1px solid var(--page-no-hu-border);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  text-align: center;
  color: var(--page-no-hu-text-main);
}

.page-no-hu__icon {
  display: block;
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  /* Placeholder for actual icons */
  border-radius: 50%;
  border: 2px solid var(--page-no-hu-primary-color);
}

.page-no-hu__icon--security { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.79z"/></svg>'); }
.page-no-hu__icon--fairplay { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z"/></svg>'); }
.page-no-hu__icon--support { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z"/></svg>'); }
.page-no-hu__icon--mobile { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M17 1.01L7 1c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V3c0-1.1-.9-1.99-2-1.99zM17 19H7V5h10v14z"/></svg>'); }
.page-no-hu__icon--variety { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.05-1.22.13-1.82L11 15v3.93zm2 0V14l6.93-3.07c.08.6.13 1.2.13 1.82 0 4.08-3.05 7.44-7 7.93zM4.26 10.01C4.09 9.35 4 8.68 4 8c0-1.86.53-3.62 1.46-5.18L13 11H4.26zm14.48-1.35C18.91 9.35 19 8.68 19 8c0-1.86-.53-3.62-1.46-5.18L11 11h7.74zM11 12L3.07 8.93C3.02 8.61 3 8.31 3 8c0-2.21 1.45-4.08 3.54-4.78L11 12zm2 0l7.93-3.07c.05-.32.07-.61.07-.93 0-2.21-1.45-4.08-3.54-4.78L13 12z"/></svg>'); }
.page-no-hu__icon--fast-payouts { background-image: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23F2C14E"><path d="M20 4H4c-1.11 0-1.99.89-1.99 2L2 18c0 1.11.89 2 2 2h16c1.11 0 2-.89 2-2V6c0-1.11-.89-2-2-2zm0 14H4v-6h16v6zm0-10H4V6h16v2z"/></svg>'); }

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

.page-no-hu__faq-item {
  background-color: var(--page-no-hu-card-bg);
  border: 1px solid var(--page-no-hu-border);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-no-hu-text-main);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--page-no-hu-primary-color);
  background-color: var(--page-no-hu-deep-green);
  border-bottom: 1px solid var(--page-no-hu-divider);
  list-style: none; /* For details summary */
}

.page-no-hu__faq-question::-webkit-details-marker {
  display: none;
}

.page-no-hu__faq-qtext {
  flex-grow: 1;
  text-align: left;
}

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  font-weight: 700;
  margin-left: 15px;
  color: var(--page-no-hu-gold);
}

.page-no-hu__faq-answer {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  color: var(--page-no-hu-text-secondary);
  text-align: justify;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding-top: 15px;
  padding-bottom: 25px;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  content: '−';
}

.page-no-hu__conclusion {
  padding-bottom: 80px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  }
  .page-no-hu__hero-description {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  }
  .page-no-hu__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  }
}

@media (max-width: 768px) {
  .page-no-hu {
    font-size: 16px;
    line-height: 1.6;
  }
  .page-no-hu__hero-section {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-no-hu__hero-title {
    font-size: 2.2rem !important;
  }
  .page-no-hu__hero-description {
    font-size: 1rem !important;
  }
  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }
  .page-no-hu__section {
    padding: 40px 0;
  }
  .page-no-hu__container {
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .page-no-hu__section-title {
    font-size: 1.8rem !important;
    margin-bottom: 30px;
  }
  .page-no-hu__text-block {
    font-size: 1rem;
  }
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
    min-width: 200px;
    min-height: 200px;
  }
  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container,
  .page-no-hu__cta-buttons,
  .page-no-hu__button-group,
  .page-no-hu__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  .page-no-hu__grid-3-columns,
  .page-no-hu__grid-2-columns,
  .page-no-hu__icon-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu__card {
    padding: 20px;
  }
  .page-no-hu__card-title {
    font-size: 1.3rem;
  }
  .page-no-hu__faq-question {
    font-size: 1rem;
    padding: 15px 20px;
  }
  .page-no-hu__faq-toggle {
    font-size: 1.3rem;
  }
  .page-no-hu__faq-answer {
    padding: 0 20px;
  }
  .page-no-hu__faq-item[open] .page-no-hu__faq-answer {
    padding-top: 10px;
    padding-bottom: 20px;
  }
  .page-no-hu__ordered-list li, .page-no-hu__unordered-list li {
    padding: 20px;
  }
  .page-no-hu__list-title {
    font-size: 1.1rem;
  }
  .page-no-hu__icon {
    width: 50px;
    height: 50px;
  }
}