.page-no-hu {
  --primary-color: #1A1A2E;
  --secondary-color: #E94560;
  --text-light: #F0F0F0;
  --text-dark: #333333;
  --bg-light: #FFFFFF;
  --bg-dark: #121212;
  --accent-gold: #FFD700;
  font-family: 'Arial', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
}

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

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

.page-no-hu section:nth-child(odd) {
  background-color: var(--bg-light);
}

.page-no-hu section:nth-child(even) {
  background-color: #f8f8f8;
}

.page-no-hu h1,
.page-no-hu h2,
.page-no-hu h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.page-no-hu h1 {
  font-size: 3.2em;
  color: var(--text-light);
}

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

.page-no-hu h3 {
  font-size: 1.8em;
}

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

.page-no-hu a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-no-hu a:hover {
  color: var(--primary-color);
}

/* 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, var(--primary-color) 0%, #301934 100%); /* Darker gradient for depth */
  color: var(--text-light);
}

.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: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

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

.page-no-hu .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-no-hu .hero-content p {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: var(--text-light);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.page-no-hu .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.4em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  border: none;
  cursor: pointer;
}

.page-no-hu .cta-button:hover {
  background: var(--accent-gold);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Section Intro */
.page-no-hu .section-intro p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-dark);
}

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

.page-no-hu .advantage-item {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu .advantage-item .icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-no-hu .advantage-item h3 {
  color: var(--primary-color);
  font-size: 1.6em;
  margin-bottom: 15px;
}

.page-no-hu .advantage-item p {
  color: var(--text-dark);
  font-size: 1em;
}

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

.page-no-hu .lobby-item {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu .lobby-item .lobby-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

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

/* Guide Section */
.page-no-hu .section-guide ol {
  list-style: none;
  counter-reset: guide-counter;
  text-align: left;
  max-width: 800px;
  margin: 40px auto;
  padding: 0;
}

.page-no-hu .section-guide ol li {
  counter-increment: guide-counter;
  margin-bottom: 20px;
  padding-left: 50px;
  position: relative;
  font-size: 1.1em;
  color: var(--text-dark);
}

.page-no-hu .section-guide ol li::before {
  content: counter(guide-counter);
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--secondary-color);
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
}

.page-no-hu .section-guide h3 {
  text-align: center;
  margin-top: 50px;
  font-size: 2em;
  color: var(--primary-color);
}

.page-no-hu .section-guide ul {
  list-style: disc;
  text-align: left;
  max-width: 800px;
  margin: 20px auto;
  padding-left: 40px;
  color: var(--text-dark);
}

.page-no-hu .section-guide ul li {
  margin-bottom: 10px;
  font-size: 1.1em;
}

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

.page-no-hu .promo-item {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

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

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

.page-no-hu .promo-item p {
  color: var(--text-dark);
  font-size: 1em;
  flex-grow: 1;
}

.page-no-hu .cta-button-small {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.page-no-hu .cta-button-small:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

.page-no-hu .feature-item {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-no-hu .feature-item .icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

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

.page-no-hu .feature-item p {
  color: var(--text-dark);
  font-size: 1em;
}

/* FAQ Section */
.page-no-hu .section-faq {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.page-no-hu .section-faq h2 {
  color: var(--text-light);
}

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

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

.page-no-hu .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: var(--primary-color);
  color: var(--text-light);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.page-no-hu .faq-question:hover {
  background: #2A2A4A; /* Slightly lighter primary for hover */
}

.page-no-hu .faq-question h3 {
  margin: 0;
  font-size: 1.2em;
  color: var(--text-light);
}

.page-no-hu .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
  color: var(--accent-gold);
}

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

.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: #25253A; /* Darker background for answer */
  color: var(--text-light);
  border-radius: 0 0 8px 8px;
}

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

.page-no-hu .faq-answer p {
  margin-bottom: 15px;
  font-size: 1em;
  text-align: left;
}

.page-no-hu .faq-answer a.faq-link-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--secondary-color);
  color: #ffffff;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.page-no-hu .faq-answer a.faq-link-button:hover {
  background-color: var(--accent-gold);
}

/* Blog & Tips Section */
.page-no-hu .section-blog-tips {
  background-color: var(--bg-light);
}

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

.page-no-hu .blog-card {
  background: var(--bg-light);
  border-radius: 10px;
  box-shadow: 0 5px 15px 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 25px rgba(0, 0, 0, 0.15);
}

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

.page-no-hu .blog-card .blog-content {
  padding: 25px;
}

.page-no-hu .blog-card h3 {
  font-size: 1.4em;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.page-no-hu .blog-card h3 a {
  color: var(--primary-color);
  text-decoration: none;
}

.page-no-hu .blog-card h3 a:hover {
  color: var(--secondary-color);
}

.page-no-hu .blog-card p {
  font-size: 0.95em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-no-hu .blog-card .read-more {
  color: var(--secondary-color);
  font-weight: bold;
  display: inline-block;
  margin-top: 10px;
  transition: color 0.3s ease;
}

.page-no-hu .blog-card .read-more:hover {
  color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-no-hu .hero-content h1 {
    font-size: 2.8em;
  }

  .page-no-hu .hero-content p {
    font-size: 1.1em;
  }

  .page-no-hu .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }

  .page-no-hu h2 {
    font-size: 2em;
  }

  .page-no-hu h3 {
    font-size: 1.5em;
  }
}

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

  .page-no-hu .hero-content h1 {
    font-size: 2.2em;
  }

  .page-no-hu .hero-content p {
    font-size: 1em;
  }

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

  .page-no-hu h2 {
    font-size: 1.8em;
  }

  .page-no-hu .advantage-item,
  .page-no-hu .lobby-item,
  .page-no-hu .promo-item,
  .page-no-hu .feature-item,
  .page-no-hu .blog-card {
    padding: 20px;
  }

  .page-no-hu .advantage-item .icon,
  .page-no-hu .feature-item .icon {
    width: 80px;
    height: 80px;
  }

  .page-no-hu .lobby-item .lobby-logo {
    width: 120px;
    height: 120px;
  }

  .page-no-hu .section-guide ol li {
    padding-left: 40px;
    font-size: 1em;
  }

  .page-no-hu .section-guide ol li::before {
    width: 30px;
    height: 30px;
    font-size: 1.1em;
  }

  .page-no-hu .section-guide ul {
    padding-left: 20px;
  }

  .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: 20px;
  }

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

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

  .page-no-hu .hero-content p {
    font-size: 0.9em;
  }

  .page-no-hu .cta-button {
    padding: 10px 25px;
    font-size: 1em;
  }

  .page-no-hu h2 {
    font-size: 1.5em;
  }

  .page-no-hu h3 {
    font-size: 1.3em;
  }

  .page-no-hu .advantages-grid,
  .page-no-hu .lobby-grid,
  .page-no-hu .promo-grid,
  .page-no-hu .security-features,
  .page-no-hu .blog-grid {
    grid-template-columns: 1fr;
  }

  .page-no-hu .section-guide ol {
    margin-left: 0;
    margin-right: 0;
  }

  .page-no-hu .section-guide ol li {
    padding-left: 35px;
  }

  .page-no-hu .section-guide ol li::before {
    width: 28px;
    height: 28px;
    font-size: 1em;
  }

  .page-no-hu .promo-item .promo-image {
    height: 180px;
  }

  .page-no-hu .blog-card .blog-image {
    height: 180px;
  }
}