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

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

.page-no-hu section {
  padding: 60px 0;
  border-bottom: 1px solid rgba(232, 169, 0, 0.1);
}

.page-no-hu section:last-of-type {
  border-bottom: none;
}

.page-no-hu h1, .page-no-hu h2, .page-no-hu h3 {
  color: #E8A900;
  text-align: center;
  margin-bottom: 30px;
  font-weight: bold;
}

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

.page-no-hu h2 {
  font-size: 2.2em;
  color: #E8A900;
}

.page-no-hu h3 {
  font-size: 1.6em;
  color: #E8A900;
  margin-top: 40px;
  text-align: left;
}

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

.page-no-hu ul, .page-no-hu ol {
  margin-bottom: 15px;
  padding-left: 25px;
  color: #CCCCCC;
}

.page-no-hu li {
  margin-bottom: 8px;
  font-size: 1.05em;
}

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

.page-no-hu a:hover {
  color: #FFD700;
  text-decoration: underline;
}

/* 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: 80px 20px;
  background: linear-gradient(135deg, #0A1930 0%, #1A2A44 100%); /* Slightly lighter dark blue for depth */
  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;
  z-index: 1;
}

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

.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.5);
}

.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;
  line-height: 1.2;
}

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

.page-no-hu .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #E8A900;
  color: #0A1930;
  text-decoration: none;
  border-radius: 8px;
  font-size: 20px;
  font-weight: bold;
  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: #FFD700;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  color: #000;
}

/* Section Intro */
.page-no-hu .section-intro {
  background-color: #1A2A44;
}

.page-no-hu .section-intro h2 {
  color: #E8A900;
}

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

.page-no-hu .game-card, .page-no-hu .promo-card, .page-no-hu .blog-card {
  background-color: #0A1930;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(232, 169, 0, 0.2);
}

.page-no-hu .game-card:hover, .page-no-hu .promo-card:hover, .page-no-hu .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-no-hu .game-card img, .page-no-hu .promo-card img, .page-no-hu .blog-card img {
  width: 100%;
  height: 220px; /* Ensure images are not small */
  object-fit: cover;
  border-bottom: 1px solid rgba(232, 169, 0, 0.1);
}

.page-no-hu .game-card h3, .page-no-hu .promo-card h3, .page-no-hu .blog-card h3 {
  font-size: 1.4em;
  margin: 20px 15px 10px 15px;
  color: #E8A900;
  text-align: center;
}

.page-no-hu .game-card h3 a, .page-no-hu .promo-card h3 a, .page-no-hu .blog-card h3 a {
  color: #E8A900;
  text-decoration: none;
}

.page-no-hu .game-card h3 a:hover, .page-no-hu .promo-card h3 a:hover, .page-no-hu .blog-card h3 a:hover {
  text-decoration: underline;
  color: #FFD700;
}

.page-no-hu .game-card p, .page-no-hu .promo-card p, .page-no-hu .blog-card p {
  font-size: 1em;
  color: #CCCCCC;
  padding: 0 15px 20px 15px;
}

.page-no-hu .section-guide img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-no-hu .section-blog .blog-card .date {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 15px;
  display: block;
}

.page-no-hu .section-security-support img {
  max-width: 300px;
  height: auto;
  display: block;
  margin: 30px auto;
  filter: drop-shadow(0 0 10px rgba(232, 169, 0, 0.5));
}

/* FAQ Styles */
.page-no-hu .faq-list {
  margin-top: 40px;
}

.page-no-hu .faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
}

.page-no-hu .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: #1A2A44;
  border: 1px solid rgba(232, 169, 0, 0.3);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-no-hu .faq-question:hover {
  background: #253A5A;
  border-color: #E8A900;
}

.page-no-hu .faq-question h3 {
  margin: 0;
  font-size: 1.25em;
  color: #E0E0E0;
  text-align: left;
}

.page-no-hu .faq-toggle {
  font-size: 28px;
  font-weight: bold;
  color: #E8A900;
  transition: transform 0.3s ease;
  line-height: 1;
}

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

.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: #0A1930;
  border-radius: 0 0 8px 8px;
  color: #CCCCCC;
}

.page-no-hu .faq-item.active .faq-answer {
  max-height: 500px; /* Adjust as needed to fit content */
  padding: 20px 25px;
  border: 1px solid rgba(232, 169, 0, 0.3);
  border-top: none;
}

.page-no-hu .faq-item.active .faq-question {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-no-hu h1 {
    font-size: 2.5em;
  }
  .page-no-hu .hero-content p {
    font-size: 1.1em;
  }
  .page-no-hu .cta-button {
    padding: 15px 35px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .page-no-hu section {
    padding: 40px 0;
  }
  .page-no-hu h1 {
    font-size: 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-image {
    margin-bottom: 30px;
  }
  .page-no-hu .hero-content p {
    font-size: 1em;
    margin-bottom: 30px;
  }
  .page-no-hu .cta-button {
    padding: 12px 30px;
    font-size: 16px;
  }
  .page-no-hu .game-grid, .page-no-hu .promo-grid, .page-no-hu .blog-grid {
    grid-template-columns: 1fr;
    gap: 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: 24px;
  }
  .page-no-hu .faq-answer {
    padding: 0 20px;
  }
  .page-no-hu .faq-item.active .faq-answer {
    padding: 15px 20px;
  }
}

@media (max-width: 480px) {
  .page-no-hu h1 {
    font-size: 1.8em;
  }
  .page-no-hu h2 {
    font-size: 1.6em;
  }
  .page-no-hu h3 {
    font-size: 1.2em;
  }
  .page-no-hu .hero-content p {
    font-size: 0.95em;
  }
  .page-no-hu .cta-button {
    padding: 10px 25px;
    font-size: 15px;
  }
  .page-no-hu .game-card h3, .page-no-hu .promo-card h3, .page-no-hu .blog-card h3 {
    font-size: 1.2em;
  }
  .page-no-hu .game-card p, .page-no-hu .promo-card p, .page-no-hu .blog-card p {
    font-size: 0.9em;
  }
}