/* style/n-h.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #1A1A1A; /* Dark Grey */
  --text-light: #FFFFFF;
  --text-dark: #1A1A1A;
  --background-light: #F8F8F8;
  --background-dark: #2C2C2C;
  --border-color: #E0E0E0;
}

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

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

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

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

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

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

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

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

.page-n-h a:hover {
  color: #FFC107; /* Slightly darker gold */
}

.page-n-h .cta-button {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-n-h .cta-button:hover {
  background: #FFC107; /* Slightly darker gold */
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-n-h .cta-button.secondary {
  background: var(--secondary-color);
  color: var(--text-light);
}

.page-n-h .cta-button.secondary:hover {
  background: #000000; /* Even darker */
  color: var(--primary-color);
}

.page-n-h .cta-button.large {
  padding: 20px 50px;
  font-size: 1.5em;
}

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

/* 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;
  background: var(--background-dark);
  color: var(--text-light);
  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;
  max-width: 900px; /* Constrain image width for better presentation */
}

.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(0, 0, 0, 0.5);
}

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

.page-n-h .hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #E0E0E0;
}

/* General Section Styling */
.page-n-h section {
  padding: 60px 0;
}

.page-n-h .intro-section {
  background: var(--background-light);
  color: var(--text-dark);
}

.page-n-h .features-section {
  background: var(--background-dark);
  color: var(--text-light);
}

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

.page-n-h .features-section h3 {
  color: var(--primary-color);
}

.page-n-h .features-section p {
  color: #E0E0E0;
}

.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: #333333; /* Darker background for cards */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h .feature-icon {
  width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-n-h .games-showcase {
  background: var(--background-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: #FFFFFF;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  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.2);
}

.page-n-h .game-card .card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-color);
}

.page-n-h .game-card h3 {
  padding: 15px 20px 0;
  font-size: 1.5em;
  margin-bottom: 10px;
}

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

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

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

.page-n-h .guide-section {
  background: var(--background-dark);
  color: var(--text-light);
}

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

.page-n-h .guide-section ol {
  list-style-type: decimal;
  margin-left: 25px;
  padding-left: 0;
  font-size: 1.1em;
}

.page-n-h .guide-section ol li {
  margin-bottom: 15px;
  color: #E0E0E0;
}

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

.page-n-h .tips-section {
  background: var(--background-light);
  color: var(--text-dark);
}

.page-n-h .tips-section ul {
  list-style-type: disc;
  margin-left: 25px;
  padding-left: 0;
  font-size: 1.1em;
}

.page-n-h .tips-section ul li {
  margin-bottom: 10px;
}

.page-n-h .content-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.page-n-h .promotions-section {
  background: var(--background-dark);
  color: var(--text-light);
}

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

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

.page-n-h .promo-item {
  background: #333333;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h .promo-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 10px;
}

.page-n-h .promo-item h3 a {
  color: var(--primary-color);
}

.page-n-h .promo-item h3 a:hover {
  color: #FFC107;
}

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

.page-n-h .security-support-section {
  background: var(--background-light);
  color: var(--text-dark);
}

.page-n-h .security-support-section ul {
  list-style-type: disc;
  margin-left: 25px;
  padding-left: 0;
  font-size: 1.1em;
}

.page-n-h .security-support-section ul li {
  margin-bottom: 10px;
}

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

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

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

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

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

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

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

.page-n-h .faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: var(--primary-color);
  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: #222222;
  color: #E0E0E0;
  font-size: 1.05em;
}

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

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

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

.page-n-h .final-cta-section {
  background: linear-gradient(135deg, var(--primary-color), #FFC107);
  padding: 80px 0;
  text-align: center;
  color: var(--text-dark);
}

.page-n-h .final-cta-section h2 {
  color: var(--secondary-color);
  font-size: 3em;
  margin-bottom: 20px;
}

.page-n-h .final-cta-section p {
  font-size: 1.4em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #333333;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-n-h h1 {
    font-size: 2.8em;
  }

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

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

  .page-n-h .hero-content p {
    font-size: 1.1em;
  }

  .page-n-h .feature-icon {
    width: 200px;
  }

  .page-n-h .final-cta-section h2 {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-n-h .hero-section {
    padding: 60px 15px;
  }

  .page-n-h .hero-image {
    margin-bottom: 20px;
  }

  .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 p {
    font-size: 1em;
  }

  .page-n-h .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-n-h .cta-button.large {
    padding: 15px 35px;
    font-size: 1.2em;
  }

  .page-n-h .feature-grid, .page-n-h .game-cards-grid, .page-n-h .promo-grid {
    grid-template-columns: 1fr;
  }

  .page-n-h .feature-item, .page-n-h .game-card, .page-n-h .promo-item {
    padding: 20px;
  }

  .page-n-h .feature-icon {
    width: 180px;
  }

  .page-n-h .game-card .card-image {
    height: 180px;
  }

  .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.5em;
  }

  .page-n-h .faq-answer {
    padding: 0 20px;
  }

  .page-n-h .faq-item.active .faq-answer {
    padding: 15px 20px;
  }

  .page-n-h .final-cta-section h2 {
    font-size: 2em;
  }

  .page-n-h .final-cta-section p {
    font-size: 1.1em;
  }

  .page-n-h ol, .page-n-h ul {
    margin-left: 15px;
    font-size: 1em;
  }
}

@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 p {
    font-size: 1em;
  }

  .page-n-h .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }

  .page-n-h .cta-button.large {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-n-h .feature-icon {
    width: 150px;
  }

  .page-n-h .game-card .card-image {
    height: 150px;
  }

  .page-n-h .faq-question h3 {
    font-size: 1em;
  }

  .page-n-h .final-cta-section h2 {
    font-size: 1.8em;
  }

  .page-n-h .final-cta-section p {
    font-size: 0.95em;
  }
}