/* style/no-hu.css */
.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #F3F8FF; /* Main text color for dark background */
  background-color: var(--card-bg, #08162B); /* Fallback to Deep Navy if var not defined */
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  background-color: var(--card-bg, #08162B);
  color: #F3F8FF;
}

.page-no-hu__hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px 20px;
}

.page-no-hu__hero-content {
  flex: 1;
  min-width: 300px;
}

.page-no-hu__main-title {
  font-size: 3.2em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for main title */
  max-width: 600px;
}

.page-no-hu__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #AFC4E8; /* Secondary text color */
  max-width: 600px;
}

.page-no-hu__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1.05em;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap; /* Prevent text wrapping by default, let word-wrap handle overflow */
  box-sizing: border-box;
  max-width: 100%;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  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, #1144A6 0%, #2B73F6 100%);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-secondary {
  background-color: transparent;
  color: #F2C14E; /* Gold text */
  border: 2px solid #F2C14E;
}

.page-no-hu__btn-secondary:hover {
  background-color: #F2C14E;
  color: #113B7A; /* Deep blue text on gold hover */
  border-color: #F2C14E;
}

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

.page-no-hu__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block; /* Ensure it behaves as a block element for max-width */
}

/* Intro Section (Module 1) */
.page-no-hu__intro-section {
  padding: 80px 0;
  background-color: #10233F; /* Card BG */
  color: #F3F8FF;
}

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

.page-no-hu__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #F2C14E; /* Gold for section titles */
}

.page-no-hu__section-description {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 50px;
  color: #AFC4E8;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__icon-boxes {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-no-hu__icon-box {
  flex: 1 1 300px; /* Allows flexibility but ensures minimum width */
  max-width: 350px;
  text-align: center;
  background-color: #08162B; /* Deep Navy for individual boxes */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border color */
}

.page-no-hu__icon-box-media {
  width: 180px; /* Smaller for desktop */
  height: 180px; /* Smaller for desktop */
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #F2C14E; /* Gold border */
  box-shadow: 0 0 15px rgba(242, 193, 78, 0.4); /* Gold glow */
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.page-no-hu__icon-box-title {
  font-size: 1.5em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #F3F8FF;
}

.page-no-hu__icon-box-text {
  font-size: 1em;
  line-height: 1.5;
  color: #AFC4E8;
}

/* Game Showcase Section */
.page-no-hu__game-showcase-section {
  padding: 80px 0;
  background-color: #08162B; /* Deep Navy */
  color: #F3F8FF;
}

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

.page-no-hu__game-card {
  background-color: #10233F; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84; /* Border color */
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
}

.page-no-hu__game-card-img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-no-hu__game-card-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #F2C14E;
  padding: 0 20px;
}

.page-no-hu__game-card-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #AFC4E8;
  padding: 0 20px;
  flex-grow: 1; /* Pushes button to bottom */
  margin-bottom: 20px;
}

.page-no-hu__btn-play {
  display: inline-block;
  background: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  color: #F3F8FF;
  padding: 10px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
  max-width: calc(100% - 40px); /* Account for padding */
  margin: 0 auto;
}

.page-no-hu__btn-play:hover {
  background: linear-gradient(180deg, #1144A6 0%, #2B73F6 100%);
}

.page-no-hu__view-all-games {
  text-align: center;
}

.page-no-hu__view-all-games .page-no-hu__btn-primary {
  padding: 15px 35px;
  font-size: 1.1em;
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 80px 0;
  background-color: #10233F; /* Card BG */
  color: #F3F8FF;
}

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

.page-no-hu__guide-step {
  text-align: center;
  background-color: #08162B; /* Deep Navy */
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #244D84;
}

.page-no-hu__guide-step-icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  background-color: #F2C14E; /* Gold */
  color: #113B7A; /* Deep blue */
  border-radius: 50%;
  font-size: 2em;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 10px rgba(242, 193, 78, 0.6);
}

.page-no-hu__guide-step-title {
  font-size: 1.4em;
  font-weight: 700;
  margin-bottom: 10px;
  color: #F3F8FF;
}

.page-no-hu__guide-step-text {
  font-size: 0.95em;
  line-height: 1.5;
  color: #AFC4E8;
}

.page-no-hu__guide-image {
  text-align: center;
}

.page-no-hu__guide-main-img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 auto;
}

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 80px 0;
  background-color: #08162B; /* Deep Navy */
  color: #F3F8FF;
}

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

.page-no-hu__faq-item {
  background-color: #10233F; /* Card BG */
  border: 1px solid #244D84;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15em;
  font-weight: 600;
  color: #F3F8FF;
  cursor: pointer;
  background-color: #113B7A; /* Primary color */
  transition: background-color 0.3s ease;
  list-style: none; /* Hide default details marker */
}

.page-no-hu__faq-question::-webkit-details-marker { /* Hide default marker for webkit */
  display: none;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
  background-color: #1D5FD1; /* Auxiliary color when open */
}

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

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #F2C14E; /* Gold */
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  content: '−'; /* Change to minus when open */
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #AFC4E8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

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

.page-no-hu__faq-answer p {
  margin-bottom: 0; /* Remove default paragraph margin */
  color: #AFC4E8; /* Ensure paragraph text color is correct */
}

/* Promo CTA Section */
.page-no-hu__promo-cta-section {
  padding: 80px 0;
  text-align: center;
  background-color: #113B7A; /* Primary color */
  color: #F3F8FF;
}

.page-no-hu__promo-cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-no-hu__promo-cta-section .page-no-hu__section-title {
  color: #F2C14E; /* Gold title */
  margin-bottom: 25px;
}

.page-no-hu__promo-cta-section .page-no-hu__section-description {
  color: #AFC4E8;
  margin-bottom: 40px;
}

.page-no-hu__btn-large {
  padding: 16px 40px;
  font-size: 1.2em;
  border-radius: 10px;
}

/* General image styling for content area */
.page-no-hu img:not(.page-no-hu__icon-box-media img) {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__main-title {
    font-size: 2.8em;
  }
  .page-no-hu__section-title {
    font-size: 2.2em;
  }
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
  }
  .page-no-hu__hero-content {
    order: 2; /* Content below image on tablets */
  }
  .page-no-hu__hero-image {
    order: 1; /* Image above content on tablets */
  }
  .page-no-hu__icon-box-media {
    width: 160px;
    height: 160px;
  }
  .page-no-hu__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Ensure minimal top padding */
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container {
    padding: 30px 15px;
    gap: 30px;
  }

  .page-no-hu__main-title {
    font-size: 2.2em;
    margin-bottom: 15px;
    max-width: 100%;
  }

  .page-no-hu__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
    max-width: 100%;
  }

  .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 {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-no-hu__hero-image {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0 15px;
  }

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

  /* Intro Section */
  .page-no-hu__intro-section {
    padding: 50px 0;
  }

  .page-no-hu__content-area {
    padding: 0 15px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

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

  .page-no-hu__icon-boxes {
    flex-direction: column;
    gap: 20px;
  }

  .page-no-hu__icon-box {
    max-width: 100%;
    flex: 1 1 100%;
    padding: 25px;
  }

  /* Module 1 circular images */
  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
    border-width: 3px;
  }
  .page-no-hu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Game Showcase Section */
  .page-no-hu__game-showcase-section {
    padding: 50px 0;
  }

  .page-no-hu__game-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .page-no-hu__game-card-img {
    
  }

  .page-no-hu__btn-play {
    max-width: calc(100% - 40px) !important;
    width: calc(100% - 40px) !important;
    padding: 10px 15px;
    font-size: 0.95em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-no-hu__view-all-games .page-no-hu__btn-primary {
    max-width: calc(100% - 30px) !important;
    width: calc(100% - 30px) !important;
    padding: 12px 25px;
    font-size: 1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* Guide Section */
  .page-no-hu__guide-section {
    padding: 50px 0;
  }

  .page-no-hu__guide-steps {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .page-no-hu__guide-step {
    padding: 25px 15px;
  }

  .page-no-hu__guide-step-icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 1.8em;
    margin-bottom: 15px;
  }

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

  /* FAQ Section */
  .page-no-hu__faq-section {
    padding: 50px 0;
  }

  .page-no-hu__faq-question {
    padding: 15px 20px;
    font-size: 1em;
  }

  .page-no-hu__faq-toggle {
    font-size: 1.3em;
  }

  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
  }

  .page-no-hu__faq-item[open] .page-no-hu__faq-answer {
    padding-top: 10px;
  }

  /* Promo CTA Section */
  .page-no-hu__promo-cta-section {
    padding: 50px 0;
  }

  .page-no-hu__promo-cta-section .page-no-hu__section-title {
    font-size: 2em;
    margin-bottom: 20px;
  }

  .page-no-hu__promo-cta-section .page-no-hu__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-no-hu__btn-large {
    max-width: calc(100% - 30px) !important;
    width: calc(100% - 30px) !important;
    padding: 14px 25px;
    font-size: 1.1em;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  /* General image styling for content area */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    box-sizing: border-box; /* Ensure padding/border is included in width */
  }
}