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

.page-no-hu__hero-section {
    padding-top: 10px;
    padding-bottom: 40px;
    background: linear-gradient(135deg, #e0f2f7, #ffffff);
}

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

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

.page-no-hu__main-title {
    font-weight: 700;
    line-height: 1.2;
    color: #26A9E0;
    margin-bottom: 20px;
    max-width: 100%;
}

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-small,
.page-no-hu__btn-large {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    text-align: center;
}

.page-no-hu__btn-primary {
    background: #26A9E0;
    color: #ffffff;
    border: 2px solid #26A9E0;
}

.page-no-hu__btn-primary:hover {
    background: #1e87b3;
    border-color: #1e87b3;
    transform: translateY(-2px);
}

.page-no-hu__btn-secondary {
    background: #ffffff;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-no-hu__btn-secondary:hover {
    background: #f0f8ff;
    color: #1e87b3;
    border-color: #1e87b3;
    transform: translateY(-2px);
}

.page-no-hu__btn-small {
    padding: 8px 18px;
    font-size: 14px;
}

.page-no-hu__btn-large {
    padding: 15px 30px;
    font-size: 20px;
}

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

.page-no-hu__hero-side-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

.page-no-hu__section-description {
    font-size: 16px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-no-hu__intro-section {
    padding: 60px 0;
    background: #f8faff;
}

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

.page-no-hu__icon-box {
    text-align: center;
    padding: 25px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.page-no-hu__icon-box-media {
    width: 240px;
    height: 240px;
    aspect-ratio: 1/1;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #26A9E0;
    box-shadow: 0 0 0 8px rgba(38, 169, 224, 0.3);
}

.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: 22px;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 10px;
}

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

.page-no-hu__game-types-section {
    padding: 60px 0;
}

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

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

.page-no-hu__dark-section .page-no-hu__section-description,
.page-no-hu__dark-section .page-no-hu__game-card-description,
.page-no-hu__dark-section .page-no-hu__faq-question,
.page-no-hu__dark-section .page-no-hu__faq-answer {
    color: #f0f0f0;
}

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

.page-no-hu__game-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
}

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

.page-no-hu__game-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 10px;
    padding: 0 15px;
}

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

.page-no-hu__guide-section {
    padding: 60px 0;
    background: #f8faff;
}

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

.page-no-hu__step-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.page-no-hu__step-icon {
    width: 60px;
    height: 60px;
    background: #26A9E0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.page-no-hu__step-title {
    font-size: 20px;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 10px;
}

.page-no-hu__step-description {
    font-size: 15px;
    color: #555555;
}

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

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

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

.page-no-hu__promo-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    padding-bottom: 25px;
}

.page-no-hu__promo-card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-no-hu__promo-card-title {
    font-size: 22px;
    font-weight: 600;
    color: #26A9E0;
    margin-bottom: 10px;
    padding: 0 15px;
}

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

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

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

.page-no-hu__faq-item {
    background: #ffffff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.page-no-hu__dark-section .page-no-hu__faq-item {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

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

.page-no-hu__dark-section .page-no-hu__faq-question {
    color: #ffffff;
}

.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: 24px;
    margin-left: 15px;
    user-select: none;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    content: '−';
}

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    font-size: 15px;
    color: #555555;
}

.page-no-hu__dark-section .page-no-hu__faq-answer {
    color: #f0f0f0;
}

.page-no-hu__cta-final-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #26A9E0, #1e87b3);
    color: #ffffff;
}

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

.page-no-hu__cta-final-section .page-no-hu__section-description {
    color: #f0f0f0;
}

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

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

    .page-no-hu__content-area,
    .page-no-hu__hero-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

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

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

    .page-no-hu__main-title {
        font-size: clamp(24px, 7vw, 30px);
        margin-bottom: 15px;
    }

    .page-no-hu__hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

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

    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary,
    .page-no-hu a[class*="button"],
    .page-no-hu a[class*="btn"] {
        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__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }

    .page-no-hu__hero-side-image {
        max-width: 100%;
    }

    .page-no-hu__section-title {
        font-size: 26px;
        margin-bottom: 15px;
    }

    .page-no-hu__section-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .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-final-section {
        padding: 40px 0;
    }

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

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

    .page-no-hu__game-card-image,
    .page-no-hu__promo-card-image {
        height: 180px;
        max-width: 100% !important;
        width: 100% !important;
    }

    .page-no-hu__game-card-title,
    .page-no-hu__promo-card-title {
        font-size: 20px;
    }

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

    .page-no-hu__step-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .page-no-hu__step-title {
        font-size: 18px;
    }

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

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

    /* Ensure all images are responsive */
    .page-no-hu img:not(.page-no-hu__icon-box-media img) {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

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

    /* Ensure containers prevent horizontal scroll */
    .page-no-hu__section,
    .page-no-hu__card,
    .page-no-hu__container {
      max-width: 100% !important;
      width: 100% !important;
      box-sizing: border-box !important;
      overflow-x: hidden;
    }
}