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

.page-nohu56__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Hero Section */
.page-nohu56__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 10px; /* Small top padding, body handles header offset */
  padding-bottom: 40px;
  background-color: #e9ecef;
}

.page-nohu56__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 20px;
}

.page-nohu56__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-nohu56__hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 15px;
}

.page-nohu56__main-title {
  font-size: clamp(2em, 5vw, 2.8em);
  color: #2563eb;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.page-nohu56__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

.page-nohu56__cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.page-nohu56__btn-primary,
.page-nohu56__btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
}

.page-nohu56__btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  border: 2px solid #2563eb;
}

.page-nohu56__btn-primary:hover {
  background-color: #1a4ed8;
  border-color: #1a4ed8;
  transform: translateY(-2px);
}

.page-nohu56__btn-secondary {
  background-color: #ffffff;
  color: #2563eb;
  border: 2px solid #2563eb;
}

.page-nohu56__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1a4ed8;
  border-color: #1a4ed8;
  transform: translateY(-2px);
}

/* General Section Styling */
.page-nohu56__section-title {
  font-size: clamp(1.8em, 4vw, 2.5em);
  color: #2563eb;
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-nohu56__section-description {
  font-size: 1.05em;
  color: #555555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

/* Games Overview Section */
.page-nohu56__games-overview-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-nohu56__game-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  padding-bottom: 25px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-nohu56__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-nohu56__game-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-nohu56__game-title {
  font-size: 1.4em;
  color: #2563eb;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-nohu56__game-text {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 20px;
  flex-grow: 1;
  padding: 0 15px;
}

.page-nohu56__card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #64748b;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.page-nohu56__card-button:hover {
  background-color: #4b5a6c;
}

.page-nohu56__cta-section {
  text-align: center;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #eeeeee;
}

.page-nohu56__cta-text {
  font-size: 1.2em;
  color: #333333;
  margin-bottom: 25px;
}

/* Features Section */
.page-nohu56__features-section {
  padding: 60px 0;
  background-color: #f0f8ff;
}

.page-nohu56__features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.page-nohu56__feature-item {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-nohu56__feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-nohu56__feature-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 20px;
}

.page-nohu56__feature-title {
  font-size: 1.3em;
  color: #2563eb;
  margin-bottom: 10px;
}

.page-nohu56__feature-description {
  font-size: 0.95em;
  color: #666666;
}

/* Guide Section */
.page-nohu56__guide-section {
  padding: 60px 0;
  background-color: #ffffff;
}

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

.page-nohu56__step-card {
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-nohu56__step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.page-nohu56__step-title {
  font-size: 1.4em;
  color: #2563eb;
  margin-bottom: 15px;
}

.page-nohu56__step-description {
  font-size: 0.95em;
  color: #666666;
  margin-bottom: 25px;
  flex-grow: 1;
}

/* App Download Section */
.page-nohu56__app-download-section {
  padding: 60px 0;
  background-color: #e9ecef;
}

.page-nohu56__app-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.page-nohu56__app-text-block {
  text-align: center;
  max-width: 700px;
}

.page-nohu56__app-description,
.page-nohu56__app-highlights {
  font-size: 1.1em;
  color: #555555;
  margin-bottom: 20px;
}

.page-nohu56__btn-download {
  margin-top: 10px;
}

.page-nohu56__app-image-block {
  text-align: center;
}

.page-nohu56__app-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* FAQ Section */
.page-nohu56__faq-section {
  padding: 60px 0;
  background-color: #ffffff;
}

.page-nohu56__faq-list {
  max-width: 900px;
  margin: 40px auto 0;
}

.page-nohu56__faq-item {
  background-color: #f8f9fa;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-nohu56__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #eeeeee;
  transition: background-color 0.3s ease;
}

.page-nohu56__faq-question:hover {
  background-color: #f0f0f0;
}

.page-nohu56__faq-qtext {
  font-size: 1.15em;
  color: #333333;
  font-weight: 600;
  pointer-events: none; /* Prevent text from blocking click */
}

.page-nohu56__faq-toggle {
  font-size: 1.5em;
  color: #2563eb;
  font-weight: 700;
  pointer-events: none; /* Prevent icon from blocking click */
  transition: transform 0.3s ease;
}

.page-nohu56__faq-item[open] .page-nohu56__faq-toggle {
  transform: rotate(45deg);
}

.page-nohu56__faq-answer {
  padding: 0 20px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
}

.page-nohu56__faq-item[open] .page-nohu56__faq-answer {
  max-height: 2000px !important; /* Ensure content is fully visible */
  padding: 20px !important;
  opacity: 1;
}

.page-nohu56__faq-answer p {
  font-size: 1em;
  color: #555555;
  margin-bottom: 0;
}

/* Responsible Gambling Section */
.page-nohu56__responsible-gambling-section {
  padding: 60px 0;
  background-color: #e9ecef;
  text-align: center;
}

.page-nohu56__responsible-list {
  list-style: none;
  padding: 0;
  margin: 30px auto 40px;
  max-width: 800px;
  text-align: left;
}

.page-nohu56__list-item {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1em;
  color: #333333;
}

/* Final CTA Section */
.page-nohu56__final-cta-section {
  padding: 60px 0;
  background-color: #2563eb;
  color: #ffffff;
  text-align: center;
}

.page-nohu56__final-cta-section .page-nohu56__section-title {
  color: #ffffff;
}

.page-nohu56__final-cta-section .page-nohu56__section-description {
  color: #f0f8ff;
}

.page-nohu56__final-cta-section .page-nohu56__btn-primary {
  background-color: #ffffff;
  color: #2563eb;
  border-color: #ffffff;
}

.page-nohu56__final-cta-section .page-nohu56__btn-primary:hover {
  background-color: #f0f8ff;
  color: #1a4ed8;
  border-color: #f0f8ff;
}

/* Floating Login Button */
.page-nohu56__floating-login {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.page-nohu56__floating-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffc107; /* Eye-catching yellow for promotion */
  color: #333333;
  padding: 15px 25px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  border: 2px solid #ffc107;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-nohu56__floating-btn:hover {
  background-color: #e0a800;
  border-color: #e0a800;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-nohu56__hero-content {
    padding: 0 20px;
  }

  .page-nohu56__game-categories,
  .page-nohu56__features-grid,
  .page-nohu56__guide-steps {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .page-nohu56__app-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .page-nohu56 {
    font-size: 16px;
    line-height: 1.6;
  }

  .page-nohu56__hero-section {
    padding-bottom: 30px;
  }

  .page-nohu56__main-title {
    font-size: 2.2em;
  }

  .page-nohu56__description {
    font-size: 1em;
  }

  .page-nohu56__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .page-nohu56__btn-primary,
  .page-nohu56__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
  }

  .page-nohu56__section-title {
    font-size: 2em;
  }

  .page-nohu56__section-description {
    font-size: 0.95em;
    margin-bottom: 30px;
  }

  .page-nohu56__games-overview-section,
  .page-nohu56__features-section,
  .page-nohu56__guide-section,
  .page-nohu56__app-download-section,
  .page-nohu56__faq-section,
  .page-nohu56__responsible-gambling-section,
  .page-nohu56__final-cta-section {
    padding: 40px 0;
  }

  .page-nohu56__game-categories,
  .page-nohu56__features-grid,
  .page-nohu56__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-nohu56__game-image {
    height: 180px;
  }

  /* Mobile image responsiveness */
  .page-nohu56 img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-nohu56__hero-image-wrapper,
  .page-nohu56__game-card,
  .page-nohu56__feature-item,
  .page-nohu56__step-card,
  .page-nohu56__app-image-block,
  .page-nohu56__app-content,
  .page-nohu56__faq-item,
  .page-nohu56__responsible-list,
  .page-nohu56__list-item {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important; /* Ensure no overflow */
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-nohu56__list-item {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-nohu56__floating-login {
    bottom: 15px;
    right: 15px;
  }

  .page-nohu56__floating-btn {
    padding: 12px 20px;
    font-size: 1em;
    max-width: 100%;
    width: auto; /* Allow content to dictate width, but respect max-width */
  }

  .page-nohu56__faq-question {
    padding: 15px;
  }

  .page-nohu56__faq-qtext {
    font-size: 1.05em;
  }

  .page-nohu56__faq-answer {
    padding: 15px !important;
  }

  .page-nohu56__faq-answer p {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
  }

  .page-nohu56__hero-section .page-nohu56__cta-buttons {
    padding: 0 15px;
  }

  .page-nohu56__guide-steps .page-nohu56__card-button {
    width: calc(100% - 30px); /* Adjust for padding in card */
    margin: 0 15px;
  }
}

@media (max-width: 480px) {
  .page-nohu56__main-title {
    font-size: 1.8em;
  }

  .page-nohu56__section-title {
    font-size: 1.6em;
  }

  .page-nohu56__floating-btn {
    padding: 10px 18px;
    font-size: 0.9em;
  }
}