/* style/no-hu.css */

:root {
  --page-primary-color: #017439;
  --page-secondary-color: #FFFFFF;
  --page-text-dark: #333333;
  --page-text-light: #ffffff;
  --page-register-color: #C30808;
  --page-login-color: #C30808;
  --page-button-text-color: #FFFF00;
  --page-background-color: #FFFFFF;
}

.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: var(--page-text-dark); /* Default text color for light body background */
  background-color: var(--page-background-color);
}

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

.page-no-hu__section-title {
  font-size: 2.5rem;
  color: var(--page-primary-color);
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

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

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, assuming body has header offset */
  padding-bottom: 60px;
  background-color: var(--page-background-color);
}

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

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

.page-no-hu__hero-title {
  font-size: clamp(2rem, 4vw, 3.2rem); /* Use clamp for H1 font size */
  color: var(--page-primary-color);
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-no-hu__hero-description {
  font-size: 1.2rem;
  color: var(--page-text-dark);
  margin-bottom: 30px;
}

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

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

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

/* Intro Section (Module 1) */
.page-no-hu__intro-section {
  padding: 80px 0;
  background-color: var(--page-primary-color); /* Dark background */
  color: var(--page-text-light);
}

.page-no-hu__intro-section .page-no-hu__section-title,
.page-no-hu__intro-section .page-no-hu__section-description {
  color: var(--page-text-light);
}

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

.page-no-hu__icon-box {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-no-hu__icon-box-media {
  width: 160px;
  height: 160px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--page-secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.page-no-hu__icon-box-title {
  font-size: 1.5rem;
  color: var(--page-text-light);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu__icon-box-text {
  font-size: 1rem;
  color: var(--page-text-light);
}

/* Game Showcase Section */
.page-no-hu__game-showcase-section {
  padding: 80px 0;
  background-color: var(--page-background-color);
}

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

.page-no-hu__game-card {
  background-color: var(--page-secondary-color);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

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

.page-no-hu__game-card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.page-no-hu__game-card-title {
  font-size: 1.4rem;
  color: var(--page-primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-no-hu__game-card-title a {
  color: var(--page-primary-color);
  text-decoration: none;
}

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

.page-no-hu__game-card-text {
  font-size: 0.95rem;
  color: var(--page-text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 80px 0;
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
}

.page-no-hu__guide-section .page-no-hu__section-title {
  color: var(--page-text-light);
}

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

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

.page-no-hu__guide-text p {
  margin-bottom: 20px;
  font-size: 1.1rem;
  color: var(--page-text-light);
}

.page-no-hu__guide-list {
  list-style-type: decimal;
  padding-left: 25px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  color: var(--page-text-light);
}

.page-no-hu__guide-list li {
  margin-bottom: 15px;
  line-height: 1.5;
}

.page-no-hu__guide-list li strong {
  color: var(--page-secondary-color);
}

.page-no-hu__guide-list li a {
  color: var(--page-button-text-color);
  text-decoration: underline;
}

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

.page-no-hu__guide-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Why FB88 Section */
.page-no-hu__why-fb88-section {
  padding: 80px 0;
  background-color: var(--page-background-color);
}

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

.page-no-hu__why-fb88-item {
  background-color: var(--page-secondary-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.page-no-hu__why-fb88-item-title {
  font-size: 1.5rem;
  color: var(--page-primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu__why-fb88-item-text {
  font-size: 1rem;
  color: var(--page-text-dark);
}

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 80px 0;
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
}

.page-no-hu__faq-section .page-no-hu__section-title {
  color: var(--page-text-light);
}

.page-no-hu__faq-list {
  flex: 1 1 50%;
  min-width: 300px;
}

.page-no-hu__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  color: var(--page-text-light);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  color: var(--page-text-light);
  list-style: none; /* Hide default marker for details summary */
}

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

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

.page-no-hu__faq-answer {
  padding: 0 25px 18px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--page-text-light);
}

.page-no-hu__faq-answer p {
  margin-bottom: 10px;
}

.page-no-hu__faq-answer a {
  color: var(--page-button-text-color);
  text-decoration: underline;
}

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

.page-no-hu__faq-section .page-no-hu__container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.page-no-hu__faq-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* CTA Section */
.page-no-hu__cta-section {
  padding: 80px 0;
  background-color: var(--page-background-color);
  text-align: center;
}

.page-no-hu__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* General Button Styles */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-small {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background-color: var(--page-register-color); /* Use custom register color */
  color: var(--page-button-text-color);
  border: 2px solid var(--page-register-color);
}

.page-no-hu__btn-primary:hover {
  background-color: #A30606;
  border-color: #A30606;
}

.page-no-hu__btn-secondary {
  background-color: var(--page-login-color); /* Use custom login color */
  color: var(--page-button-text-color);
  border: 2px solid var(--page-login-color);
}

.page-no-hu__btn-secondary:hover {
  background-color: #A30606;
  border-color: #A30606;
}

.page-no-hu__btn-small {
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
  border: 2px solid var(--page-primary-color);
  padding: 8px 15px;
  font-size: 0.9rem;
}

.page-no-hu__btn-small:hover {
  background-color: #005a2c;
  border-color: #005a2c;
}

/* All images responsive base */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Dark background contrast fix */
.page-no-hu__dark-section {
  background-color: var(--page-primary-color);
  color: var(--page-text-light);
}

.page-no-hu__dark-section h1, .page-no-hu__dark-section h2, .page-no-hu__dark-section h3 {
  color: var(--page-text-light);
}

.page-no-hu__dark-section p, .page-no-hu__dark-section li {
  color: var(--page-text-light);
}

/* --- Mobile Responsive Styles (max-width: 768px) --- */
@media (max-width: 768px) {
  .page-no-hu__section-title {
    font-size: 2rem;
  }

  .page-no-hu__section-description {
    font-size: 1rem;
  }

  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container {
    flex-direction: column;
    padding: 40px 16px;
    gap: 30px;
  }

  .page-no-hu__hero-content {
    text-align: center;
  }

  .page-no-hu__hero-title {
    font-size: 2.2rem; /* Adjusted for mobile */
  }

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

  .page-no-hu__hero-cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }

  /* Buttons within hero section (and general) */
  .page-no-hu__hero-cta-buttons .page-no-hu__btn-primary,
  .page-no-hu__hero-cta-buttons .page-no-hu__btn-secondary,
  .page-no-hu__cta-section .page-no-hu__btn-primary,
  .page-no-hu__cta-section .page-no-hu__btn-secondary,
  .page-no-hu__btn-small,
  .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-left: 15px;
    padding-right: 15px;
  }

  /* Intro Section (Module 1) */
  .page-no-hu__intro-section {
    padding: 60px 0;
  }

  .page-no-hu__intro-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__icon-box-media {
    width: 120px; /* Smaller for mobile */
    height: 120px;
    border-width: 2px;
  }

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

  .page-no-hu__icon-box-text {
    font-size: 0.9rem;
  }

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

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

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

  .page-no-hu__game-card-title {
    font-size: 1.2rem;
  }

  .page-no-hu__game-card-text {
    font-size: 0.9rem;
  }

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

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

  .page-no-hu__guide-text p {
    font-size: 1rem;
  }

  .page-no-hu__guide-list {
    font-size: 0.95rem;
    padding-left: 20px;
  }

  /* Why FB88 Section */
  .page-no-hu__why-fb88-section {
    padding: 60px 0;
  }

  .page-no-hu__why-fb88-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .page-no-hu__why-fb88-item-title {
    font-size: 1.3rem;
  }

  .page-no-hu__why-fb88-item-text {
    font-size: 0.9rem;
  }

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

  .page-no-hu__faq-section .page-no-hu__container {
    flex-direction: column;
    gap: 30px;
  }

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

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

  /* CTA Section */
  .page-no-hu__cta-section {
    padding: 60px 0;
  }

  .page-no-hu__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  /* General image and container responsive */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .page-no-hu__container,
  .page-no-hu__hero-section,
  .page-no-hu__intro-section,
  .page-no-hu__game-showcase-section,
  .page-no-hu__guide-section,
  .page-no-hu__why-fb88-section,
  .page-no-hu__faq-section,
  .page-no-hu__cta-section,
  .page-no-hu__icon-box,
  .page-no-hu__game-card,
  .page-no-hu__why-fb88-item,
  .page-no-hu__faq-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
}