.page-n-h {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
}

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

.page-n-h__hero-section {
  background: linear-gradient(135deg, #0A2463, #3b5998);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.page-n-h__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h__hero-title .highlight {
  color: #E3BA2E;
}

.page-n-h__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.page-n-h__hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-n-h__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  font-size: 1.1em;
  border: none;
  cursor: pointer;
}

.page-n-h__btn--primary {
  background-color: #E3BA2E;
  color: #0A2463;
  box-shadow: 0 4px 15px rgba(227, 186, 46, 0.4);
}

.page-n-h__btn--primary:hover {
  background-color: #f5db9c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(227, 186, 46, 0.6);
}

.page-n-h__btn--secondary {
  background-color: transparent;
  color: #E3BA2E;
  border: 2px solid #E3BA2E;
  box-shadow: 0 4px 15px rgba(227, 186, 46, 0.2);
}

.page-n-h__btn--secondary:hover {
  background-color: #E3BA2E;
  color: #0A2463;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(227, 186, 46, 0.4);
}

.page-n-h__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 30px;
}

.page-n-h__btn--large {
  padding: 18px 35px;
  font-size: 1.3em;
}

.page-n-h__section-title {
  font-size: 2.5em;
  color: #0A2463;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-n-h__section-title .highlight {
  color: #E3BA2E;
}

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

.page-n-h__about-slots, .page-n-h__game-categories, .page-n-h__how-to-play, .page-n-h__tips-strategy, .page-n-h__promotions, .page-n-h__faq, .page-n-h__cta-final {
  padding: 60px 0;
}

.page-n-h__about-slots {
  background-color: #f8f8f8;
}

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

.page-n-h__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-n-h__feature-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-n-h__feature-item h3 {
  color: #0A2463;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-n-h__game-categories {
  background-color: #f0f4f7;
}

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

.page-n-h__category-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h__category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-n-h__category-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-n-h__category-item h3 {
  color: #0A2463;
  font-size: 1.8em;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-n-h__category-item p {
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-n-h__how-to-play {
  background-color: #fff;
}

.page-n-h__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.page-n-h__steps-list li {
  background-color: #f0f4f7;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-n-h__steps-list li h4 {
  color: #0A2463;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-n-h__step-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  object-fit: contain;
}

.page-n-h__steps-list li a {
  color: #0A2463;
  text-decoration: underline;
  font-weight: bold;
}

.page-n-h__steps-list li a:hover {
  color: #E3BA2E;
}

.page-n-h__cta-box {
  background-color: #0A2463;
  color: #fff;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-n-h__cta-box p {
  font-size: 1.4em;
  margin-bottom: 30px;
}

.page-n-h__tips-strategy {
  background-color: #f8f8f8;
}

.page-n-h__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.page-n-h__tips-list li {
  background-color: #fff;
  padding: 20px 30px;
  border-left: 5px solid #E3BA2E;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-n-h__tips-list li strong {
  color: #0A2463;
}

.page-n-h__promotions {
  background-color: #e6edf2;
}

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

.page-n-h__promo-item {
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h__promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-n-h__promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.page-n-h__promo-item h3 {
  color: #0A2463;
  font-size: 1.8em;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-n-h__promo-item p {
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-n-h__faq {
  background-color: #fff;
}

.page-n-h__accordion {
  margin-top: 40px;
}

.page-n-h__accordion-item {
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.page-n-h__accordion-header {
  background-color: #0A2463;
  color: #fff;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-n-h__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  line-height: 1;
  transition: transform 0.3s ease;
}

.page-n-h__accordion-header.active {
  background-color: #1a3a7a;
}

.page-n-h__accordion-header.active::after {
  transform: rotate(45deg);
}

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

.page-n-h__accordion-content.open {
  max-height: 200px; /* Adjust as needed */
  padding: 15px 25px;
}

.page-n-h__accordion-content p {
  margin: 0;
  color: #555;
}

.page-n-h__cta-final {
  background: linear-gradient(135deg, #0A2463, #3b5998);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  border-top-left-radius: 50px;
  border-top-right-radius: 50px;
}

.page-n-h__cta-box--final {
  max-width: 900px;
}

.page-n-h__cta-final .page-n-h__section-title {
  color: #fff;
}

.page-n-h__cta-final .page-n-h__section-title::after {
  background-color: #E3BA2E;
}

.page-n-h__cta-final p {
  font-size: 1.3em;
  margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-n-h__hero-title {
    font-size: 2.5em;
  }

  .page-n-h__hero-description {
    font-size: 1em;
  }

  .page-n-h__hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .page-n-h__btn {
    width: 80%;
    max-width: 300px;
  }

  .page-n-h__section-title {
    font-size: 2em;
  }

  .page-n-h__features-grid, .page-n-h__category-grid, .page-n-h__steps-list, .page-n-h__promo-grid {
    grid-template-columns: 1fr;
  }

  .page-n-h__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }

  .page-n-h__cta-box p {
    font-size: 1.1em;
  }
  
  .page-n-h__cta-final .page-n-h__btn--large {
    font-size: 1.1em;
    padding: 15px 30px;
  }
}

@media (max-width: 480px) {
  .page-n-h__hero-title {
    font-size: 2em;
  }

  .page-n-h__hero-description {
    font-size: 0.9em;
  }

  .page-n-h__btn {
    width: 90%;
  }

  .page-n-h__section-title {
    font-size: 1.8em;
  }

  .page-n-h__features-grid, .page-n-h__category-grid, .page-n-h__steps-list, .page-n-h__promo-grid {
    gap: 20px;
  }

  .page-n-h__feature-item, .page-n-h__category-item, .page-n-h__steps-list li, .page-n-h__promo-item {
    padding: 20px;
  }

  .page-n-h__cta-box p {
    font-size: 1em;
  }
  
  .page-n-h__cta-final .page-n-h__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
}