/* style/n-h.css */
.page-n-h {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-n-h .page-n-h__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media (max-width: 768px) {
  .page-n-h .page-n-h__container--flex {
    flex-direction: column;
  }
}

.page-n-h .page-n-h__section-title {
  font-size: 2.5em;
  color: #8B0000;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-n-h .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 .page-n-h__text {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-n-h .page-n-h__text--center {
  text-align: center;
}

.page-n-h .page-n-h__text--small {
  font-size: 0.9em;
  color: #777;
}

.page-n-h .highlight {
  color: #8B0000;
  font-weight: bold;
}

/* Buttons */
.page-n-h .page-n-h__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
}

.page-n-h .page-n-h__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #8B0000; /* Maroon */
  box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-n-h .page-n-h__btn--primary:hover {
  background-color: #e6c200;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

.page-n-h .page-n-h__btn--secondary {
  background-color: #8B0000; /* Maroon */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
  box-shadow: 0 4px 10px rgba(139, 0, 0, 0.4);
}

.page-n-h .page-n-h__btn--secondary:hover {
  background-color: #6a0000;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(139, 0, 0, 0.6);
}

.page-n-h .page-n-h__btn--small {
  padding: 8px 18px;
  font-size: 0.9em;
}

.page-n-h .page-n-h__btn--hero {
  padding: 15px 35px;
  font-size: 1.2em;
  border-radius: 8px;
}

.page-n-h .page-n-h__link {
  color: #8B0000;
  text-decoration: none;
  font-weight: bold;
}

.page-n-h .page-n-h__link:hover {
  text-decoration: underline;
}

/* Hero Section */
.page-n-h__hero {
  background: linear-gradient(135deg, #FFD700, #8B0000);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  position: relative;
  overflow: hidden;
}

.page-n-h__hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_gold_red_pattern,luxury,glitter]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-n-h__hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
}

.page-n-h__hero-title {
  font-size: 3.8em;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.page-n-h__hero-title .highlight {
  color: #FFD700; /* Gold for emphasis */
}

.page-n-h__hero-description {
  font-size: 1.4em;
  margin-bottom: 40px;
  opacity: 0.9;
  color: #eee;
}

.page-n-h__hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-n-h__hero-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 40%;
  max-width: 500px;
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
}

.page-n-h__hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 1024px) {
  .page-n-h__hero-image {
    width: 50%;
  }
}

@media (max-width: 768px) {
  .page-n-h__hero {
    padding: 60px 0;
    min-height: 400px;
  }
  .page-n-h__hero-title {
    font-size: 2.5em;
  }
  .page-n-h__hero-description {
    font-size: 1.1em;
  }
  .page-n-h__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-n-h__hero-image {
    display: none;
  }
}

/* About Section */
.page-n-h__about {
  padding: 60px 0;
  background-color: #fff;
}

.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 {
  text-align: center;
  padding: 30px;
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-n-h__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-n-h__feature-item img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  filter: drop-shadow(0 3px 5px rgba(0, 0, 0, 0.1));
}

.page-n-h__feature-item h3 {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 15px;
}

.page-n-h__feature-item p {
  font-size: 1em;
  color: #666;
}

/* Game Types Section */
.page-n-h__game-types {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.page-n-h__grid {
  display: grid;
  gap: 30px;
  margin-top: 40px;
}

.page-n-h__grid--2-cols {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-n-h__card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h__card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-n-h__card-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-n-h__card-content h3 {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-n-h__card-content p {
  color: #666;
  margin-bottom: 20px;
}

/* How to Play Section */
.page-n-h__how-to-play {
  padding: 60px 0;
  background-color: #fff;
}

.page-n-h__steps {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-n-h__steps li {
  background-color: #fefefe;
  border-left: 5px solid #FFD700;
  padding: 25px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.page-n-h__steps li h3 {
  font-size: 1.5em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-n-h__steps li p {
  color: #555;
}

.page-n-h__cta-box {
  background-color: #FFD700;
  color: #8B0000;
  padding: 40px;
  border-radius: 10px;
  text-align: center;
  margin-top: 50px;
}

.page-n-h__cta-box p {
  font-size: 1.5em;
  margin-bottom: 25px;
  font-weight: bold;
  color: #8B0000;
}

.page-n-h__cta-box .page-n-h__btn--primary {
  background-color: #8B0000;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-n-h__cta-box .page-n-h__btn--primary:hover {
  background-color: #6a0000;
  color: #FFD700;
}

/* Tips Section */
.page-n-h__tips {
  padding: 60px 0;
  background-color: #f2f2f2;
}

.page-n-h__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-n-h__list li {
  background-color: #fff;
  padding: 25px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.page-n-h__list li h3 {
  font-size: 1.4em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-n-h__list li p {
  color: #555;
}

.page-n-h__list--checked li {
  position: relative;
  padding-left: 45px;
}

.page-n-h__list--checked li::before {
  content: '✔';
  position: absolute;
  left: 15px;
  top: 25px;
  color: #FFD700;
  font-size: 1.5em;
  font-weight: bold;
}

/* Promotions Section */
.page-n-h__promotions {
  padding: 60px 0;
  background-color: #fff;
}

.page-n-h__promo-card {
  background-color: #fefefe;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-n-h__promo-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-n-h__promo-content h3 {
  font-size: 1.6em;
  color: #8B0000;
  margin-bottom: 10px;
}

.page-n-h__promo-content p {
  color: #666;
  margin-bottom: 20px;
}

/* Mobile App Section */
.page-n-h__mobile {
  padding: 80px 0;
  background-color: #8B0000;
  color: #fff;
}

.page-n-h__mobile .page-n-h__section-title {
  color: #FFD700;
}

.page-n-h__mobile .page-n-h__section-title::after {
  background-color: #fff;
}

.page-n-h__mobile-content {
  flex: 1;
}

.page-n-h__mobile-content .page-n-h__text {
  color: #eee;
}

.page-n-h__mobile-content .page-n-h__list {
  margin-top: 20px;
}

.page-n-h__mobile-content .page-n-h__list li {
  background: none;
  box-shadow: none;
  border-left: none;
  padding: 10px 0;
  color: #eee;
  position: relative;
  padding-left: 30px;
}

.page-n-h__mobile-content .page-n-h__list--star li::before {
  content: '★';
  position: absolute;
  left: 0;
  top: 10px;
  color: #FFD700;
  font-size: 1.2em;
}

.page-n-h__mobile-image {
  flex: 1;
  text-align: center;
}

.page-n-h__mobile-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .page-n-h__mobile-image {
    margin-top: 40px;
  }
}

/* FAQ Section */
.page-n-h__faq {
  padding: 60px 0;
  background-color: #f9f9f9;
}

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

.page-n-h__accordion-item {
  background-color: #fff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.page-n-h__accordion-header {
  width: 100%;
  padding: 20px 25px;
  text-align: left;
  font-size: 1.3em;
  font-weight: bold;
  color: #8B0000;
  background-color: #fefefe;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-n-h__accordion-header:hover {
  background-color: #f5f5f5;
}

.page-n-h__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-n-h__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-n-h__accordion-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-n-h__accordion-content.active {
  max-height: 200px; /* Adjust as needed */
  padding: 20px 25px;
}

.page-n-h__accordion-content p {
  font-size: 1em;
  color: #555;
}

/* Final CTA Section */
.page-n-h__cta-final {
  background: linear-gradient(135deg, #8B0000, #FFD700);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.page-n-h__cta-final .page-n-h__section-title {
  color: #fff;
}

.page-n-h__cta-final .page-n-h__section-title::after {
  background-color: #FFD700;
}

.page-n-h__cta-final .page-n-h__text {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #eee;
}

.page-n-h__cta-final .page-n-h__btn--hero {
  background-color: #FFD700;
  color: #8B0000;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
}

.page-n-h__cta-final .page-n-h__btn--hero:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.6);
}

@media (max-width: 768px) {
  .page-n-h .page-n-h__section-title {
    font-size: 2em;
  }
  .page-n-h__grid--2-cols {
    grid-template-columns: 1fr;
  }
  .page-n-h__feature-item {
    padding: 20px;
  }
  .page-n-h__card-content {
    padding: 20px;
  }
  .page-n-h__steps li {
    padding: 20px;
  }
  .page-n-h__list--checked li {
    padding-left: 35px;
  }
  .page-n-h__list--checked li::before {
    top: 20px;
  }
  .page-n-h__cta-box {
    padding: 30px;
  }
  .page-n-h__cta-box p {
    font-size: 1.2em;
  }
  .page-n-h__accordion-header {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-n-h__accordion-content.active {
    padding: 15px 20px;
  }
}