/* 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__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  cursor: pointer;
  font-size: 1rem;
}

.page-no-hu__btn--primary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
}

.page-no-hu__btn--primary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-no-hu__btn--secondary {
  background-color: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

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

.page-no-hu__btn--outline {
  background-color: transparent;
  color: #28a745;
  border: 2px solid #28a745;
}

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

.page-no-hu__btn--small {
  padding: 8px 15px;
  font-size: 0.9rem;
  border-radius: 5px;
}

.page-no-hu__btn--large {
  padding: 15px 30px;
  font-size: 1.1rem;
  border-radius: 10px;
}

.page-no-hu__btn--full-width {
  display: block;
  width: 100%;
  margin-top: 20px;
}

.page-no-hu__section-title {
  font-size: 2.5rem;
  color: #007bff;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-no-hu__sub-title {
  font-size: 1.8rem;
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 15px;
}

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

/* Hero Section */
.page-no-hu__hero {
  background: linear-gradient(135deg, #007bff, #28a745);
  padding: 100px 0;
  color: #ffffff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-no-hu__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-no-hu__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-no-hu__hero-title {
  font-size: 3.8rem;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-no-hu__hero-actions .page-no-hu__btn {
  margin: 0 10px;
}

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

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

.page-no-hu__text-content {
  flex: 1;
}

.page-no-hu__image-wrapper {
  flex: 1;
  text-align: center;
}

.page-no-hu__image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-no-hu__list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.page-no-hu__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 30px;
  font-size: 1.05rem;
}

.page-no-hu__list li::before {
  content: '✔';
  color: #28a745;
  position: absolute;
  left: 0;
  font-weight: bold;
}

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

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

.page-no-hu__card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-no-hu__card-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  display: inline-block;
}

.page-no-hu__card-title {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.page-no-hu__card-text {
  color: #666;
  font-size: 1rem;
}

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

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

.page-no-hu__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
}

.page-no-hu__image-left {
  flex: 1;
  text-align: center;
}

.page-no-hu__steps-content {
  flex: 1;
}

.page-no-hu__steps-list {
  list-style: none;
  padding-left: 0;
}

.page-no-hu__steps-list li {
  margin-bottom: 20px;
  font-size: 1.1rem;
  position: relative;
  padding-left: 40px;
}

.page-no-hu__steps-list li strong {
  color: #007bff;
}

.page-no-hu__steps-list li::before {
  content: attr(data-step);
  counter-increment: step-counter;
  content: counter(step-counter);
  background-color: #28a745;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
  font-size: 1rem;
}

/* Strategies Section */
.page-no-hu__strategies {
  padding: 60px 0;
  background-color: #f1f8ff;
}

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

.page-no-hu__strategy-item {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.page-no-hu__item-title {
  font-size: 1.3rem;
  color: #007bff;
  margin-bottom: 10px;
}

/* Jackpot Highlight Section */
.page-no-hu__jackpot-highlight {
  padding: 60px 0;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
}

.page-no-hu__jackpot-highlight .page-no-hu__section-title {
  color: #ffffff;
}

.page-no-hu__jackpot-highlight .page-no-hu__section-description {
  color: #e0e0e0;
}

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

.page-no-hu__jackpot-image {
  flex: 1;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-no-hu__jackpot-text {
  flex: 1;
}

.page-no-hu__jackpot-text p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #f0f0f0;
}

.page-no-hu__jackpot-text .page-no-hu__btn {
  margin-right: 15px;
}

.page-no-hu__jackpot-text .page-no-hu__btn--secondary {
  color: #ffffff;
  border-color: #ffffff;
}

.page-no-hu__jackpot-text .page-no-hu__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

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

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

.page-no-hu__promo-card {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-align: center;
}

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

.page-no-hu__promo-title {
  font-size: 1.4rem;
  color: #007bff;
  margin-bottom: 10px;
}

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

.page-no-hu__promo-note {
  text-align: center;
  margin-top: 40px;
  font-style: italic;
  color: #777;
}

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

.page-no-hu__accordion {
  max-width: 800px;
  margin: 40px auto 0;
}

.page-no-hu__accordion-item {
  background-color: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  overflow: hidden;
}

.page-no-hu__accordion-header {
  width: 100%;
  background-color: #007bff;
  color: #ffffff;
  padding: 18px 25px;
  border: none;
  text-align: left;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-no-hu__accordion-header:hover {
  background-color: #0056b3;
}

.page-no-hu__accordion-header::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: bold;
}

.page-no-hu__accordion-header.active::after {
  content: '-';
}

.page-no-hu__accordion-content {
  padding: 0 25px;
  background-color: #fefefe;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-no-hu__accordion-content p {
  margin: 15px 0;
  color: #555;
}

.page-no-hu__accordion-content .page-no-hu__btn {
  margin-bottom: 15px;
  margin-top: 10px;
}

/* Final CTA Section */
.page-no-hu__cta-final {
  padding: 80px 0;
  background: linear-gradient(45deg, #28a745, #007bff);
  color: #ffffff;
  text-align: center;
}

.page-no-hu__cta-final .page-no-hu__section-title {
  color: #ffffff;
  font-size: 3rem;
}

.page-no-hu__cta-final .page-no-hu__section-description {
  color: #e0e0e0;
  margin-bottom: 50px;
  font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-no-hu__hero-title {
    font-size: 3rem;
  }
  .page-no-hu__hero-description {
    font-size: 1.1rem;
  }
  .page-no-hu__section-title {
    font-size: 2rem;
  }
  .page-no-hu__content-grid, .page-no-hu__content-wrapper, .page-no-hu__jackpot-content {
    flex-direction: column;
  }
  .page-no-hu__image-wrapper, .page-no-hu__image-left, .page-no-hu__jackpot-image {
    order: -1; /* Image first on mobile */
    margin-bottom: 30px;
  }
  .page-no-hu__jackpot-text .page-no-hu__btn {
    margin-bottom: 15px;
    display: block;
    width: 100%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero {
    padding: 80px 0;
  }
  .page-no-hu__hero-title {
    font-size: 2.5rem;
  }
  .page-no-hu__hero-description {
    font-size: 1rem;
  }
  .page-no-hu__hero-actions .page-no-hu__btn {
    display: block;
    width: 80%;
    margin: 15px auto;
  }
  .page-no-hu__section-title {
    font-size: 1.8rem;
  }
  .page-no-hu__section-description {
    font-size: 1rem;
  }
  .page-no-hu__cta-final .page-no-hu__section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .page-no-hu__hero {
    padding: 60px 0;
  }
  .page-no-hu__hero-title {
    font-size: 2rem;
  }
  .page-no-hu__hero-description {
    font-size: 0.9rem;
  }
  .page-no-hu__hero-actions .page-no-hu__btn {
    width: 90%;
  }
  .page-no-hu__section-title {
    font-size: 1.5rem;
  }
  .page-no-hu__card, .page-no-hu__promo-card {
    padding: 20px;
  }
  .page-no-hu__accordion-header {
    font-size: 1rem;
    padding: 15px 20px;
  }
}