.page-no-hu {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #FFFFFF; /* Ensure consistency with body background */
}

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

/* Hero Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    background: linear-gradient(135deg, #017439, #1a9e5b);
    color: #FFFFFF;
    text-align: center;
}

.page-no-hu__hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 40px 16px;
}

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

.page-no-hu__hero-title {
    font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive font size for H1 */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-no-hu__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05em;
    transition: background-color 0.3s ease, color 0.3s ease;
    max-width: 100%; /* Ensure buttons adapt to container */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word;
}

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

.page-no-hu__btn-primary:hover {
    background-color: #e02020;
    color: #FFFFFF;
}

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

.page-no-hu__btn-secondary:hover {
    background-color: #f0f0f0;
    color: #005a2e;
}

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

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

/* General Section Styles */
.page-no-hu__section-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #017439;
}

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

.page-no-hu__dark-bg {
    background-color: #017439;
    color: #FFFFFF;
}

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

.page-no-hu__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-no-hu__text-block a {
    color: #017439;
    text-decoration: underline;
}

.page-no-hu__dark-bg .page-no-hu__text-block a {
    color: #FFFF00;
}

/* Features Section */
.page-no-hu__features-section .page-no-hu__container {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

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

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

.page-no-hu__feature-image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-no-hu__feature-card-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #017439;
}

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

/* Guide Section */
.page-no-hu__guide-section .page-no-hu__container {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-no-hu__step-card {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.page-no-hu__step-card:hover {
    background-color: #eaf7ed;
}

.page-no-hu__step-number {
    display: inline-block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 50%;
    background-color: #017439;
    color: #FFFFFF;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

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

.page-no-hu__step-description {
    font-size: 0.95em;
    color: #666666;
}

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

/* Popular Games Section */
.page-no-hu__popular-games-section .page-no-hu__container {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

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

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

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

.page-no-hu__game-card-title {
    font-size: 1.4em;
    font-weight: bold;
    padding: 15px 20px 5px;
    color: #017439;
}

.page-no-hu__game-card-description {
    font-size: 0.95em;
    padding: 0 20px 20px;
    color: #555555;
}

/* Tips Section */
.page-no-hu__tips-section .page-no-hu__container {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-no-hu__tips-list {
    list-style: none;
    padding-left: 0;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu__tips-list li {
    background-color: #f9f9f9;
    margin-bottom: 15px;
    padding: 18px 25px;
    border-radius: 8px;
    font-size: 1.05em;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-no-hu__tip-highlight {
    color: #017439;
}

.page-no-hu__tips-list li a {
    color: #017439;
    text-decoration: underline;
}

/* Promo Section */
.page-no-hu__promo-section .page-no-hu__container {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

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

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

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

.page-no-hu__promo-card-title {
    font-size: 1.4em;
    font-weight: bold;
    padding: 15px 20px 5px;
    color: #017439;
}

.page-no-hu__promo-card-description {
    font-size: 0.95em;
    padding: 0 20px 20px;
    color: #555555;
}

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

/* Trust Section */
.page-no-hu__trust-section .page-no-hu__container {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-no-hu__trust-item {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-no-hu__trust-item-title {
    font-size: 1.35em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #017439;
}

.page-no-hu__trust-item-description {
    font-size: 0.95em;
    color: #666666;
}

/* FAQ Section */
.page-no-hu__faq-section .page-no-hu__container {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-no-hu__faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-size: 1.15em;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* For details/summary */
}

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

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

.page-no-hu__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-no-hu__faq-answer {
    padding: 15px 25px 20px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #f0f0f0;
    font-size: 1em;
    line-height: 1.6;
}

.page-no-hu__faq-answer p {
    margin-bottom: 10px;
    color: #f0f0f0;
}

.page-no-hu__faq-answer a {
    color: #FFFF00;
    text-decoration: underline;
}

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-no-hu {
        font-size: 15px;
    }

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

    /* HERO Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

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

    .page-no-hu__hero-content {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: center;
    }

    .page-no-hu__hero-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-no-hu__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

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

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

    .page-no-hu__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }

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

    /* All Section Titles */
    .page-no-hu__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    /* Features Section */
    .page-no-hu__features-section .page-no-hu__container,
    .page-no-hu__guide-section .page-no-hu__container,
    .page-no-hu__popular-games-section .page-no-hu__container,
    .page-no-hu__tips-section .page-no-hu__container,
    .page-no-hu__promo-section .page-no-hu__container,
    .page-no-hu__trust-section .page-no-hu__container,
    .page-no-hu__faq-section .page-no-hu__container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .page-no-hu__feature-grid,
    .page-no-hu__guide-steps,
    .page-no-hu__game-list,
    .page-no-hu__promo-cards,
    .page-no-hu__trust-points {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-no-hu__feature-image,
    .page-no-hu__game-image,
    .page-no-hu__promo-image {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
    }

    .page-no-hu__feature-card,
    .page-no-hu__step-card,
    .page-no-hu__game-card,
    .page-no-hu__promo-card,
    .page-no-hu__trust-item {
        padding: 20px;
    }

    /* Tips List */
    .page-no-hu__tips-list li {
        font-size: 1em;
        padding: 15px 20px;
    }

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

    .page-no-hu__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.95em;
    }
    
    /* Ensure all other images are responsive */
    .page-no-hu img {
        max-width: 100% !important;
        height: auto !important;
        width: 100% !important;
    }

    /* Specific override for any container that might hold images or buttons */
    .page-no-hu__content-area,
    .page-no-hu__text-block,
    .page-no-hu__feature-grid,
    .page-no-hu__guide-steps,
    .page-no-hu__game-list,
    .page-no-hu__tips-list,
    .page-no-hu__promo-cards,
    .page-no-hu__trust-points,
    .page-no-hu__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
}