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

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

.page-n-h__section {
  padding: 60px 0;
  margin-bottom: 20px;
}

.page-n-h__section:nth-of-type(even) {
  background-color: #e9ecef;
}

.page-n-h__section-title {
  font-size: 2.5em;
  color: #007BFF;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-n-h__hero {
  background: linear-gradient(135deg, #007BFF, #FFC107);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.page-n-h__hero > .page-n-h__container {
  position: relative;
  z-index: 1;
}

.page-n-h__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 900;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-n-h__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.page-n-h__hero-subtitle a {
  color: #FFC107;
  text-decoration: none;
  font-weight: bold;
}

.page-n-h__hero-subtitle a:hover {
  text-decoration: underline;
}

.page-n-h__hero-actions .page-n-h__btn {
  margin: 0 10px;
}

.page-n-h__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.page-n-h__btn--primary {
  background-color: #FFC107;
  color: #0056b3; /* Darker blue for contrast */
  border-color: #FFC107;
}

.page-n-h__btn--primary:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  color: #003e80;
  transform: translateY(-3px);
}

.page-n-h__btn--secondary {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
}

.page-n-h__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-3px);
}

.page-n-h__btn--download {
  background-color: #007BFF;
  color: #fff;
  border-color: #007BFF;
  margin: 10px;
}

.page-n-h__btn--download:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-3px);
}

.page-n-h__btn--center {
  display: block;
  margin: 40px auto 20px auto;
  max-width: 300px;
}

.page-n-h__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-n-h__introduction p,
.page-n-h__game-types p,
.page-n-h__strategy p,
.page-n-h__promotions p,
.page-n-h__app-download p,
.page-n-h__conclusion p,
.page-n-h__faq-item p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #555;
}

.page-n-h__introduction p a, .page-n-h__call-to-action-text a, .page-n-h__link, .page-n-h__faq-item a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.page-n-h__introduction p a:hover, .page-n-h__call-to-action-text a:hover, .page-n-h__link:hover, .page-n-h__faq-item a:hover {
  text-decoration: underline;
}

.page-n-h__image-wrapper {
  text-align: center;
  margin: 40px 0;
}

.page-n-h__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-n-h__feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h__feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

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

.page-n-h__list {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  color: #555;
}

.page-n-h__list--ordered {
  list-style-type: decimal;
}

.page-n-h__list li {
  margin-bottom: 10px;
}

.page-n-h__faq-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.page-n-h__faq-item h3 {
  font-size: 1.3em;
  color: #007BFF;
  margin-bottom: 10px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.page-n-h__faq-item h3::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.page-n-h__faq-item.active h3::after {
  transform: rotate(45deg);
}

.page-n-h__faq-item p {
  display: none;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.page-n-h__faq-item.active p {
  display: block;
}

.page-n-h__download-buttons {
  text-align: center;
  margin: 40px 0;
}

.page-n-h__floating-ad-menu {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #007BFF;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 10px 0;
}

.page-n-h__ad-item {
  text-align: center;
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.page-n-h__ad-item:last-child {
  border-bottom: none;
}

.page-n-h__ad-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
  filter: drop-shadow(0 0 3px rgba(0,0,0,0.3));
}

.page-n-h__ad-item a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: color 0.3s ease;
}

.page-n-h__ad-item a:hover {
  color: #FFC107;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-n-h__hero-title {
    font-size: 2.8em;
  }
  .page-n-h__hero-subtitle {
    font-size: 1.3em;
  }
  .page-n-h__section-title {
    font-size: 2em;
  }
  .page-n-h__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-n-h__hero {
    padding: 80px 0;
  }
  .page-n-h__hero-title {
    font-size: 2.2em;
  }
  .page-n-h__hero-subtitle {
    font-size: 1.1em;
  }
  .page-n-h__hero-actions .page-n-h__btn {
    display: block;
    margin: 15px auto;
  }
  .page-n-h__section {
    padding: 40px 0;
  }
  .page-n-h__section-title {
    font-size: 1.8em;
  }
  .page-n-h__floating-ad-menu {
    right: 10px;
    padding: 5px 0;
  }
  .page-n-h__ad-item {
    padding: 8px 10px;
  }
  .page-n-h__ad-item img {
    width: 35px;
    height: 35px;
  }
  .page-n-h__ad-item a {
    font-size: 0.8em;
  }
}

@media (max-width: 576px) {
  .page-n-h__hero-title {
    font-size: 1.8em;
  }
  .page-n-h__hero-subtitle {
    font-size: 1em;
  }
  .page-n-h__section-title {
    font-size: 1.5em;
  }
  .page-n-h__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-n-h__container {
    padding: 0 15px;
  }
  .page-n-h__btn {
    padding: 12px 20px;
    font-size: 1em;
  }
  .page-n-h__floating-ad-menu {
    right: 5px;
    padding: 5px;
  }
  .page-n-h__ad-item {
    padding: 5px 8px;
  }
  .page-n-h__ad-item img {
    width: 30px;
    height: 30px;
  }
}