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

.page-no-hu__hero-section {
    padding-top: 10px;
    padding-bottom: 60px;
    background-color: #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: 20px 15px;
}

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

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

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

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

.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: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__btn-primary {
    background-color: #017439;
    color: #FFFFFF;
    border-color: #017439;
}

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

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

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

.page-no-hu__btn-register {
    background-color: #C30808;
    border-color: #C30808;
    color: #FFFF00;
}

.page-no-hu__btn-register:hover {
    background-color: #9c0606;
    border-color: #9c0606;
}

.page-no-hu__btn-login {
    background-color: #C30808;
    border-color: #C30808;
    color: #FFFF00;
}

.page-no-hu__btn-login:hover {
    background-color: #9c0606;
    border-color: #9c0606;
}

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

.page-no-hu__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.8em);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #017439;
}

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

.page-no-hu__section-description {
    font-size: 1.05em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333333;
}

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

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

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

.page-no-hu__icon-box {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-no-hu__icon-box:hover {
    transform: translateY(-10px);
}

.page-no-hu__icon-box-media {
    width: 200px;
    height: 200px;
    aspect-ratio: 1/1;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #017439;
}

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

.page-no-hu__icon-box-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 15px;
    color: #017439;
}

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

.page-no-hu__games-showcase {
    background-color: #017439;
    padding: 80px 0;
}

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

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

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

.page-no-hu__game-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

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

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

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

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

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

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

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

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

.page-no-hu__guide-list li {
    margin-bottom: 20px;
    position: relative;
    padding-left: 40px;
}

.page-no-hu__guide-list li::before {
    content: counter(step-counter);
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    background-color: #017439;
    color: #FFFFFF;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1em;
}

.page-no-hu__guide-step-title {
    font-size: 1.3em;
    font-weight: 600;
    color: #017439;
    margin-bottom: 5px;
}

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

.page-no-hu__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.page-no-hu__promo-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page-no-hu__promo-image-wrapper {
    flex: 1 1 40%;
    min-width: 300px;
    text-align: center;
}

.page-no-hu__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-no-hu__promo-content {
    flex: 1 1 50%;
    min-width: 300px;
    color: #FFFFFF;
}

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

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

.page-no-hu__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    counter-reset: step-counter;
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    color: #017439;
    cursor: pointer;
    list-style: none;
    position: relative;
}

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

.page-no-hu__faq-toggle {
    font-size: 1.5em;
    font-weight: 700;
    color: #017439;
    margin-left: 15px;
    user-select: none;
}

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #555555;
    line-height: 1.6;
}

.page-no-hu__cta-banner {
    background-color: #017439;
    padding: 80px 0;
    text-align: center;
}

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

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

.page-no-hu img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsive Styles */
@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-reverse;
        padding: 15px;
        gap: 30px;
    }

    .page-no-hu__hero-content,
    .page-no-hu__hero-image {
        flex: 1 1 100%;
        min-width: unset;
        text-align: center;
    }

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

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

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

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

    .page-no-hu__content-area {
        padding: 40px 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__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

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

    .page-no-hu__icon-box {
        padding: 25px;
    }

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

    .page-no-hu__icon-box-title {
        font-size: 1.3em;
    }

    .page-no-hu__games-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-no-hu__game-card-image {
        height: 180px;
    }

    .page-no-hu__game-card-title {
        font-size: 1.2em;
    }

    .page-no-hu__guide-layout {
        flex-direction: column;
        gap: 30px;
    }

    .page-no-hu__guide-content,
    .page-no-hu__guide-image-wrapper {
        flex: 1 1 100%;
        min-width: unset;
    }

    .page-no-hu__guide-list li {
        padding-left: 35px;
    }

    .page-no-hu__guide-list li::before {
        width: 28px;
        height: 28px;
        font-size: 1em;
    }

    .page-no-hu__guide-step-title {
        font-size: 1.1em;
    }

    .page-no-hu__promo-layout {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .page-no-hu__promo-image-wrapper,
    .page-no-hu__promo-content {
        flex: 1 1 100%;
        min-width: unset;
    }

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

    .page-no-hu__faq-toggle {
        font-size: 1.3em;
    }

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

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

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

    .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__icon-box,
    .page-no-hu__game-card,
    .page-no-hu__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-no-hu__features-section .page-no-hu__content-area, 
    .page-no-hu__games-showcase .page-no-hu__content-area, 
    .page-no-hu__guide-section .page-no-hu__content-area, 
    .page-no-hu__promo-section .page-no-hu__content-area, 
    .page-no-hu__faq-section .page-no-hu__content-area, 
    .page-no-hu__cta-banner .page-no-hu__content-area {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}