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

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

.page-no-hu h1, .page-no-hu h2, .page-no-hu h3 {
  color: #336699; /* new8 Blue */
  margin-bottom: 20px;
  text-align: center;
}

.page-no-hu h1 {
  font-size: 3.2em;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-no-hu h2 {
  font-size: 2.5em;
  padding-top: 40px;
  margin-bottom: 30px;
  position: relative;
}

.page-no-hu h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFCC00; /* Wealth Gold */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-no-hu h3 {
  font-size: 1.8em;
  margin-top: 25px;
  text-align: center;
}

.page-no-hu p {
  margin-bottom: 15px;
  text-align: justify;
}

.page-no-hu .cta-button {
  display: inline-block;
  background-color: #FFCC00; /* Wealth Gold */
  color: #336699; /* new8 Blue for contrast */
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid #FFCC00;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu .cta-button:hover {
  background-color: #336699; /* new8 Blue */
  color: #FFCC00; /* Wealth Gold */
  border-color: #336699;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu .small-button {
  padding: 10px 20px;
  font-size: 0.9em;
}

.page-no-hu .full-width-button {
  display: block;
  width: fit-content;
  margin: 40px auto 20px auto;
  text-align: center;
  min-width: 250px;
}

/* Hero Banner Section */
.page-no-hu .hero-banner-section {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.page-no-hu .hero-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.page-no-hu .hero-banner-overlay {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5); /* Dark overlay for text readability */
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
}

.page-no-hu .hero-banner-overlay h1 {
  color: #FFCC00;
  font-size: 3.5em;
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-no-hu .hero-banner-overlay p {
  font-size: 1.3em;
  margin-bottom: 30px;
  font-weight: 300;
}

.page-no-hu .hero-banner-overlay .cta-button {
  background-color: #FFCC00;
  color: #336699;
  border-color: #FFCC00;
}

.page-no-hu .hero-banner-overlay .cta-button:hover {
  background-color: #336699;
  color: #FFCC00;
  border-color: #FFCC00;
}

/* Section Intro */
.page-no-hu .section-intro {
  padding: 60px 0;
  background-color: #ffffff;
}

/* Game Types Section */
.page-no-hu .section-game-types {
  padding: 60px 0;
  background-color: #f0f4f8; /* Light blueish background */
}

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

.page-no-hu .game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

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

.page-no-hu .game-card .card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-no-hu .game-card h3 {
  padding: 15px 20px 0;
  font-size: 1.5em;
  text-align: left;
}

.page-no-hu .game-card h3 a {
  text-decoration: none;
  color: #336699;
}

.page-no-hu .game-card h3 a:hover {
  color: #FFCC00;
}

.page-no-hu .game-card p {
  padding: 0 20px 15px;
  font-size: 0.95em;
  color: #555555;
  flex-grow: 1;
  text-align: left;
}

.page-no-hu .game-card .read-more-button {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 10px 15px;
  background-color: #336699;
  color: #ffffff;
  text-align: center;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-no-hu .game-card .read-more-button:hover {
  background-color: #FFCC00;
  color: #336699;
  transform: translateY(-2px);
}

/* Section Guide */
.page-no-hu .section-guide {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-no-hu .section-guide ol {
  list-style: none;
  counter-reset: guide-counter;
  padding: 0;
  margin-top: 30px;
}

.page-no-hu .section-guide ol li {
  counter-increment: guide-counter;
  margin-bottom: 25px;
  padding-left: 60px;
  position: relative;
  font-size: 1.1em;
  color: #444444;
}

.page-no-hu .section-guide ol li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #336699; /* new8 Blue */
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-no-hu .section-guide ol li strong {
  color: #336699;
}

.page-no-hu .section-guide ol li a {
  color: #336699;
  text-decoration: none;
  font-weight: bold;
}

.page-no-hu .section-guide ol li a:hover {
  color: #FFCC00;
  text-decoration: underline;
}

/* Section Strategies */
.page-no-hu .section-strategies {
  padding: 60px 0;
  background-color: #f0f4f8;
}

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

.page-no-hu .strategy-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding-bottom: 20px;
  text-align: center;
}

.page-no-hu .strategy-item .strategy-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-no-hu .strategy-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #336699;
}

.page-no-hu .strategy-item p {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px;
  text-align: center;
}

/* Section Promotions */
.page-no-hu .section-promotions {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-no-hu .promo-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 20px;
}

.page-no-hu .promo-item .promo-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin-bottom: 15px;
}

.page-no-hu .promo-item h3 {
  font-size: 1.4em;
  margin-bottom: 10px;
  padding: 0 20px;
  color: #336699;
}

.page-no-hu .promo-item h3 a {
  color: #336699;
  text-decoration: none;
}

.page-no-hu .promo-item h3 a:hover {
  color: #FFCC00;
}

.page-no-hu .promo-item p {
  font-size: 0.95em;
  color: #555555;
  padding: 0 20px;
  flex-grow: 1;
}

.page-no-hu .promo-item .cta-button {
  margin-top: 20px;
}

/* Section Why new8 */
.page-no-hu .section-why-new8 {
  padding: 60px 0;
  background-color: #336699; /* new8 Blue */
  color: #ffffff;
}

.page-no-hu .section-why-new8 h2 {
  color: #FFCC00;
}

.page-no-hu .section-why-new8 h2::after {
  background-color: #ffffff;
}

.page-no-hu .why-new8-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu .why-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu .why-item .why-image {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 20px;
  filter: brightness(0) invert(1); /* Ensure icons are white on dark background */
}

.page-no-hu .why-item h3 {
  color: #FFCC00;
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-no-hu .why-item p {
  font-size: 1em;
  color: #e0e0e0;
}

.page-no-hu .section-why-new8 .cta-button {
  margin-top: 50px;
  background-color: #FFCC00;
  color: #336699;
  border-color: #FFCC00;
}

.page-no-hu .section-why-new8 .cta-button:hover {
  background-color: #ffffff;
  color: #336699;
  border-color: #ffffff;
}

/* Section FAQ */
.page-no-hu .section-faq {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-no-hu .faq-list {
  margin-top: 40px;
}

.page-no-hu .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

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

.page-no-hu .faq-question:hover {
  background: #f0f4f8;
}

.page-no-hu .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: #336699;
  text-align: left;
  flex-grow: 1;
}

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

.page-no-hu .faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: #336699;
}

.page-no-hu .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px;
  background: #f9f9f9;
  color: #555555;
}

.page-no-hu .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height for content */
  padding: 20px 25px;
}

.page-no-hu .faq-answer p {
  margin-bottom: 0;
  text-align: left;
}

/* Section Latest News */
.page-no-hu .section-latest-news {
  padding: 60px 0 80px;
  background-color: #f0f4f8;
}

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

.page-no-hu .news-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-no-hu .news-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-no-hu .news-item .news-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.page-no-hu .news-item h3 {
  padding: 15px 20px 0;
  font-size: 1.4em;
  text-align: left;
}

.page-no-hu .news-item h3 a {
  text-decoration: none;
  color: #336699;
}

.page-no-hu .news-item h3 a:hover {
  color: #FFCC00;
}

.page-no-hu .news-item p {
  padding: 0 20px 15px;
  font-size: 0.95em;
  color: #555555;
  flex-grow: 1;
  text-align: left;
}

.page-no-hu .news-item .read-more-link {
  display: inline-block;
  padding: 10px 20px;
  color: #FFCC00;
  text-decoration: none;
  font-weight: bold;
  margin: 0 20px 20px;
  border: 2px solid #FFCC00;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-no-hu .news-item .read-more-link:hover {
  background-color: #FFCC00;
  color: #336699;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-no-hu h1 {
    font-size: 2.8em;
  }
  .page-no-hu h2 {
    font-size: 2em;
  }
  .page-no-hu .hero-banner-section {
    height: 400px;
  }
  .page-no-hu .hero-banner-overlay {
    padding: 30px;
    max-width: 90%;
  }
  .page-no-hu .hero-banner-overlay h1 {
    font-size: 2.5em;
  }
  .page-no-hu .hero-banner-overlay p {
    font-size: 1.1em;
  }
}

@media (max-width: 768px) {
  .page-no-hu h1 {
    font-size: 2.2em;
  }
  .page-no-hu h2 {
    font-size: 1.8em;
  }
  .page-no-hu h3 {
    font-size: 1.6em;
  }
  .page-no-hu .hero-banner-section {
    height: 350px;
  }
  .page-no-hu .hero-banner-overlay {
    padding: 20px;
  }
  .page-no-hu .hero-banner-overlay h1 {
    font-size: 2em;
  }
  .page-no-hu .hero-banner-overlay p {
    font-size: 0.95em;
  }
  .page-no-hu .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-no-hu .game-cards-grid, .page-no-hu .strategy-grid, .page-no-hu .promo-grid, .page-no-hu .why-new8-grid, .page-no-hu .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .page-no-hu .section-guide ol li {
    padding-left: 50px;
    font-size: 1em;
  }
  .page-no-hu .section-guide ol li::before {
    width: 35px;
    height: 35px;
    font-size: 1.1em;
  }
  .page-no-hu .faq-question {
    padding: 15px 20px;
  }
  .page-no-hu .faq-question h3 {
    font-size: 1.1em;
  }
  .page-no-hu .faq-toggle {
    font-size: 1.5em;
  }
  .page-no-hu .faq-answer {
    padding: 0 20px;
  }
  .page-no-hu .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-no-hu h1 {
    font-size: 1.8em;
  }
  .page-no-hu h2 {
    font-size: 1.5em;
  }
  .page-no-hu h3 {
    font-size: 1.3em;
  }
  .page-no-hu .hero-banner-section {
    height: 300px;
  }
  .page-no-hu .hero-banner-overlay h1 {
    font-size: 1.8em;
  }
  .page-no-hu .hero-banner-overlay p {
    font-size: 0.85em;
  }
  .page-no-hu .cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-no-hu .section-intro, .page-no-hu .section-game-types, .page-no-hu .section-guide, .page-no-hu .section-strategies, .page-no-hu .section-promotions, .page-no-hu .section-why-new8, .page-no-hu .section-faq, .page-no-hu .section-latest-news {
    padding: 40px 0;
  }
}