.page-no-hu {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0; /* Light gray for general text on dark background */
  background-color: #1A202C; /* Main dark background */
  line-height: 1.6;
}

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

.page-no-hu section {
  padding: 60px 0;
  text-align: center;
}

.page-no-hu h1, .page-no-hu h2, .page-no-hu h3 {
  color: #FFD700; /* Golden yellow for headings */
  margin-bottom: 25px;
  font-weight: bold;
}

.page-no-hu h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-no-hu h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-no-hu h3 {
  font-size: 1.8em;
  color: #FFD700; /* Golden yellow for subheadings */
}

.page-no-hu p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #E0E0E0;
}

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

.page-no-hu a:hover {
  color: #FFC107; /* Slightly darker yellow on hover */
  text-decoration: underline;
}

.page-no-hu .cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: #FFD700; /* Golden yellow button background */
  color: #1A202C; /* Dark text on button */
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-no-hu .cta-button:hover {
  background: #FFC107; /* Slightly darker yellow on hover */
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

/* Hero Section */
.page-no-hu .hero-section {
  background: linear-gradient(135deg, #1A202C, #3A4750);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.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%;
  max-width: 800px; /* Adjust max-width for the image */
  margin-bottom: 30px;
}

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

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

.page-no-hu .hero-content h1 {
  color: #FFD700;
  font-size: 3.5em;
  line-height: 1.2;
}

.page-no-hu .hero-content p {
  font-size: 1.3em;
  color: #F0F0F0;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Section Intro */
.page-no-hu .section-intro {
  background-color: #2D3748; /* Slightly lighter dark background */
  padding: 80px 0;
}

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

.page-no-hu .intro-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu .intro-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-no-hu .intro-item img {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

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

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

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

.page-no-hu .game-card {
  background-color: #2D3748;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  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.5);
}

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

.page-no-hu .game-card h3 {
  padding: 20px;
  font-size: 1.5em;
  margin-bottom: 0;
}

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

.page-no-hu .game-card h3 a:hover {
  color: #FFC107;
  text-decoration: underline;
}

.page-no-hu .game-card p {
  padding: 0 20px 20px;
  font-size: 0.95em;
  color: #B0B0B0;
}

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

.page-no-hu ol {
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  list-style: decimal;
  padding-left: 20px;
}

.page-no-hu ol li {
  background-color: #1A202C;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
}

.page-no-hu ol li strong {
  color: #FFD700;
}

/* Section Rewards */
.page-no-hu .section-rewards {
  background-color: #1A202C;
  padding: 80px 0;
}

.page-no-hu .section-rewards ul {
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  list-style: none;
  padding: 0;
}

.page-no-hu .section-rewards ul li {
  background-color: #2D3748;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
  position: relative;
  padding-left: 30px;
}

.page-no-hu .section-rewards ul li::before {
  content: '★';
  color: #FFD700;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.page-no-hu .section-rewards ul li strong {
  color: #FFD700;
}

/* Section Security */
.page-no-hu .section-security {
  background-color: #2D3748;
  padding: 80px 0;
}

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

.page-no-hu .security-item {
  background-color: #1A202C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu .security-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.page-no-hu .security-item img {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

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

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

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

.page-no-hu .section-promotions ul {
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  list-style: none;
  padding: 0;
}

.page-no-hu .section-promotions ul li {
  background-color: #2D3748;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
  position: relative;
  padding-left: 30px;
}

.page-no-hu .section-promotions ul li::before {
  content: '✓';
  color: #FFD700;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.page-no-hu .section-promotions ul li strong {
  color: #FFD700;
}

/* Section Tips */
.page-no-hu .section-tips {
  background-color: #2D3748;
  padding: 80px 0;
}

.page-no-hu .section-tips ul {
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  list-style: none;
  padding: 0;
}

.page-no-hu .section-tips ul li {
  background-color: #1A202C;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
  color: #E0E0E0;
  border-left: 5px solid #FFD700;
  position: relative;
  padding-left: 30px;
}

.page-no-hu .section-tips ul li::before {
  content: '💡';
  color: #FFD700;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
}

.page-no-hu .section-tips ul li strong {
  color: #FFD700;
}

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

.page-no-hu .faq-list {
  max-width: 800px;
  margin: 40px auto;
  text-align: left;
}

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

.page-no-hu .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #2D3748; /* Darker background for question */
  color: #FFD700; /* Golden yellow for question text */
  border: 1px solid #3A4750;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-no-hu .faq-question:hover {
  background: #3A4750;
  color: #FFC107;
}

.page-no-hu .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: inherit;
}

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

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

.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: #1A202C; /* Main dark background for answer */
  color: #E0E0E0;
  font-size: 1.05em;
}

.page-no-hu .faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to show content */
  padding: 25px;
  border-top: 1px solid #3A4750;
}

.page-no-hu .faq-answer p {
  margin-bottom: 0;
  color: #E0E0E0;
}

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

/* Section CTA Final */
.page-no-hu .section-cta-final {
  background: linear-gradient(135deg, #3A4750, #1A202C);
  padding: 80px 0;
}

.page-no-hu .section-cta-final h2 {
  color: #FFD700;
}

.page-no-hu .section-cta-final p {
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 1.2em;
  color: #F0F0F0;
}

/* 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 .hero-image img {
    max-width: 700px;
  }
}

@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;
    margin-bottom: 25px;
  }
  .page-no-hu h3 {
    font-size: 1.4em;
  }
  .page-no-hu p {
    font-size: 1em;
  }
  .page-no-hu .cta-button {
    padding: 12px 30px;
    font-size: 1em;
  }
  .page-no-hu .hero-image {
    margin-bottom: 20px;
  }
  .page-no-hu .hero-image img {
    border-radius: 8px;
  }
  .page-no-hu .intro-grid, .page-no-hu .game-cards, .page-no-hu .security-grid {
    grid-template-columns: 1fr;
  }
  .page-no-hu .intro-item, .page-no-hu .game-card, .page-no-hu .security-item {
    margin-bottom: 20px;
  }
  .page-no-hu ol, .page-no-hu ul {
    margin: 20px auto;
    padding-left: 15px;
  }
  .page-no-hu ol li, .page-no-hu ul li {
    padding: 15px;
    font-size: 0.95em;
  }
  .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: 20px;
  }
}

@media (max-width: 480px) {
  .page-no-hu h1 {
    font-size: 1.8em;
  }
  .page-no-hu h2 {
    font-size: 1.6em;
  }
  .page-no-hu .hero-content p {
    font-size: 1.1em;
  }
  .page-no-hu .cta-button {
    padding: 10px 25px;
    font-size: 0.9em;
  }
  .page-no-hu .intro-item img, .page-no-hu .security-item img {
    width: 90px;
    height: 90px;
  }
}