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

.page-n-h .highlight {
  color: #000080; /* Dark blue for keyword emphasis */
  font-weight: bold;
}

.page-n-h__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
  color: #000080;
  padding: 60px 20px;
  text-align: center;
  gap: 30px;
  border-bottom: 5px solid #000080;
}

.page-n-h__hero-content {
  max-width: 900px;
}

.page-n-h__hero-title {
  font-size: 2.8em;
  margin-bottom: 15px;
  color: #000080;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-n-h__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  color: #333;
}

.page-n-h__hero-image-wrapper {
  max-width: 600px;
  width: 100%;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-n-h__hero-image {
  width: 100%;
  height: auto;
  display: block;
}

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

.page-n-h__btn--primary {
  background-color: #000080;
  color: #FFD700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-n-h__btn--primary:hover {
  background-color: #000066;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-n-h__btn--secondary {
  background-color: #FFD700;
  color: #000080;
  border: 2px solid #000080;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-n-h__btn--secondary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

.page-n-h__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.page-n-h__section--dark {
  background-color: #000080;
  color: #f9f9f9;
}

.page-n-h__section--dark .page-n-h__section-title,
.page-n-h__section--dark .page-n-h__feature-title {
  color: #FFD700;
}

.page-n-h__section--dark .page-n-h__feature-card p {
  color: #ccc;
}

.page-n-h__section-title {
  font-size: 2.2em;
  margin-bottom: 40px;
  color: #000080;
  position: relative;
  padding-bottom: 10px;
}

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

.page-n-h__section--dark .page-n-h__section-title::after {
  background-color: #FFD700;
}

.page-n-h__section-intro {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-n-h__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-n-h__grid-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.page-n-h__grid-item:hover {
  transform: translateY(-5px);
}

.page-n-h__grid-title {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 15px;
}

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

.page-n-h__feature-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-n-h__feature-card:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.page-n-h__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.page-n-h__feature-title {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: #FFD700;
}

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

.page-n-h__game-category {
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.page-n-h__game-category:hover {
  transform: translateY(-5px);
}

.page-n-h__category-image {
  width: 100%;
  max-width: 250px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-n-h__category-title {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 10px;
}

.page-n-h__action-text {
  font-size: 1.1em;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-n-h__list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-n-h__list li {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  transition: background-color 0.3s ease;
}

.page-n-h__list li:hover {
  background-color: #f0f8ff;
}

.page-n-h__list-title {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 10px;
}

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

.page-n-h__promo-card {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-n-h__promo-image {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.page-n-h__promo-title {
  font-size: 1.4em;
  color: #FFD700;
  margin-bottom: 10px;
}

.page-n-h__promo-card p {
  color: #ccc;
}

.page-n-h__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: left;
}

.page-n-h__step-card {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  padding-top: 80px; /* Space for number */
}

.page-n-h__step-number {
  position: absolute;
  top: 20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background-color: #FFD700;
  color: #000080;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-n-h__step-title {
  font-size: 1.5em;
  color: #000080;
  margin-bottom: 15px;
}

.page-n-h__link {
  color: #000080;
  text-decoration: underline;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-n-h__link:hover {
  color: #FFD700;
}

.page-n-h__faq-section {
  text-align: left;
}

.page-n-h__faq-item {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

.page-n-h__faq-question {
  font-size: 1.4em;
  color: #000080;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-n-h__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  color: #FFD700;
}

.page-n-h__faq-question.active::after {
  content: '-';
}

.page-n-h__faq-answer {
  font-size: 1em;
  color: #555;
  display: none;
  padding-top: 10px;
}

.page-n-h__faq-answer.active {
  display: block;
}

.page-n-h__cta-final {
  background-color: #FFD700;
  color: #000080;
  padding: 80px 20px;
  text-align: center;
  border-top: 5px solid #000080;
}

.page-n-h__cta-title {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #000080;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.page-n-h__cta-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-n-h__hero {
    flex-direction: column;
  }
  .page-n-h__hero-title {
    font-size: 2.2em;
  }
  .page-n-h__section-title {
    font-size: 2em;
  }
  .page-n-h__grid,
  .page-n-h__features-grid,
  .page-n-h__game-categories,
  .page-n-h__promo-grid,
  .page-n-h__steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-n-h__hero {
    padding: 40px 15px;
  }
  .page-n-h__hero-title {
    font-size: 1.8em;
  }
  .page-n-h__hero-description {
    font-size: 1em;
  }
  .page-n-h__section {
    padding: 40px 15px;
  }
  .page-n-h__section-title {
    font-size: 1.8em;
  }
  .page-n-h__grid-title,
  .page-n-h__feature-title,
  .page-n-h__category-title,
  .page-n-h__list-title,
  .page-n-h__promo-title,
  .page-n-h__step-title,
  .page-n-h__faq-question {
    font-size: 1.2em;
  }
  .page-n-h__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-n-h__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-n-h__cta-title {
    font-size: 2em;
  }
  .page-n-h__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-n-h__hero-title {
    font-size: 1.5em;
  }
  .page-n-h__section-title {
    font-size: 1.5em;
  }
  .page-n-h__grid,
  .page-n-h__features-grid,
  .page-n-h__game-categories,
  .page-n-h__promo-grid,
  .page-n-h__steps-grid {
    grid-template-columns: 1fr;
  }
  .page-n-h__btn {
    width: 100%;
    margin-bottom: 15px;
  }
  .page-n-h__cta-title {
    font-size: 1.8em;
  }
}