.page-n-h {
  --primary-color: #0056B3;
  --secondary-color: #FFD700;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-light: #f4f7f6;
  --bg-dark: #003f80;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-n-h section {
  padding: 60px 0;
  text-align: center;
}

.page-n-h section:nth-of-type(odd) {
  background-color: var(--bg-light);
}

.page-n-h h1, .page-n-h h2, .page-n-h h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-n-h h1 {
  font-size: 2.8em;
  color: var(--text-light);
}

.page-n-h h2 {
  font-size: 2.2em;
}

.page-n-h h3 {
  font-size: 1.6em;
}

.page-n-h p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-dark);
}

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

.page-n-h a:hover {
  color: var(--secondary-color);
}

.page-n-h .cta-button {
  display: inline-block;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  margin-top: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-n-h .cta-button:hover {
  background-color: #e6c200; /* Slightly darker gold */
  transform: translateY(-2px);
}

.page-n-h .large-button {
  padding: 20px 40px;
  font-size: 1.4em;
}

/* Hero Banner */
.page-n-h .hero-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--bg-dark));
  color: var(--text-light);
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-n-h .hero-content {
  max-width: 900px;
  margin-bottom: 30px;
  z-index: 1;
}

.page-n-h .hero-content p {
  color: var(--text-light);
  font-size: 1.2em;
  margin-bottom: 30px;
}

.page-n-h .hero-image-container {
  width: 100%;
  max-width: 1000px;
  margin-top: 30px;
}

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

/* Introduction Section */
.page-n-h .introduction-section h2 {
  color: var(--primary-color);
}

/* Game Types Section */
.page-n-h .game-types-section {
  background-color: var(--bg-light);
}

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

.page-n-h .game-card {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h .game-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-n-h .game-card h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-n-h .game-card h3 a {
  color: var(--primary-color);
  font-weight: bold;
}

.page-n-h .game-card h3 a:hover {
  color: var(--secondary-color);
}

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

.page-n-h .read-more-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

/* Guide Section */
.page-n-h .guide-section ol {
  list-style: decimal;
  text-align: left;
  max-width: 800px;
  margin: 30px auto;
  padding-left: 20px;
}

.page-n-h .guide-section ol li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-n-h .guide-section ol li strong {
  color: var(--primary-color);
}

/* Strategy Section */
.page-n-h .strategy-section {
  background-color: var(--bg-light);
}

.page-n-h .strategy-section ul {
  list-style: disc;
  text-align: left;
  max-width: 900px;
  margin: 30px auto;
  padding-left: 20px;
}

.page-n-h .strategy-section ul li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-n-h .strategy-section ul li strong {
  color: var(--primary-color);
}

.page-n-h .strategy-section ul li ul {
  list-style: circle;
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 25px;
}

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

.page-n-h .promotions-section .promo-item {
  background-color: var(--text-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h .promotions-section .promo-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-n-h .promotions-section .promo-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-n-h .promotions-section .promo-item h3 {
  margin-bottom: 10px;
  color: var(--primary-color);
}

.page-n-h .promotions-section .promo-item h3 a {
  color: var(--primary-color);
  font-weight: bold;
}

.page-n-h .promotions-section .promo-item h3 a:hover {
  color: var(--secondary-color);
}

.page-n-h .promotions-section .promo-item p {
  font-size: 0.95em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-n-h .view-details-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-light);
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

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

/* Why Choose Section */
.page-n-h .why-choose-section ul {
  list-style: none;
  text-align: left;
  max-width: 900px;
  margin: 30px auto;
  padding-left: 0;
}

.page-n-h .why-choose-section ul li {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: var(--text-dark);
  position: relative;
  padding-left: 30px;
}

.page-n-h .why-choose-section ul li::before {
  content: '✔';
  color: var(--secondary-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* FAQ Section */
.page-n-h .faq-section {
  background-color: var(--bg-light);
}

.page-n-h .faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-n-h .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--text-light);
}

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

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

.page-n-h .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: var(--primary-color);
}

.page-n-h .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

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

.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: #f9f9f9;
  border-top: 1px solid #e0e0e0;
}

.page-n-h .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
  border-radius: 0 0 8px 8px;
}

.page-n-h .faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
  color: var(--text-dark);
}

/* Call to Action Section */
.page-n-h .call-to-action {
  background: linear-gradient(135deg, var(--bg-dark), var(--primary-color));
  color: var(--text-light);
}

.page-n-h .call-to-action h2 {
  color: var(--secondary-color);
  font-size: 2.5em;
}

.page-n-h .call-to-action p {
  color: var(--text-light);
  font-size: 1.2em;
  margin-bottom: 30px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-n-h h1 {
    font-size: 2.4em;
  }
  .page-n-h h2 {
    font-size: 1.8em;
  }
  .page-n-h .hero-content p {
    font-size: 1.1em;
  }
  .page-n-h .game-cards-grid, .page-n-h .promotion-list {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-n-h section {
    padding: 40px 0;
  }
  .page-n-h h1 {
    font-size: 2em;
  }
  .page-n-h h2 {
    font-size: 1.6em;
  }
  .page-n-h h3 {
    font-size: 1.4em;
  }
  .page-n-h p {
    font-size: 1em;
  }
  .page-n-h .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-n-h .large-button {
    padding: 15px 30px;
    font-size: 1.2em;
  }
  .page-n-h .hero-banner {
    flex-direction: column;
    padding: 60px 0;
  }
  .page-n-h .hero-content {
    margin-bottom: 20px;
  }
  .page-n-h .game-cards-grid, .page-n-h .promotion-list {
    grid-template-columns: 1fr;
  }
  .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: 20px;
  }
  .page-n-h .faq-answer {
    padding: 0 20px;
  }
  .page-n-h .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
  .page-n-h .why-choose-section ul li {
    padding-left: 25px;
  }
  .page-n-h .why-choose-section ul li::before {
    left: -5px;
  }
}

@media (max-width: 480px) {
  .page-n-h h1 {
    font-size: 1.8em;
  }
  .page-n-h h2 {
    font-size: 1.4em;
  }
  .page-n-h h3 {
    font-size: 1.2em;
  }
  .page-n-h .hero-content p {
    font-size: 0.95em;
  }
  .page-n-h .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-n-h .large-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-n-h .game-card .card-image, .page-n-h .promo-image {
    height: 150px;
  }
}