.page-n-h {
  --primary-color: #FFD700;
  --secondary-color: #B22222;
  --dark-background: #0D0D0D;
  --text-light: #FFFFFF;
  --text-dark: #1A1A1A;
  --card-background: #1A1A1A;
  --border-color: #333;
  font-family: 'Arial', sans-serif;
  color: var(--text-light);
  background-color: var(--dark-background);
}

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

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

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

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

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

.page-n-h-section h3 {
  font-size: 1.8em;
  line-height: 1.4;
  color: var(--text-light);
}

.page-n-h-section p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #E0E0E0;
}

.page-n-h-section ul {
  list-style: none;
  padding: 0;
  margin: 30px auto;
  max-width: 800px;
  text-align: left;
}

.page-n-h-section ul li {
  background-color: var(--card-background);
  border-left: 5px solid var(--secondary-color);
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1.05em;
  line-height: 1.6;
  color: var(--text-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-n-h-cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-light);
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

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

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

/* Hero Section Specific */
.page-n-h-hero-section {
  background: linear-gradient(135deg, var(--dark-background) 0%, #1A1A1A 50%, var(--dark-background) 100%);
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.page-n-h-hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.page-n-h-hero-content {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-n-h-hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

.page-n-h-hero-content p {
  font-size: 1.2em;
  color: #F0F0F0;
}

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

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

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

.page-n-h-card {
  background-color: var(--card-background);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.page-n-h-card img {
  width: 100%;
  max-width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--primary-color);
}

.page-n-h-card h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
}

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

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

.page-n-h-card-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* Step by Step Guide */
.page-n-h-step-by-step {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-n-h-step-item {
  background-color: var(--card-background);
  border-radius: 10px;
  padding: 25px;
  text-align: left;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border: 1px solid var(--border-color);
}

.page-n-h-step-number {
  background-color: var(--secondary-color);
  color: var(--text-light);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.page-n-h-step-item h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: var(--primary-color);
  font-size: 1.5em;
}

.page-n-h-step-item p {
  margin-bottom: 0;
  color: #E0E0E0;
}

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

.page-n-h-promo-card {
  background-color: var(--card-background);
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
}

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

.page-n-h-promo-card img {
  width: 100%;
  max-width: 400px;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid var(--primary-color);
}

.page-n-h-promo-card h3 {
  font-size: 1.6em;
  margin-bottom: 15px;
}

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

.faq-item {
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--card-background);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.faq-question:hover {
  background: #2A2A2A;
}

.faq-question h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.3em;
  flex-grow: 1;
}

.faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: var(--secondary-color);
  transition: transform 0.3s ease;
  line-height: 1;
  margin-left: 15px;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background-color: #1A1A1A;
  color: #E0E0E0;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px 25px;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--primary-color);
}

.faq-answer p {
  margin-bottom: 0;
  font-size: 1.05em;
  line-height: 1.6;
}

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

@media (max-width: 768px) {
  .page-n-h-section {
    padding: 40px 0;
  }
  .page-n-h-section h1 {
    font-size: 2.5em;
  }
  .page-n-h-section h2 {
    font-size: 1.8em;
  }
  .page-n-h-section h3 {
    font-size: 1.4em;
  }
  .page-n-h-section p {
    font-size: 1em;
  }
  .page-n-h-cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-n-h-hero-section {
    padding: 60px 0;
  }
  .page-n-h-hero-content h1 {
    font-size: 2.5em;
  }
  .page-n-h-hero-content p {
    font-size: 1em;
  }
  .page-n-h-grid-3, .page-n-h-grid-2 {
    grid-template-columns: 1fr;
  }
  .page-n-h-step-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .page-n-h-step-number {
    margin-bottom: 15px;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.8em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-n-h-section h1 {
    font-size: 2em;
  }
  .page-n-h-hero-content h1 {
    font-size: 2em;
  }
  .page-n-h-section h2 {
    font-size: 1.6em;
  }
  .page-n-h-section h3 {
    font-size: 1.2em;
  }
  .page-n-h-card img, .page-n-h-promo-card img {
    height: 180px;
  }
}