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

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

.page-no-hu h1, .page-no-hu h2, .page-no-hu h3 {
  color: #003366;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-no-hu h1 {
  font-size: 48px;
  text-align: center;
}

.page-no-hu h2 {
  font-size: 36px;
  text-align: center;
  padding-top: 40px;
  margin-bottom: 30px;
}

.page-no-hu h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.page-no-hu p {
  margin-bottom: 15px;
  font-size: 17px;
}

.page-no-hu .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFCC00;
  color: #003366;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  border: 2px solid #FFCC00;
}

.page-no-hu .cta-button:hover {
  background: #003366;
  color: #FFCC00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  border-color: #003366;
}

.page-no-hu .cta-center {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
}

/* Hero Section */
.page-no-hu .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #003366 0%, #001a33 100%); /* Darker blue gradient */
  color: #ffffff;
}

.page-no-hu .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-no-hu .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-no-hu .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-no-hu .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-no-hu .hero-content h1 {
  color: #FFCC00;
  font-size: 52px;
  margin-bottom: 20px;
}

.page-no-hu .hero-content p {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-no-hu .hero-content .cta-button {
  background: #FFCC00;
  color: #003366;
  border-color: #FFCC00;
}

.page-no-hu .hero-content .cta-button:hover {
  background: #f5b900;
  color: #001a33;
  border-color: #f5b900;
}

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

.page-no-hu .intro-section p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.page-no-hu .game-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-no-hu .game-card h3 {
  padding: 15px 15px 5px;
  font-size: 22px;
  color: #003366;
}

.page-no-hu .game-card p {
  padding: 0 15px 20px;
  font-size: 16px;
  color: #555;
}

.page-no-hu .game-card .card-link {
  text-decoration: none;
  color: #003366;
  transition: color 0.3s ease;
}

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

/* How to Play Section */
.page-no-hu .how-to-play-section {
  padding: 60px 0;
  background-color: #fff;
}

.page-no-hu .how-to-play-section ol {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-no-hu .how-to-play-section ol li {
  background: #f9f9f9;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  padding-left: 70px;
}

.page-no-hu .how-to-play-section ol li::before {
  content: counter(step-counter);
  counter-increment: step-counter;
  position: absolute;
  left: 20px;
  top: 25px;
  background: #003366;
  color: #FFCC00;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
}

.page-no-hu .how-to-play-section ol li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #003366;
  font-size: 22px;
}

.page-no-hu .how-to-play-section ol li p {
  font-size: 16px;
  color: #555;
  margin-bottom: 0;
}

.page-no-hu .how-to-play-section ol li .card-link {
  color: #003366;
  text-decoration: none;
}

.page-no-hu .how-to-play-section ol li .card-link:hover {
  color: #FFCC00;
}

/* Strategy Section */
.page-no-hu .strategy-section {
  padding: 60px 0;
  background-color: #f0f4f7;
}

.page-no-hu .strategy-section ul {
  list-style: none;
  padding: 0;
  max-width: 900px;
  margin: 40px auto;
}

.page-no-hu .strategy-section ul li {
  background: #fff;
  margin-bottom: 20px;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.page-no-hu .strategy-section ul li h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #003366;
  font-size: 22px;
}

.page-no-hu .strategy-section ul li p {
  font-size: 16px;
  color: #555;
  margin-bottom: 0;
}

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

.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-card {
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu .promo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-no-hu .promo-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-no-hu .promo-card h3 {
  padding: 15px 15px 5px;
  font-size: 22px;
  color: #003366;
}

.page-no-hu .promo-card p {
  padding: 0 15px 20px;
  font-size: 16px;
  color: #555;
}

.page-no-hu .promo-card .card-link {
  text-decoration: none;
  color: #003366;
  transition: color 0.3s ease;
}

.page-no-hu .promo-card .card-link:hover {
  color: #FFCC00;
}

/* Security and Customer Service Section */
.page-no-hu .security-customer-service-section {
  padding: 60px 0;
  background-color: #003366;
  color: #fff;
}

.page-no-hu .security-customer-service-section h2 {
  color: #FFCC00;
}

.page-no-hu .security-customer-service-section h3 {
  color: #FFCC00;
}

.page-no-hu .security-customer-service-section p {
  color: #e0e0e0;
}

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

.page-no-hu .feature-item {
  text-align: center;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu .feature-item img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 204, 0, 0.5)); /* Subtle glow for icons */
}

.page-no-hu .feature-item h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.page-no-hu .feature-item p {
  font-size: 15px;
}

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

.page-no-hu .faq-list {
  max-width: 900px;
  margin: 40px auto;
}

.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 20px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

.page-no-hu .faq-question h3 {
  margin: 0;
  font-size: 18px;
  color: #003366;
}

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

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

.page-no-hu .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 20px;
  background: #f9f9f9;
  color: #555;
}

.page-no-hu .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed for content */
  padding: 20px;
  border-top: 1px solid #e0e0e0;
}

.page-no-hu .faq-answer p {
  margin-bottom: 0;
  font-size: 16px;
}

.page-no-hu .faq-answer a {
  color: #003366;
  text-decoration: underline;
}

.page-no-hu .faq-answer a:hover {
  color: #FFCC00;
}

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

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

.page-no-hu .news-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu .news-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-no-hu .news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.page-no-hu .news-card h3 {
  padding: 15px 15px 5px;
  font-size: 20px;
  color: #003366;
}

.page-no-hu .news-card p {
  padding: 0 15px 10px;
  font-size: 15px;
  color: #555;
}

.page-no-hu .news-card .news-date {
  display: block;
  font-size: 14px;
  color: #888;
  padding: 0 15px 15px;
  text-align: right;
}

.page-no-hu .news-card .card-link {
  text-decoration: none;
  color: #003366;
  transition: color 0.3s ease;
}

.page-no-hu .news-card .card-link:hover {
  color: #FFCC00;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-no-hu h1 {
    font-size: 40px;
  }

  .page-no-hu h2 {
    font-size: 30px;
  }

  .page-no-hu .hero-content h1 {
    font-size: 44px;
  }

  .page-no-hu .hero-content p {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-no-hu .hero-section {
    padding: 40px 15px;
  }

  .page-no-hu .hero-image {
    margin-bottom: 20px;
  }

  .page-no-hu .hero-image img {
    border-radius: 4px;
  }

  .page-no-hu .hero-content h1 {
    font-size: 32px;
  }

  .page-no-hu .hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-no-hu .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }

  .page-no-hu h1 {
    font-size: 32px;
  }

  .page-no-hu h2 {
    font-size: 26px;
    padding-top: 30px;
  }

  .page-no-hu h3 {
    font-size: 20px;
  }

  .page-no-hu p {
    font-size: 15px;
  }

  .page-no-hu .game-grid, .page-no-hu .promo-grid, .page-no-hu .features-grid, .page-no-hu .news-grid {
    grid-template-columns: 1fr;
  }

  .page-no-hu .how-to-play-section ol li {
    padding: 20px 20px 20px 60px;
  }

  .page-no-hu .how-to-play-section ol li::before {
    width: 35px;
    height: 35px;
    font-size: 18px;
    left: 15px;
    top: 20px;
  }

  .page-no-hu .faq-question h3 {
    font-size: 16px;
  }

  .page-no-hu .faq-toggle {
    font-size: 20px;
  }

  .page-no-hu .faq-item.active .faq-answer {
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .page-no-hu .hero-content h1 {
    font-size: 28px;
  }

  .page-no-hu .hero-content p {
    font-size: 14px;
  }

  .page-no-hu h1 {
    font-size: 28px;
  }

  .page-no-hu h2 {
    font-size: 22px;
  }

  .page-no-hu .cta-button {
    width: 100%;
    box-sizing: border-box;
  }
}