.page-no-hu {
  font-family: 'Arial', sans-serif;
  color: #333333; /* Default text color for light background */
  background-color: #ffffff; /* Default body background */
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
  padding-bottom: 60px;
  background-color: #f5faff; /* Light blue tint for hero background */
}

.page-no-hu__hero-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 20px 15px;
}

.page-no-hu__hero-text-block {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-no-hu__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size for H1 */
  font-weight: 700;
  line-height: 1.2;
  color: #26A9E0; /* Brand color for H1 */
  margin-bottom: 20px;
}

.page-no-hu__hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555555;
  margin-bottom: 30px;
}

.page-no-hu__hero-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play,
.page-no-hu__btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  max-width: 100%; /* Ensure buttons don't overflow */
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}

.page-no-hu__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-no-hu__btn-primary:hover {
  background-color: #1e87b9;
  border-color: #1e87b9;
}

.page-no-hu__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-no-hu__btn-secondary:hover {
  background-color: #e0f2ff;
  color: #1e87b9;
}

.page-no-hu__btn-play {
  background-color: #EA7C07; /* Login color for play buttons */
  color: #ffffff;
  border: 2px solid #EA7C07;
  padding: 10px 20px;
  font-size: 0.95rem;
}

.page-no-hu__btn-play:hover {
  background-color: #c46405;
  border-color: #c46405;
}

.page-no-hu__btn-large {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.page-no-hu__hero-image-block {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}

.page-no-hu__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: block; /* Ensure it behaves as a block element */
  margin: 0 auto; /* Center image */
}

/* General Section Styling */
.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #26A9E0;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-no-hu__section-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

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

.page-no-hu__light-bg {
  background-color: #ffffff;
  color: #333333;
}

.page-no-hu__dark-section {
  background-color: #26A9E0;
  color: #ffffff; /* White text on brand color background */
}

.page-no-hu__dark-section .page-no-hu__section-title,
.page-no-hu__dark-section .page-no-hu__section-description,
.page-no-hu__dark-section .page-no-hu__guide-item h3,
.page-no-hu__dark-section .page-no-hu__guide-item p,
.page-no-hu__dark-section .page-no-hu__promo-title,
.page-no-hu__dark-section .page-no-hu__promo-text,
.page-no-hu__dark-section .page-no-hu__faq-question,
.page-no-hu__dark-section .page-no-hu__faq-answer {
  color: #ffffff;
}

/* Intro Section (Module 1) */
.page-no-hu__intro-section {
  padding: 60px 0;
}

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

.page-no-hu__feature-item {
  text-align: center;
  padding: 25px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

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

.page-no-hu__icon-box-media {
  width: 180px; /* Adjusted from 240px to 180px for better fit, still > 200 for image though */
  height: 180px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #e0f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%; /* Ensure image itself is round */
  display: block;
}

.page-no-hu__feature-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-no-hu__feature-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666666;
}

/* How-to-Play Section */
.page-no-hu__how-to-play-section {
  padding: 60px 0;
}

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

.page-no-hu__guide-item {
  text-align: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on dark background */
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
}

.page-no-hu__step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #26A9E0;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-no-hu__step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.page-no-hu__step-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f0f0f0;
}

.page-no-hu__cta-center {
  text-align: center;
  margin-top: 50px;
}

/* Popular Games Section */
.page-no-hu__popular-games-section {
  padding: 60px 0;
}

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

.page-no-hu__game-card {
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  text-align: center;
  padding-bottom: 20px;
}

.page-no-hu__game-thumbnail {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-no-hu__game-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-no-hu__game-title a {
  color: inherit;
  text-decoration: none;
}

.page-no-hu__game-title a:hover {
  text-decoration: underline;
}

.page-no-hu__game-description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666666;
  padding: 0 20px 20px;
}

/* Promotions Section */
.page-no-hu__promo-section {
  padding: 60px 0;
}

.page-no-hu__promo-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-no-hu__promo-item {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-no-hu__promo-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-no-hu__promo-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #f0f0f0;
}

/* Tips Section */
.page-no-hu__tips-section {
  padding: 60px 0;
}

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

.page-no-hu__tip-item {
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.page-no-hu__tip-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #26A9E0;
  margin-bottom: 10px;
}

.page-no-hu__tip-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #666666;
}

/* FAQ Section */
.page-no-hu__faq-section {
  padding: 60px 0;
}

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

.page-no-hu__faq-item {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-no-hu__faq-item[open] {
  background-color: rgba(255, 255, 255, 0.2);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #ffffff;
  cursor: pointer;
  list-style: none; /* Hide default marker */
  position: relative;
}

.page-no-hu__faq-question::-webkit-details-marker {
  display: none; /* Hide default marker for Webkit browsers */
}

.page-no-hu__faq-qtext {
  flex-grow: 1;
  margin-right: 15px;
}

.page-no-hu__faq-toggle {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  width: 30px;
  text-align: center;
}

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: #f0f0f0;
}

/* Final CTA Section */
.page-no-hu__final-cta-section {
  padding: 60px 0;
  text-align: center;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu__hero-text-block,
  .page-no-hu__hero-image-block {
    flex: 1 1 100%;
  }

  .page-no-hu__hero-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* HERO Section */
  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Small top padding, no var(--header-offset) */
    padding-bottom: 40px;
  }

  .page-no-hu__hero-content-wrapper {
    padding: 20px 15px;
    gap: 30px;
  }

  .page-no-hu__main-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }

  .page-no-hu__hero-description {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .page-no-hu__hero-cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__btn-play,
  .page-no-hu__btn-large {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 0.95rem; /* Slightly smaller font for mobile buttons */
  }

  /* General Section Styling */
  .page-no-hu__section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  .page-no-hu__section-description {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .page-no-hu__container {
    padding: 30px 15px;
  }

  /* Intro Section (Module 1) */
  .page-no-hu__intro-section {
    padding: 40px 0;
  }

  .page-no-hu__features-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

  .page-no-hu__icon-box-media {
    width: 150px; /* Still square */
    height: 150px;
    margin-bottom: 15px;
  }

  .page-no-hu__feature-title {
    font-size: 1.2rem;
  }

  /* How-to-Play Section */
  .page-no-hu__how-to-play-section {
    padding: 40px 0;
  }

  .page-no-hu__guide-steps {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

  .page-no-hu__guide-item {
    padding: 20px;
  }

  .page-no-hu__step-number {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .page-no-hu__step-title {
    font-size: 1.1rem;
  }

  .page-no-hu__cta-center {
    margin-top: 30px;
  }

  /* Popular Games Section */
  .page-no-hu__popular-games-section {
    padding: 40px 0;
  }

  .page-no-hu__game-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

  .page-no-hu__game-thumbnail {
    height: 180px;
  }

  .page-no-hu__game-title {
    font-size: 1.1rem;
  }

  /* Promotions Section */
  .page-no-hu__promo-section {
    padding: 40px 0;
  }

  .page-no-hu__promo-list {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

  .page-no-hu__promo-item {
    padding: 20px;
  }

  .page-no-hu__promo-title {
    font-size: 1.1rem;
  }

  /* Tips Section */
  .page-no-hu__tips-section {
    padding: 40px 0;
  }

  .page-no-hu__tips-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
  }

  .page-no-hu__tip-item {
    padding: 20px;
  }

  .page-no-hu__tip-title {
    font-size: 1.1rem;
  }

  /* FAQ Section */
  .page-no-hu__faq-section {
    padding: 40px 0;
  }

  .page-no-hu__faq-question {
    padding: 15px 20px;
    font-size: 1rem;
  }

  .page-no-hu__faq-toggle {
    font-size: 1.5rem;
  }

  .page-no-hu__faq-answer {
    padding: 0 20px 15px;
    font-size: 0.95rem;
  }

  /* Final CTA Section */
  .page-no-hu__final-cta-section {
    padding: 40px 0;
  }

  /* Universal image responsive for content area */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }
  
  /* All containers for content area */
  .page-no-hu__container,
  .page-no-hu__hero-content-wrapper,
  .page-no-hu__features-grid,
  .page-no-hu__guide-steps,
  .page-no-hu__game-grid,
  .page-no-hu__promo-list,
  .page-no-hu__tips-grid,
  .page-no-hu__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Special handling for __icon-box-media img to maintain circle */
  .page-no-hu__icon-box-media img {
    height: 100% !important; /* Override height:auto to maintain circle */
    object-fit: cover !important;
  }
}