.page-n-h {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #0d1a2b; /* Slightly lighter dark background */
}

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

.page-n-h__highlight {
  color: #FFD700; /* Gold for highlighting brand name */
}

.page-n-h__section-title {
  font-size: 2.8em;
  color: #FFD700; /* Gold for main section titles */
  text-align: center;
  margin-bottom: 40px;
  padding-top: 60px;
  font-weight: bold;
  line-height: 1.2;
}

.page-n-h__section-subtitle {
  font-size: 1.2em;
  text-align: center;
  color: #B0B0B0;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-n-h__hero-section {
  background: linear-gradient(135deg, #1A2E44, #0d1a2b);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-n-h__hero-title {
  font-size: 3.8em;
  color: #FFFFFF;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.1;
}

.page-n-h__hero-description {
  font-size: 1.4em;
  color: #E0E0E0;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

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

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

.page-n-h__btn--primary {
  background-color: #FFD700; /* Gold button */
  color: #1A2E44; /* Dark blue text */
  border: 2px solid #FFD700;
}

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

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

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

/* Intro Section */
.page-n-h__intro-section {
  padding: 80px 0;
  background-color: #1A2E44;
}

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

@media (min-width: 768px) {
  .page-n-h__content-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.page-n-h__text-content p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  color: #B0B0B0;
}

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

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

/* Games Section */
.page-n-h__games-section {
  padding: 80px 0;
  background-color: #0d1a2b;
}

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

.page-n-h__game-card {
  background-color: #1A2E44;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  text-align: center;
  padding-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h__game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.page-n-h__game-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 4px solid #FFD700;
}

.page-n-h__game-card-title {
  font-size: 1.6em;
  color: #FFD700;
  margin: 25px 0 15px;
  font-weight: bold;
}

.page-n-h__game-card-description {
  font-size: 1em;
  color: #B0B0B0;
  padding: 0 20px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.page-n-h__btn--small {
  padding: 10px 25px;
  font-size: 0.95em;
}

.page-n-h__cta-full-width {
  background-color: #FFD700;
  color: #1A2E44;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-size: 1.3em;
  font-weight: bold;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-n-h__cta-full-width a {
  color: #1A2E44;
  text-decoration: underline;
  margin-left: 8px;
  transition: color 0.3s ease;
}

.page-n-h__cta-full-width a:hover {
  color: #0d1a2b;
}

/* Benefits Section */
.page-n-h__benefits-section {
  padding: 80px 0;
  background-color: #1A2E44;
}

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

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

.page-n-h__benefit-item:hover {
  transform: translateY(-8px);
}

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

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

.page-n-h__benefit-item p {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
}

/* Guide Section */
.page-n-h__guide-section {
  padding: 80px 0;
  background-color: #0d1a2b;
}

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

@media (min-width: 768px) {
  .page-n-h__steps-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .page-n-h__steps-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.page-n-h__steps-list li {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  position: relative;
}

.page-n-h__step-icon {
  width: 50px;
  height: 50px;
  background-color: #FFD700;
  color: #1A2E44;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

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

.page-n-h__steps-list li p {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.page-n-h__btn--inline {
  padding: 10px 20px;
  font-size: 0.9em;
  background-color: #FFD700;
  color: #1A2E44;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.page-n-h__btn--inline:hover {
  background-color: #e6c200;
}

/* Promotions Section */
.page-n-h__promotions-section {
  padding: 80px 0;
  background-color: #1A2E44;
}

.page-n-h__promo-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
  margin-bottom: 50px;
}

@media (min-width: 768px) {
  .page-n-h__promo-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.page-n-h__promo-list li {
  background-color: #0d1a2b;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.1em;
  line-height: 1.6;
  color: #B0B0B0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-n-h__promo-list li strong {
  color: #FFD700;
}

.page-n-h__promo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}

.page-n-h__cta-center {
  text-align: center;
}

/* Tips Section */
.page-n-h__tips-section {
  padding: 80px 0;
  background-color: #0d1a2b;
}

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

.page-n-h__tip-item {
  background-color: #1A2E44;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
}

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

.page-n-h__tip-item p {
  font-size: 1em;
  color: #B0B0B0;
  line-height: 1.6;
}

/* Final CTA Section */
.page-n-h__cta-final-section {
  padding: 100px 0;
  background: linear-gradient(45deg, #1A2E44, #0d1a2b);
  text-align: center;
}

.page-n-h__section-description {
  font-size: 1.3em;
  color: #E0E0E0;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-n-h__hero-title {
    font-size: 3em;
  }
  .page-n-h__hero-description {
    font-size: 1.2em;
  }
  .page-n-h__section-title {
    font-size: 2.2em;
  }
  .page-n-h__section-subtitle {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-n-h__hero-section {
    padding: 80px 0;
  }
  .page-n-h__hero-title {
    font-size: 2.5em;
  }
  .page-n-h__hero-description {
    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__section-subtitle {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-n-h__game-cards-grid, .page-n-h__benefits-grid, .page-n-h__tips-grid {
    grid-template-columns: 1fr;
  }
  .page-n-h__promo-list li {
    flex-direction: column;
    text-align: center;
  }
  .page-n-h__promo-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .page-n-h__hero-title {
    font-size: 2em;
  }
  .page-n-h__hero-description {
    font-size: 1em;
  }
  .page-n-h__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-n-h__section-title {
    font-size: 1.6em;
  }
  .page-n-h__section-subtitle {
    font-size: 0.95em;
  }
  .page-n-h__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
}