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

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

.page-n-h h1, .page-n-h h2, .page-n-h h3 {
  color: #FFD700;
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.3;
}

.page-n-h h1 {
  font-size: 2.8em;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-n-h h2 {
  font-size: 2.2em;
  padding-top: 40px;
  border-bottom: 2px solid #FFD700;
  padding-bottom: 10px;
  margin-bottom: 30px;
}

.page-n-h h3 {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-n-h p {
  margin-bottom: 15px;
  font-size: 1.1em;
  color: #E0E0E0;
}

.page-n-h a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-n-h a:hover {
  color: #FFA500;
  text-decoration: underline;
}

.page-n-h .cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #FFD700, #FFA500);
  color: #1A2E47;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1.2em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  margin-top: 20px;
  border: none;
  cursor: pointer;
}

.page-n-h .cta-button:hover {
  background: linear-gradient(90deg, #FFA500, #FFD700);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-n-h .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: #1A2E47;
}

.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;
}

.page-n-h .hero-image {
  width: 100%;
  margin-top: 30px;
  order: 2;
}

.page-n-h .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.page-n-h .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  order: 1;
}

.page-n-h .hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 30px auto;
  color: #D0D0D0;
}

.page-n-h .section-intro {
  background-color: #1A2E47;
  padding: 60px 0;
}

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

.page-n-h .text-content {
  flex: 2;
  min-width: 300px;
}

.page-n-h .image-content {
  flex: 1;
  min-width: 300px;
}

.page-n-h .image-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-n-h .section-games {
  background-color: #0F1D2D;
  padding: 60px 0;
}

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

.page-n-h .game-card {
  background-color: #1A2E47;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h .game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-bottom: 3px solid #FFD700;
}

.page-n-h .game-card h3 {
  color: #FFD700;
  font-size: 1.4em;
  margin: 20px 15px 10px 15px;
  text-align: center;
}

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

.page-n-h .game-card p {
  font-size: 0.95em;
  color: #C0C0C0;
  padding: 0 15px;
  margin-bottom: 20px;
}

.page-n-h .btn-small {
  display: inline-block;
  background: #FFD700;
  color: #1A2E47;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-n-h .section-benefits {
  background-color: #1A2E47;
  padding: 60px 0;
}

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

.page-n-h .benefit-item {
  background-color: #0F1D2D;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-n-h .benefit-item img {
  width: 100%;
  max-width: 250px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-n-h .benefit-item h3 {
  color: #FFD700;
  font-size: 1.5em;
  margin-top: 0;
}

.page-n-h .benefit-item p {
  font-size: 1em;
  color: #C0C0C0;
}

.page-n-h .section-guide {
  background-color: #0F1D2D;
  padding: 60px 0;
}

.page-n-h .guide-list {
  list-style: none;
  padding: 0;
  counter-reset: guide-counter;
}

.page-n-h .guide-list li {
  background-color: #1A2E47;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  padding-left: 80px;
}

.page-n-h .guide-list li::before {
  counter-increment: guide-counter;
  content: counter(guide-counter);
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFD700;
  color: #1A2E47;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5em;
  font-weight: bold;
}

.page-n-h .guide-list li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  text-align: left;
  color: #FFD700;
}

.page-n-h .guide-list li h3 a {
  color: #FFD700;
}

.page-n-h .guide-list li p {
  font-size: 1em;
  color: #C0C0C0;
}

.page-n-h .section-tips {
  background-color: #1A2E47;
  padding: 60px 0;
}

.page-n-h .tip-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-n-h .tip-list li {
  background-color: #0F1D2D;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
}

.page-n-h .tip-list li strong {
  color: #FFD700;
}

.page-n-h .section-faq {
  background-color: #0F1D2D;
  padding: 60px 0;
}

.page-n-h .faq-list {
  margin-top: 30px;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A2E47;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #2A3E57;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #FFD700;
  text-align: left;
}

.faq-toggle {
  font-size: 1.8em;
  font-weight: bold;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #0F1D2D;
  color: #E0E0E0;
}

.faq-answer p {
  margin-top: 0;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px dashed #334A6A;
}

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

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.page-n-h .section-conclusion {
  background-color: #1A2E47;
  padding: 60px 0 80px 0;
  text-align: center;
}

.page-n-h .section-conclusion p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 30px auto;
  color: #D0D0D0;
}

/* Responsive Design */
@media (max-width: 992px) {
  .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 p {
    font-size: 1em;
  }
  .page-n-h .hero-image {
    margin-top: 20px;
  }
  .page-n-h .content-wrapper {
    flex-direction: column;
  }
  .page-n-h .text-content, .page-n-h .image-content {
    flex: none;
    width: 100%;
  }
  .page-n-h .game-grid, .page-n-h .benefit-grid {
    grid-template-columns: 1fr;
  }
  .page-n-h .guide-list li {
    padding-left: 60px;
  }
  .page-n-h .guide-list li::before {
    left: 15px;
    width: 35px;
    height: 35px;
    font-size: 1.3em;
  }
  .faq-question {
    padding: 15px 20px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 1.5em;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 15px 20px;
    padding-bottom: 0;
  }
}

@media (max-width: 768px) {
  .page-n-h h1 {
    font-size: 1.8em;
  }
  .page-n-h h2 {
    font-size: 1.6em;
  }
  .page-n-h h3 {
    font-size: 1.3em;
  }
  .page-n-h .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-n-h .hero-section {
    padding: 40px 15px;
  }
  .page-n-h .hero-content p {
    font-size: 1em;
  }
  .page-n-h .section-intro, .page-n-h .section-games, .page-n-h .section-benefits, .page-n-h .section-guide, .page-n-h .section-tips, .page-n-h .section-faq, .page-n-h .section-conclusion {
    padding: 40px 0;
  }
  .page-n-h .container {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-n-h h1 {
    font-size: 1.6em;
  }
  .page-n-h h2 {
    font-size: 1.4em;
  }
  .page-n-h h3 {
    font-size: 1.2em;
  }
  .page-n-h .guide-list li {
    padding-left: 50px;
  }
  .page-n-h .guide-list li::before {
    left: 10px;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
  }
  .faq-question h3 {
    font-size: 1em;
  }
  .faq-toggle {
    font-size: 1.3em;
  }
}