.page-no-hu {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

.page-no-hu__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-no-hu__section-title {
  font-size: 36px;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  text-align: center;
  margin-bottom: 20px;
}

.page-no-hu__section-description {
  font-size: 18px;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding as shared.css handles body padding-top */
  padding-bottom: 60px;
  background-color: #F4F7FB; /* Background */
}

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

.page-no-hu__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  color: #1F2D3D; /* Text Main */
}

.page-no-hu__hero-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-no-hu__hero-description {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D; /* Text Main */
}

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

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

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

/* Buttons */
.page-no-hu__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

.page-no-hu__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.6);
}

.page-no-hu__btn-secondary {
  background: #ffffff; /* Card BG */
  color: #2F6BFF; /* Main Color */
  border: 2px solid #2F6BFF; /* Main Color */
}

.page-no-hu__btn-secondary:hover {
  background: #2F6BFF; /* Main Color */
  color: #ffffff;
  border-color: #2F6BFF;
}

.page-no-hu__btn-play {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
  color: #ffffff;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 6px;
}

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

/* Intro Section */
.page-no-hu__intro-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

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

.page-no-hu__icon-box {
  background: #ffffff; /* Card BG */
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

.page-no-hu__icon-box:hover {
  transform: translateY(-5px);
}

.page-no-hu__icon-box-media {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #6FA3FF; /* Auxiliary Color */
  box-shadow: 0 0 0 8px rgba(111, 163, 255, 0.3);
}

.page-no-hu__icon-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.page-no-hu__icon-box-title {
  font-size: 24px;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 15px;
}

.page-no-hu__icon-box-text {
  font-size: 16px;
  color: #1F2D3D; /* Text Main */
}

/* Games Showcase Section */
.page-no-hu__games-section {
  padding: 60px 0;
  background-color: #ffffff; /* Card BG */
}

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

.page-no-hu__game-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #D6E2FF; /* Border */
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
}

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

.page-no-hu__game-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-no-hu__game-card-title {
  font-size: 20px;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  margin-bottom: 5px;
}

.page-no-hu__game-card-title a {
  color: #000000;
  text-decoration: none;
}

.page-no-hu__game-card-title a:hover {
  color: #2F6BFF;
}

.page-no-hu__game-card-text {
  font-size: 15px;
  color: #1F2D3D; /* Text Main */
  flex-grow: 1;
}

/* Guide Section */
.page-no-hu__guide-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
}

.page-no-hu__guide-steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 40px;
}

.page-no-hu__guide-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.page-no-hu__guide-item:nth-child(even) {
  flex-direction: row-reverse;
}

.page-no-hu__guide-item:nth-child(odd) .page-no-hu__guide-image {
  order: 2;
}

.page-no-hu__guide-item:nth-child(odd) .page-no-hu__guide-content {
  order: 1;
}

.page-no-hu__guide-step-title {
  font-size: 28px;
  font-weight: bold;
  color: #2F6BFF; /* Main Color */
  margin-bottom: 15px;
}

.page-no-hu__guide-step-text {
  font-size: 17px;
  color: #1F2D3D; /* Text Main */
}

.page-no-hu__guide-image {
  flex: 1 1 45%;
  max-width: 500px;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.page-no-hu__faq-item {
  background: #F4F7FB; /* Background */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.page-no-hu__faq-item[open] {
  background: #E8EEFB; /* Lighter shade of main color */
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 18px;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  cursor: pointer;
  list-style: none; /* Remove default marker */
  user-select: none;
}

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

.page-no-hu__faq-toggle {
  font-size: 24px;
  line-height: 1;
  transition: transform 0.3s ease;
  color: #2F6BFF; /* Main Color */
}

.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: 16px;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

/* CTA Banner */
.page-no-hu__cta-banner {
  background: linear-gradient(90deg, #2F6BFF 0%, #6FA3FF 100%); /* Main to Auxiliary */
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
}

.page-no-hu__cta-banner-content {
  max-width: 800px;
}

.page-no-hu__cta-banner-title {
  font-size: 38px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-no-hu__cta-banner-description {
  font-size: 20px;
  margin-bottom: 30px;
  color: #ffffff;
}

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

  .page-no-hu__section-title {
    font-size: 32px;
  }

  .page-no-hu__intro-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .page-no-hu__icon-box-media {
    width: 100px;
    height: 100px;
  }

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

  .page-no-hu__guide-item {
    flex-direction: column;
    text-align: center;
  }

  .page-no-hu__guide-item:nth-child(even) {
    flex-direction: column;
  }

  .page-no-hu__guide-item:nth-child(odd) .page-no-hu__guide-image {
    order: unset;
  }

  .page-no-hu__guide-item:nth-child(odd) .page-no-hu__guide-content {
    order: unset;
  }

  .page-no-hu__guide-image {
    max-width: 100%;
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-no-hu__hero-container {
    flex-direction: column;
    text-align: center;
    padding: 30px 16px;
    gap: 30px;
  }

  .page-no-hu__hero-content {
    flex: 1 1 100%;
    order: 2;
  }

  .page-no-hu__hero-image {
    flex: 1 1 100%;
    order: 1;
  }

  .page-no-hu__hero-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .page-no-hu__hero-description {
    font-size: 16px;
  }

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

  .page-no-hu__btn,
  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__btn-play,
  .page-no-hu a[class*="button"],
  .page-no-hu a[class*="btn"] {
    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;
  }

  .page-no-hu__cta-buttons,
  .page-no-hu__button-group,
  .page-no-hu__btn-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    flex-wrap: wrap !important;
    gap: 10px;
    display: flex;
    flex-direction: column;
  }

  .page-no-hu__section-title {
    font-size: 28px;
  }

  .page-no-hu__section-description {
    font-size: 15px;
  }

  .page-no-hu__intro-section,
  .page-no-hu__games-section,
  .page-no-hu__guide-section,
  .page-no-hu__faq-section,
  .page-no-hu__cta-banner {
    padding: 40px 0;
  }

  .page-no-hu__intro-grid {
    grid-template-columns: 1fr;
  }

  .page-no-hu__icon-box-media {
    width: 100px;
    height: 100px;
    border: 3px solid #6FA3FF; /* Auxiliary Color */
    box-shadow: 0 0 0 6px rgba(111, 163, 255, 0.3);
  }

  .page-no-hu__game-card-image {
    height: 160px;
  }

  .page-no-hu__games-grid {
    grid-template-columns: 1fr;
  }

  .page-no-hu__guide-item {
    flex-direction: column;
  }

  .page-no-hu__guide-item:nth-child(even) {
    flex-direction: column;
  }

  .page-no-hu__guide-step-title {
    font-size: 24px;
  }

  .page-no-hu__guide-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

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

  .page-no-hu__section,
  .page-no-hu__card,
  .page-no-hu__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

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

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

  .page-no-hu__cta-banner-title {
    font-size: 30px;
  }

  .page-no-hu__cta-banner-description {
    font-size: 18px;
  }
}