/* style/no-hu.css */
:root {
  --primary-color: #FFD700; /* Gold */
  --secondary-color: #000080; /* Dark Blue */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f4f4f4;
  --background-dark: #1a1a2e;
  --card-background: #ffffff;
  --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: 0 20px;
}

.page-no-hu .section-title {
  font-size: 2.5em;
  color: var(--secondary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
}

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

.page-no-hu .section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* 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, #000080 0%, #000040 100%); /* Dark blue gradient */
  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 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-no-hu .hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--primary-color);
  color: var(--secondary-color);
  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.2);
}

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

/* Info Section */
.page-no-hu .info-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

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

.page-no-hu .info-card {
  background: var(--card-background);
  border-radius: 12px;
  padding: 30px;
  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 .info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-no-hu .info-card .card-icon {
  width: 250px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-no-hu .info-card .card-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu .info-card .card-description {
  font-size: 1em;
  color: var(--text-dark);
}

/* Guide Section */
.page-no-hu .guide-section {
  padding: 80px 0;
  background-color: #eef2f6; /* Light grey-blue */
}

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

.page-no-hu .step-item {
  background: var(--card-background);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-no-hu .step-number {
  width: 60px;
  height: 60px;
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu .step-content h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu .step-content p {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-no-hu .button-small {
  display: inline-block;
  padding: 10px 25px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-no-hu .button-small:hover {
  background: #000060; /* Slightly darker blue */
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

/* Popular Games Section */
.page-no-hu .popular-games-section {
  padding: 80px 0;
  background-color: var(--background-dark);
  color: var(--text-light);
}

.page-no-hu .popular-games-section .section-title,
.page-no-hu .popular-games-section .section-description {
  color: var(--text-light);
}

.page-no-hu .popular-games-section .section-title::after {
  background-color: var(--primary-color);
}

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

.page-no-hu .game-card {
  background: #2a2a4a; /* Darker blue for cards */
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-no-hu .game-card:hover {
  transform: translateY(-10px);
  background-color: #3a3a5a;
}

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

.page-no-hu .game-card .game-title {
  font-size: 1.6em;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-no-hu .game-card .game-description {
  font-size: 0.95em;
  color: #cccccc;
}

/* Promotions Section */
.page-no-hu .promotions-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.page-no-hu .promotion-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.page-no-hu .promo-item {
  background: var(--card-background);
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 30px;
  transition: transform 0.3s ease;
}

.page-no-hu .promo-item:hover {
  transform: translateY(-5px);
}

.page-no-hu .promo-item .promo-image {
  width: 250px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 30px;
  flex-shrink: 0;
}

.page-no-hu .promo-item .promo-content h3 {
  font-size: 1.8em;
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.page-no-hu .promo-item .promo-content p {
  font-size: 1em;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.page-no-hu .button-promo {
  display: inline-block;
  padding: 12px 30px;
  background: var(--primary-color);
  color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: bold;
  transition: all 0.3s ease;
}

.page-no-hu .button-promo:hover {
  background: #FFC400;
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

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

.page-no-hu .safety-support-section .grid-2-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.page-no-hu .safety-card {
  background: var(--card-background);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.page-no-hu .safety-card .card-icon {
  width: 250px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 20px;
  border-radius: 8px;
}

.page-no-hu .safety-card .card-title {
  font-size: 1.6em;
  color: var(--secondary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-no-hu .safety-card .card-description {
  font-size: 1em;
  color: var(--text-dark);
}

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

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

.page-no-hu .faq-section .section-title::after {
  background-color: var(--primary-color);
}

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

.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: var(--secondary-color);
  color: var(--primary-color);
  border: 1px solid #000060;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-no-hu .faq-question:hover {
  background: #000060;
  color: #FFC400;
}

.page-no-hu .faq-question h3 {
  font-size: 1.2em;
  margin: 0;
  font-weight: bold;
}

.page-no-hu .faq-toggle {
  font-size: 24px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

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

.page-no-hu .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  background: #3a3a5a; /* Darker background for answer */
  color: #cccccc;
  padding: 0 25px;
  border-radius: 0 0 8px 8px;
}

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

.page-no-hu .faq-answer p {
  margin: 0;
  font-size: 1em;
}

/* Conclusion Section */
.page-no-hu .conclusion-section {
  padding: 80px 0;
  background-color: var(--background-light);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-no-hu .hero-title {
    font-size: 3em;
  }
  .page-no-hu .hero-description {
    font-size: 1.2em;
  }
  .page-no-hu .section-title {
    font-size: 2.2em;
  }
  .page-no-hu .promo-item {
    flex-direction: column;
    text-align: center;
  }
  .page-no-hu .promo-item .promo-image {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .page-no-hu .hero-section {
    padding: 40px 15px;
  }
  .page-no-hu .hero-title {
    font-size: 2.5em;
  }
  .page-no-hu .hero-description {
    font-size: 1.1em;
  }
  .page-no-hu .cta-button {
    padding: 15px 35px;
    font-size: 1.2em;
  }
  .page-no-hu .section-title {
    font-size: 2em;
  }
  .page-no-hu .section-description {
    font-size: 1em;
    margin-bottom: 40px;
  }
  .page-no-hu .grid-3-cols, .page-no-hu .guide-steps, .page-no-hu .game-categories, .page-no-hu .grid-2-cols {
    grid-template-columns: 1fr;
  }
  .page-no-hu .info-card, .page-no-hu .step-item, .page-no-hu .game-card, .page-no-hu .safety-card {
    padding: 25px;
  }
  .page-no-hu .promo-item .promo-image {
    width: 100%;
    height: 180px;
  }
  .page-no-hu .promo-item .promo-content h3 {
    font-size: 1.5em;
  }
  .page-no-hu .faq-question {
    padding: 15px 20px;
  }
  .page-no-hu .faq-question h3 {
    font-size: 1.1em;
  }
  .page-no-hu .faq-answer {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .page-no-hu .hero-title {
    font-size: 2em;
  }
  .page-no-hu .hero-description {
    font-size: 0.95em;
  }
  .page-no-hu .cta-button {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  .page-no-hu .section-title {
    font-size: 1.8em;
  }
  .page-no-hu .section-description {
    font-size: 0.9em;
  }
  .page-no-hu .info-card .card-title, .page-no-hu .step-content h3, .page-no-hu .game-card .game-title, .page-no-hu .safety-card .card-title, .page-no-hu .promo-item .promo-content h3 {
    font-size: 1.4em;
  }
  .page-no-hu .faq-question h3 {
    font-size: 1em;
  }
  .page-no-hu .faq-toggle {
    font-size: 20px;
  }
}