.page-no-hu {
    font-family: Arial, sans-serif;
    color: #333333;
    background-color: #F4F7FB;
}

.page-no-hu__hero-section {
    padding-top: 10px;
    padding-bottom: 60px;
    background-color: #F4F7FB;
}

.page-no-hu__hero-container {
    max-width: 1170px;
    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;
    color: #1F2D3D;
}

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

.page-no-hu__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D; /* Text Main */
}

.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;
    font-size: 1.1em;
    font-weight: 600;
    text-decoration: none;
    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%);
    color: #FFFFFF;
    border: 2px solid transparent;
}

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

.page-no-hu__btn-secondary {
    background: #FFFFFF;
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
}

.page-no-hu__btn-secondary:hover {
    background: #2F6BFF;
    color: #FFFFFF;
    border-color: #2F6BFF;
}

.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 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.page-no-hu__dark-section {
    background-color: #2F6BFF;
    color: #FFFFFF;
    padding: 60px 0;
}

.page-no-hu__light-bg {
    background-color: #FFFFFF;
    color: #1F2D3D;
    padding: 60px 0;
}

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

.page-no-hu__section-title {
    font-size: 2.2em;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: inherit; /* Inherits from section, will be #000000 or #FFFFFF */
}

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

.page-no-hu__light-bg .page-no-hu__section-title {
    color: #000000;
}

.page-no-hu__intro-section .page-no-hu__text-block {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: justify;
    margin-bottom: 20px;
}

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

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

.page-no-hu__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

.page-no-hu__game-card-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000000; /* Custom Color_1776249996415 */
    padding: 0 15px;
}

.page-no-hu__game-card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
    padding: 0 15px;
}

.page-no-hu__benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-no-hu__benefits-item {
    background-color: #F4F7FB;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-no-hu__benefits-item:hover {
    transform: translateY(-3px);
}

.page-no-hu__benefits-heading {
    font-size: 1.3em;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2F6BFF;
}

.page-no-hu__benefits-text {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
}

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

.page-no-hu__guide-step {
    background-color: #FFFFFF;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.page-no-hu__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #2F6BFF;
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
}

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

.page-no-hu__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main */
}

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

.page-no-hu__faq-list {
    margin-top: 40px;
}

.page-no-hu__faq-item {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #FFFFFF;
    border: 1px solid #A5C4FF;
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15em;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* Hide default marker for details */
    color: #FFFFFF;
}

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

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

.page-no-hu__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: #FFFFFF;
}

.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: 1em;
    line-height: 1.7;
    color: #F0F8FF;
}

.page-no-hu__faq-answer p {
    margin-bottom: 0;
    color: #F0F8FF;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-no-hu__hero-container {
        gap: 30px;
        padding: 20px 20px;
    }

    .page-no-hu__main-title {
        font-size: clamp(2em, 5vw, 2.5em);
    }

    .page-no-hu__description {
        font-size: 1em;
    }

    .page-no-hu__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-no-hu__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

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

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

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

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

    .page-no-hu__description {
        font-size: 0.95em;
        margin-bottom: 25px;
    }

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

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

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

    .page-no-hu__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden;
    }

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

    .page-no-hu__text-block,
    .page-no-hu__game-card-description,
    .page-no-hu__benefits-text,
    .page-no-hu__step-description,
    .page-no-hu__faq-answer p {
        font-size: 0.95em;
        line-height: 1.6;
    }

    .page-no-hu__game-grid,
    .page-no-hu__benefits-list,
    .page-no-hu__guide-steps {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }

    .page-no-hu__game-card-image {
        height: 200px; /* Adjust height for mobile */
    }

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

    .page-no-hu__benefits-heading,
    .page-no-hu__step-title {
        font-size: 1.15em;
    }

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

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

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

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

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

    .page-no-hu__hero-side-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}