.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 section {
  padding: 60px 0;
}

.page-no-hu section:nth-of-type(even) {
  background-color: #f0f0f0;
}

.page-no-hu h1,
.page-no-hu h2,
.page-no-hu h3 {
  color: #000080; /* Deep Blue */
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

.page-no-hu h1 {
  font-size: 3.2em;
  color: #FFD700; /* Gold */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-no-hu h2 {
  font-size: 2.5em;
  color: #000080; /* Deep Blue */
}

.page-no-hu h3 {
  font-size: 1.8em;
  color: #000080; /* Deep Blue */
}

.page-no-hu p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.page-no-hu .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Gold */
  color: #000080; /* Deep Blue */
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid #000080;
}

.page-no-hu .cta-button:hover {
  background: #e0b800; /* Slightly darker gold */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Hero Banner */
.page-no-hu .hero-banner {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #000080, #3a3a99);
  overflow: hidden;
}

.page-no-hu .hero-banner .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-banner .hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  margin-bottom: 40px;
}

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

.page-no-hu .hero-banner .hero-content p {
  font-size: 1.25em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #f0f0f0;
}

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

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

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

.page-no-hu .feature-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu .feature-item .feature-icon {
  width: 150px; /* Increased size */
  height: 150px; /* Increased size */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-no-hu .feature-item h3 {
  color: #FFD700; /* Gold */
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.6em;
}

.page-no-hu .feature-item p {
  font-size: 1em;
  color: #555;
  text-align: center;
}

/* Quick Access Section */
.page-no-hu .quick-access-section {
  background-color: #f0f0f0;
  padding: 80px 0;
}

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

.page-no-hu .access-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu .access-card .card-icon {
  width: 120px; /* Increased size */
  height: 120px; /* Increased size */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-no-hu .access-card h3 {
  color: #000080; /* Deep Blue */
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.5em;
}

.page-no-hu .access-card p {
  font-size: 1em;
  color: #666;
  text-align: center;
}

/* Games Showcase Section */
.page-no-hu .games-showcase-section {
  background-color: #ffffff;
  padding: 80px 0;
}

.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: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 5px 20px 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 30px rgba(0, 0, 0, 0.15);
}

.page-no-hu .game-card .game-image {
  width: 100%;
  height: 250px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-no-hu .game-card h3 {
  color: #FFD700; /* Gold */
  margin: 20px 15px 10px 15px;
  font-size: 1.7em;
}

.page-no-hu .game-card p {
  font-size: 1em;
  color: #555;
  padding: 0 15px 20px 15px;
  text-align: center;
}

.page-no-hu .game-card .play-button {
  display: inline-block;
  padding: 12px 30px;
  background: #000080; /* Deep Blue */
  color: #FFD700; /* Gold */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.page-no-hu .game-card .play-button:hover {
  background: #3a3a99; /* Lighter Deep Blue */
}

.page-no-hu .more-games-text {
  margin-top: 40px;
  font-style: italic;
  color: #777;
}

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

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

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

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

.page-no-hu .promo-card .promo-image {
  width: 100%;
  height: 220px; /* Fixed height */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-no-hu .promo-card h3 {
  color: #000080; /* Deep Blue */
  margin: 20px 15px 10px 15px;
  font-size: 1.6em;
}

.page-no-hu .promo-card p {
  font-size: 1em;
  color: #555;
  padding: 0 15px 20px 15px;
  text-align: center;
}

.page-no-hu .promo-card .promo-button {
  display: inline-block;
  padding: 10px 25px;
  background: #FFD700; /* Gold */
  color: #000080; /* Deep Blue */
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background-color 0.3s ease;
}

.page-no-hu .promo-card .promo-button:hover {
  background: #e0b800; /* Slightly darker gold */
}

.page-no-hu .more-promos-text {
  margin-top: 40px;
  font-style: italic;
  color: #777;
}

/* Safety & Support Section */
.page-no-hu .safety-support-section {
  background-color: #ffffff;
  padding: 80px 0;
}

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

.page-no-hu .support-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu .support-item .support-icon {
  width: 150px; /* Increased size */
  height: 150px; /* Increased size */
  margin-bottom: 20px;
  object-fit: contain;
}

.page-no-hu .support-item h3 {
  color: #FFD700; /* Gold */
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 1.6em;
}

.page-no-hu .support-item p {
  font-size: 1em;
  color: #555;
  text-align: center;
}

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

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

.page-no-hu .faq-item {
  margin-bottom: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-no-hu .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #fff;
  border-radius: 8px;
  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: 1.3em;
  color: #000080; /* Deep Blue */
  text-align: left;
}

.page-no-hu .faq-toggle {
  font-size: 2em;
  font-weight: bold;
  color: #FFD700; /* Gold */
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.page-no-hu .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 25px;
  background: #fdfdfd;
  border-radius: 0 0 8px 8px;
}

.page-no-hu .faq-item.active .faq-answer {
  max-height: 500px; /* Enough to contain content */
  padding: 15px 25px 25px 25px;
  border-top: 1px solid #eee;
}

.page-no-hu .faq-answer p {
  text-align: left;
  font-size: 1em;
  color: #444;
  margin: 0;
}

/* Blog Section */
.page-no-hu .blog-section {
  background-color: #ffffff;
  padding: 80px 0;
}

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

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

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

.page-no-hu .blog-card .article-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.page-no-hu .blog-card h3 {
  margin: 20px 15px 10px 15px;
  font-size: 1.5em;
  text-align: left;
}

.page-no-hu .blog-card h3 a {
  color: #000080; /* Deep Blue */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-no-hu .blog-card h3 a:hover {
  color: #FFD700; /* Gold */
}

.page-no-hu .blog-card p {
  font-size: 0.95em;
  color: #555;
  padding: 0 15px;
  text-align: left;
  margin-bottom: 15px;
}

.page-no-hu .blog-card .publish-date {
  display: block;
  font-size: 0.85em;
  color: #888;
  padding: 0 15px 20px 15px;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-no-hu h1 {
    font-size: 2.8em;
  }
  .page-no-hu h2 {
    font-size: 2.2em;
  }
  .page-no-hu h3 {
    font-size: 1.6em;
  }
  .page-no-hu .hero-banner .hero-image {
    margin-bottom: 30px;
  }
  .page-no-hu .hero-banner .hero-content p {
    font-size: 1.1em;
    margin-bottom: 30px;
  }
  .page-no-hu .cta-button {
    padding: 12px 30px;
    font-size: 1.1em;
  }
  .page-no-hu .feature-item .feature-icon,
  .page-no-hu .access-card .card-icon,
  .page-no-hu .support-item .support-icon {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .page-no-hu section {
    padding: 40px 0;
  }
  .page-no-hu h1 {
    font-size: 2.2em;
  }
  .page-no-hu h2 {
    font-size: 1.8em;
  }
  .page-no-hu h3 {
    font-size: 1.4em;
  }
  .page-no-hu p {
    font-size: 1em;
  }
  .page-no-hu .hero-banner {
    padding: 60px 15px;
  }
  .page-no-hu .hero-banner .hero-image {
    border-radius: 8px;
  }
  .page-no-hu .hero-banner .hero-content p {
    font-size: 1em;
    margin-bottom: 25px;
  }
  .page-no-hu .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }
  .page-no-hu .feature-grid,
  .page-no-hu .access-links-grid,
  .page-no-hu .game-cards-grid,
  .page-no-hu .promotion-cards-grid,
  .page-no-hu .support-features-grid,
  .page-no-hu .blog-articles-grid {
    grid-template-columns: 1fr;
  }
  .page-no-hu .feature-item,
  .page-no-hu .access-card,
  .page-no-hu .game-card,
  .page-no-hu .promo-card,
  .page-no-hu .support-item,
  .page-no-hu .blog-card {
    margin-bottom: 20px;
  }
  .page-no-hu .feature-item .feature-icon,
  .page-no-hu .access-card .card-icon,
  .page-no-hu .support-item .support-icon {
    width: 100px;
    height: 100px;
  }
  .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.8em;
  }
  .page-no-hu .faq-answer {
    padding: 0 20px;
  }
  .page-no-hu .faq-item.active .faq-answer {
    padding: 15px 20px 20px 20px;
  }
  .page-no-hu .blog-card .article-image {
    height: 180px;
  }
  .page-no-hu .game-card .game-image,
  .page-no-hu .promo-card .promo-image {
    height: 200px;
  }
}

@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.2em;
  }
  .page-no-hu .hero-banner .hero-content p {
    font-size: 0.95em;
  }
  .page-no-hu .cta-button {
    padding: 8px 20px;
    font-size: 0.9em;
  }
  .page-no-hu .faq-question h3 {
    font-size: 1em;
  }
  .page-no-hu .faq-toggle {
    font-size: 1.5em;
  }
  .page-no-hu .blog-card .article-image {
    height: 150px;
  }
  .page-no-hu .game-card .game-image,
  .page-no-hu .promo-card .promo-image {
    height: 180px;
  }
}