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

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

.page-n-h section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-n-h h1, .page-n-h h2, .page-n-h h3 {
  color: #007bff;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-n-h h1 {
  font-size: 3em;
  color: #ffffff;
  margin-bottom: 20px;
}

.page-n-h h2 {
  font-size: 2.5em;
  color: #007bff;
}

.page-n-h h3 {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-n-h p {
  margin-bottom: 15px;
  text-align: justify;
}

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

/* Hero Section */
.page-n-h .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker blue gradient for background */
  color: #ffffff;
}

.page-n-h .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-n-h .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-n-h .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-n-h .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
}

.page-n-h .hero-content h1 {
  color: #ffffff;
  font-size: 3.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-n-h .hero-content p {
  font-size: 1.3em;
  color: #e0e0e0;
  margin-bottom: 30px;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-n-h .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #ffc107; /* Auxiliary color */
  color: #212529; /* Dark text for contrast */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border: none;
}

.page-n-h .cta-button:hover {
  background: #e0a800; /* Darker amber on hover */
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Section Intro */
.page-n-h .section-intro {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

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

.page-n-h .feature-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  border-left: 5px solid #007bff;
}

.page-n-h .feature-item h3 {
  color: #007bff;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-n-h .feature-item p {
  text-align: center;
}

.page-n-h .feature-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Section Games */
.page-n-h .section-games {
  background-color: #e6f2ff; /* Lighter blue background */
  padding: 60px 0;
}

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

.page-n-h .game-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  padding-bottom: 20px;
}

.page-n-h .game-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-n-h .card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-n-h .game-card h3 {
  font-size: 1.6em;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-n-h .game-card h3 a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-n-h .game-card h3 a:hover {
  color: #0056b3;
}

.page-n-h .game-card p {
  font-size: 0.95em;
  color: #555555;
  padding: 0 15px;
  text-align: center;
  margin-bottom: 20px;
}

.page-n-h .btn-play {
  display: inline-block;
  padding: 12px 30px;
  background: #ffc107;
  color: #212529;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-n-h .btn-play:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

/* Section Guide */
.page-n-h .section-guide {
  background-color: #ffffff;
  padding: 60px 0;
}

.page-n-h .step-by-step {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.page-n-h .step-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-n-h .step-number {
  min-width: 50px;
  height: 50px;
  background-color: #007bff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  flex-shrink: 0;
}

.page-n-h .step-item h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.6em;
  color: #007bff;
}

.page-n-h .step-item p {
  text-align: left;
  margin-bottom: 20px;
}

.page-n-h .btn-action {
  display: inline-block;
  padding: 10px 25px;
  background: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-n-h .btn-action:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.page-n-h .step-img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-left: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Section Tips */
.page-n-h .section-tips {
  background-color: #f4f7f6;
  padding: 60px 0;
}

.page-n-h .tip-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-n-h .tip-list li {
  background-color: #ffffff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
  border-left: 5px solid #ffc107; /* Auxiliary color for accent */
}

.page-n-h .tip-list li h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
  color: #007bff;
  font-size: 1.6em;
}

.page-n-h .tip-list li p {
  text-align: justify;
}

/* Section Promotions */
.page-n-h .section-promotions {
  background-color: #e6f2ff;
  padding: 60px 0;
}

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

.page-n-h .promo-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 5px solid #ffc107;
  transition: transform 0.3s ease;
}

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

.page-n-h .promo-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
  min-height: 70px; /* Ensure consistent height for titles */
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-n-h .promo-item p {
  font-size: 0.95em;
  color: #555555;
  margin-bottom: 25px;
  text-align: center;
  min-height: 90px; /* Ensure consistent height for descriptions */
}

.page-n-h .btn-promo {
  display: inline-block;
  padding: 10px 25px;
  background: #ffc107;
  color: #212529;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-n-h .btn-promo:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

.page-n-h .promo-note {
  margin-top: 40px;
  font-style: italic;
  color: #555555;
}

/* Section Safety and Support */
.page-n-h .section-safety-support {
  background-color: #ffffff;
  padding: 60px 0;
}

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

.page-n-h .safety-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  border-bottom: 5px solid #007bff;
}

.page-n-h .safety-item h3 {
  color: #007bff;
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-n-h .safety-item p {
  text-align: center;
}

.page-n-h .safety-img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-n-h .btn-contact {
  display: inline-block;
  padding: 10px 25px;
  background: #ffc107;
  color: #212529;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-n-h .btn-contact:hover {
  background: #e0a800;
  transform: translateY(-2px);
}

/* Section FAQ */
.page-n-h .section-faq {
  background-color: #f4f7f6;
  padding: 60px 0;
}

.page-n-h .faq-list {
  margin-top: 40px;
}

.page-n-h .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-n-h .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-n-h .faq-question:hover {
  background: #f0f0f0;
}

.page-n-h .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #007bff;
  text-align: left;
  flex-grow: 1;
}

.page-n-h .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #007bff;
  transition: transform 0.3s ease;
  margin-left: 15px;
}

.page-n-h .faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-n-h .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #e6f2ff;
  color: #333333;
}

.page-n-h .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.page-n-h .faq-answer p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-n-h .btn-faq {
  display: inline-block;
  padding: 8px 20px;
  background: #007bff;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-n-h .btn-faq:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

/* Section Conclusion */
.page-n-h .section-conclusion {
  background-color: #007bff;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-n-h .section-conclusion h2 {
  color: #ffffff;
  font-size: 3em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.page-n-h .section-conclusion p {
  font-size: 1.2em;
  margin-bottom: 40px;
  color: #e0e0e0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-n-h .large-cta {
  padding: 20px 50px;
  font-size: 1.4em;
  background: #ffc107;
  color: #212529;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-n-h .large-cta:hover {
  background: #e0a800;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-n-h .hero-content h1 {
    font-size: 3em;
  }
  .page-n-h h2 {
    font-size: 2em;
  }
  .page-n-h h3 {
    font-size: 1.5em;
  }
  .page-n-h .game-card h3 {
    min-height: auto;
  }
  .page-n-h .promo-item h3, .page-n-h .promo-item p {
    min-height: auto;
  }
  .page-n-h .step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-n-h .step-item h3, .page-n-h .step-item p {
    text-align: center;
  }
  .page-n-h .step-img {
    margin-left: 0;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .page-n-h section {
    padding: 40px 0;
  }
  .page-n-h .hero-section {
    padding: 60px 15px;
  }
  .page-n-h .hero-content h1 {
    font-size: 2.5em;
  }
  .page-n-h .hero-content p {
    font-size: 1.1em;
  }
  .page-n-h .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-n-h h2 {
    font-size: 1.8em;
  }
  .page-n-h h3 {
    font-size: 1.3em;
  }
  .page-n-h .feature-grid, .page-n-h .game-cards-grid, .page-n-h .promo-grid, .page-n-h .safety-grid {
    grid-template-columns: 1fr;
  }
  .page-n-h .game-card h3 {
    font-size: 1.4em;
  }
  .page-n-h .btn-play {
    padding: 10px 25px;
  }
  .page-n-h .step-number {
    margin-bottom: 15px;
  }
  .page-n-h .faq-question {
    padding: 15px 20px;
  }
  .page-n-h .faq-question h3 {
    font-size: 1.1em;
  }
  .page-n-h .faq-toggle {
    font-size: 1.5em;
  }
  .page-n-h .faq-answer {
    padding: 0 20px;
  }
  .page-n-h .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-n-h .section-conclusion h2 {
    font-size: 2.2em;
  }
  .page-n-h .section-conclusion p {
    font-size: 1em;
  }
  .page-n-h .large-cta {
    padding: 15px 30px;
    font-size: 1.2em;
  }
}

@media (max-width: 480px) {
  .page-n-h .hero-content h1 {
    font-size: 2em;
  }
  .page-n-h .hero-content p {
    font-size: 1em;
  }
  .page-n-h .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-n-h h2 {
    font-size: 1.5em;
  }
  .page-n-h h3 {
    font-size: 1.2em;
  }
  .page-n-h .game-card h3 {
    font-size: 1.2em;
  }
  .page-n-h .section-conclusion h2 {
    font-size: 1.8em;
  }
  .page-n-h .large-cta {
    padding: 12px 25px;
    font-size: 1.1em;
  }
}