/* style/no-hu.css */

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

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

.page-no-hu__section-title {
  font-size: 2.5em;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
}

.page-no-hu__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
}

.page-no-hu__text-block {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.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;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-no-hu__btn-primary {
  background: var(--button-register);
  color: var(--font-login-register);
  border-color: var(--button-register);
}

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

.page-no-hu__btn-secondary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.page-no-hu__btn-secondary:hover {
  background: var(--primary-color);
  color: var(--secondary-color);
}

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

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

.page-no-hu__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-no-hu__main-title {
  font-size: clamp(2.5em, 5vw, 3.8em);
  font-weight: 900;
  line-height: 1.2;
  color: var(--text-light);
}

.page-no-hu__hero-description {
  font-size: 1.2em;
  line-height: 1.6;
  color: var(--text-light);
}

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

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

.page-no-hu__hero-side-image {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
}

/* Introduction Section */
.page-no-hu__intro-section {
  padding: 60px 0;
  background: var(--background-light);
}

/* Features Section */
.page-no-hu__features-section {
  padding: 60px 0;
  background: var(--background-light);
}

.page-no-hu__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  text-align: center;
}

.page-no-hu__feature-item {
  background: var(--secondary-color);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.page-no-hu__icon-box-media {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 15px;
  border: 4px solid var(--primary-color);
}

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

.page-no-hu__feature-title {
  font-size: 1.5em;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-no-hu__feature-description {
  font-size: 1em;
  color: var(--text-dark);
  text-align: justify;
}

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

.page-no-hu__guide-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

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

.page-no-hu__guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-step;
}

.page-no-hu__guide-item {
  margin-bottom: 25px;
  position: relative;
  padding-left: 45px;
}

.page-no-hu__guide-item::before {
  counter-increment: guide-step;
  content: counter(guide-step);
  position: absolute;
  left: 0;
  top: 0;
  background: var(--primary-color);
  color: var(--text-light);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.1em;
}

.page-no-hu__guide-step-title {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 5px;
}

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

.page-no-hu__guide-visual {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: block;
  margin: 0 auto;
}

.page-no-hu__guide-cta {
  margin-top: 30px;
}

/* Games List Section */
.page-no-hu__games-list-section {
  padding: 60px 0;
  background: var(--background-light);
}

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

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

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

.page-no-hu__game-trial-frame {
  border: none;
}

.page-no-hu__game-card-title {
  font-size: 1.4em;
  font-weight: bold;
  color: var(--primary-color);
  padding: 15px 20px 5px;
}

.page-no-hu__game-card-description {
  font-size: 0.95em;
  color: var(--text-dark);
  padding: 0 20px 15px;
  flex-grow: 1;
}

.page-no-hu__game-card-btn {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
}

/* Promotion Section */
.page-no-hu__promo-section {
  padding: 60px 0;
  background: var(--background-dark);
  color: var(--text-light);
}

.page-no-hu__promo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

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

.page-no-hu__promo-content .page-no-hu__section-title {
  color: var(--text-light);
  text-align: left;
}

.page-no-hu__promo-content .page-no-hu__text-block {
  color: var(--text-light);
}

.page-no-hu__promo-list {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-no-hu__promo-list li {
  margin-bottom: 10px;
}

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

.page-no-hu__promo-visual {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
}

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

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

.page-no-hu__faq-item {
  background: var(--secondary-color);
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  cursor: pointer;
  background: var(--background-light);
  border-bottom: 1px solid transparent; /* default */
  list-style: none; /* Remove default marker */
}

.page-no-hu__faq-item[open] > .page-no-hu__faq-question {
  border-bottom-color: #e0e0e0;
}

.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;
  margin-left: 15px;
  color: var(--primary-color);
}

.page-no-hu__faq-answer {
  padding: 15px 25px 20px;
  font-size: 1em;
  color: var(--text-dark);
  line-height: 1.6;
}

/* Call to Action Section (Bottom) */
.page-no-hu__cta-section {
  padding: 60px 0;
  background: var(--background-dark);
  color: var(--text-light);
  text-align: center;
}

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

.page-no-hu__cta-section .page-no-hu__text-block {
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto 30px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-container,
  .page-no-hu__guide-container,
  .page-no-hu__promo-container {
    flex-direction: column-reverse; /* Image above content for hero/promo */
    text-align: center;
  }

  .page-no-hu__hero-image,
  .page-no-hu__guide-image,
  .page-no-hu__promo-image {
    order: -1; /* Image comes first visually */
  }

  .page-no-hu__hero-content,
  .page-no-hu__guide-content,
  .page-no-hu__promo-content {
    align-items: center;
  }

  .page-no-hu__hero-content .page-no-hu__main-title,
  .page-no-hu__hero-content .page-no-hu__hero-description {
    text-align: center;
  }

  .page-no-hu__promo-content .page-no-hu__section-title {
    text-align: center;
  }
}

@media (max-width: 768px) {
  /* General content area padding for mobile */
  .page-no-hu__content-area,
  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

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

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

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

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

  .page-no-hu__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    width: 100% !important;
  }

  .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;
    padding: 12px 20px !important;
    font-size: 1em !important;
  }

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

  /* Section Titles */
  .page-no-hu__section-title {
    font-size: 1.8em !important;
    margin-bottom: 30px !important;
  }

  /* Features Section (Module 1) */
  .page-no-hu__features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

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

  /* Guide Section */
  .page-no-hu__guide-container {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .page-no-hu__guide-item {
    padding-left: 40px !important;
    margin-bottom: 20px !important;
  }

  .page-no-hu__guide-item::before {
    width: 30px !important;
    height: 30px !important;
    font-size: 1em !important;
  }

  .page-no-hu__guide-step-title {
    font-size: 1.1em !important;
  }

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

  /* Games List Section */
  .page-no-hu__game-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-no-hu__game-card-image,
  .page-no-hu__game-trial-frame {
    height: 200px !important; /* Adjust height for mobile */
  }

  .page-no-hu__game-card-btn {
    width: calc(100% - 40px) !important;
  }

  /* Promotion Section */
  .page-no-hu__promo-container {
    flex-direction: column !important;
    gap: 20px !important;
  }

  .page-no-hu__promo-content .page-no-hu__section-title {
    text-align: center !important;
  }

  .page-no-hu__promo-visual {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* FAQ Section */
  .page-no-hu__faq-question {
    padding: 15px 20px !important;
    font-size: 1.1em !important;
  }

  .page-no-hu__faq-answer {
    padding: 10px 20px 15px !important;
    font-size: 0.95em !important;
  }

  /* Bottom CTA Section */
  .page-no-hu__cta-section .page-no-hu__text-block {
    padding: 0 15px !important;
  }

  .page-no-hu__cta-buttons--bottom {
    flex-direction: column !important;
    gap: 15px !important;
  }

  /* Universal image responsive */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
}