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

.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: #f0f0f0;
}

.page-n-h h1,
.page-n-h h2,
.page-n-h h3 {
  color: #8B0000; /* Dark Red */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-n-h h1 {
  font-size: 3.2em;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h h2 {
  font-size: 2.5em;
  margin-top: 40px;
  margin-bottom: 30px;
}

.page-n-h h3 {
  font-size: 1.8em;
  color: #333;
}

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

.page-n-h .btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.05em;
}

.page-n-h .btn:hover {
  background-color: #e0b800;
  color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-n-h .btn-primary {
  background-color: #8B0000; /* Dark Red */
  color: #FFD700; /* Gold */
}

.page-n-h .btn-primary:hover {
  background-color: #6a0000;
  color: #ffe066;
}

.page-n-h .btn-secondary {
  background-color: #555;
  color: #fff;
}

.page-n-h .btn-secondary:hover {
  background-color: #333;
}

.page-n-h .btn-promo {
  background-color: #FFD700;
  color: #8B0000;
  font-size: 1.1em;
  padding: 15px 35px;
}

.page-n-h .btn-promo:hover {
  background-color: #e0b800;
  color: #6a0000;
}

/* 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: 0;
  background: linear-gradient(135deg, #FFD700, #8B0000);
  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;
  padding: 40px 20px;
}

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

.page-n-h .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  color: #fff;
}

.page-n-h .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

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

.page-n-h .cta-button {
  padding: 18px 45px;
  font-size: 1.4em;
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Dark Red */
  border-radius: 50px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

.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: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h .feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h .feature-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 4px solid #FFD700;
  padding: 10px;
}

.page-n-h .feature-item h3 {
  color: #8B0000;
  font-size: 1.6em;
  margin-bottom: 10px;
}

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

/* Game Showcase Section */
.page-n-h .game-showcase-section {
  background-color: #f0f0f0;
}

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

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

.page-n-h .category-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h .category-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 2px solid #FFD700;
}

.page-n-h .category-item h3 {
  color: #8B0000;
  font-size: 1.7em;
  margin-bottom: 10px;
}

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

.page-n-h .top-games {
  margin-top: 60px;
  text-align: left;
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-n-h .top-games h3 {
  color: #8B0000;
  font-size: 2em;
  text-align: center;
  margin-bottom: 25px;
}

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

.page-n-h .top-games li {
  background-color: #f9f9f9;
  padding: 15px 20px;
  border-radius: 8px;
  border-left: 5px solid #FFD700;
  transition: background-color 0.3s ease;
}

.page-n-h .top-games li:hover {
  background-color: #ffecc7;
}

.page-n-h .top-games li a {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
}

.page-n-h .top-games li a:hover {
  text-decoration: underline;
  color: #6a0000;
}

.page-n-h .top-games p {
  text-align: center;
  margin-top: 30px;
}

/* How to Play Section */
.page-n-h .how-to-play-section {
  background-color: #fff;
}

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

.page-n-h .step-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-top: 5px solid #FFD700;
}

.page-n-h .step-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #8B0000;
  padding: 5px;
}

.page-n-h .step-item h3 {
  color: #8B0000;
  font-size: 1.7em;
  margin-bottom: 15px;
}

.page-n-h .step-item p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

/* Promotions Section */
.page-n-h .promotions-section {
  background-color: #f0f0f0;
}

.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: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-bottom: 5px solid #8B0000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h .promo-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h .promo-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 4px solid #FFD700;
  padding: 8px;
}

.page-n-h .promo-item h3 {
  color: #8B0000;
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-n-h .promo-item p {
  font-size: 1em;
  color: #666;
  margin-bottom: 20px;
}

/* Security Section */
.page-n-h .security-section {
  background-color: #fff;
}

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

.page-n-h .security-features .feature-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  border-left: 5px solid #FFD700;
}

.page-n-h .security-features .feature-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #8B0000;
  padding: 5px;
}

.page-n-h .security-features .feature-item h3 {
  color: #8B0000;
  font-size: 1.6em;
  margin-bottom: 10px;
}

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

/* Tips & Strategies Section */
.page-n-h .tips-strategies-section {
  background-color: #f0f0f0;
}

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

.page-n-h .strategy-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-right: 5px solid #FFD700;
}

.page-n-h .strategy-item img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 50%;
  border: 3px solid #8B0000;
  padding: 5px;
}

.page-n-h .strategy-item h3 {
  color: #8B0000;
  font-size: 1.6em;
  margin-bottom: 10px;
}

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

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

.page-n-h .faq-section .container {
  max-width: 900px;
}

.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: #fdfdfd;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border-bottom: 1px solid #eee;
}

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

.page-n-h .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: #8B0000;
  text-align: left;
}

.page-n-h .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700;
  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: #f9f9f9;
  text-align: left;
}

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

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

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

/* Blog Section */
.page-n-h .blog-section {
  background-color: #f0f0f0;
}

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

.page-n-h .blog-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h .blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-n-h .blog-card h3 {
  font-size: 1.5em;
  margin: 20px 20px 10px 20px;
  color: #8B0000;
  text-align: left;
}

.page-n-h .blog-card h3 a {
  color: #8B0000;
  text-decoration: none;
}

.page-n-h .blog-card h3 a:hover {
  text-decoration: underline;
  color: #6a0000;
}

.page-n-h .blog-card p {
  font-size: 0.95em;
  color: #666;
  margin: 0 20px 15px 20px;
  text-align: left;
}

.page-n-h .blog-card .read-more {
  display: inline-block;
  margin: 0 20px 20px 20px;
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-n-h .blog-card .read-more:hover {
  color: #e0b800;
  text-decoration: underline;
}

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

/* 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 .hero-content h1 {
    font-size: 3em;
  }
  .page-n-h .hero-content p {
    font-size: 1.2em;
  }
  .page-n-h .cta-button {
    font-size: 1.2em;
    padding: 15px 35px;
  }
  .page-n-h .feature-grid, .page-n-h .game-categories, .page-n-h .step-by-step, .page-n-h .promo-grid, .page-n-h .security-features, .page-n-h .strategy-grid, .page-n-h .blog-grid {
    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: 2.2em;
  }
  .page-n-h h2 {
    font-size: 1.8em;
  }
  .page-n-h h3 {
    font-size: 1.4em;
  }
  .page-n-h .hero-content h1 {
    font-size: 2.5em;
  }
  .page-n-h .hero-content p {
    font-size: 1em;
  }
  .page-n-h .cta-button {
    font-size: 1em;
    padding: 12px 30px;
  }
  .page-n-h .feature-item img, .page-n-h .promo-item img, .page-n-h .security-features .feature-item img, .page-n-h .strategy-item img {
    width: 100px;
    height: 100px;
  }
  .page-n-h .step-item img {
    width: 120px;
    height: 120px;
  }
  .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.8em;
  }
  .page-n-h .faq-answer {
    padding: 0 20px;
  }
  .page-n-h .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-n-h h1 {
    font-size: 1.8em;
  }
  .page-n-h h2 {
    font-size: 1.5em;
  }
  .page-n-h .hero-content h1 {
    font-size: 2em;
  }
  .page-n-h .hero-content p {
    font-size: 0.9em;
  }
  .page-n-h .cta-button {
    font-size: 0.9em;
    padding: 10px 25px;
  }
  .page-n-h .feature-grid, .page-n-h .game-categories, .page-n-h .step-by-step, .page-n-h .promo-grid, .page-n-h .security-features, .page-n-h .strategy-grid, .page-n-h .blog-grid {
    grid-template-columns: 1fr;
  }
  .page-n-h .top-games ul {
    grid-template-columns: 1fr;
  }
  .page-n-h .top-games li {
    text-align: center;
  }
  .page-n-h .blog-card {
    text-align: center;
  }
  .page-n-h .blog-card h3, .page-n-h .blog-card p, .page-n-h .blog-card .read-more {
    margin-left: 15px;
    margin-right: 15px;
    text-align: center;
  }
  .page-n-h .faq-question h3 {
    font-size: 1em;
  }
}