.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: #FFF3E6; /* Text Main */
    background-color: #0D0E12; /* Background */
}

.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 60px;
    background-color: #0D0E12;
}

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

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

.page-no-hu__main-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #FF8C1A; /* Primary color */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

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

.page-no-hu__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;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
    color: #FFF3E6; /* Text Main */
    border: 2px solid transparent;
}

.page-no-hu__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-no-hu__btn-secondary {
    background-color: transparent;
    color: #FF8C1A; /* Primary color */
    border: 2px solid #FF8C1A; /* Border color */
}

.page-no-hu__btn-secondary:hover {
    background-color: #FF8C1A;
    color: #0D0E12;
}

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

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

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

.page-no-hu__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    color: #FF8C1A; /* Primary color */
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-no-hu__intro-section,
.page-no-hu__how-to-play-section,
.page-no-hu__benefits-section,
.page-no-hu__faq-section {
    padding: 60px 0;
    background-color: #17191F; /* Card B G */
    margin-bottom: 20px;
    border-radius: 12px;
}

.page-no-hu__intro-section {
    background-color: #0D0E12;
}

.page-no-hu__text-block {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    color: #FFF3E6;
}

.page-no-hu__features-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-no-hu__feature-item {
    flex: 1 1 300px;
    background-color: #17191F; /* Card B G */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #FFF3E6;
}

.page-no-hu__icon-box-media {
    width: 240px;
    height: 240px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #FF8C1A;
    box-shadow: 0 0 15px rgba(255, 140, 26, 0.6);
}

.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.5rem;
    color: #FFA53A; /* Secondary color */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-no-hu__feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF3E6;
}

.page-no-hu__how-to-play-section {
    background-color: #0D0E12;
}

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

.page-no-hu__step-item {
    background-color: #17191F; /* Card B G */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    color: #FFF3E6;
}

.page-no-hu__step-icon {
    width: 60px;
    height: 60px;
    background-color: #FF8C1A; /* Primary color */
    color: #FFF3E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.page-no-hu__step-title {
    font-size: 1.4rem;
    color: #FFA53A; /* Secondary color */
    margin-bottom: 15px;
    font-weight: 600;
}

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

.page-no-hu__cta-center {
    text-align: center;
}

.page-no-hu__benefits-section {
    background-color: #17191F;
}

.page-no-hu__benefits-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

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

.page-no-hu__benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-no-hu__benefits-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: #FFF3E6;
}

.page-no-hu__list-icon {
    color: #FFA53A; /* Secondary color */
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 10px;
    line-height: 1;
}

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

.page-no-hu__benefits-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    display: block;
    margin: 0 auto;
}

.page-no-hu__faq-section {
    background-color: #0D0E12;
}

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

.page-no-hu__faq-item {
    background-color: #17191F; /* Card B G */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #FFF3E6;
    overflow: hidden;
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFA53A; /* Secondary color */
    user-select: none;
    list-style: none;
}

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

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

.page-no-hu__faq-toggle {
    font-size: 1.8rem;
    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: 0 25px 20px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #FFF3E6;
}

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

.page-no-hu__faq-answer a {
    color: #FF8C1A;
    text-decoration: none;
}

.page-no-hu__faq-answer a:hover {
    text-decoration: underline;
}

/* General image and container 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 {
        font-size: 16px;
        line-height: 1.6;
    }

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

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

    .page-no-hu__hero-content {
        order: 2; /* Content after image */
    }

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

    .page-no-hu__main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .page-no-hu__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

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

    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
    }

    .page-no-hu__container {
        padding: 30px 15px !important;
    }

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

    .page-no-hu__intro-section,
    .page-no-hu__how-to-play-section,
    .page-no-hu__benefits-section,
    .page-no-hu__faq-section {
        padding: 40px 0;
        margin-bottom: 15px;
    }

    .page-no-hu__text-block {
        font-size: 0.95rem;
        margin-bottom: 40px;
    }

    .page-no-hu__features-grid {
        flex-direction: column;
        gap: 20px;
    }

    .page-no-hu__feature-item {
        padding: 25px;
    }

    .page-no-hu__icon-box-media {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .page-no-hu__feature-title {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .page-no-hu__feature-description {
        font-size: 0.9rem;
    }

    .page-no-hu__steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .page-no-hu__step-item {
        padding: 25px;
    }

    .page-no-hu__step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .page-no-hu__step-title {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .page-no-hu__step-description {
        font-size: 0.9rem;
    }

    .page-no-hu__benefits-wrapper {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .page-no-hu__benefits-list li {
        font-size: 1rem;
    }

    .page-no-hu__faq-item {
        margin-bottom: 10px;
    }

    .page-no-hu__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }

    .page-no-hu__faq-toggle {
        font-size: 1.5rem;
    }

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

    /* General image and container forced responsiveness */
    .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;
    }

    /* Button container mobile adaptation */
    .page-no-hu__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: 0;
        padding-right: 0;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-no-hu__cta-center .page-no-hu__btn-primary {
        margin: 0 auto;
    }
}