/* style/no-hu.css */

:root {
  --page-no-hu-primary-color: #113B7A;
  --page-no-hu-secondary-color: #1D5FD1;
  --page-no-hu-text-main: #F3F8FF;
  --page-no-hu-text-secondary: #AFC4E8;
  --page-no-hu-card-bg: #10233F;
  --page-no-hu-button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
  --page-no-hu-border-color: #244D84;
  --page-no-hu-glow-color: #4FA8FF;
  --page-no-hu-gold-color: #F2C14E;
  --page-no-hu-divider-color: #1B3357;
  --page-no-hu-deep-navy: #08162B;
}

.page-no-hu {
  color: var(--page-no-hu-text-main);
  background-color: var(--page-no-hu-deep-navy); /* Inherited from body, but good to define base for contrast */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.page-no-hu__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  box-sizing: border-box;
}

/* HERO Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding as body handles header offset */
  padding-bottom: 60px;
  background-color: var(--page-no-hu-deep-navy);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-no-hu__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  color: var(--page-no-hu-text-main);
}

.page-no-hu__main-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--page-no-hu-gold-color);
  text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-no-hu__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--page-no-hu-text-secondary);
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  text-align: center;
  max-width: 100%;
}

.page-no-hu__btn-primary {
  background: var(--page-no-hu-button-gradient);
  color: var(--page-no-hu-text-main);
  border: none;
  box-shadow: 0 4px 15px rgba(43, 115, 246, 0.4);
}

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

.page-no-hu__btn-secondary {
  background: transparent;
  color: var(--page-no-hu-glow-color);
  border: 2px solid var(--page-no-hu-glow-color);
}

.page-no-hu__btn-secondary:hover {
  background: rgba(79, 168, 255, 0.1);
  transform: translateY(-2px);
}

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

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

/* General Section Styles */
.page-no-hu__section-title {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  color: var(--page-no-hu-gold-color);
  text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

.page-no-hu__section-description {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--page-no-hu-text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Intro Section */
.page-no-hu__intro-section {
  background-color: var(--page-no-hu-deep-navy);
  padding: 60px 0;
}

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

.page-no-hu__feature-item {
  background-color: var(--page-no-hu-card-bg);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-no-hu-border-color);
}

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--page-no-hu-gold-color);
  box-shadow: 0 0 15px var(--page-no-hu-glow-color);
}

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

.page-no-hu__feature-title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--page-no-hu-gold-color);
}

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

/* Game Types Section */
.page-no-hu__game-types-section {
  padding: 60px 0;
  background-color: var(--page-no-hu-deep-navy);
}

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

.page-no-hu__game-card {
  background-color: var(--page-no-hu-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-no-hu-border-color);
  display: flex;
  flex-direction: column;
}

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

.page-no-hu__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-no-hu__card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--page-no-hu-gold-color);
}

.page-no-hu__card-title a {
  color: inherit;
  text-decoration: none;
}

.page-no-hu__card-title a:hover {
  text-decoration: underline;
}

.page-no-hu__card-text {
  font-size: 1rem;
  color: var(--page-no-hu-text-secondary);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-no-hu__card-button {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: var(--page-no-hu-button-gradient);
  color: var(--page-no-hu-text-main);
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  text-align: center;
}

.page-no-hu__card-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(43, 115, 246, 0.4);
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 60px 0;
  background-color: var(--page-no-hu-deep-navy);
}

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

.page-no-hu__guide-item {
  background-color: var(--page-no-hu-card-bg);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-no-hu-border-color);
  display: flex;
  flex-direction: column;
}

.page-no-hu__guide-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-no-hu__guide-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--page-no-hu-gold-color);
}

.page-no-hu__guide-text {
  font-size: 1rem;
  color: var(--page-no-hu-text-secondary);
  margin-bottom: 15px;
  flex-grow: 1;
}

.page-no-hu__guide-link {
  color: var(--page-no-hu-glow-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-no-hu__guide-link:hover {
  text-decoration: underline;
}

/* Tips Section */
.page-no-hu__tips-section {
  padding: 60px 0;
  background-color: var(--page-no-hu-deep-navy);
}

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

.page-no-hu__tip-item {
  background-color: var(--page-no-hu-card-bg);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-no-hu-border-color);
  display: flex;
  flex-direction: column;
}

.page-no-hu__tip-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-no-hu__tip-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--page-no-hu-gold-color);
}

.page-no-hu__tip-text {
  font-size: 1rem;
  color: var(--page-no-hu-text-secondary);
  margin-bottom: 15px;
  flex-grow: 1;
}

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

/* Promo Section */
.page-no-hu__promo-section {
  padding: 60px 0;
  background-color: var(--page-no-hu-deep-navy);
}

.page-no-hu__promo-card {
  background-color: var(--page-no-hu-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  border: 1px solid var(--page-no-hu-border-color);
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu__promo-image {
  flex: 1 1 40%;
  max-width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-no-hu__promo-content {
  flex: 1 1 55%;
  padding: 30px;
}

.page-no-hu__promo-title {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: var(--page-no-hu-gold-color);
}

.page-no-hu__promo-title a {
  color: inherit;
  text-decoration: none;
}

.page-no-hu__promo-title a:hover {
  text-decoration: underline;
}

.page-no-hu__promo-text {
  font-size: 1.05rem;
  color: var(--page-no-hu-text-secondary);
  margin-bottom: 20px;
}

.page-no-hu__promo-details {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
  color: var(--page-no-hu-text-secondary);
}

.page-no-hu__promo-details li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 25px;
}

.page-no-hu__promo-details li::before {
  content: '✔';
  color: var(--page-no-hu-gold-color);
  position: absolute;
  left: 0;
  top: 0;
}

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 60px 0;
  background-color: var(--page-no-hu-deep-navy);
}

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

.page-no-hu__faq-item {
  background-color: var(--page-no-hu-card-bg);
  border: 1px solid var(--page-no-hu-border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--page-no-hu-gold-color);
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.1);
  list-style: none; /* Hide default marker for details */
  transition: background-color 0.3s ease;
}

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

.page-no-hu__faq-question:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.page-no-hu__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  transform: rotate(45deg);
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  color: var(--page-no-hu-text-secondary);
}

/* Contact CTA Section */
.page-no-hu__contact-cta-section {
  padding: 60px 0;
  background-color: var(--page-no-hu-deep-navy);
}

.page-no-hu__dark-section {
  background-color: var(--page-no-hu-primary-color);
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--page-no-hu-border-color);
}

.page-no-hu__dark-section .page-no-hu__section-title {
  color: var(--page-no-hu-text-main);
  text-shadow: none;
  margin-bottom: 15px;
}

.page-no-hu__dark-section .page-no-hu__section-description {
  color: var(--page-no-hu-text-secondary);
  margin-bottom: 30px;
}

.page-no-hu__dark-section .page-no-hu__cta-buttons {
  justify-content: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu__hero-content,
  .page-no-hu__hero-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-no-hu__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-no-hu__promo-card {
    flex-direction: column;
  }

  .page-no-hu__promo-image {
    max-width: 100%;
    flex: none;
  }

  .page-no-hu__promo-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  /* HERO Section (1) */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Small top padding as body handles header offset */
    padding-bottom: 40px;
  }

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

  .page-no-hu__main-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    margin-bottom: 15px;
  }

  .page-no-hu__description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

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

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu a[class*="button"],
  .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: 12px 15px;
  }

  /* Module 1: Three-column circular images (2) */
  .page-no-hu__feature-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__icon-box-media {
    width: 160px;
    height: 160px;
    border-width: 3px;
  }

  /* Game Tabs / Game List (3) - Adapted for game list */
  .page-no-hu__game-list {
    grid-template-columns: 1fr;
    gap: 25px;
  }

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

  .page-no-hu__card-title {
    font-size: 1.3rem;
  }

  .page-no-hu__card-text {
    font-size: 0.95rem;
  }

  /* Tutorial/Promo/Trust/FAQ/Blog/Intro (4) */
  .page-no-hu__container {
    padding: 30px 15px;
  }

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

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

  .page-no-hu__guide-steps,
  .page-no-hu__tips-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__guide-image,
  .page-no-hu__tip-image {
    height: 160px;
  }

  .page-no-hu__promo-card {
    flex-direction: column;
    gap: 20px;
  }

  .page-no-hu__promo-image {
    max-width: 100%;
    flex: none;
  }

  .page-no-hu__promo-content {
    padding: 20px;
  }

  .page-no-hu__promo-title {
    font-size: 1.5rem;
  }

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

  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  .page-no-hu__dark-section {
    padding: 40px 20px;
  }

  /* Generic Images and Containers (5) */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container,
  .page-no-hu__feature-item,
  .page-no-hu__game-card,
  .page-no-hu__guide-item,
  .page-no-hu__tip-item,
  .page-no-hu__promo-card,
  .page-no-hu__faq-item,
  .page-no-hu__dark-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Buttons and Button Containers (6) - Already covered above in HERO section */
  .page-no-hu__cta-buttons {
    flex-wrap: wrap !important;
    flex-direction: column !important; /* Ensures vertical stacking for multiple buttons */
    gap: 10px;
  }
}