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

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

.page-no-hu__container--narrow {
  max-width: 800px;
}

.page-no-hu__hero-section {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-no-hu__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('[GALLERY:bg:abstract_pattern,geometric,light_effect]') no-repeat center center/cover;
  opacity: 0.1;
  z-index: 0;
}

.page-no-hu__hero-section > .page-no-hu__container {
  position: relative;
  z-index: 1;
}

.page-no-hu__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-no-hu__hero-description {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.page-no-hu__btn--primary {
  background-color: #ffc107;
  color: #333333;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}

.page-no-hu__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.6);
}

.page-no-hu__btn--secondary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #007bff;
  margin-left: 15px;
}

.page-no-hu__btn--secondary:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
}

.page-no-hu__btn--large {
  padding: 18px 40px;
  font-size: 1.2em;
}

.page-no-hu__btn--center {
  display: block;
  margin: 30px auto;
  width: fit-content;
}

.page-no-hu__hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin-top: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.page-no-hu__section {
  padding: 80px 0;
  text-align: center;
}

.page-no-hu__section--why-choose {
  background-color: #ffffff;
}

.page-no-hu__section--game-types {
  background-color: #f1f5f9;
}

.page-no-hu__section--how-to-play {
  background-color: #ffffff;
}

.page-no-hu__section--security {
  background-color: #e6f2ff;
}

.page-no-hu__section--promotions {
  background-color: #fff8e6;
}

.page-no-hu__section--faq {
  background-color: #ffffff;
}

.page-no-hu__section--conclusion {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #ffffff;
  padding: 80px 0;
}

.page-no-hu__section-title {
  font-size: 2.8em;
  margin-bottom: 25px;
  color: #007bff;
  font-weight: bold;
}

.page-no-hu__section--conclusion .page-no-hu__section-title {
  color: #ffc107;
}

.page-no-hu__section-description {
  font-size: 1.15em;
  max-width: 900px;
  margin: 0 auto 50px auto;
  color: #555555;
}

.page-no-hu__section--conclusion .page-no-hu__section-description {
  color: #e0e0e0;
}

.page-no-hu__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  text-align: left;
}

.page-no-hu__feature-item {
  background-color: #fdfdfd;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-no-hu__feature-title {
  font-size: 1.6em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-no-hu__feature-item p {
  color: #666666;
}

.page-no-hu__section-image {
  max-width: 60%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-no-hu__section-image--left {
  float: left;
  margin-right: 50px;
}

.page-no-hu__section-image--right {
  float: right;
  margin-left: 50px;
}

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

.page-no-hu__game-type-card {
  background-color: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-no-hu__game-type-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

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

.page-no-hu__card-title {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-no-hu__card-text {
  color: #666666;
}

.page-no-hu__steps-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
}

.page-no-hu__steps-list li {
  background-color: #fdfdfd;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.page-no-hu__step-title {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-no-hu__steps-list li p {
  color: #666666;
}

.page-no-hu__steps-list li a {
  color: #007bff;
  text-decoration: underline;
}

.page-no-hu__steps-list li a:hover {
  color: #0056b3;
}

.page-no-hu__cta-group {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-no-hu__security-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
  font-size: 1.1em;
  color: #444444;
}

.page-no-hu__security-list li {
  margin-bottom: 15px;
  padding-left: 40px;
  position: relative;
}

.page-no-hu__icon {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.8em;
  color: #007bff;
  line-height: 1.6;
}

/* Placeholder icons for demonstration */
.page-no-hu__icon--shield::before { content: '🛡️'; /* Unicode shield emoji */ }
.page-no-hu__icon--dice::before { content: '🎲'; /* Unicode dice emoji */ }
.page-no-hu__icon--license::before { content: '✅'; /* Unicode checkmark emoji */ }
.page-no-hu__icon--responsible::before { content: '🤝'; /* Unicode handshake emoji */ }

.page-no-hu__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 50px;
  text-align: left;
  font-size: 1.1em;
  color: #444444;
}

.page-no-hu__promo-list li {
  margin-bottom: 10px;
  padding-left: 25px;
  position: relative;
}

.page-no-hu__promo-list li::before {
  content: '⭐'; /* Unicode star emoji */
  position: absolute;
  left: 0;
  color: #ffc107;
}

.page-no-hu__accordion {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.page-no-hu__accordion-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-no-hu__accordion-header {
  background-color: #f0f0f0;
  color: #333333;
  padding: 18px 25px;
  width: 100%;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.page-no-hu__accordion-header:hover {
  background-color: #e5e5e5;
}

.page-no-hu__accordion-header::after {
  content: '+';
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-no-hu__accordion-header.active::after {
  content: '-';
  transform: rotate(180deg);
}

.page-no-hu__accordion-content {
  padding: 0 25px;
  background-color: #ffffff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-no-hu__accordion-content.active {
  max-height: 200px; /* Adjust based on content */
  padding: 15px 25px;
}

.page-no-hu__accordion-content p {
  color: #555555;
  margin-bottom: 10px;
}

.page-no-hu__section--conclusion .page-no-hu__section-description a {
  color: #ffc107;
  text-decoration: underline;
}

.page-no-hu__section--conclusion .page-no-hu__section-description a:hover {
  color: #e0a800;
}

/* Clear floats for images */
.page-no-hu__section--why-choose::after,
.page-no-hu__section--security::after,
.page-no-hu__section--promotions::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .page-no-hu__hero-title {
    font-size: 2.8em;
  }
  .page-no-hu__hero-description {
    font-size: 1.1em;
  }
  .page-no-hu__section-title {
    font-size: 2.2em;
  }
  .page-no-hu__section-image--left,
  .page-no-hu__section-image--right {
    float: none;
    margin: 40px auto;
    max-width: 80%;
  }
  .page-no-hu__security-list,
  .page-no-hu__promo-list {
    text-align: center;
  }
  .page-no-hu__security-list li,
  .page-no-hu__promo-list li {
    padding-left: 0;
    margin-bottom: 20px;
  }
  .page-no-hu__security-list li::before,
  .page-no-hu__promo-list li::before {
    position: static;
    display: block;
    margin-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero-title {
    font-size: 2.2em;
  }
  .page-no-hu__hero-description {
    font-size: 1em;
  }
  .page-no-hu__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-no-hu__btn--large {
    padding: 15px 30px;
    font-size: 1.1em;
  }
  .page-no-hu__section {
    padding: 60px 0;
  }
  .page-no-hu__section-title {
    font-size: 1.8em;
  }
  .page-no-hu__feature-item,
  .page-no-hu__game-type-card {
    padding: 20px;
  }
  .page-no-hu__card-title {
    font-size: 1.5em;
  }
  .page-no-hu__cta-group {
    flex-direction: column;
    gap: 15px;
  }
  .page-no-hu__btn--secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-no-hu__hero-title {
    font-size: 1.8em;
  }
  .page-no-hu__hero-description {
    font-size: 0.9em;
  }
  .page-no-hu__section-title {
    font-size: 1.5em;
  }
  .page-no-hu__btn {
    width: 100%;
    max-width: 280px;
  }
  .page-no-hu__cta-group .page-no-hu__btn {
    margin: 0 auto;
  }
  .page-no-hu__accordion-header {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-no-hu__accordion-content.active {
    padding: 10px 20px;
  }
}