/* style/no-hu.css */
.page-no-hu {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main, #FFF1E8); /* Default text color for the page, assuming dark body background */
  background-color: var(--background, #140C0C); /* Page specific background, if different from body */
}

/* Container for general content */
.page-no-hu__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-no-hu__section-title {
  font-size: 3em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--gold, #F3C54D); /* Use gold for main titles */
  line-height: 1.2;
}

.page-no-hu__text-block {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 20px;
  color: var(--text-main, #FFF1E8);
  text-align: center;
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 60px;
  background-color: var(--deep-red, #7E0D0D); /* Use deep red for hero background */
}

.page-no-hu__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 16px;
  box-sizing: border-box;
}

.page-no-hu__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: var(--text-main, #FFF1E8); /* Light text on dark red background */
  text-align: left;
}

.page-no-hu__hero-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Use clamp for H1 font size */
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--gold, #F3C54D);
}

.page-no-hu__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: var(--text-main, #FFF1E8);
}

.page-no-hu__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Allow buttons to wrap */
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play,
.page-no-hu__btn-view-promo {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  max-width: 100%; /* Ensure buttons adapt to screen width */
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8; /* Light text on gradient button */
  border: 2px solid transparent;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-secondary {
  background: transparent;
  color: var(--gold, #F3C54D); /* Gold text on transparent button */
  border: 2px solid var(--gold, #F3C54D);
}

.page-no-hu__btn-secondary:hover {
  background: var(--gold, #F3C54D);
  color: var(--deep-red, #7E0D0D); /* Deep red text on gold hover */
}

.page-no-hu__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-no-hu__hero-side-image {
  max-width: 600px; /* Actual display width */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-no-hu__intro-section {
  padding: 60px 0;
  background-color: var(--card-bg, #2A1212); /* Dark background for intro */
  color: var(--text-main, #FFF1E8);
}

/* Benefits Section */
.page-no-hu__benefits-section {
  padding: 60px 0;
  background-color: var(--background, #140C0C); /* Dark background */
}

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

.page-no-hu__icon-box {
  text-align: center;
  background-color: var(--card-bg, #2A1212);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

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

.page-no-hu__icon-box-media {
  width: 200px; /* Specific size for square icon box */
  height: 200px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--gold, #F3C54D); /* Gold border for circular images */
  box-shadow: 0 0 0 8px rgba(243, 197, 77, 0.3); /* Soft glow */
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure image is also round */
  display: block;
}

.page-no-hu__icon-box-title {
  font-size: 1.8em;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--gold, #F3C54D);
}

.page-no-hu__icon-box-description {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-main, #FFF1E8);
}

/* Popular Games Section */
.page-no-hu__popular-games-section {
  padding: 60px 0;
  background-color: var(--deep-red, #7E0D0D); /* Deep red for popular games */
  color: var(--text-main, #FFF1E8);
}

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

.page-no-hu__game-card {
  background-color: var(--card-bg, #2A1212);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-no-hu__game-card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistent card image display */
  object-fit: cover;
  display: block;
}

.page-no-hu__game-card-title {
  font-size: 1.6em;
  font-weight: 700;
  margin: 20px 15px 10px;
  color: var(--gold, #F3C54D);
}

.page-no-hu__game-card-description {
  font-size: 0.95em;
  line-height: 1.5;
  margin: 0 15px 20px;
  color: var(--text-main, #FFF1E8);
}

.page-no-hu__btn-play {
  background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
  color: #FFF1E8;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 1em;
  font-weight: 600;
}

.page-no-hu__btn-play:hover {
  background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

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

/* Guide Section */
.page-no-hu__guide-section {
  padding: 60px 0;
  background-color: var(--background, #140C0C);
  color: var(--text-main, #FFF1E8);
}

.page-no-hu__guide-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}

.page-no-hu__guide-text {
  flex: 1 1 55%;
  min-width: 300px;
}

.page-no-hu__guide-text p {
  text-align: left;
}

.page-no-hu__guide-text a {
  color: var(--gold, #F3C54D);
  text-decoration: underline;
}

.page-no-hu__guide-text a:hover {
  color: #FFF1E8;
}

.page-no-hu__guide-steps {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-no-hu__guide-steps li {
  background-color: var(--card-bg, #2A1212);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-no-hu__guide-step-title {
  font-size: 1.4em;
  font-weight: 700;
  color: var(--gold, #F3C54D);
  margin-bottom: 10px;
}

.page-no-hu__guide-step-title::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary-color, #C61F1F);
  color: #FFF1E8;
  font-size: 1em;
  font-weight: 700;
  margin-right: 15px;
}

.page-no-hu__guide-steps p {
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-main, #FFF1E8);
  text-align: left;
  margin-top: 10px;
}

.page-no-hu__guide-image {
  flex: 1 1 35%;
  min-width: 300px;
  text-align: center;
}

.page-no-hu__guide-main-image {
  max-width: 800px; /* Display width, smaller than request size */
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Promotions Section */
.page-no-hu__promo-section {
  padding: 60px 0;
  background-color: var(--deep-red, #7E0D0D);
  color: var(--text-main, #FFF1E8);
}

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

.page-no-hu__promo-card {
  background-color: var(--card-bg, #2A1212);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease;
}

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

.page-no-hu__promo-card-image {
  width: 100%;
  height: 200px; /* Consistent image height */
  object-fit: cover;
  display: block;
}

.page-no-hu__promo-card-title {
  font-size: 1.6em;
  font-weight: 700;
  margin: 20px 15px 10px;
  color: var(--gold, #F3C54D);
}

.page-no-hu__promo-card-description {
  font-size: 0.95em;
  line-height: 1.5;
  margin: 0 15px 20px;
  color: var(--text-main, #FFF1E8);
}

.page-no-hu__btn-view-promo {
  display: inline-block;
  background: var(--primary-color, #C61F1F);
  color: #FFF1E8;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.page-no-hu__btn-view-promo:hover {
  background-color: var(--secondary-color, #E53030);
}

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

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: var(--background, #140C0C);
  color: var(--text-main, #FFF1E8);
}

.page-no-hu__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-no-hu__faq-item {
  background-color: var(--card-bg, #2A1212);
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: var(--gold, #F3C54D);
  cursor: pointer;
  background-color: var(--card-bg, #2A1212);
  position: relative;
  list-style: none; /* For details/summary */
}

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

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 20px;
  color: var(--gold, #F3C54D);
}

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

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: var(--text-main, #FFF1E8);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-answer {
  max-height: 1000px; /* Sufficiently large to show content */
  padding-top: 10px;
}

.page-no-hu__faq-answer p {
  text-align: left;
}

.page-no-hu__faq-answer a {
  color: var(--gold, #F3C54D);
  text-decoration: underline;
}

.page-no-hu__faq-answer a:hover {
  color: #FFF1E8;
}

/* Call to Action Section */
.page-no-hu__call-to-action-section {
  padding: 80px 0;
  background-color: var(--primary-color, #C61F1F); /* Use primary color for final CTA */
  color: #FFF1E8;
  text-align: center;
}

.page-no-hu__cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-no-hu__call-to-action-section .page-no-hu__section-title {
  color: var(--gold, #F3C54D);
  margin-bottom: 25px;
}

.page-no-hu__call-to-action-section .page-no-hu__text-block {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #FFF1E8;
}

/* General image responsive styles */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* General container responsiveness */
.page-no-hu__section,
.page-no-hu__card,
.page-no-hu__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
}

/* Counter for guide steps */
.page-no-hu__guide-steps {
  counter-reset: step-counter;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
  .page-no-hu {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-no-hu__section-title {
    font-size: 2.2em;
    margin-bottom: 30px;
  }

  .page-no-hu__text-block {
    font-size: 1em;
  }

  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Small top padding, body handles header offset */
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container {
    flex-direction: column;
    padding: 20px 15px;
  }

  .page-no-hu__hero-content {
    flex: 1 1 100%;
    text-align: center;
  }

  .page-no-hu__hero-title {
    font-size: clamp(2em, 8vw, 2.8em);
  }

  .page-no-hu__hero-description {
    font-size: 1em;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px; /* Add padding to container */
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__btn-play,
  .page-no-hu__btn-view-promo {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-no-hu__hero-image {
    flex: 1 1 100%;
    margin-top: 30px;
  }

  .page-no-hu__hero-side-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Intro Section */
  .page-no-hu__intro-section,
  .page-no-hu__benefits-section,
  .page-no-hu__popular-games-section,
  .page-no-hu__guide-section,
  .page-no-hu__promo-section,
  .page-no-hu__faq-section,
  .page-no-hu__call-to-action-section {
    padding: 40px 0;
  }

  .page-no-hu__container {
    padding: 20px 15px;
  }

  /* Module 1: Benefits Section (three columns with circular images) */
  .page-no-hu__benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__icon-box-media {
    width: 150px; /* Maintain square aspect ratio */
    height: 150px;
    border-width: 3px;
    box-shadow: 0 0 0 6px rgba(243, 197, 77, 0.2);
  }

  .page-no-hu__icon-box-title {
    font-size: 1.5em;
  }

  /* Popular Games Section */
  .page-no-hu__game-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__game-card-image {
    height: 180px;
  }

  /* Guide Section */
  .page-no-hu__guide-content {
    flex-direction: column;
    gap: 30px;
  }

  .page-no-hu__guide-text {
    flex: 1 1 100%;
  }

  .page-no-hu__guide-steps li {
    padding: 20px;
  }

  .page-no-hu__guide-step-title {
    font-size: 1.2em;
  }

  .page-no-hu__guide-image {
    flex: 1 1 100%;
    margin-top: 20px;
  }

  .page-no-hu__guide-main-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Promotions Section */
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}