.page-n-h {
  --primary-color: #FFD700;
  --secondary-color: #8B0000;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f5f5f5;
  --bg-dark: #222222;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-n-h-title {
  font-size: 3.2em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  font-weight: bold;
}

.page-n-h-heading {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-top: 50px;
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 10px;
}

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

.page-n-h-description {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 40px;
  color: var(--text-dark);
}

.page-n-h-cta-button {
  display: inline-block;
  padding: 15px 35px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: none;
  cursor: pointer;
}

.page-n-h-cta-button:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-n-h-cta-button.secondary-button {
  background: var(--secondary-color);
  margin-left: 20px;
}

.page-n-h-cta-button.secondary-button:hover {
  background: var(--primary-color);
}

.page-n-h p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--text-dark);
}

.page-n-h a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-n-h a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* 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: var(--bg-dark);
  overflow: hidden;
}

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

.page-n-h .hero-image {
  width: 100%;
  margin-bottom: 30px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

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

.page-n-h .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: var(--text-light);
}

.page-n-h .hero-content .page-n-h-title {
  color: var(--primary-color);
  font-size: 3.5em;
  margin-bottom: 15px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

.page-n-h .hero-content .page-n-h-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: var(--text-light);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* General Section Styling */
.page-n-h section {
  padding: 60px 0;
  background: var(--bg-light);
}

.page-n-h section:nth-of-type(even) {
  background: #ffffff;
}

.page-n-h .section-introduction p, .page-n-h .section-guide p, .page-n-h .section-game-types p, .page-n-h .section-strategies p, .page-n-h .section-promotions p, .page-n-h .section-conclusion p {
  font-size: 1.1em;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.page-n-h .section-introduction .page-n-h-image-wrapper, .page-n-h .section-guide .page-n-h-image-wrapper, .page-n-h .section-game-types .page-n-h-image-wrapper {
  margin-top: 40px;
  text-align: center;
}

.page-n-h .section-introduction .page-n-h-image-wrapper img, .page-n-h .section-guide .page-n-h-image-wrapper img, .page-n-h .section-game-types .page-n-h-image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

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

.page-n-h .page-n-h-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 5px solid var(--primary-color);
}

.page-n-h .page-n-h-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-n-h .page-n-h-card-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-n-h .page-n-h-card p {
  font-size: 1em;
  color: var(--text-dark);
  text-align: center;
}

.page-n-h .page-n-h-center-button {
  text-align: center;
  margin-top: 50px;
}

/* Steps/List Styling */
.page-n-h .page-n-h-steps {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin-top: 40px;
}

.page-n-h .page-n-h-steps li {
  background: #ffffff;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 80px;
}

.page-n-h .page-n-h-steps li::before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 30px;
  top: 30px;
  background: var(--primary-color);
  color: var(--text-light);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-n-h .page-n-h-steps li h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

.page-n-h .page-n-h-list li {
  background: #ffffff;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--secondary-color);
}

.page-n-h .page-n-h-list li h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
}

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

.page-n-h .page-n-h-list-bullets li {
  background: #ffffff;
  margin-bottom: 20px;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  padding-left: 60px;
}

.page-n-h .page-n-h-list-bullets li::before {
  content: '★'; /* Bullet icon */
  position: absolute;
  left: 20px;
  top: 30px;
  color: var(--primary-color);
  font-size: 1.8em;
  line-height: 1;
}

.page-n-h .page-n-h-list-bullets li h3 {
  color: var(--secondary-color);
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

.page-n-h .page-n-h-promo-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-n-h .page-n-h-promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-n-h .page-n-h-promo-card img {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-n-h .page-n-h-promo-title {
  font-size: 1.5em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-n-h .page-n-h-promo-card p {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-n-h .page-n-h-promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.95em;
  font-weight: bold;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: auto; /* Push button to bottom */
}

.page-n-h .page-n-h-promo-button:hover {
  background: var(--secondary-color);
  text-decoration: none;
}

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

/* FAQ Section */
.page-n-h .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;
}

.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;
  border-bottom: 1px solid #f0f0f0;
}

.page-n-h .faq-item:last-child .faq-question {
  border-bottom: none;
}

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

.page-n-h .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-dark);
  font-weight: bold;
}

.page-n-h .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  line-height: 1;
}

.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: #fdfdfd;
  color: var(--text-dark);
}

.page-n-h .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-top: 1px solid #e0e0e0;
}

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

.page-n-h .faq-answer p {
  margin: 0;
  font-size: 1em;
  color: #555555;
}

/* Conclusion Section */
.page-n-h .section-conclusion {
  background: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}

.page-n-h .section-conclusion .page-n-h-heading {
  color: var(--primary-color);
}

.page-n-h .section-conclusion p {
  color: var(--text-light);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1em;
}

.page-n-h .section-conclusion a {
  color: var(--primary-color);
}

.page-n-h .section-conclusion a:hover {
  color: var(--text-light);
}

/* Footer Placeholder */
.page-n-h-footer-placeholder {
  background: #1a1a1a;
  padding: 30px 20px;
  text-align: center;
  color: #cccccc;
  font-size: 0.9em;
}

.page-n-h-copyright {
  margin: 0;
  color: #cccccc;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-n-h .hero-content .page-n-h-title {
    font-size: 3em;
  }
  .page-n-h .hero-content .page-n-h-description {
    font-size: 1.1em;
  }
  .page-n-h-heading {
    font-size: 2em;
  }
  .page-n-h .page-n-h-card-title {
    font-size: 1.4em;
  }
  .page-n-h .page-n-h-steps li, .page-n-h .page-n-h-list li, .page-n-h .page-n-h-list-bullets li {
    padding: 25px;
    padding-left: 70px;
  }
  .page-n-h .page-n-h-steps li::before {
    left: 20px;
    top: 25px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .page-n-h .page-n-h-list-bullets li::before {
    left: 15px;
    top: 25px;
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-n-h .hero-section {
    padding: 60px 15px;
  }
  .page-n-h .hero-content .page-n-h-title {
    font-size: 2.5em;
  }
  .page-n-h .hero-content .page-n-h-description {
    font-size: 1em;
  }
  .page-n-h-heading {
    font-size: 1.8em;
    margin-top: 40px;
    margin-bottom: 25px;
  }
  .page-n-h-heading::after {
    width: 60px;
    height: 3px;
  }
  .page-n-h .page-n-h-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-n-h .page-n-h-cta-button.secondary-button {
    margin-left: 10px;
  }
  .page-n-h .page-n-h-grid, .page-n-h .page-n-h-promo-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-n-h .page-n-h-card, .page-n-h .page-n-h-promo-card {
    padding: 20px;
  }
  .page-n-h .page-n-h-steps li, .page-n-h .page-n-h-list li, .page-n-h .page-n-h-list-bullets li {
    padding: 20px;
    padding-left: 60px;
  }
  .page-n-h .page-n-h-steps li::before {
    left: 15px;
    top: 20px;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }
  .page-n-h .page-n-h-list-bullets li::before {
    left: 10px;
    top: 20px;
    font-size: 1.5em;
  }
  .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-introduction p, .page-n-h .section-guide p, .page-n-h .section-game-types p, .page-n-h .section-strategies p, .page-n-h .section-promotions p, .page-n-h .section-conclusion p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .page-n-h .hero-content .page-n-h-title {
    font-size: 2em;
  }
  .page-n-h .page-n-h-cta-button {
    width: 100%;
    margin-bottom: 10px;
    margin-left: 0 !important;
  }
  .page-n-h .page-n-h-center-button {
    display: flex;
    flex-direction: column;
  }
  .page-n-h .page-n-h-promo-card img {
    height: 150px;
  }
  .page-n-h .section-conclusion .page-n-h-heading {
    font-size: 1.6em;
  }
}