/* style/no-hu.css */
.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-no-hu__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-no-hu__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-no-hu__section-subtitle {
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
}

.page-no-hu__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
}

.page-no-hu__btn--primary {
  background-color: #FFD700;
  color: #0A2463;
  border: 2px solid #FFD700;
}

.page-no-hu__btn--primary:hover {
  background-color: #e6c200;
  border-color: #e6c200;
  color: #0A2463;
}

.page-no-hu__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-no-hu__btn--secondary:hover {
  background-color: #FFD700;
  color: #0A2463;
}

.page-no-hu__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-no-hu__btn--large {
  padding: 15px 35px;
  font-size: 1.2em;
}

/* Hero Section */
.page-no-hu__hero {
  background: linear-gradient(135deg, #0A2463 0%, #204a87 100%);
  color: #fff;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}

.page-no-hu__hero-content {
  max-width: 600px;
  padding: 0 20px;
}

.page-no-hu__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #FFD700;
}

.page-no-hu__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-no-hu__hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.page-no-hu__hero-image-wrapper {
  max-width: 500px;
  padding: 0 20px;
}

.page-no-hu__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Introduction Section */
.page-no-hu__introduction {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-no-hu__intro-text {
  flex: 1;
  min-width: 300px;
}

.page-no-hu__intro-text p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
}

.page-no-hu__intro-text ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-no-hu__intro-text ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.1em;
  color: #444;
}

.page-no-hu__intro-text ul li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-no-hu__intro-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Game Types Section */
.page-no-hu__game-types {
  padding: 60px 0;
  background-color: #f2f4f6;
}

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

.page-no-hu__game-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

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

.page-no-hu__game-card-title {
  font-size: 1.8em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-no-hu__game-card-description {
  color: #666;
  margin-bottom: 20px;
}

/* How to Play Section */
.page-no-hu__how-to-play {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-no-hu__step-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  border-top: 5px solid #0A2463;
}

.page-no-hu__step-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  background-color: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-no-hu__step-icon img {
  width: 40px;
  height: 40px;
}

.page-no-hu__step-title {
  font-size: 1.5em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-no-hu__step-description {
  color: #666;
  margin-bottom: 20px;
}

/* Tips & Strategy Section */
.page-no-hu__tips-strategy {
  padding: 60px 0;
  background-color: #f2f4f6;
}

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

.page-no-hu__tip-item {
  background-color: #fff;
  border-left: 5px solid #FFD700;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-no-hu__tip-title {
  font-size: 1.4em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-no-hu__tip-item p {
  color: #555;
}

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

/* Promotions Section */
.page-no-hu__promotions {
  padding: 60px 0;
  background-color: #fff;
}

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

.page-no-hu__promo-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
}

.page-no-hu__promo-card:hover {
  transform: translateY(-5px);
}

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

.page-no-hu__promo-card-title {
  font-size: 1.6em;
  color: #0A2463;
  margin-bottom: 10px;
}

.page-no-hu__promo-card p {
  color: #666;
  margin-bottom: 20px;
}

/* Mobile App Section */
.page-no-hu__mobile-app {
  padding: 60px 0;
  background: linear-gradient(90deg, #0A2463, #204a87);
  color: #fff;
}

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

.page-no-hu__app-text {
  flex: 1;
  min-width: 300px;
}

.page-no-hu__app-text p {
  font-size: 1.1em;
  margin-bottom: 15px;
  opacity: 0.9;
}

.page-no-hu__app-text ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.page-no-hu__app-text ul li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
  font-size: 1.1em;
  opacity: 0.9;
}

.page-no-hu__app-text ul li::before {
  content: '★';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

.page-no-hu__app-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.page-no-hu__faq {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.page-no-hu__faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-no-hu__faq-item {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

.page-no-hu__faq-question {
  font-size: 1.3em;
  color: #0A2463;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-no-hu__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-no-hu__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-no-hu__faq-answer {
  color: #555;
  font-size: 1.05em;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.page-no-hu__faq-answer.show {
  max-height: 200px; /* Adjust as needed */
  margin-top: 10px;
}

/* Final CTA */
.page-no-hu__cta-final {
  padding: 80px 0;
  background: linear-gradient(45deg, #0A2463, #3a5c9b);
  color: #fff;
  text-align: center;
}

.page-no-hu__cta-final-content {
  max-width: 800px;
}

.page-no-hu__cta-final-title {
  font-size: 3em;
  margin-bottom: 20px;
  color: #FFD700;
}

.page-no-hu__cta-final-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-no-hu__hero-title {
    font-size: 2.8em;
  }
  .page-no-hu__hero-description {
    font-size: 1.1em;
  }
  .page-no-hu__hero, .page-no-hu__intro-grid, .page-no-hu__app-content {
    flex-direction: column;
    text-align: center;
  }
  .page-no-hu__hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .page-no-hu__btn--secondary {
    margin-left: 0;
  }
  .page-no-hu__intro-image-wrapper, .page-no-hu__app-image-wrapper {
    order: -1; /* Image above text on mobile */
  }
  .page-no-hu__section-title {
    font-size: 2em;
  }
  .page-no-hu__cta-final-title {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero {
    padding: 60px 0;
  }
  .page-no-hu__hero-title {
    font-size: 2.2em;
  }
  .page-no-hu__hero-description {
    font-size: 1em;
  }
  .page-no-hu__btn {
    width: 100%;
    max-width: 250px;
  }
  .page-no-hu__section-title {
    font-size: 1.8em;
  }
  .page-no-hu__section-subtitle {
    font-size: 1em;
  }
  .page-no-hu__game-card-title, .page-no-hu__step-title, .page-no-hu__tip-title, .page-no-hu__promo-card-title {
    font-size: 1.3em;
  }
  .page-no-hu__cta-final-title {
    font-size: 2em;
  }
  .page-no-hu__cta-final-description {
    font-size: 1.1em;
  }
}