.page-no-hu {
    font-family: Arial, sans-serif;
    color: #FFF1E8; /* Text Main */
    background-color: #140C0C; /* Background */
}

.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    background-color: #140C0C; /* Background */
}

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

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

.page-no-hu__hero-title {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #FFF1E8; /* Text Main */
    font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.page-no-hu__hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #FFF1E8;
}

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

.page-no-hu__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    box-sizing: border-box;
    max-width: 100%;
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    color: #FFF1E8; /* Text Main */
    border: 2px solid transparent;
}

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

.page-no-hu__btn-secondary {
    background-color: transparent;
    color: #F3C54D; /* Gold */
    border: 2px solid #F3C54D; /* Gold border */
}

.page-no-hu__btn-secondary:hover {
    background-color: #F3C54D;
    color: #140C0C; /* Background */
}

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

.page-no-hu__hero-main-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-no-hu__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
    color: #F3C54D; /* Gold */
}

.page-no-hu__section-description {
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #FFF1E8;
}

.page-no-hu__intro-section {
    background-color: #140C0C; /* Background */
    padding: 60px 0;
}

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

.page-no-hu__icon-box {
    text-align: center;
    padding: 24px;
    background-color: #2A1212; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #FFF1E8;
}

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

.page-no-hu__icon-box-media {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #F3C54D; /* Gold border */
    box-shadow: 0 0 15px rgba(243, 197, 77, 0.5);
}

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

.page-no-hu__icon-box-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #F3C54D; /* Gold */
}

.page-no-hu__icon-box-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFF1E8;
}

.page-no-hu__game-showcase-section {
    background-color: #140C0C; /* Background */
    padding: 60px 0;
}

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

.page-no-hu__game-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    color: #FFF1E8;
    display: flex;
    flex-direction: column;
}

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

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

.page-no-hu__game-card-title {
    font-size: 1.35rem;
    font-weight: bold;
    padding: 16px 20px 8px;
    color: #F3C54D; /* Gold */
}

.page-no-hu__game-card-text {
    font-size: 0.95rem;
    line-height: 1.5;
    padding: 0 20px 16px;
    flex-grow: 1;
    color: #FFF1E8;
}

.page-no-hu__btn-play {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    color: #FFF1E8; /* Text Main */
    border: none;
    padding: 12px 20px;
    border-radius: 0 0 12px 12px;
    width: 100%;
    text-align: center;
    font-weight: bold;
    transition: background 0.3s ease;
}

.page-no-hu__btn-play:hover {
    background: linear-gradient(180deg, #D86A14 0%, #FFB04A 100%);
}

.page-no-hu__guide-section {
    background-color: #140C0C; /* Background */
    padding: 60px 0;
}

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

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

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

.page-no-hu__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #F3C54D; /* Gold */
    color: #140C0C; /* Background */
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}

.page-no-hu__step-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 8px;
    color: #F3C54D; /* Gold */
}

.page-no-hu__step-text {
    font-size: 1rem;
    line-height: 1.5;
    color: #FFF1E8;
}

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

.page-no-hu__guide-main-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

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

.page-no-hu__faq-item {
    background-color: #2A1212; /* Card BG */
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #FFF1E8;
    border: 1px solid #6A1E1E; /* Border */
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    color: #F3C54D; /* Gold */
    list-style: none; /* For details/summary */
}

.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: 1.5rem;
    line-height: 1;
    margin-left: 16px;
    color: #F3C54D;
}

.page-no-hu__faq-answer {
    padding: 0 24px 18px;
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF1E8;
    overflow: hidden;
}

.page-no-hu__faq-answer p {
    margin: 0;
}

.page-no-hu__cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #7E0D0D; /* Deep Red */
}

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

.page-no-hu__cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: bold;
    margin-bottom: 20px;
    color: #FFF1E8; /* Text Main */
}

.page-no-hu__cta-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF1E8;
}

.page-no-hu__cta-button {
    padding: 16px 32px;
    font-size: 1.25rem;
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button gradient */
    color: #FFF1E8; /* Text Main */
}

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

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-no-hu__hero-section {
        padding-top: 10px !important;
    }

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

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

    .page-no-hu__hero-title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        margin-bottom: 12px;
    }

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

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

    .page-no-hu__btn,
    .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 !important;
        padding-right: 15px !important;
    }

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

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

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

    .page-no-hu__intro-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

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

    .page-no-hu__game-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .page-no-hu__game-card-img {
        
    }

    .page-no-hu__guide-content {
        flex-direction: column-reverse; /* Image above steps */
        gap: 32px;
    }

    .page-no-hu__guide-steps {
        flex: 1 1 100%;
    }

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

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

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

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

    .page-no-hu__step-text {
        font-size: 0.9rem;
    }

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

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

    .page-no-hu__cta-section {
        padding: 50px 0;
    }

    .page-no-hu__cta-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 16px;
    }

    .page-no-hu__cta-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .page-no-hu__cta-button {
        font-size: 1.1rem;
        padding: 12px 24px;
    }

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

    /* Specific override for round images to maintain aspect ratio */
    .page-no-hu__icon-box-media {
        width: 160px !important;
        height: 160px !important;
    }
}

/* Default image and container styles for responsiveness and overflow */
.page-no-hu__section,
.page-no-hu__card,
.page-no-hu__container,
.page-no-hu__game-card {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}