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

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

.page-no-hu__section-title {
  font-size: 38px;
  font-weight: bold;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding to respect shared header */
  padding-bottom: 80px;
  background-color: #F4F7FB;
}

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

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

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

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

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

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

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

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

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

.page-no-hu__btn-secondary:hover {
  background-color: #2F6BFF;
  color: #FFFFFF;
  box-shadow: 0 8px 20px rgba(47, 107, 255, 0.2);
}

.page-no-hu__hero-image-wrapper {
  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(47, 107, 255, 0.2);
  display: block;
  margin: 0 auto;
}

.page-no-hu__intro-section {
  padding: 80px 0;
  background-color: #2F6BFF; /* Main color as dark background */
  color: #ffffff;
}

.page-no-hu__intro-section .page-no-hu__section-title,
.page-no-hu__intro-section .page-no-hu__section-description {
  color: #ffffff;
}

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

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

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

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #6FA3FF; /* Glow color */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF;
}

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

.page-no-hu__feature-title {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 15px;
}

.page-no-hu__feature-text {
  font-size: 16px;
  color: #f0f0f0;
  line-height: 1.6;
}

.page-no-hu__game-tabs-section {
  padding: 80px 0;
  background-color: #F4F7FB;
}

.page-no-hu__game-tabs {
  margin-top: 40px;
}

.page-no-hu__tab-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.page-no-hu__tab-button {
  background-color: #FFFFFF;
  color: #2F6BFF;
  border: 2px solid #2F6BFF;
  padding: 12px 25px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.page-no-hu__tab-button:hover,
.page-no-hu__tab-button.is-active {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border-color: transparent;
}

.page-no-hu__game-panel {
  display: none;
}

.page-no-hu__game-panel.is-active {
  display: block;
}

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

.page-no-hu__game-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-no-hu__game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-no-hu__game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

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

.page-no-hu__game-card h3 a {
  color: #000000; /* Custom Color_1776249996415 */
  text-decoration: none;
}

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

.page-no-hu__game-provider {
  font-size: 14px;
  color: #666;
  margin: 0 15px 15px;
}

.page-no-hu__btn-play {
  display: block;
  width: calc(100% - 30px);
  margin: 0 15px 15px;
  padding: 12px 0;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  text-align: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

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

.page-no-hu__guide-section {
  padding: 80px 0;
  background-color: #FFFFFF; /* Card BG */
}

.page-no-hu__guide-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-top: 40px;
}

.page-no-hu__step-item {
  background-color: #F4F7FB;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-no-hu__step-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 15px;
}

.page-no-hu__step-number {
  width: 45px;
  height: 45px;
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.page-no-hu__step-title {
  font-size: 28px;
  font-weight: bold;
  color: #000000; /* Custom Color_1776249996415 */
  margin: 0;
}

.page-no-hu__step-text {
  font-size: 16px;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.page-no-hu__cta-block {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background-color: #D6E2FF; /* Border color as light background */
  border-radius: 12px;
}

.page-no-hu__cta-text {
  font-size: 22px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 25px;
}

.page-no-hu__trust-section {
  padding: 80px 0;
  background-color: #2F6BFF; /* Main color as dark background */
  color: #ffffff;
}

.page-no-hu__trust-section .page-no-hu__section-title,
.page-no-hu__trust-section .page-no-hu__section-description {
  color: #ffffff;
}

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

.page-no-hu__trust-item {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 10px;
  font-size: 17px;
  line-height: 1.5;
  color: #f0f0f0;
  position: relative;
  padding-left: 40px;
}

.page-no-hu__trust-item::before {
  content: '✔';
  color: #A5C4FF; /* Glow color */
  font-weight: bold;
  position: absolute;
  left: 15px;
  top: 20px;
}

.page-no-hu__faq-section {
  padding: 80px 0;
  background-color: #F4F7FB;
}

.page-no-hu__faq-list {
  margin-top: 40px;
}

.page-no-hu__faq-item {
  background-color: #FFFFFF;
  border: 1px solid #D6E2FF; /* Border color */
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

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

.page-no-hu__faq-question:hover {
  background-color: #F4F7FB;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
  background-color: #F4F7FB;
  color: #2F6BFF;
}

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

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

.page-no-hu__faq-answer {
  padding: 0 25px 20px;
  font-size: 16px;
  color: #1F2D3D; /* Text Main */
  line-height: 1.6;
}

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

/* Hide default details marker */
.page-no-hu__faq-item > summary::-webkit-details-marker {
  display: none;
}
.page-no-hu__faq-item > summary::marker {
  display: none;
}

.page-no-hu__final-cta-section {
  padding: 80px 0;
  background-color: #2F6BFF;
  text-align: center;
  color: #ffffff;
}

.page-no-hu__final-cta-section .page-no-hu__section-title,
.page-no-hu__final-cta-section .page-no-hu__section-description {
  color: #ffffff;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-no-hu__final-cta-section .page-no-hu__btn-primary {
  margin-top: 40px;
}

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

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

  .page-no-hu__hero-content,
  .page-no-hu__hero-image-wrapper {
    flex: 1 1 100%;
    max-width: 700px; /* Constrain width on tablets */
  }

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

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

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

  .page-no-hu__main-title {
    font-size: clamp(28px, 5vw, 42px);
  }
}

@media (max-width: 768px) {
  .page-no-hu__container,
  .page-no-hu__hero-container {
    padding: 20px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px !important;
  }

  .page-no-hu__main-title {
    font-size: clamp(26px, 6vw, 36px) !important;
  }

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

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .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__hero-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-direction: column !important;
    gap: 10px !important;
  }

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

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

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

  .page-no-hu__intro-section,
  .page-no-hu__game-tabs-section,
  .page-no-hu__guide-section,
  .page-no-hu__trust-section,
  .page-no-hu__faq-section,
  .page-no-hu__final-cta-section {
    padding: 40px 0 !important;
  }

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

  .page-no-hu__icon-box-media {
    width: 150px !important;
    height: 150px !important;
    border-width: 3px !important;
  }

  .page-no-hu__feature-title {
    font-size: 20px !important;
  }

  .page-no-hu__feature-text {
    font-size: 15px !important;
  }

  .page-no-hu__tab-nav {
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .page-no-hu__tab-button {
    width: 100% !important;
    font-size: 16px !important;
    padding: 10px 15px !important;
  }

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

  .page-no-hu__game-card img {
    
  }

  .page-no-hu__game-card h3 {
    font-size: 18px !important;
  }

  .page-no-hu__game-provider {
    font-size: 13px !important;
  }

  .page-no-hu__btn-play {
    font-size: 16px !important;
    padding: 10px 0 !important;
  }

  .page-no-hu__step-header {
    flex-direction: column;
    gap: 10px;
  }

  .page-no-hu__step-number {
    width: 40px !important;
    height: 40px !important;
    font-size: 20px !important;
  }

  .page-no-hu__step-title {
    font-size: 22px !important;
  }

  .page-no-hu__step-text {
    font-size: 15px !important;
  }

  .page-no-hu__cta-block {
    padding: 30px 20px !important;
  }

  .page-no-hu__cta-text {
    font-size: 18px !important;
  }

  .page-no-hu__trust-list {
    grid-template-columns: 1fr !important;
  }

  .page-no-hu__trust-item {
    font-size: 15px !important;
    padding: 15px 15px 15px 40px !important;
  }

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

  .page-no-hu__faq-toggle {
    font-size: 24px !important;
  }

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

  .page-no-hu__final-cta-section .page-no-hu__btn-primary {
    margin-top: 25px !important;
  }
}