/* style/nohu.css */
.page-nohu {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f9f9f9;
}

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

.page-nohu__hero-section {
  position: relative;
  background-color: #1a202c;
  color: #ffffff;
  text-align: center;
  padding-bottom: 50px;
  padding-top: 10px; /* Small top padding, assuming body has header offset */
}

.page-nohu__hero-image-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.page-nohu__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: brightness(0.7);
}

.page-nohu__hero-content {
  position: relative;
  z-index: 10;
  padding: 30px 20px;
  max-width: 800px;
  margin: -100px auto 0; /* Pull content up over the image */
  background: rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-nohu__main-title {
  font-size: 3.2em;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffe0b2; /* Lighter color for contrast */
  line-height: 1.2;
}

.page-nohu__description {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

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

.page-nohu__btn-primary,
.page-nohu__btn-secondary,
.page-nohu__card-button,
.page-nohu__btn-large,
.page-nohu__btn-huge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

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

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

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

.page-nohu__btn-secondary:hover {
  background-color: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

.page-nohu__section-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #1a202c;
  text-align: center;
  margin-bottom: 40px;
  margin-top: 60px;
}

.page-nohu__intro-text {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  color: #64748b;
}

.page-nohu__about-nohu-section,
.page-nohu__promo-section,
.page-nohu__app-download-section,
.page-nohu__faq-section,
.page-nohu__final-cta-section {
  padding: 60px 0;
  background-color: #ffffff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-nohu__game-showcase-section {
  padding: 60px 0;
  background-color: #f0f4f8;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.page-nohu__game-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-nohu__game-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  margin-bottom: 20px;
}

.page-nohu__card-title {
  font-size: 1.5em;
  color: #1a202c;
  margin-bottom: 10px;
  padding: 0 15px;
}

.page-nohu__card-description {
  font-size: 0.95em;
  color: #64748b;
  margin-bottom: 20px;
  padding: 0 15px;
  flex-grow: 1;
}

.page-nohu__card-button {
  background-color: #64748b;
  color: #ffffff;
  border: 2px solid #64748b;
  padding: 10px 20px;
  font-size: 1em;
  margin: 0 15px;
}

.page-nohu__card-button:hover {
  background-color: #475569;
  border-color: #475569;
}

.page-nohu__view-all-games-link {
  display: block;
  text-align: center;
  margin-top: 50px;
  font-size: 1.1em;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.page-nohu__view-all-games-link:hover {
  text-decoration: underline;
}

.page-nohu__promo-image,
.page-nohu__app-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  margin: 40px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.page-nohu__promo-steps {
  list-style: none;
  padding: 0;
  margin: 40px auto;
  max-width: 700px;
  text-align: left;
}

.page-nohu__promo-steps li {
  background-color: #f0f4f8;
  margin-bottom: 15px;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #1a202c;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  box-sizing: border-box;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-nohu__btn-large {
  padding: 18px 40px;
  font-size: 1.2em;
  margin-top: 30px;
}

.page-nohu__btn-huge {
  padding: 20px 50px;
  font-size: 1.3em;
  margin-top: 50px;
}

.page-nohu__app-download-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.page-nohu__link-text {
  display: block;
  text-align: center;
  margin-top: 30px;
  font-size: 1em;
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.page-nohu__link-text:hover {
  text-decoration: underline;
}

.page-nohu__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

details.page-nohu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}

details.page-nohu__faq-item summary.page-nohu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #1a202c;
}

details.page-nohu__faq-item summary.page-nohu__faq-question::-webkit-details-marker {
  display: none;
}

details.page-nohu__faq-item summary.page-nohu__faq-question:hover {
  background: #f5f5f5;
}

.page-nohu__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
}

.page-nohu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-nohu__faq-item .page-nohu__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: #475569;
}

.page-nohu__final-cta-section {
  text-align: center;
}

.page-nohu__floating-login-btn {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ef4444; /* Eye-catching red */
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1em;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 1000;
  display: none; /* Hidden by default, shown on mobile */
  transition: all 0.3s ease;
  white-space: nowrap;
  word-wrap: normal;
  box-sizing: border-box;
  max-width: 90%;
}

.page-nohu__floating-login-btn:hover {
  background-color: #dc2626;
  transform: translateX(-50%) translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-nohu__main-title {
    font-size: 2.8em;
  }

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

  .page-nohu__hero-content {
    margin-top: -80px;
    padding: 20px;
  }

  .page-nohu__about-nohu-section,
  .page-nohu__game-showcase-section,
  .page-nohu__promo-section,
  .page-nohu__app-download-section,
  .page-nohu__faq-section,
  .page-nohu__final-cta-section {
    padding: 40px 0;
  }
}

@media (max-width: 768px) {
  .page-nohu__container {
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-nohu__hero-section {
    padding-bottom: 30px;
    padding-top: 10px; /* Small top padding for mobile */
  }

  .page-nohu__hero-content {
    margin-top: -60px;
    padding: 15px;
  }

  .page-nohu__main-title {
    font-size: 2em !important;
    margin-bottom: 15px;
  }

  .page-nohu__description {
    font-size: 1em !important;
    margin-bottom: 20px;
  }

  .page-nohu__cta-buttons {
    flex-direction: column !important;
    gap: 15px !important;
  }

  .page-nohu__btn-primary,
  .page-nohu__btn-secondary,
  .page-nohu__card-button,
  .page-nohu__btn-large,
  .page-nohu__btn-huge {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 1em !important;
    margin: 0 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-nohu__section-title {
    font-size: 1.8em !important;
    margin-bottom: 30px;
    margin-top: 40px;
  }

  .page-nohu__intro-text {
    font-size: 0.95em !important;
    margin-bottom: 30px;
  }

  .page-nohu__game-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

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

  .page-nohu__promo-image,
  .page-nohu__app-image {
    margin: 30px auto !important;
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-nohu__promo-steps {
    margin: 30px auto !important;
    padding: 0 15px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-nohu__promo-steps li {
    font-size: 1em !important;
    padding: 15px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-nohu__app-download-buttons {
    flex-direction: column !important;
    gap: 15px !important;
    margin-top: 30px !important;
  }

  details.page-nohu__faq-item summary.page-nohu__faq-question {
    padding: 15px !important;
  }

  .page-nohu__faq-qtext {
    font-size: 15px !important;
  }

  .page-nohu__faq-toggle {
    font-size: 20px !important;
    width: 24px !important;
    height: 24px !important;
  }

  details.page-nohu__faq-item .page-nohu__faq-answer {
    padding: 0 15px 15px !important;
  }

  .page-nohu__floating-login-btn {
    display: flex; /* Show on mobile */
    font-size: 1em;
    padding: 12px 25px;
    max-width: calc(100% - 40px);
    white-space: normal;
    word-wrap: break-word;
  }

  .page-nohu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-nohu__about-nohu-section,
  .page-nohu__game-showcase-section,
  .page-nohu__promo-section,
  .page-nohu__app-download-section,
  .page-nohu__faq-section,
  .page-nohu__final-cta-section {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 30px 0 !important;
  }
}