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

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

.page-n-h section {
  padding: 60px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-n-h section:last-of-type {
  border-bottom: none;
}

.page-n-h h1,
.page-n-h h2 {
  color: #FFD700; /* Gold accent */
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-n-h h1 {
  font-size: 3.2em;
  line-height: 1.2;
}

.page-n-h h2 {
  font-size: 2.5em;
  line-height: 1.3;
}

.page-n-h h3 {
  color: #FF0000; /* Primary red */
  font-size: 1.8em;
  margin-bottom: 15px;
}

.page-n-h h4 {
  color: #FFD700;
  font-size: 1.4em;
  margin-bottom: 10px;
}

.page-n-h p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #CCCCCC;
}

.page-n-h a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-n-h a:hover {
  color: #FF0000;
}

.page-n-h .cta-button,
.page-n-h .card-button,
.page-n-h .step-button,
.page-n-h .faq-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FF0000; /* Primary red */
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.page-n-h .cta-button:hover,
.page-n-h .card-button:hover,
.page-n-h .step-button:hover,
.page-n-h .faq-button:hover {
  background: #CC0000;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* 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 40px;
  background-color: #000000;
  overflow: hidden;
}

.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(255, 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: #FFD700;
  font-size: 3.8em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

.page-n-h .hero-content p {
  color: #FFFFFF;
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Introduction Section */
.page-n-h .introduction-section {
  background-color: #121212;
  padding: 80px 0;
}

.page-n-h .introduction-section h2 {
  color: #FFD700;
}

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

.page-n-h .feature-item {
  background-color: #222222;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.page-n-h .feature-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-n-h .feature-item h3 {
  color: #FF0000;
  font-size: 1.6em;
}

.page-n-h .feature-item p {
  font-size: 1em;
  color: #CCCCCC;
}

/* Game Types Section */
.page-n-h .game-types-section {
  background-color: #000000;
  padding: 80px 0;
}

.page-n-h .game-types-section h2 {
  color: #FFD700;
}

.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: #222222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-n-h .game-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.page-n-h .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FF0000;
}

.page-n-h .game-card h3 {
  padding: 20px 20px 10px;
  color: #FFD700;
  font-size: 1.5em;
}

.page-n-h .game-card h3 a {
  color: #FFD700;
}

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

.page-n-h .game-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #CCCCCC;
  flex-grow: 1;
}

.page-n-h .game-card .card-button {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  padding: 12px 20px;
  font-size: 1em;
}

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

/* How-To-Play Section */
.page-n-h .how-to-play-section {
  background-color: #121212;
  padding: 80px 0;
}

.page-n-h .how-to-play-section h2 {
  color: #FFD700;
}

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

.page-n-h .steps-list li {
  background-color: #222222;
  margin-bottom: 25px;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-n-h .steps-list li h3 {
  color: #FF0000;
  font-size: 1.8em;
  margin-bottom: 10px;
}

.page-n-h .steps-list li p {
  font-size: 1.1em;
  color: #CCCCCC;
  margin-bottom: 15px;
}

.page-n-h .steps-list li .step-button {
  padding: 10px 25px;
  font-size: 1em;
  margin-top: 10px;
}

/* Tips & Strategies Section */
.page-n-h .tips-strategies-section {
  background-color: #000000;
  padding: 80px 0;
}

.page-n-h .tips-strategies-section h2 {
  color: #FFD700;
}

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

.page-n-h .tips-list li {
  background-color: #222222;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h .tips-list li:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.page-n-h .tips-list li img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-n-h .tips-list li h4 {
  color: #FF0000;
  font-size: 1.4em;
}

.page-n-h .tips-list li p {
  font-size: 1em;
  color: #CCCCCC;
}

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

.page-n-h .promotions-section h2 {
  color: #FFD700;
}

.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-card {
  background-color: #222222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-n-h .promo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.page-n-h .promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #FF0000;
}

.page-n-h .promo-card h3 {
  padding: 20px 20px 10px;
  color: #FFD700;
  font-size: 1.5em;
}

.page-n-h .promo-card h3 a {
  color: #FFD700;
}

.page-n-h .promo-card h3 a:hover {
  color: #FF0000;
}

.page-n-h .promo-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #CCCCCC;
  flex-grow: 1;
}

.page-n-h .promo-card .card-button {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  padding: 12px 20px;
  font-size: 1em;
}

/* Security & Support Section */
.page-n-h .security-support-section {
  background-color: #000000;
  padding: 80px 0;
}

.page-n-h .security-support-section h2 {
  color: #FFD700;
}

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

.page-n-h .info-item {
  background-color: #222222;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-n-h .info-item h3 {
  color: #FF0000;
  font-size: 1.6em;
}

.page-n-h .info-item p {
  font-size: 1em;
  color: #CCCCCC;
}

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

.page-n-h .faq-section h2 {
  color: #FFD700;
}

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

.page-n-h .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.page-n-h .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: #222222;
  border: 1px solid #333333;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-n-h .faq-question h3 {
  margin: 0;
  color: #FFD700;
  font-size: 1.3em;
  flex-grow: 1;
}

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

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

.page-n-h .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #2D2D2D;
  color: #CCCCCC;
}

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

.page-n-h .faq-answer p {
  margin-bottom: 10px;
}

.page-n-h .faq-answer .faq-button {
  display: inline-block;
  padding: 10px 25px;
  font-size: 0.9em;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Latest News Section */
.page-n-h .latest-news-section {
  background-color: #000000;
  padding: 80px 0;
}

.page-n-h .latest-news-section h2 {
  color: #FFD700;
}

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

.page-n-h .news-card {
  background-color: #222222;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-n-h .news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(255, 0, 0, 0.3);
}

.page-n-h .news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 3px solid #FF0000;
}

.page-n-h .news-card h3 {
  padding: 20px 20px 10px;
  color: #FFD700;
  font-size: 1.5em;
}

.page-n-h .news-card h3 a {
  color: #FFD700;
}

.page-n-h .news-card h3 a:hover {
  color: #FF0000;
}

.page-n-h .news-card p {
  padding: 0 20px 20px;
  font-size: 1em;
  color: #CCCCCC;
  flex-grow: 1;
}

.page-n-h .news-card .card-button {
  margin: 0 20px 20px;
  width: calc(100% - 40px);
  padding: 12px 20px;
  font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-n-h h1 {
    font-size: 2.8em;
  }
  .page-n-h h2 {
    font-size: 2.2em;
  }
  .page-n-h h3 {
    font-size: 1.6em;
  }
  .page-n-h .hero-content p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-n-h section {
    padding: 40px 0;
  }
  .page-n-h h1 {
    font-size: 2.2em;
  }
  .page-n-h h2 {
    font-size: 1.8em;
  }
  .page-n-h h3 {
    font-size: 1.4em;
  }
  .page-n-h .hero-content p {
    font-size: 1em;
  }
  .page-n-h .cta-button,
  .page-n-h .card-button,
  .page-n-h .step-button,
  .page-n-h .faq-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-n-h .hero-section {
    padding: 60px 15px 30px;
  }
  .page-n-h .hero-image img {
    border-radius: 8px;
  }
  .page-n-h .features-grid,
  .page-n-h .game-cards-grid,
  .page-n-h .promo-grid,
  .page-n-h .info-grid,
  .page-n-h .news-grid {
    grid-template-columns: 1fr;
  }
  .page-n-h .steps-list li {
    padding: 20px;
  }
  .page-n-h .faq-question {
    padding: 15px;
  }
  .page-n-h .faq-question h3 {
    font-size: 1.1em;
  }
  .page-n-h .faq-toggle {
    font-size: 20px;
  }
  .page-n-h .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-n-h h1 {
    font-size: 1.8em;
  }
  .page-n-h h2 {
    font-size: 1.5em;
  }
  .page-n-h h3 {
    font-size: 1.2em;
  }
  .page-n-h .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-n-h .hero-image {
    margin-bottom: 20px;
  }
  .page-n-h .hero-content p {
    font-size: 0.9em;
    margin-bottom: 20px;
  }
  .page-n-h .feature-item,
  .page-n-h .game-card,
  .page-n-h .promo-card,
  .page-n-h .info-item,
  .page-n-h .news-card {
    padding: 20px;
  }
  .page-n-h .game-card img,
  .page-n-h .promo-card img,
  .page-n-h .news-card img {
    height: 150px;
  }
  .page-n-h .faq-question h3 {
    font-size: 1em;
  }
  .page-n-h .faq-toggle {
    font-size: 18px;
  }
}