/* style/no-hu.css */
.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Text Main */
  background-color: #F5F7FA; /* Background */
}

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

.page-no-hu__section-title {
  font-size: 2.5em;
  color: #E53935; /* Primary color */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-no-hu__section-description {
  font-size: 1.1em;
  color: #333333;
  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, shared.css handles body padding-top */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #F5F7FA 0%, #E0E0E0 100%); /* Light gradient background */
}

.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-image {
  flex: 1 1 45%;
  text-align: center;
  order: 2; /* Image after content on desktop */
}

.page-no-hu__hero-main-img {
  max-width: 600px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-no-hu__hero-content {
  flex: 1 1 50%;
  order: 1; /* Content before image on desktop */
  text-align: left;
}

.page-no-hu__main-title {
  font-size: clamp(2em, 4vw, 3.2em);
  color: #E53935; /* Primary color */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-no-hu__description {
  font-size: 1.15em;
  color: #333333;
  margin-bottom: 30px;
}

.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 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.05em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button custom color */
  color: #ffffff;
  border: none;
}

.page-no-hu__btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.page-no-hu__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #E53935; /* Primary color */
  border: 2px solid #E53935;
}

.page-no-hu__btn-secondary:hover {
  background: #E53935;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Intro Section */
.page-no-hu__intro-section {
  padding: 80px 0;
  background-color: #F5F7FA; /* Background */
}

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

.page-no-hu__feature-item {
  text-align: center;
  padding: 30px;
  border-radius: 12px;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-no-hu__feature-item:hover {
  transform: translateY(-10px);
}

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #FF5A4F; /* Secondary color */
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.page-no-hu__feature-title {
  font-size: 1.6em;
  color: #E53935; /* Primary color */
  margin-bottom: 15px;
}

.page-no-hu__feature-text {
  font-size: 1em;
  color: #333333;
}

/* Game Showcase Section */
.page-no-hu__game-showcase-section {
  padding: 80px 0;
  background-color: #F5F7FA; /* Background */
}

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

.page-no-hu__game-card {
  border-radius: 12px;
  overflow: hidden;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-no-hu__game-card a {
  text-decoration: none;
  color: inherit;
  display: block;
}

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

.page-no-hu__game-title {
  font-size: 1.4em;
  color: #E53935; /* Primary color */
  margin: 15px 15px 5px;
}

.page-no-hu__game-description {
  font-size: 0.95em;
  color: #333333;
  padding: 0 15px 20px;
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 80px 0;
  background-color: #F5F7FA; /* Background */
}

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

.page-no-hu__guide-item {
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.page-no-hu__guide-title {
  font-size: 1.5em;
  color: #E53935; /* Primary color */
  margin-bottom: 10px;
}

.page-no-hu__guide-text {
  font-size: 1em;
  color: #333333;
}

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

/* Tips Section */
.page-no-hu__tips-section {
  padding: 80px 0;
  background-color: #F5F7FA; /* Background */
}

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

.page-no-hu__tip-item {
  padding: 25px;
  border-radius: 12px;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

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

.page-no-hu__tip-title {
  font-size: 1.5em;
  color: #E53935; /* Primary color */
  margin-bottom: 10px;
}

.page-no-hu__tip-text {
  font-size: 1em;
  color: #333333;
}

/* Why Choose Section (Dark Background) */
.page-no-hu__why-choose-section {
  padding: 80px 0;
  background-color: #E53935; /* Primary color for dark background */
  color: #ffffff;
}

.page-no-hu__why-choose-section .page-no-hu__section-title,
.page-no-hu__why-choose-section .page-no-hu__section-description {
  color: #ffffff;
}

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

.page-no-hu__why-choose-item {
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.page-no-hu__why-choose-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__why-choose-title {
  font-size: 1.6em;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-no-hu__why-choose-text {
  font-size: 1em;
  color: #f0f0f0;
}

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 80px 0;
  background-color: #F5F7FA; /* Background */
}

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

.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 10px;
  background: #FFFFFF; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid #E0E0E0; /* Border */
  overflow: hidden;
}

.page-no-hu__faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  font-size: 1.15em;
  font-weight: bold;
  color: #333333;
  cursor: pointer;
  list-style: none; /* Remove default marker */
  outline: none;
}

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

.page-no-hu__faq-question {
  flex-grow: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-no-hu__faq-qtext {
  color: #E53935; /* Primary color */
}

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  font-weight: bold;
  color: #E53935;
  margin-left: 15px;
}

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

.page-no-hu__faq-answer {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #333333;
  border-top: 1px solid #E0E0E0; /* Border */
}

/* Final CTA Section */
.page-no-hu__cta-final-section {
  padding: 80px 0;
  background-color: #F5F7FA; /* Background */
  text-align: center;
}

.page-no-hu__cta-buttons--center {
  justify-content: center;
  margin-top: 40px;
}

/* Footer */
.page-no-hu__footer {
  padding: 30px 0;
  background-color: #333333; /* Dark background for footer */
  color: #ffffff;
  text-align: center;
  font-size: 0.9em;
}

.page-no-hu__copyright {
  margin: 0;
  color: #f0f0f0;
}

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

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

  .page-no-hu__hero-image {
    order: 1;
    margin-bottom: 30px;
  }

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

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

  .page-no-hu__feature-grid,
  .page-no-hu__game-grid,
  .page-no-hu__guide-steps,
  .page-no-hu__tips-grid,
  .page-no-hu__why-choose-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }
  .page-no-hu__hero-container {
    padding: 20px 15px;
    gap: 20px;
  }
}