.page-no-hu {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    background-color: #F4F7FB; /* Background */
}

.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, shared.css handles body padding-top */
    padding-bottom: 60px;
    background-color: #F4F7FB; /* Consistent with overall background */
    color: #1F2D3D;
}

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

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

.page-no-hu__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #000000; /* Custom Color_1776249996415 */
}

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

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

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

.page-no-hu__cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-align: center;
    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: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #ffffff;
    border: none;
    margin-right: 15px;
}

.page-no-hu__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 107, 255, 0.4);
}

.page-no-hu__btn-secondary {
    background: #ffffff; /* Card BG */
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
}

.page-no-hu__btn-secondary:hover {
    background: #2F6BFF;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(47, 107, 255, 0.4);
}

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

.page-no-hu__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    text-align: center;
    margin-bottom: 30px;
}

.page-no-hu__paragraph {
    font-size: 1.05rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

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

.page-no-hu__feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-no-hu__feature-item {
    flex: 1 1 300px;
    max-width: 350px;
    text-align: center;
    padding: 25px;
    background-color: #F4F7FB; /* Background */
    border-radius: 12px;
    box-shadow: 0 5px 15px 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: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #D6E2FF; /* Border */
    box-shadow: 0 0 0 8px rgba(47, 107, 255, 0.1);
}

.page-no-hu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.page-no-hu__feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2F6BFF; /* Main Color */
    margin-bottom: 10px;
}

.page-no-hu__feature-description {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
}

.page-no-hu__game-types-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D;
}

.page-no-hu__game-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.page-no-hu__game-card {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: #ffffff; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-no-hu__game-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-no-hu__card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2F6BFF; /* Main Color */
    margin: 20px 15px 10px;
}

.page-no-hu__card-description {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
    margin: 0 15px 20px;
    flex-grow: 1;
}

.page-no-hu__game-card .page-no-hu__cta-button {
    margin: 0 15px 20px;
    width: calc(100% - 30px);
}

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

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

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

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

.page-no-hu__step-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2F6BFF; /* Main Color */
    background-color: #D6E2FF; /* Border */
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.page-no-hu__step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 5px;
}

.page-no-hu__step-description {
    font-size: 0.95rem;
    color: #1F2D3D; /* Text Main */
}

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

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

.page-no-hu__promo-section {
    padding: 60px 0;
    background-color: #2F6BFF; /* Main Color */
    color: #ffffff;
    text-align: center;
}

.page-no-hu__promo-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-no-hu__promo-section .page-no-hu__section-title {
    color: #ffffff;
}

.page-no-hu__promo-section .page-no-hu__paragraph {
    color: #ffffff;
    margin-bottom: 30px;
}

.page-no-hu__promo-section .page-no-hu__cta-button {
    margin-top: 20px;
}

.page-no-hu__faq-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D;
}

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

.page-no-hu__faq-item {
    background-color: #ffffff; /* Card BG */
    border: 1px solid #D6E2FF; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #000000; /* Custom Color_1776249996415 */
    cursor: pointer;
    background-color: #ffffff;
    position: relative;
    list-style: none;
    user-select: none;
}

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

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

.page-no-hu__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2F6BFF; /* Main Color */
    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: 1rem;
    color: #1F2D3D; /* Text Main */
}

.page-no-hu__cta-banner {
    padding: 80px 0;
    background-color: #2F6BFF; /* Main Color */
    color: #ffffff;
    text-align: center;
}

.page-no-hu__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-no-hu__cta-banner .page-no-hu__section-title {
    color: #ffffff;
}

.page-no-hu__cta-banner .page-no-hu__paragraph {
    color: #ffffff;
    margin-bottom: 40px;
}

.page-no-hu__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-no-hu__hero-container,
    .page-no-hu__content-area {
        padding-left: 25px;
        padding-right: 25px;
    }

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

    .page-no-hu__hero-description {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .page-no-hu__hero-image {
        order: -1; /* Move image above text on medium screens */
    }

    .page-no-hu__feature-item {
        flex: 1 1 280px;
        max-width: 320px;
    }

    .page-no-hu__game-card {
        flex: 1 1 320px;
        max-width: 350px;
    }

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

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

@media (max-width: 768px) {
    .page-no-hu {
        font-size: 15px;
        line-height: 1.5;
    }

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

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

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

    .page-no-hu__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

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

    .page-no-hu__cta-button {
        padding: 12px 20px;
        font-size: 0.95rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-no-hu__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-no-hu__btn-primary {
        margin-bottom: 0;
    }

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

    .page-no-hu__section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
        margin-bottom: 25px;
    }

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

    /* Module 1: Feature List */
    .page-no-hu__feature-list {
        flex-direction: column;
        gap: 20px;
    }

    .page-no-hu__feature-item {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 20px;
    }

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

    .page-no-hu__icon-box-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .page-no-hu__feature-title {
        font-size: 1.2rem;
    }

    /* Game Types Section */
    .page-no-hu__game-cards {
        flex-direction: column;
        gap: 20px;
    }

    .page-no-hu__game-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .page-no-hu__game-card img {
        
    }

    .page-no-hu__card-title {
        font-size: 1.3rem;
    }

    .page-no-hu__game-card .page-no-hu__cta-button {
        width: calc(100% - 30px);
    }

    /* Guide Section */
    .page-no-hu__guide-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .page-no-hu__step-item {
        margin-bottom: 20px;
        gap: 10px;
    }

    .page-no-hu__step-number {
        font-size: 1.5rem;
        width: 40px;
        height: 40px;
    }

    .page-no-hu__step-title {
        font-size: 1.1rem;
    }

    /* Promo Section */
    .page-no-hu__promo-section {
        padding: 40px 0;
    }

    /* FAQ Section */
    .page-no-hu__faq-section {
        padding: 40px 0;
    }

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

    .page-no-hu__faq-answer {
        padding: 0 20px 15px;
    }

    /* CTA Banner */
    .page-no-hu__cta-banner {
        padding: 60px 0;
    }

    .page-no-hu__cta-banner .page-no-hu__paragraph {
        margin-bottom: 30px;
    }

    /* General image responsive styles */
    .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,
    .page-no-hu__hero-section,
    .page-no-hu__intro-section,
    .page-no-hu__game-types-section,
    .page-no-hu__guide-section,
    .page-no-hu__promo-section,
    .page-no-hu__faq-section,
    .page-no-hu__cta-banner {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}