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

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

.page-n-h__hero {
  background-color: #003366;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-n-h__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFCC00;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h__hero-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.8;
}

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

.page-n-h__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  text-align: center;
  cursor: pointer;
}

.page-n-h__btn--primary {
  background-color: #FFCC00;
  color: #003366;
  border: 2px solid #FFCC00;
}

.page-n-h__btn--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-n-h__btn--secondary {
  background-color: transparent;
  color: #FFCC00;
  border: 2px solid #FFCC00;
}

.page-n-h__btn--secondary:hover {
  background-color: #FFCC00;
  color: #003366;
  transform: translateY(-2px);
}

.page-n-h__section {
  padding: 60px 0;
  background-color: #f9f9f9;
  border-bottom: 1px solid #eee;
}

.page-n-h__section:nth-of-type(even) {
  background-color: #e8f0f8; /* Light blue tint for alternating sections */
}

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

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

.page-n-h__section-intro {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: -20px auto 40px auto;
  color: #555;
}

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

.page-n-h__content-grid > div {
  flex: 1;
}

.page-n-h__text-content h3 {
  font-size: 1.8em;
  color: #003366;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-n-h__text-content p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #444;
}

.page-n-h__text-content ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-bottom: 20px;
  color: #444;
}

.page-n-h__text-content ul li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

.page-n-h__image-wrapper {
  text-align: center;
}

.page-n-h__img-responsive {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-n-h__card {
  background-color: #fff;
  border-radius: 12px;
  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__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-n-h__card-img {
  max-width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-n-h__card-title {
  font-size: 1.6em;
  color: #003366;
  margin-bottom: 15px;
}

.page-n-h__card-description {
  font-size: 1em;
  color: #555;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-n-h__card-btn {
  background-color: #003366;
  color: #FFCC00;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-n-h__card-btn:hover {
  background-color: #FFCC00;
  color: #003366;
}

.page-n-h__how-to-play .page-n-h__content-wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.page-n-h__image-left {
  flex: 1;
  max-width: 45%;
}

.page-n-h__text-right {
  flex: 1;
  max-width: 55%;
}

.page-n-h__list-numbered {
  list-style: none;
  counter-reset: my-counter;
  padding-left: 0;
  margin-bottom: 30px;
}

.page-n-h__list-numbered li {
  counter-increment: my-counter;
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #444;
  position: relative;
  padding-left: 40px;
}

.page-n-h__list-numbered li::before {
  content: counter(my-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #003366;
  color: #FFCC00;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 0.9em;
}

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

.page-n-h__strategy-item {
  background-color: #fff;
  border-left: 5px solid #FFCC00;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-n-h__strategy-title {
  font-size: 1.4em;
  color: #003366;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-n-h__strategy-item p {
  color: #555;
}

.page-n-h__cta-bottom {
  text-align: center;
  margin-top: 50px;
}

.page-n-h__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.page-n-h__faq-question {
  font-size: 1.3em;
  color: #003366;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f0f6fc;
  position: relative;
  transition: background-color 0.3s ease;
}

.page-n-h__faq-question:hover {
  background-color: #e5edf7;
}

.page-n-h__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFCC00;
  transition: transform 0.3s ease;
}

.page-n-h__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-n-h__faq-answer {
  padding: 0 25px 20px 25px;
  margin: 0;
  font-size: 1.05em;
  color: #555;
  display: none;
}

.page-n-h__responsible-gaming {
  background-color: #003366;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}

.page-n-h__responsible-gaming h2 {
  color: #FFCC00;
}

.page-n-h__responsible-gaming p {
  max-width: 900px;
  margin: 0 auto 30px auto;
  font-size: 1.1em;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-n-h__hero-title {
    font-size: 2.5em;
  }
  .page-n-h__section-title {
    font-size: 2em;
  }
  .page-n-h__content-grid,
  .page-n-h__how-to-play .page-n-h__content-wrapper {
    flex-direction: column;
  }
  .page-n-h__image-left,
  .page-n-h__text-right {
    max-width: 100%;
  }
  .page-n-h__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-n-h__hero {
    padding: 60px 0;
  }
  .page-n-h__hero-title {
    font-size: 2em;
  }
  .page-n-h__hero-description {
    font-size: 1em;
  }
  .page-n-h__hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .page-n-h__btn {
    width: 80%;
    margin: 0 auto;
  }
  .page-n-h__section {
    padding: 40px 0;
  }
  .page-n-h__section-title {
    font-size: 1.8em;
  }
  .page-n-h__card {
    padding: 25px;
  }
  .page-n-h__faq-question {
    font-size: 1.1em;
    padding: 15px 20px;
  }
  .page-n-h__faq-question::after {
    right: 20px;
  }
  .page-n-h__faq-answer {
    padding: 0 20px 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-n-h__hero-title {
    font-size: 1.8em;
  }
  .page-n-h__btn {
    font-size: 1em;
    padding: 12px 20px;
  }
  .page-n-h__section-title {
    font-size: 1.5em;
  }
  .page-n-h__list-numbered li {
    font-size: 1em;
  }
  .page-n-h__strategy-title {
    font-size: 1.2em;
  }
}