:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #8B0000; /* Dark Red */
  --text-dark: #1a1a1a; /* Very dark grey for text on light backgrounds */
  --text-light: #ffffff; /* White for text on dark backgrounds */
  --background-light: #f5f5f5; /* Light grey background */
  --background-dark: #333333; /* Dark grey background */
  --border-color: #e0e0e0;
}

.page-no-hu {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-light);
}

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

.page-no-hu h1,
.page-no-hu h2,
.page-no-hu h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  text-align: center;
}

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

.page-no-hu h2 {
  font-size: 2.5em;
  padding-top: 40px;
  padding-bottom: 20px;
}

.page-no-hu h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
}

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

.page-no-hu-banner {
  position: relative;
  width: 100%;
  height: 500px; /* Adjust height as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--text-light);
}

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

.page-no-hu-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(139, 0, 0, 0.6)); /* Dark overlay with secondary color */
  z-index: 2;
}

.page-no-hu-banner-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding: 20px;
}

.page-no-hu-banner-content p {
  font-size: 1.2em;
  margin-bottom: 30px;
  text-align: center;
}

.page-no-hu-cta-button {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--text-dark);
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-no-hu-cta-button:hover {
  background-color: darken(var(--primary-color), 10%);
  transform: translateY(-2px);
}

.page-no-hu-intro {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-no-hu-intro p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.page-no-hu-secondary-button {
  display: block;
  width: fit-content;
  margin: 30px auto 0 auto;
  background-color: var(--secondary-color);
  color: var(--text-light);
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.page-no-hu-secondary-button:hover {
  background-color: lighten(var(--secondary-color), 10%);
}

.page-no-hu-features {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-no-hu-features h2 {
  color: var(--primary-color);
}

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

.page-no-hu-feature-item {
  background-color: #444444;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-no-hu-feature-item h3 {
  color: var(--primary-color);
  font-size: 1.5em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-no-hu-feature-item p {
  color: #cccccc;
  font-size: 0.95em;
}

.page-no-hu-feature-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 10px;
}

.page-no-hu-how-to-play {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-no-hu-how-to-play p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.page-no-hu-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.page-no-hu-step-item {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  flex: 1 1 calc(50% - 30px); /* Two columns on larger screens */
  max-width: calc(50% - 30px);
}

.page-no-hu-step-item h3 {
  color: var(--secondary-color);
  font-size: 1.6em;
  margin-top: 15px;
  margin-bottom: 10px;
}

.page-no-hu-step-item p {
  font-size: 0.95em;
  color: var(--text-dark);
  text-align: center;
}

.page-no-hu-step-item a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-no-hu-step-item a:hover {
  text-decoration: underline;
}

.page-no-hu-step-icon {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 10px;
}

.page-no-hu-promotions {
  padding: 60px 0;
  background-color: var(--secondary-color);
  color: var(--text-light);
}

.page-no-hu-promotions h2 {
  color: var(--primary-color);
}

.page-no-hu-promotions p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
  color: #f0f0f0;
}

.page-no-hu-promo-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu-promo-list li {
  background-color: #a01010;
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 5px;
  font-size: 1.1em;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-no-hu-promo-list li strong {
  color: var(--primary-color);
}

.page-no-hu-tips {
  padding: 60px 0;
  background-color: var(--background-light);
}

.page-no-hu-tips h2 {
  color: var(--secondary-color);
}

.page-no-hu-tips p {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px auto;
}

.page-no-hu-tip-list {
  list-style: decimal;
  padding-left: 20px;
  margin-top: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu-tip-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
  line-height: 1.8;
  background-color: #ffffff;
  padding: 15px 20px;
  border-left: 4px solid var(--primary-color);
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.page-no-hu-tip-list li strong {
  color: var(--secondary-color);
}

.page-no-hu-faq {
  padding: 60px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-no-hu-faq h2 {
  color: var(--primary-color);
  margin-bottom: 40px;
}

/* FAQ default state - answer hidden */
.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #444444;
  border: 1px solid #555555;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background: #555555;
}

.faq-question h3 {
  margin: 0;
  color: var(--primary-color);
  font-size: 1.2em;
  text-align: left;
}

.faq-toggle {
  font-size: 20px;
  font-weight: bold;
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 15px;
  background: #3a3a3a;
  border-radius: 0 0 5px 5px;
  color: #cccccc;
}

/* FAQ expanded state */
.faq-item.active .faq-answer {
  max-height: 500px; /* Sufficient height to contain content */
  padding: 15px;
  border-top: 1px solid #555555;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
  .page-no-hu h1 {
    font-size: 2.8em;
  }
  .page-no-hu h2 {
    font-size: 2em;
  }
  .page-no-hu-feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-no-hu-step-item {
    flex: 1 1 calc(100% - 20px); /* Single column on smaller screens */
    max-width: calc(100% - 20px);
  }
}

@media (max-width: 768px) {
  .page-no-hu-banner {
    height: 400px;
  }
  .page-no-hu-banner-content h1 {
    font-size: 2.2em;
  }
  .page-no-hu-banner-content p {
    font-size: 1em;
  }
  .page-no-hu-cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-no-hu h2 {
    font-size: 1.8em;
  }
  .page-no-hu h3 {
    font-size: 1.4em;
  }
  .page-no-hu-feature-item,
  .page-no-hu-step-item {
    padding: 20px;
  }
  .page-no-hu-feature-icon,
  .page-no-hu-step-icon {
    width: 80px;
    height: 80px;
  }
  .faq-question {
    padding: 12px;
  }
  .faq-question h3 {
    font-size: 1.1em;
  }
  .faq-toggle {
    font-size: 18px;
  }
  .faq-answer {
    padding: 10px 15px;
  }
  .page-no-hu-promo-list li,
  .page-no-hu-tip-list li {
    font-size: 1em;
    padding: 12px 15px;
  }
}

@media (max-width: 480px) {
  .page-no-hu-banner {
    height: 300px;
  }
  .page-no-hu-banner-content h1 {
    font-size: 1.8em;
  }
  .page-no-hu-banner-content p {
    font-size: 0.9em;
  }
  .page-no-hu-cta-button {
    padding: 10px 20px;
    font-size: 0.9em;
  }
  .page-no-hu h2 {
    font-size: 1.5em;
  }
  .page-no-hu-feature-grid {
    grid-template-columns: 1fr;
  }
}