.page-n-h {
  font-family: 'Arial', sans-serif;
  color: #e5d4b3; /* Light text color for dark backgrounds */
  background-color: #1A2B4C; /* Main background color */
  line-height: 1.6;
}

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

.page-n-h__hero {
  background: linear-gradient(135deg, #1A2B4C 0%, #0c1a33 100%);
  padding: 100px 0;
  text-align: center;
  color: #FFD700;
  position: relative;
  overflow: hidden;
}

.page-n-h__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Auxiliary color for titles */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  color: #e5d4b3;
}

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

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

.page-n-h__btn--primary {
  background-color: #FFD700; /* Auxiliary color for primary buttons */
  color: #1A2B4C; /* Main color for text on primary buttons */
  border: none;
}

.page-n-h__btn--primary:hover {
  background-color: #e5c000;
  transform: translateY(-2px);
}

.page-n-h__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-n-h__btn--secondary:hover {
  background-color: #FFD700;
  color: #1A2B4C;
  transform: translateY(-2px);
}

.page-n-h__btn--text-link {
  color: #FFD700;
  text-decoration: underline;
  padding: 0;
  font-size: 1em;
  font-weight: normal;
  background: none;
  border: none;
}

.page-n-h__btn--text-link:hover {
  color: #e5c000;
  text-decoration: none;
}

.page-n-h__btn--small {
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
  background-color: #FFD700;
  color: #1A2B4C;
  border: none;
}

.page-n-h__btn--small:hover {
  background-color: #e5c000;
}

.page-n-h__btn--large {
  padding: 18px 35px;
  font-size: 1.2em;
  border-radius: 10px;
}

.page-n-h__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 60px;
}

.page-n-h__section-description {
  font-size: 1.1em;
  color: #e5d4b3;
  text-align: center;
  margin-bottom: 40px;
}

.page-n-h__about-slots {
  padding: 80px 0;
  background-color: #1A2B4C;
}

.page-n-h__grid-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.page-n-h__content-block p {
  margin-bottom: 15px;
  color: #e5d4b3;
}

.page-n-h__image-wrapper {
  text-align: center;
}

.page-n-h__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-n-h__why-choose {
  background-color: #2a3b5c;
  padding: 80px 0;
}

.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-item {
  background-color: #1A2B4C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

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

.page-n-h__feature-item p {
  color: #e5d4b3;
}

.page-n-h__game-gallery {
  padding: 80px 0;
  background-color: #1A2B4C;
}

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

.page-n-h__game-card {
  background-color: #2a3b5c;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  text-align: center;
  padding-bottom: 20px;
}

.page-n-h__game-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}

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

.page-n-h__game-provider {
  color: #e5d4b3;
  font-size: 0.9em;
  margin-bottom: 20px;
}

.page-n-h__view-more {
  text-align: center;
}

.page-n-h__how-to-play {
  background-color: #2a3b5c;
  padding: 80px 0;
}

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

.page-n-h__steps-list li {
  background-color: #1A2B4C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-n-h__step-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-bottom: 15px;
  position: relative;
  padding-left: 40px;
}

.page-n-h__step-title::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #FFD700;
  color: #1A2B4C;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  font-weight: bold;
}

.page-n-h__steps-list p {
  color: #e5d4b3;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-n-h__call-to-action-text {
  text-align: center;
  font-size: 1.2em;
  color: #FFD700;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-n-h__faq {
  padding: 80px 0;
  background-color: #1A2B4C;
}

.page-n-h__accordion {
  max-width: 800px;
  margin: 0 auto;
}

.page-n-h__accordion-item {
  margin-bottom: 15px;
  background-color: #2a3b5c;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

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

.page-n-h__accordion-header:hover {
  background-color: #3b4d6e;
}

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

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

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

.page-n-h__accordion-content.active {
  max-height: 200px; /* Adjust based on expected content length */
  padding: 15px 25px;
}

.page-n-h__accordion-content p {
  color: #e5d4b3;
  margin-bottom: 15px;
}

.page-n-h__cta-bottom {
  background-color: #FFD700;
  padding: 80px 0;
  text-align: center;
  color: #1A2B4C;
}

.page-n-h__cta-title {
  font-size: 2.8em;
  color: #1A2B4C;
  margin-bottom: 20px;
}

.page-n-h__cta-description {
  font-size: 1.3em;
  color: #3b4d6e;
  margin-bottom: 40px;
}

.highlight {
  color: #FFD700; /* Auxiliary color for highlights */
}

.page-n-h__cta-bottom .highlight {
  color: #1A2B4C;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-n-h__hero-title {
    font-size: 2.8em;
  }
  .page-n-h__hero-subtitle {
    font-size: 1.3em;
  }
  .page-n-h__section-title {
    font-size: 2em;
  }
  .page-n-h__grid-two-cols {
    grid-template-columns: 1fr;
  }
  .page-n-h__image-wrapper {
    order: -1; /* Image first on smaller screens */
  }
  .page-n-h__cta-title {
    font-size: 2.2em;
  }
  .page-n-h__cta-description {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-n-h__hero {
    padding: 60px 0;
  }
  .page-n-h__hero-title {
    font-size: 2.2em;
  }
  .page-n-h__hero-subtitle {
    font-size: 1.1em;
  }
  .page-n-h__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-n-h__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-n-h__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }
  .page-n-h__features-grid, .page-n-h__gallery-grid, .page-n-h__steps-list {
    grid-template-columns: 1fr;
  }
  .page-n-h__feature-item, .page-n-h__steps-list li {
    padding: 20px;
  }
  .page-n-h__game-card {
    margin: 0 auto;
    max-width: 300px;
  }
  .page-n-h__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-n-h__accordion-content {
    padding: 10px 20px;
  }
  .page-n-h__cta-title {
    font-size: 1.8em;
  }
  .page-n-h__cta-description {
    font-size: 1em;
  }
}

@media (max-width: 480px) {
  .page-n-h__container {
    padding: 0 15px;
  }
  .page-n-h__hero-title {
    font-size: 1.8em;
  }
  .page-n-h__hero-subtitle {
    font-size: 1em;
  }
  .page-n-h__btn {
    width: 90%;
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-n-h__section-title {
    font-size: 1.5em;
  }
  .page-n-h__feature-title {
    font-size: 1.3em;
  }
  .page-n-h__step-title {
    font-size: 1.4em;
  }
  .page-n-h__cta-title {
    font-size: 1.5em;
  }
  .page-n-h__cta-description {
    font-size: 0.9em;
  }
}