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

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

.page-n-h .section-title {
  font-size: 36px;
  color: #4B0082;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  font-weight: bold;
}

.page-n-h .section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-n-h p {
  margin-bottom: 15px;
  font-size: 16px;
  color: #555555;
}

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

/* 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: linear-gradient(135deg, #4B0082 0%, #7c2dbe 100%); /* Darker gradient for text contrast */
  color: #ffffff;
  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: 2;
}

.page-n-h .hero-image {
  width: 100%;
  margin-bottom: 30px;
  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%;
  max-width: 800px;
}

.page-n-h .hero-title {
  font-size: 48px;
  margin-bottom: 20px;
  color: #FFD700;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h .hero-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #e0e0e0;
}

.page-n-h .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #4B0082;
  text-decoration: none;
  border-radius: 8px;
  font-size: 22px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

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

/* Section Intro */
.page-n-h .section-intro {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-n-h .intro-features {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
}

.page-n-h .feature-item {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  text-align: center;
  padding: 30px;
  background-color: #f9f9f9;
  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-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  object-fit: contain;
}

.page-n-h .feature-item h3 {
  font-size: 24px;
  color: #4B0082;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-n-h .feature-item p {
  font-size: 15px;
  color: #666666;
}

/* Quick Links */
.page-n-h .section-quick-links {
  background-color: #f0f0f0;
  padding: 80px 0;
}

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

.page-n-h .quick-link-item {
  display: block;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
  text-decoration: none;
  color: #333333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 5px solid #FFD700;
}

.page-n-h .quick-link-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-n-h .quick-link-item h3 {
  font-size: 22px;
  color: #4B0082;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-n-h .quick-link-item p {
  font-size: 15px;
  color: #666666;
}

/* Games Section */
.page-n-h .section-games {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-n-h .game-card {
  background-color: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h .game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.page-n-h .game-card h3 a.game-link {
  color: #4B0082;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-n-h .game-card h3 a.game-link:hover {
  color: #FFD700;
}

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

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

.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-card {
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h .promo-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-n-h .promo-card h3 {
  font-size: 24px;
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-n-h .promo-card h3 a {
  color: #4B0082;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-n-h .promo-card h3 a:hover {
  color: #FFD700;
}

.page-n-h .promo-card p {
  font-size: 15px;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 20px;
}

.page-n-h .btn-promo {
  display: inline-block;
  padding: 12px 30px;
  background: #FFD700;
  color: #4B0082;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-n-h .btn-promo:hover {
  background: #e6c200;
  transform: translateY(-2px);
}

/* Security & Support */
.page-n-h .section-security-support {
  background-color: #ffffff;
  padding: 80px 0;
}

.page-n-h .security-support-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.page-n-h .security-info, .page-n-h .support-info {
  flex: 1;
  min-width: 300px;
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.page-n-h .security-info h3, .page-n-h .support-info h3 {
  font-size: 26px;
  color: #4B0082;
  margin-bottom: 15px;
  font-weight: bold;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
}

.page-n-h .support-info ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.page-n-h .support-info li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555555;
}

.page-n-h .support-info li strong {
  color: #4B0082;
}

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

.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: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-n-h .faq-question h3 {
  font-size: 18px;
  color: #4B0082;
  margin: 0;
  font-weight: bold;
}

.page-n-h .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-n-h .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #fdfdfd;
  border: 1px solid #e0e0e0;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

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

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

/* Blog Section */
.page-n-h .section-blog {
  background-color: #ffffff;
  padding: 80px 0;
}

.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: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  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-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-n-h .blog-card h3 {
  font-size: 22px;
  padding: 15px 20px 0;
  margin-bottom: 5px;
}

.page-n-h .blog-card h3 a.blog-link {
  color: #4B0082;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-n-h .blog-card h3 a.blog-link:hover {
  color: #FFD700;
}

.page-n-h .blog-card p {
  font-size: 15px;
  color: #666666;
  padding: 0 20px;
  margin-bottom: 10px;
}

.page-n-h .blog-date {
  display: block;
  font-size: 13px;
  color: #999999;
  padding: 0 20px 15px;
}

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

.page-n-h .btn-view-all {
  display: inline-block;
  padding: 12px 30px;
  background: #4B0082;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-n-h .btn-view-all:hover {
  background: #6a1a9f;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-n-h .hero-title {
    font-size: 40px;
  }

  .page-n-h .hero-description {
    font-size: 18px;
  }

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

  .page-n-h .section-title {
    font-size: 30px;
  }

  .page-n-h .security-support-content {
    flex-direction: column;
  }

  .page-n-h .security-info, .page-n-h .support-info {
    min-width: unset;
  }
}

@media (max-width: 768px) {
  .page-n-h .hero-title {
    font-size: 32px;
  }

  .page-n-h .hero-description {
    font-size: 16px;
  }

  .page-n-h .cta-button {
    padding: 12px 30px;
    font-size: 18px;
  }

  .page-n-h .section-title {
    font-size: 26px;
  }

  .page-n-h .feature-item, .page-n-h .quick-link-item, .page-n-h .game-card, .page-n-h .promo-card, .page-n-h .blog-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-n-h .feature-item {
    padding: 20px;
  }

  .page-n-h .faq-question {
    padding: 15px 20px;
  }

  .page-n-h .faq-question h3 {
    font-size: 16px;
  }

  .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: 15px 20px;
  }
}

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

  .page-n-h .section-title {
    font-size: 22px;
  }

  .page-n-h p {
    font-size: 14px;
  }

  .page-n-h .cta-button {
    font-size: 16px;
    padding: 10px 25px;
  }
}