:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #333333; /* Dark grey for general text on light background */
  --text-light: #FFFFFF; /* White for general text on dark background */
  --bg-light: #F8F8F8; /* Light grey background */
  --bg-dark: #222222; /* Dark background for sections */
  --accent-color: #DAA520; /* Goldenrod, slightly darker gold for hover effects */
}

.page-n-h {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #f0f2f5;
}

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

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

.page-n-h h2 {
  font-size: 2.2em;
  text-align: center;
  margin-top: 40px;
  margin-bottom: 30px;
  color: var(--secondary-color);
}

.page-n-h h3 {
  font-size: 1.6em;
  color: var(--secondary-color);
}

.page-n-h h4 {
  font-size: 1.2em;
  color: var(--primary-color);
}

.page-n-h p {
  margin-bottom: 15px;
  line-height: 1.8;
}

.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);
}

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

/* 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: 60px 20px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #a00000 100%); /* Dark Red gradient */
  color: var(--text-light);
}

.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;
  max-width: 900px; /* Adjust max-width for the hero image */
}

.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 20px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-n-h .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.page-n-h .cta-button-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-n-h .cta-button-small:hover {
  background: var(--accent-color);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

/* About Slots Section */
.page-n-h .about-slots-section {
  background-color: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

.page-n-h .about-slots-section p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

.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: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  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: 100%; /* Ensure images are large enough */
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-n-h .feature-item h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

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

/* Game Providers Section */
.page-n-h .game-providers-section {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-n-h .game-providers-section p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

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

.page-n-h .provider-card {
  background: linear-gradient(145deg, #fdfdfd, #ececec);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-n-h .provider-card img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-n-h .provider-card h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: var(--secondary-color);
}

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

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

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

/* How to Play Section */
.page-n-h .how-to-play-section {
  background-color: var(--bg-light);
  padding: 60px 0;
  text-align: center;
}

.page-n-h .how-to-play-section p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

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

.page-n-h .step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-n-h .step-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-n-h .step-item h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.page-n-h .step-item p {
  font-size: 1em;
  color: var(--text-dark);
  flex-grow: 1;
}

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

.page-n-h .tips-section p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

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

.page-n-h .tips-list li {
  background-color: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-n-h .tips-list li img {
  width: 100%;
  max-width: 150px;
  height: auto;
  margin-bottom: 15px;
  border-radius: 8px;
  align-self: center;
}

.page-n-h .tips-list li h4 {
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-n-h .tips-list li p {
  font-size: 0.95em;
  color: var(--text-dark);
}

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

.page-n-h .promotions-section p {
  max-width: 900px;
  margin: 0 auto 40px auto;
  font-size: 1.1em;
}

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

.page-n-h .promo-card {
  background: linear-gradient(145deg, #fdfdfd, #ececec);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.page-n-h .promo-card img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-n-h .promo-card h3 {
  font-size: 1.4em;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

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

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

/* Support Section */
.page-n-h .support-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0;
  text-align: center;
}

.page-n-h .support-section h2 {
  color: var(--primary-color);
}

.page-n-h .support-section p {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
}

.page-n-h .contact-info ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: inline-block; /* Center the list */
  text-align: left;
}

.page-n-h .contact-info li {
  margin-bottom: 10px;
  font-size: 1.05em;
}

.page-n-h .contact-info p strong {
  color: var(--primary-color);
}

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

.page-n-h .faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.page-n-h .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--secondary-color);
  border: 1px solid var(--primary-color);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-n-h .faq-question:hover {
  background: var(--accent-color);
  color: var(--secondary-color);
}

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

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

.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: #ffffff;
  border-radius: 0 0 8px 8px;
  color: var(--text-dark);
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-n-h .hero-content h1 {
    font-size: 3em;
  }
  .page-n-h .hero-content p {
    font-size: 1.2em;
  }
  .page-n-h h2 {
    font-size: 2em;
  }
  .page-n-h h3 {
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .page-n-h .hero-section {
    padding: 40px 15px;
  }
  .page-n-h .hero-image {
    margin-bottom: 20px;
  }
  .page-n-h .hero-image img {
    border-radius: 8px;
  }
  .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: 18px;
  }
  .page-n-h h2 {
    font-size: 1.8em;
  }
  .page-n-h h3 {
    font-size: 1.3em;
  }
  .page-n-h .features-grid, .page-n-h .provider-cards-grid, .page-n-h .steps-grid, .page-n-h .promo-cards-grid {
    grid-template-columns: 1fr;
  }
  .page-n-h .feature-item, .page-n-h .provider-card, .page-n-h .step-item, .page-n-h .promo-card {
    padding: 25px;
  }
  .page-n-h .feature-item img, .page-n-h .provider-card img, .page-n-h .step-item img, .page-n-h .promo-card img {
    max-width: 200px;
  }
  .page-n-h .tips-list {
    grid-template-columns: 1fr;
  }
  .page-n-h .tips-list li {
    padding: 20px;
  }
  .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: 20px;
  }
}

@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: 16px;
  }
  .page-n-h h2 {
    font-size: 1.6em;
  }
  .page-n-h h3 {
    font-size: 1.2em;
  }
  .page-n-h .feature-item img, .page-n-h .provider-card img, .page-n-h .step-item img, .page-n-h .promo-card img {
    max-width: 150px;
  }
}