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

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, relying on body padding-top from shared.css */
  padding-bottom: 60px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-align: center;
}

.page-no-hu__hero-container {
  max-width: 1170px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px 16px;
}

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

.page-no-hu__hero-title {
  font-size: clamp(2.2em, 4vw, 3.5em);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-no-hu__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

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

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  max-width: 100%;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: 2px solid #2F6BFF;
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  transform: translateY(-2px);
}

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

.page-no-hu__btn-secondary:hover {
  background: #f0f0f0;
  color: #1F2D3D;
  transform: translateY(-2px);
}

.page-no-hu__content-area {
  max-width: 1170px;
  margin: 0 auto;
  padding: 60px 16px;
}

.page-no-hu__section-title {
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #1F2D3D;
}

.page-no-hu__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 40px;
  color: #333333;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__intro-section,
.page-no-hu__features-section,
.page-no-hu__popular-games-section,
.page-no-hu__guide-section,
.page-no-hu__tips-section,
.page-no-hu__promo-section,
.page-no-hu__faq-section,
.page-no-hu__cta-bottom-section {
  padding: 60px 0;
}

.page-no-hu__intro-section {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-no-hu__intro-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.page-no-hu__intro-text {
  flex: 1 1 50%;
  min-width: 300px;
}

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

.page-no-hu__image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.page-no-hu__features-section {
  background-color: #ffffff;
  color: #1F2D3D;
}

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

.page-no-hu__feature-item {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  background: #ffffff;
  color: #1F2D3D;
}

.page-no-hu__feature-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2F6BFF;
}

.page-no-hu__feature-item p {
  font-size: 1em;
  color: #333333;
}

.page-no-hu__feature-image-wrapper {
  text-align: center;
  padding-top: 20px;
}

.page-no-hu__popular-games-section {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-no-hu__game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  color: #1F2D3D;
}

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

.page-no-hu__game-card-title {
  font-size: 1.4em;
  font-weight: 600;
  margin: 20px 15px 10px;
  color: #2F6BFF;
}

.page-no-hu__game-card-description {
  font-size: 0.95em;
  padding: 0 15px 20px;
  flex-grow: 1;
  color: #333333;
}

.page-no-hu__game-card .page-no-hu__btn-primary {
  margin: 0 15px 20px;
  width: calc(100% - 30px);
}

.page-no-hu__guide-section {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
}

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

.page-no-hu__guide-step-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: #1F2D3D;
}

.page-no-hu__guide-step-title {
  font-size: 1.4em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2F6BFF;
}

.page-no-hu__guide-step-item p {
  font-size: 0.95em;
  margin-bottom: 20px;
  color: #333333;
}

.page-no-hu__btn-text-link {
  color: #2F6BFF;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.page-no-hu__btn-text-link:hover {
  color: #1F2D3D;
}

.page-no-hu__guide-image-wrapper {
  text-align: center;
  padding-top: 20px;
}

.page-no-hu__tips-section {
  background-color: #ffffff;
  color: #1F2D3D;
}

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

.page-no-hu__tip-item {
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  color: #1F2D3D;
}

.page-no-hu__tip-title {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2F6BFF;
}

.page-no-hu__tip-item p {
  font-size: 1em;
  color: #333333;
}

.page-no-hu__tips-image-wrapper {
  text-align: center;
  padding-top: 20px;
}

.page-no-hu__promo-section {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
}

.page-no-hu__promo-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 30px;
  max-width: 800px;
  font-size: 1.1em;
  text-align: left;
  color: #f0f0f0;
}

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

.page-no-hu__promo-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #A5C4FF;
  font-weight: bold;
}

.page-no-hu__promo-cta {
  text-align: center;
  margin-top: 30px;
}

.page-no-hu__promo-image-wrapper {
  text-align: center;
  padding-top: 20px;
}

.page-no-hu__faq-section {
  background-color: #F4F7FB;
  color: #1F2D3D;
}

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

.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background: #ffffff;
  color: #1F2D3D;
  overflow: hidden;
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  color: #2F6BFF;
  background: #ffffff;
  border-bottom: 1px solid #D6E2FF;
  list-style: none;
  user-select: none;
}

.page-no-hu__faq-item[open] > .page-no-hu__faq-question {
  border-bottom: none;
}

.page-no-hu__faq-question::-webkit-details-marker {
  display: none;
}

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Prevent toggle from being clickable directly */
}

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

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  color: #333333;
  overflow: hidden;
}

.page-no-hu__faq-answer p {
  margin: 0;
}

.page-no-hu__faq-image-wrapper {
  text-align: center;
  padding-top: 20px;
}

.page-no-hu__cta-bottom-section {
  padding-top: 60px;
  padding-bottom: 60px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  text-align: center;
}

/* General image styling */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .page-no-hu__hero-title {
    font-size: clamp(2em, 5vw, 3em);
  }

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

  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu__hero-content {
    text-align: center;
  }

  .page-no-hu__hero-image {
    order: -1; /* Image above text on smaller screens */
  }

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

  .page-no-hu__intro-grid {
    flex-direction: column;
  }

  .page-no-hu__intro-image {
    order: -1;
  }
}

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

  .page-no-hu__hero-section {
    padding-top: 10px !important; /* Small top padding, relying on body padding-top from shared.css */
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container {
    padding: 30px 15px !important;
    gap: 30px !important;
  }

  .page-no-hu__hero-title {
    font-size: clamp(1.8em, 7vw, 2.5em) !important;
    margin-bottom: 15px !important;
  }

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

  .page-no-hu__hero-cta-buttons {
    flex-direction: column !important; /* Stack buttons vertically */
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px !important;
    font-size: 0.95em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__content-area {
    padding: 40px 15px !important;
  }

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

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

  /* General image responsiveness for content area */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-no-hu__intro-grid,
  .page-no-hu__features-grid,
  .page-no-hu__game-cards-grid,
  .page-no-hu__guide-steps-grid,
  .page-no-hu__tips-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .page-no-hu__feature-item,
  .page-no-hu__game-card,
  .page-no-hu__guide-step-item,
  .page-no-hu__tip-item,
  .page-no-hu__faq-item {
    padding: 20px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  }

  .page-no-hu__game-card-image {
    height: 180px !important; /* Adjust fixed height for mobile */
  }

  .page-no-hu__guide-section,
  .page-no-hu__promo-section,
  .page-no-hu__faq-section,
  .page-no-hu__cta-bottom-section {
    padding: 40px 0 !important;
  }

  .page-no-hu__promo-list {
    font-size: 1em !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .page-no-hu__faq-question {
    padding: 15px 20px !important;
    font-size: 1.1em !important;
  }

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

  .page-no-hu__hero-image,
  .page-no-hu__intro-image,
  .page-no-hu__feature-image-wrapper,
  .page-no-hu__guide-image-wrapper,
  .page-no-hu__tips-image-wrapper,
  .page-no-hu__promo-image-wrapper,
  .page-no-hu__faq-image-wrapper {
    padding-left: 15px;
    padding-right: 15px;
    box-sizing: border-box !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow: hidden !important;
  }
}