/* style/n-h.css */
:root {
  --primary-color: #CC0000; /* Deep Red */
  --secondary-color: #FFD700; /* Gold */
  --dark-background: #1a1a1a; /* Dark Grey/Black */
  --light-text: #ffffff;
  --dark-text: #333333;
  --light-grey: #f4f4f4;
  --medium-grey: #e0e0e0;
}

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

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

.page-n-h section {
  padding: 60px 0;
  margin-bottom: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-n-h section:nth-child(even) {
  background-color: var(--light-grey);
  box-shadow: none;
}

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

.page-n-h h1 {
  font-size: 3.2em;
  color: var(--light-text);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

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

.page-n-h h3 {
  font-size: 1.8em;
  color: var(--dark-text);
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-n-h p {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}

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

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

/* 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 100px;
  background: linear-gradient(135deg, #CC0000 0%, #a00000 100%); /* Deeper red gradient */
  border-radius: 0;
  box-shadow: none;
  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;
  z-index: 1;
}

.page-n-h .hero-image {
  width: 100%;
  max-width: 800px; /* Adjust max-width for visual balance */
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-n-h .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
}

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

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

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

.page-n-h .cta-button:hover {
  background: #ffc400; /* Slightly darker gold */
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
}

/* General Buttons */
.page-n-h .btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--light-text);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 15px;
}

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

.page-n-h .btn-small {
  display: inline-block;
  padding: 8px 18px;
  background: var(--secondary-color);
  color: var(--dark-text);
  text-decoration: none;
  border-radius: 20px;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  margin-top: 10px;
}

.page-n-h .btn-small:hover {
  background: #ffc400;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

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

.page-n-h .game-card, .page-n-h .promo-card, .page-n-h .blog-card {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

.page-n-h .game-card img, .page-n-h .promo-card img, .page-n-h .blog-card img {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid var(--medium-grey);
}

.page-n-h .game-card h3, .page-n-h .promo-card h3, .page-n-h .blog-card h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px;
  color: var(--primary-color);
  text-align: center;
}

.page-n-h .game-card h3 a, .page-n-h .promo-card h3 a, .page-n-h .blog-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-n-h .game-card h3 a:hover, .page-n-h .promo-card h3 a:hover, .page-n-h .blog-card h3 a:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.page-n-h .game-card p, .page-n-h .promo-card p, .page-n-h .blog-card p {
  font-size: 0.95em;
  color: var(--dark-text);
  padding: 0 15px;
  text-align: center;
  flex-grow: 1;
}

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

.page-n-h .benefit-item {
  background: var(--light-text);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

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

.page-n-h .step-item {
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

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

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

/* Strategy List */
.page-n-h .strategy-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-n-h .strategy-list li {
  background: #ffffff;
  border-left: 5px solid var(--primary-color);
  margin-bottom: 20px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.page-n-h .strategy-list li:hover {
  transform: translateX(5px);
}

.page-n-h .strategy-list h3 {
  color: var(--primary-color);
  text-align: left;
  font-size: 1.6em;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-n-h .strategy-list p {
  font-size: 1em;
  text-align: left;
  margin-bottom: 0;
}

/* FAQ Section */
.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.05);
}

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

.page-n-h .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-color: var(--light-grey);
  border-color: var(--primary-color);
}

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

.page-n-h .faq-question h3 {
  margin: 0;
  font-size: 1.3em;
  color: var(--dark-text);
  text-align: left;
  flex-grow: 1;
}

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

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

.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;
  border-left: 1px solid var(--medium-grey);
  border-right: 1px solid var(--medium-grey);
  border-bottom: 1px solid var(--medium-grey);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.page-n-h .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 20px 25px;
}

.page-n-h .faq-answer p {
  margin-bottom: 0;
  font-size: 1em;
  color: var(--dark-text);
}

/* Final CTA Section */
.page-n-h .section-cta-final {
  text-align: center;
  background: linear-gradient(135deg, var(--primary-color), #a00000);
  color: var(--light-text);
  padding: 80px 20px;
  border-radius: 12px;
  margin-top: 40px;
  margin-bottom: 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.page-n-h .section-cta-final p {
  color: #f0f0f0;
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

.page-n-h .section-cta-final .cta-button {
  background: var(--secondary-color);
  color: var(--primary-color);
  font-size: 1.6em;
  padding: 20px 50px;
  border-radius: 50px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-n-h .section-cta-final .cta-button:hover {
  background: #ffc400;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-n-h h1 {
    font-size: 2.8em;
  }
  .page-n-h h2 {
    font-size: 2em;
  }
  .page-n-h .cta-button {
    font-size: 1.2em;
    padding: 15px 35px;
  }
  .page-n-h .game-grid, .page-n-h .promo-grid, .page-n-h .blog-grid, .page-n-h .benefits-list, .page-n-h .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  .page-n-h .section-cta-final h2 {
    font-size: 2.2em;
  }
  .page-n-h .section-cta-final p {
    font-size: 1.1em;
  }
  .page-n-h .section-cta-final .cta-button {
    font-size: 1.4em;
    padding: 18px 45px;
  }
}

@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-section {
    padding: 60px 15px 80px;
  }
  .page-n-h .hero-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-n-h .cta-button {
    font-size: 1.1em;
    padding: 12px 30px;
  }
  .page-n-h .game-card img, .page-n-h .promo-card img, .page-n-h .blog-card img {
    height: 180px;
  }
  .page-n-h .game-grid, .page-n-h .promo-grid, .page-n-h .blog-grid, .page-n-h .benefits-list, .page-n-h .steps-grid {
    grid-template-columns: 1fr;
    gap: 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: 15px 20px;
  }
  .page-n-h .section-cta-final {
    padding: 60px 15px;
  }
  .page-n-h .section-cta-final h2 {
    font-size: 1.8em;
  }
  .page-n-h .section-cta-final p {
    font-size: 1em;
  }
  .page-n-h .section-cta-final .cta-button {
    font-size: 1.2em;
    padding: 15px 35px;
  }
}

@media (max-width: 480px) {
  .page-n-h h1 {
    font-size: 1.8em;
  }
  .page-n-h h2 {
    font-size: 1.6em;
  }
  .page-n-h p {
    font-size: 1em;
  }
  .page-n-h .hero-image {
    margin-bottom: 30px;
  }
  .page-n-h .hero-content p {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-n-h .cta-button {
    font-size: 1em;
    padding: 10px 25px;
  }
  .page-n-h .game-card img, .page-n-h .promo-card img, .page-n-h .blog-card img {
    height: 160px;
  }
  .page-n-h .benefit-item img, .page-n-h .step-item img {
    width: 70px;
    height: 70px;
  }
  .page-n-h .benefit-item h3, .page-n-h .step-item h3 {
    font-size: 1.3em;
  }
  .page-n-h .faq-question h3 {
    font-size: 1em;
  }
  .page-n-h .section-cta-final h2 {
    font-size: 1.6em;
  }
  .page-n-h .section-cta-final p {
    font-size: 0.95em;
  }
  .page-n-h .section-cta-final .cta-button {
    font-size: 1.1em;
    padding: 12px 30px;
  }
}