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

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

.page-no-hu__section-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, relying on shared body padding-top */
    padding-bottom: 60px;
    background-color: #f7f7f7;
}

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

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

.page-no-hu__hero-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    color: #26A9E0;
    margin-bottom: 20px;
    line-height: 1.1;
}

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

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

.page-no-hu__cta-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__cta-button--primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-no-hu__cta-button--primary:hover {
    background-color: #1a7fb8;
    border-color: #1a7fb8;
}

.page-no-hu__cta-button--secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-no-hu__cta-button--secondary:hover {
    background-color: #e0e0e0;
}

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

.page-no-hu__intro-section {
    padding: 80px 0;
    background-color: #26A9E0; /* Brand primary color for dark section */
    color: #FFFFFF; /* White text for dark background */
}

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

.page-no-hu__intro-section .page-no-hu__feature-description {
    color: #f0f0f0;
}

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

.page-no-hu__feature-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.page-no-hu__icon-box-media {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.page-no-hu__feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.page-no-hu__feature-description {
    font-size: 16px;
    color: #f0f0f0;
}

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

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

.page-no-hu__game-card {
    background-color: #f7f7f7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

.page-no-hu__game-thumbnail {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-no-hu__game-title {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 15px 10px;
}

.page-no-hu__game-title a {
    color: #26A9E0;
    text-decoration: none;
}

.page-no-hu__game-title a:hover {
    text-decoration: underline;
}

.page-no-hu__game-description {
    font-size: 15px;
    color: #555555;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-no-hu__btn-play {
    display: inline-block;
    background-color: #EA7C07; /* Login color */
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__btn-play:hover {
    background-color: #c96806;
}

.page-no-hu__view-all {
    text-align: center;
    margin-top: 50px;
}

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

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

.page-no-hu__guide-step {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    padding-top: 60px;
}

.page-no-hu__step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #26A9E0;
    color: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

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

.page-no-hu__btn-text-link {
    color: #EA7C07; /* Login color */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-no-hu__btn-text-link:hover {
    text-decoration: underline;
    color: #c96806;
}

.page-no-hu__promo-section {
    padding: 80px 0;
    background-color: #26A9E0; /* Brand primary color for dark section */
    color: #FFFFFF; /* White text for dark background */
}

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

.page-no-hu__promo-section .page-no-hu__promo-description {
    color: #f0f0f0;
}

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

.page-no-hu__promo-card {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

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

.page-no-hu__promo-thumbnail {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-no-hu__promo-title {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 15px 10px;
}

.page-no-hu__promo-title a {
    color: #FFFFFF;
    text-decoration: none;
}

.page-no-hu__promo-title a:hover {
    text-decoration: underline;
}

.page-no-hu__promo-description {
    font-size: 15px;
    color: #f0f0f0;
    padding: 0 15px 20px;
    flex-grow: 1;
}

.page-no-hu__btn-read-more {
    display: inline-block;
    background-color: #FFFFFF;
    color: #26A9E0;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 20px;
    transition: background-color 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__btn-read-more:hover {
    background-color: #e0e0e0;
}

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

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

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

.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;
    outline: none;
}

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

.page-no-hu__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-no-hu__faq-toggle {
    font-size: 24px;
    line-height: 1;
    color: #26A9E0;
    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: 16px;
    color: #555555;
}

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

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

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .page-no-hu__container,
    .page-no-hu__hero-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

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

    .page-no-hu__hero-container {
        flex-direction: column-reverse; /* Image above text for hero */
        gap: 30px;
        padding: 30px 15px;
    }

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

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

    .page-no-hu__hero-title {
        font-size: clamp(28px, 8vw, 38px);
    }

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

    .page-no-hu__hero-ctas {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .page-no-hu__cta-button,
    .page-no-hu__btn-play,
    .page-no-hu__btn-read-more {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

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

    .page-no-hu__intro-section,
    .page-no-hu__games-section,
    .page-no-hu__guide-section,
    .page-no-hu__promo-section,
    .page-no-hu__faq-section {
        padding: 50px 0;
    }

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

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

    .page-no-hu__feature-title {
        font-size: 20px;
    }

    .page-no-hu__feature-description,
    .page-no-hu__game-description,
    .page-no-hu__promo-description,
    .page-no-hu__step-description,
    .page-no-hu__faq-answer {
        font-size: 15px;
    }

    .page-no-hu__game-thumbnail,
    .page-no-hu__promo-thumbnail {
        height: 180px;
    }

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

    .page-no-hu__guide-step {
        padding-top: 50px;
    }

    .page-no-hu__step-number {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: 15px;
    }

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

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

    .page-no-hu__faq-toggle {
        font-size: 20px;
    }

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

    /* Specific override for __icon-box-media img to maintain circular shape */
    .page-no-hu__icon-box-media img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}