.page-no-hu__hero-section {
  padding-top: 10px;
  padding-bottom: 60px;
  background: linear-gradient(135deg, #e0ffe0, #ffffff);
  color: #333333;
}

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

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

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

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
  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;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-no-hu__btn-primary {
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  border: 2px solid #C30808;
}

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

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

.page-no-hu__btn-secondary:hover {
  background: #005f2c;
  border-color: #005f2c;
}

.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.1);
  display: block;
  margin: 0 auto;
}

.page-no-hu__content-area {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.page-no-hu__section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  color: #017439;
}

.page-no-hu__section-title--white {
  color: #FFFFFF;
}

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

.page-no-hu__section-description--white {
  color: #f0f0f0;
}

.page-no-hu__intro-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.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;
  border-radius: 12px;
  background: #f9f9f9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

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

.page-no-hu__icon-box-media {
  width: 180px;
  height: 180px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #017439;
  box-shadow: 0 0 0 8px rgba(1, 116, 57, 0.2);
}

.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.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #017439;
}

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

.page-no-hu__game-tabs-section {
  padding: 60px 0;
  background-color: #017439;
  color: #FFFFFF;
}

.page-no-hu__tab-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 15px;
}

.page-no-hu__tab-button {
  background: transparent;
  border: none;
  padding: 12px 25px;
  font-size: 1.1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s ease;
  position: relative;
}

.page-no-hu__tab-button:hover {
  color: #FFFFFF;
}

.page-no-hu__tab-button.is-active {
  color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.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: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  color: #333333;
}

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

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

.page-no-hu__game-card-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 15px 10px 5px;
  color: #017439;
}

.page-no-hu__game-card-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 15px 20px;
  color: #555555;
}

.page-no-hu__game-card-btn {
  display: inline-block;
  background: #C30808; /* Register/Login color */
  color: #FFFF00; /* Register/Login font color */
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 20px;
  transition: background 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-no-hu__game-card-btn:hover {
  background: #a80707;
}

.page-no-hu__guide-section {
  padding: 60px 0;
  background-color: #f8f8f8;
}

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

.page-no-hu__step-item {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #017439;
}

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

.page-no-hu__step-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #555555;
}

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

.page-no-hu__promo-section {
  padding: 60px 0;
  background-color: #017439;
  color: #FFFFFF;
}

.page-no-hu__promo-list {
  list-style: none;
  padding: 0;
  margin: 40px auto 30px;
  max-width: 800px;
  text-align: left;
}

.page-no-hu__promo-item {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
  color: #f0f0f0;
}

.page-no-hu__promo-item::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFFF00; /* Register/Login font color */
  font-weight: bold;
}

.page-no-hu__promo-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 40px auto 0;
}

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

.page-no-hu__cta-section {
  padding: 60px 0;
  background-color: #FFFFFF;
}

.page-no-hu__cta-buttons-bottom {
  text-align: center;
  margin-top: 40px;
}

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

.page-no-hu__section,
.page-no-hu__card,
.page-no-hu__container {
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

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

  .page-no-hu__hero-container {
    flex-direction: column;
    padding: 30px 15px;
    gap: 30px;
  }

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

  .page-no-hu__hero-title {
    font-size: 2.2rem;
  }

  .page-no-hu__hero-description {
    font-size: 1rem;
  }

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

  .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;
    padding: 12px 15px;
    font-size: 0.95rem;
    white-space: normal !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
  }

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

  .page-no-hu__section-title {
    font-size: 2rem;
  }

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

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

  .page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    border: 3px solid #017439;
    box-shadow: 0 0 0 6px rgba(1, 116, 57, 0.2);
  }

  .page-no-hu__tab-nav {
    flex-direction: column;
    gap: 10px;
    padding-bottom: 10px;
  }

  .page-no-hu__tab-button {
    font-size: 1rem;
    padding: 10px 20px;
  }

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

  .page-no-hu__game-card img {
    
  }

  .page-no-hu__guide-steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .page-no-hu__promo-list {
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-no-hu__promo-item {
    font-size: 1rem;
    padding-left: 25px;
  }

  /* General image responsiveness for mobile */
  .page-no-hu img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  
  .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__cta-buttons-bottom {
    padding: 0 15px;
  }
}