.page-no-hu {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Text Main */
    background: #F5F7FA; /* Background */
}

.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding-top */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Using button gradient for hero background */
    color: #ffffff;
}

.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: 60px 20px;
}

.page-no-hu__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
    color: #ffffff; /* Ensure text is white on gradient background */
}

.page-no-hu__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 font size */
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
}

.page-no-hu__hero-description {
    font-size: 1.125rem;
    margin-bottom: 30px;
    max-width: 600px;
    color: #ffffff;
}

.page-no-hu__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* Prevent text wrapping for default */
    box-sizing: border-box;
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button color */
    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; /* Card BG */
    color: #E53935; /* Main color for text */
    border: 2px solid #E53935; /* Main color for border */
}

.page-no-hu__btn-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.page-no-hu__btn-text {
    background: none;
    color: #E53935; /* Main color for text */
    border: none;
    padding: 0;
    text-decoration: underline;
    font-size: 1rem;
    white-space: normal;
}

.page-no-hu__btn-text:hover {
    color: #FF5A4F; /* Auxiliary color on hover */
    text-decoration: none;
}

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

.page-no-hu__hero-side-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: block; /* Ensure it behaves as a block element */
    margin: 0 auto;
}

.page-no-hu__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    background: #FFFFFF; /* Card BG */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.page-no-hu__introduction-section,
.page-no-hu__game-types-section,
.page-no-hu__guide-section,
.page-no-hu__strategy-section,
.page-no-hu__promotions-section,
.page-no-hu__faq-section,
.page-no-hu__conclusion-section {
    padding: 40px 0;
}

.page-no-hu__section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: #E53935; /* Main color */
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.3;
}

.page-no-hu__subsection-title {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333333; /* Text Main */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-no-hu__content-area p {
    font-size: 1.05rem;
    margin-bottom: 15px;
    color: #333333; /* Text Main */
}

.page-no-hu__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px auto;
    display: block;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-no-hu__feature-list,
.page-no-hu__promo-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-no-hu__feature-list li,
.page-no-hu__promo-list li {
    background: #F5F7FA; /* Background */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #333333; /* Text Main */
}

.page-no-hu__feature-list li::before,
.page-no-hu__promo-list li::before {
    content: '✅';
    font-size: 1.2rem;
    color: #E53935; /* Main color */
    flex-shrink: 0;
}

.page-no-hu__list-item-title {
    color: #E53935; /* Main color */
}

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

.page-no-hu__guide-step-item {
    background: #F5F7FA; /* Background */
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    color: #333333; /* Text Main */
}

.page-no-hu__step-title {
    font-size: 1.4rem;
    color: #E53935; /* Main color */
    margin-bottom: 15px;
}

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

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

.page-no-hu__faq-item {
    background: #FFFFFF; /* Card BG */
    border: 1px solid #E0E0E0; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333333; /* Text Main */
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: #E53935; /* Main color */
    cursor: pointer;
    background: #F5F7FA; /* Background */
    border-bottom: 1px solid #E0E0E0; /* Border color */
    list-style: none; /* Hide default marker for <summary> */
    -webkit-tap-highlight-color: transparent; /* Remove tap highlight on mobile */
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
    border-bottom: 1px solid transparent; /* No border when open */
}

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

.page-no-hu__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #333333; /* Text Main */
}

.page-no-hu__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: #333333; /* Text Main */
}

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

/* Highlight for keywords */
.page-no-hu .highlight {
    color: #E53935; /* Main color */
    font-weight: bold;
}

/* Ensure all images meet min size requirements */
.page-no-hu img {
    min-width: 200px;
    min-height: 200px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-no-hu__hero-container {
        flex-direction: column;
        text-align: center;
        padding: 40px 15px;
    }

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

    .page-no-hu__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

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

    .page-no-hu__cta-buttons {
        justify-content: center;
    }

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

    .page-no-hu__subsection-title {
        font-size: 1.5rem;
    }

    .page-no-hu__content-area {
        padding: 30px 15px;
        margin-left: 15px;
        margin-right: 15px;
    }

    .page-no-hu__guide-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important; /* Small top padding, no var(--header-offset) */
        padding-bottom: 40px !important;
    }

    .page-no-hu__hero-container {
        padding: 30px 15px !important;
        gap: 20px !important;
    }

    .page-no-hu__hero-content {
        text-align: center !important;
        margin-bottom: 20px !important;
    }

    .page-no-hu__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
        margin-bottom: 15px !important;
    }

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

    /* Buttons and Button Containers */
    .page-no-hu__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 10px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px !important; /* Add padding to button container */
        overflow: hidden !important;
    }

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

    /* General Content Sections */
    .page-no-hu__introduction-section,
    .page-no-hu__game-types-section,
    .page-no-hu__guide-section,
    .page-no-hu__strategy-section,
    .page-no-hu__promotions-section,
    .page-no-hu__faq-section,
    .page-no-hu__conclusion-section {
        padding: 20px 0 !important;
    }

    /* Content Area Container */
    .page-no-hu__content-area {
        padding: 20px 15px !important;
        margin-left: 15px !important;
        margin-right: 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Section Titles */
    .page-no-hu__section-title {
        font-size: 1.8rem !important;
        margin-bottom: 20px !important;
    }

    .page-no-hu__subsection-title {
        font-size: 1.3rem !important;
        margin-top: 25px !important;
        margin-bottom: 10px !important;
    }

    .page-no-hu__content-area p {
        font-size: 0.95rem !important;
        margin-bottom: 10px !important;
    }

    /* Images */
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        margin: 15px auto !important;
        min-width: 200px !important; /* Maintain min size */
        min-height: 200px !important; /* Maintain min size */
    }
    
    /* List Items */
    .page-no-hu__feature-list li,
    .page-no-hu__promo-list li {
        padding: 12px 15px !important;
        font-size: 0.95rem !important;
    }

    /* Guide Steps */
    .page-no-hu__guide-steps {
        gap: 20px !important;
        margin-top: 20px !important;
    }

    .page-no-hu__step-title {
        font-size: 1.2rem !important;
        margin-bottom: 10px !important;
    }

    /* FAQ Section */
    .page-no-hu__faq-question {
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }

    .page-no-hu__faq-toggle {
        font-size: 1.3rem !important;
    }

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

    .page-no-hu__cta-center {
        margin-top: 30px !important;
    }
}