/* style/no-hu.css */

/* Base Styles */
.page-no-hu {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333333; /* Default text color for light background */
  background: #F4F7FB; /* Custom Background */
  line-height: 1.6;
}

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

.page-no-hu__section-title {
  font-size: 3em;
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

.page-no-hu__main-title {
  font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive H1 font size */
  font-weight: 800;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-no-hu__hero-description,
.page-no-hu__cta-banner-description {
  font-size: 1.1em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 30px;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-play,
.page-no-hu__btn-view-more {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1em;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
}

.page-no-hu__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button Gradient */
  color: #ffffff;
  border: none;
  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; /* Primary Color */
  border: 2px solid #2F6BFF;
  box-shadow: 0 4px 15px rgba(47, 107, 255, 0.2);
}

.page-no-hu__btn-secondary:hover {
  background: #F4F7FB; /* Background Color */
  color: #2150b3;
  border-color: #2150b3;
  box-shadow: 0 6px 20px rgba(47, 107, 255, 0.3);
}

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

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

.page-no-hu__btn-view-more {
  background: #F4F7FB; /* Background Color */
  color: #2F6BFF; /* Primary Color */
  border: 1px solid #D6E2FF; /* Border Color */
  padding: 10px 20px;
  font-size: 0.9em;
  border-radius: 5px;
}

.page-no-hu__btn-view-more:hover {
  background: #E0E7F5;
}

/* Hero Section */
.page-no-hu__hero-section {
  padding-top: 10px; /* Small top padding, assuming shared.css handles body padding */
  padding-bottom: 40px;
  background: #F4F7FB;
}

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

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

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

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

.page-no-hu__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

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

.page-no-hu__feature-item {
  background: #F4F7FB; /* Background Color */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px 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: 200px;
  height: 200px;
  aspect-ratio: 1/1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 0 8px #D6E2FF; /* Border Color as glow */
}

.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: 1.8em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 15px;
}

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

/* Game Tabs Section */
.page-no-hu__game-tabs-section {
  padding: 60px 0;
  background: #F4F7FB;
}

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

.page-no-hu__tab-button {
  background: #D6E2FF; /* Border Color */
  color: #2F6BFF; /* Primary Color */
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 1.1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.page-no-hu__tab-button:hover {
  background: #A5C4FF; /* Glow */
}

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

.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(250px, 1fr));
  gap: 30px;
}

.page-no-hu__game-card {
  background: #ffffff; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-bottom: 20px;
}

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

.page-no-hu__game-title {
  font-size: 1.5em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 5px;
}

.page-no-hu__game-provider {
  color: #666666;
  font-size: 0.9em;
  margin-bottom: 20px;
}

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

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

.page-no-hu__guide-steps {
  flex: 1 1 55%;
  min-width: 300px;
}

.page-no-hu__step-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.page-no-hu__step-number {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button Gradient */
  color: #ffffff;
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  font-weight: 700;
}

.page-no-hu__step-title {
  font-size: 1.6em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 5px;
}

.page-no-hu__step-description {
  color: #333333;
  font-size: 1em;
}

.page-no-hu__guide-image {
  flex: 1 1 35%;
  min-width: 250px;
  text-align: center;
}

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

/* Promo Section */
.page-no-hu__promo-section {
  background: #F4F7FB;
  padding: 60px 0;
}

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

.page-no-hu__promo-card {
  background: #ffffff; /* Card BG */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.page-no-hu__promo-card img {
  width: 100%;
  height: 220px; /* Fixed height for consistency */
  object-fit: cover;
  display: block;
  margin-bottom: 15px;
}

.page-no-hu__promo-title {
  font-size: 1.5em;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 10px;
  padding: 0 20px;
}

.page-no-hu__promo-description {
  color: #333333;
  font-size: 1em;
  margin-bottom: 20px;
  padding: 0 20px;
  flex-grow: 1;
}

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

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

.page-no-hu__faq-item {
  background: #F4F7FB; /* Background Color */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  background: #D6E2FF; /* Border Color */
  border-bottom: 1px solid #A5C4FF; /* Glow */
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button Gradient */
  color: #ffffff;
  border-bottom: 1px solid #2F6BFF;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
  color: #ffffff;
}

.page-no-hu__faq-qtext {
  flex-grow: 1;
}

.page-no-hu__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF; /* Primary Color */
}

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

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

.page-no-hu__faq-item summary::marker {
  display: none;
}

/* CTA Banner Section */
.page-no-hu__cta-banner-section {
  background: #F4F7FB;
  padding: 60px 0;
}

.page-no-hu__cta-banner-container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  background: #ffffff; /* Card BG */
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.page-no-hu__cta-banner-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-no-hu__cta-banner-title {
  font-size: 2.5em;
  font-weight: 700;
  color: #1F2D3D; /* Text Main */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-no-hu__cta-banner-image {
  flex: 1 1 40%;
  min-width: 250px;
  text-align: center;
}

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

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

  .page-no-hu__main-title {
    font-size: clamp(2.2em, 4.5vw, 3em);
  }

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

  .page-no-hu__hero-content,
  .page-no-hu__hero-image,
  .page-no-hu__cta-banner-content,
  .page-no-hu__cta-banner-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-no-hu__hero-content {
    order: 2;
  }

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

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

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

  .page-no-hu__guide-steps,
  .page-no-hu__guide-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

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

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

  .page-no-hu__content-container {
    padding: 20px 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

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

  .page-no-hu__main-title {
    font-size: clamp(1.8em, 8vw, 2.5em) !important;
    text-align: center !important;
  }

  .page-no-hu__hero-description,
  .page-no-hu__cta-banner-description {
    font-size: 1em !important;
    text-align: center !important;
  }

  /* Buttons and Button Containers */
  .page-no-hu__cta-buttons,
  .page-no-hu__tab-nav {
    flex-direction: column !important;
    gap: 10px !important;
    padding: 0 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .page-no-hu__btn-primary,
  .page-no-hu__btn-secondary,
  .page-no-hu__btn-play,
  .page-no-hu__btn-view-more,
  .page-no-hu__tab-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 15px !important;
    font-size: 1em !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

  /* Intro Section - Round Images */
  .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;
    box-shadow: 0 0 0 6px #D6E2FF !important;
  }

  /* Game Tabs Section */
  .page-no-hu__tab-nav {
    margin-bottom: 20px !important;
  }

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

  .page-no-hu__game-card img {
    
  }

  /* Guide Section */
  .page-no-hu__guide-content {
    gap: 20px !important;
  }

  .page-no-hu__step-item {
    gap: 15px !important;
  }

  .page-no-hu__step-number {
    width: 35px !important;
    height: 35px !important;
    min-width: 35px !important;
    font-size: 1em !important;
  }

  .page-no-hu__step-title {
    font-size: 1.4em !important;
  }

  /* Promo Section */
  .page-no-hu__promo-grid {
    grid-template-columns: 1fr !important;
  }

  .page-no-hu__promo-card img {
    
  }

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

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

  /* CTA Banner Section */
  .page-no-hu__cta-banner-title {
    font-size: 2em !important;
    text-align: center !important;
  }

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

  .page-no-hu__hero-side-image,
  .page-no-hu__guide-img,
  .page-no-hu__cta-banner-img {
    border-radius: 8px !important;
  }

  /* Containers with images */
  .page-no-hu__hero-image,
  .page-no-hu__guide-image,
  .page-no-hu__cta-banner-image {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
}