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

.page-no-hu__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

.page-no-hu__section {
    padding: 60px 0;
}

.page-no-hu__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
    position: relative;
    overflow: hidden;
    background-color: #26A9E0;
}

.page-no-hu__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Max height for desktop hero image */
    overflow: hidden;
}

.page-no-hu__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-no-hu__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 15px;
    color: #FFFFFF;
    max-width: 900px;
    margin-top: -100px; /* Overlap image slightly for visual effect, but text is below */
}

.page-no-hu__main-title {
    font-size: 4em;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-no-hu__description {
    font-size: 1.25em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.page-no-hu__btn-primary {
    background-color: #EA7C07; /* Login color */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}

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

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

.page-no-hu__btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

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

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

.page-no-hu__dark-section {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-no-hu__light-bg {
    background-color: #f9f9f9;
    color: #333333;
}

.page-no-hu__content-area {
    font-size: 1.1em;
    line-height: 1.7;
}

.page-no-hu__text-block p {
    margin-bottom: 15px;
}

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

.page-no-hu__game-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.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-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-no-hu__game-card-title {
    font-size: 1.5em;
    font-weight: 600;
    margin: 20px 15px 10px;
    color: #26A9E0;
}

.page-no-hu__game-card-description {
    padding: 0 15px 20px;
    color: #555555;
}

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

.page-no-hu__benefit-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.page-no-hu__benefit-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* Adjust for dark background if needed, but keeping original color is preferred */
}

.page-no-hu__benefit-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.page-no-hu__benefit-description {
    font-size: 1em;
    color: #f0f0f0;
}

.page-no-hu__tips-list {
    list-style: disc;
    padding-left: 30px;
    margin-top: 20px;
}

.page-no-hu__tips-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

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

.page-no-hu__promo-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-no-hu__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-no-hu__promo-title {
    font-size: 1.4em;
    font-weight: 600;
    margin: 20px 15px 10px;
    color: #26A9E0;
}

.page-no-hu__promo-description {
    padding: 0 15px 20px;
    color: #555555;
}

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

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

.page-no-hu__step-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-no-hu__step-number {
    font-size: 2.5em;
    font-weight: 700;
    color: #26A9E0;
    margin-bottom: 15px;
}

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

.page-no-hu__step-description {
    color: #555555;
}

/* FAQ Section */
details.page-no-hu__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #e0e0e0;
  overflow: hidden;
  background: #fff;
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question::-webkit-details-marker {
  display: none;
}
details.page-no-hu__faq-item summary.page-no-hu__faq-question:hover {
  background: #f5f5f5;
}
.page-no-hu__faq-qtext {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #333333;
}
.page-no-hu__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}
details.page-no-hu__faq-item .page-no-hu__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
}
.page-no-hu__faq-answer p {
    color: #555555;
}

/* Conclusion Section */
.page-no-hu__conclusion-section {
    text-align: center;
    padding-bottom: 80px;
}

.page-no-hu__conclusion-section .page-no-hu__description {
    color: #f0f0f0;
}

/* Global image styles to prevent overflow */
.page-no-hu img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

@media (max-width: 849px) {
    .page-no-hu__hero-image {
        object-fit: contain !important;
        aspect-ratio: unset !important;
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .page-no-hu__hero-section {
        padding-top: 10px !important;
    }
    .page-no-hu__hero-content {
        margin-top: -50px; /* Adjust overlap for mobile */
        padding: 20px 15px;
    }
    .page-no-hu__main-title {
        font-size: clamp(2.2em, 8vw, 3em); /* Mobile H1 font size with clamp */
        margin-bottom: 15px;
    }
    .page-no-hu__description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-no-hu__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }
    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    
    .page-no-hu__section {
        padding: 40px 0;
    }
    .page-no-hu__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-no-hu__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    
    .page-no-hu__game-grid,
    .page-no-hu__benefits-grid,
    .page-no-hu__promo-grid,
    .page-no-hu__guide-steps {
        grid-template-columns: 1fr; /* Single column for grids */
        gap: 20px;
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
    
    .page-no-hu__game-card-image,
    .page-no-hu__promo-image {
        height: 180px;
    }
    
    .page-no-hu__benefit-icon {
        width: 60px;
        height: 60px;
    }
    
    .page-no-hu__tips-list {
        padding-left: 20px;
        font-size: 1em;
    }
    
    details.page-no-hu__faq-item summary.page-no-hu__faq-question { padding: 15px; }
    .page-no-hu__faq-qtext { font-size: 15px; }
    details.page-no-hu__faq-item .page-no-hu__faq-answer { padding: 0 15px 15px; }

    /* Ensure all content images are responsive */
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-no-hu__content-area,
    .page-no-hu__text-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}