/* style/no-hu.css */
.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light body background */
    line-height: 1.6;
    background-color: #F5F7FA; /* Body background from shared */
}

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

.page-no-hu__section-title {
    font-size: 2.5rem;
    color: #E53935;
    text-align: center;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.2;
}

.page-no-hu__section-description {
    font-size: 1.1rem;
    color: #333333;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Crucial for mobile responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    max-width: 100%; /* Ensure button doesn't exceed container */
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
    color: #ffffff;
    border: none;
}

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

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

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

.page-no-hu__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
    width: 100%; /* Ensure container takes full width */
    max-width: 100%; /* Ensure container doesn't exceed */
    box-sizing: border-box;
    overflow: hidden; /* Hide overflow for buttons */
}

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

/* HERO Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Specific padding for hero, not var(--header-offset) */
    padding-bottom: 60px;
    background-color: #F5F7FA;
    color: #333333;
}

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

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

.page-no-hu__main-title {
    font-size: 3.2rem;
    color: #E53935;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 600px; /* Prevent excessively wide title */
}

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

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

.page-no-hu__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: block; /* Ensure no extra space below image */
}

/* Intro Section (3 columns) */
.page-no-hu__intro-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG */
    color: #333333;
}

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

.page-no-hu__intro-item {
    text-align: center;
    padding: 25px;
    background-color: #F5F7FA;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-no-hu__icon-box-media {
    width: 200px; /* Fixed size for square */
    height: 200px; /* Fixed size for square */
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #FF5A4F;
    box-shadow: 0 0 0 8px rgba(255, 90, 79, 0.2);
}

.page-no-hu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain aspect ratio and cover area */
    border-radius: 50%;
    display: block;
}

.page-no-hu__intro-item-title {
    font-size: 1.6rem;
    color: #E53935;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__intro-item-text {
    font-size: 1rem;
    color: #333333;
}

/* Game Showcase Section */
.page-no-hu__game-showcase-section {
    padding: 60px 0;
    background-color: #E53935; /* Dark background */
    color: #ffffff; /* Light text */
}

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

.page-no-hu__game-showcase-section .page-no-hu__section-description {
    color: #f0f0f0;
}

.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;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

.page-no-hu__game-card-title {
    font-size: 1.4rem;
    color: #E53935;
    padding: 15px 20px 5px;
    font-weight: bold;
}

.page-no-hu__game-card-title a {
    color: #E53935;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-no-hu__game-card-title a:hover {
    color: #FF5A4F;
}

.page-no-hu__game-card-text {
    font-size: 1rem;
    color: #333333;
    padding: 0 20px 20px;
}

/* Guide Section */
.page-no-hu__guide-section {
    padding: 60px 0;
    background-color: #F5F7FA;
    color: #333333;
}

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

.page-no-hu__guide-step {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 20px;
}

.page-no-hu__guide-image {
    width: 100%;
    height: 180px; /* Fixed height for guide images */
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.page-no-hu__guide-step-title {
    font-size: 1.5rem;
    color: #E53935;
    margin-bottom: 10px;
    font-weight: bold;
    padding: 0 15px;
}

.page-no-hu__guide-step-text {
    font-size: 1rem;
    color: #333333;
    padding: 0 15px;
}

/* Promo Section */
.page-no-hu__promo-section {
    padding: 60px 0;
    background-color: #E53935; /* Dark background */
    color: #ffffff; /* Light text */
}

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

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

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

.page-no-hu__promo-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.page-no-hu__promo-card-image {
    width: 100%;
    height: 200px; /* Fixed height for promo cards */
    object-fit: cover;
    display: block;
}

.page-no-hu__promo-card-title {
    font-size: 1.4rem;
    color: #E53935;
    padding: 15px 20px 5px;
    font-weight: bold;
}

.page-no-hu__promo-card-title a {
    color: #E53935;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-no-hu__promo-card-title a:hover {
    color: #FF5A4F;
}

.page-no-hu__promo-card-text {
    font-size: 1rem;
    color: #333333;
    padding: 0 20px 20px;
}

/* FAQ Section */
.page-no-hu__faq-section {
    padding: 60px 0;
    background-color: #F5F7FA;
    color: #333333;
}

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

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

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #E53935;
    cursor: pointer;
    background-color: #ffffff;
    border-bottom: 1px solid transparent; /* Default */
    list-style: none; /* For details/summary */
}
.page-no-hu__faq-item[open] > .page-no-hu__faq-question {
    border-bottom: 1px solid #E0E0E0;
}

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

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

.page-no-hu__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: #E53935;
    transition: transform 0.3s ease;
}
.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    transform: rotate(45deg); /* Plus to X */
}

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: #333333;
}
.page-no-hu__faq-answer p {
    margin: 0;
}

/* CTA Banner Section */
.page-no-hu__cta-banner-section {
    padding: 80px 0;
    background-color: #E53935; /* Dark background */
    color: #ffffff; /* Light text */
    text-align: center;
}

.page-no-hu__cta-banner-section .page-no-hu__section-title {
    color: #ffffff;
    font-size: 2.8rem;
}

.page-no-hu__cta-banner-section .page-no-hu__section-description {
    color: #f0f0f0;
    max-width: 900px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-no-hu__main-title {
        font-size: 2.8rem;
    }
    .page-no-hu__section-title {
        font-size: 2.2rem;
    }
    .page-no-hu__cta-banner-section .page-no-hu__section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important; /* Fixed padding for hero */
        padding-bottom: 40px;
    }
    .page-no-hu__hero-container {
        flex-direction: column;
        padding: 30px 15px;
        gap: 30px;
    }
    .page-no-hu__hero-content,
    .page-no-hu__hero-image {
        flex: 1 1 100%;
        min-width: unset;
    }
    .page-no-hu__main-title {
        font-size: clamp(2.2rem, 8vw, 2.8rem); /* Responsive font size for H1 */
        text-align: center;
        margin-bottom: 15px;
    }
    .page-no-hu__hero-description {
        font-size: 1rem;
        text-align: center;
        margin-bottom: 20px;
    }
    .page-no-hu__cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
        padding: 0 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 1rem !important;
        padding: 12px 20px !important;
    }

    /* Intro Section (3 columns) */
    .page-no-hu__intro-section {
        padding: 40px 0;
    }
    .page-no-hu__container {
        padding: 20px 15px;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-no-hu__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 10px;
    }
    .page-no-hu__section-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    .page-no-hu__intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__icon-box-media {
        width: 150px; /* Smaller square for mobile */
        height: 150px;
        border-width: 3px;
        box-shadow: 0 0 0 6px rgba(255, 90, 79, 0.2);
    }
    .page-no-hu__intro-item-title {
        font-size: 1.4rem;
    }
    .page-no-hu__intro-item-text {
        font-size: 0.9rem;
    }

    /* Game Showcase Section */
    .page-no-hu__game-showcase-section {
        padding: 40px 0;
    }
    .page-no-hu__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__game-card-image {
        height: 180px; /* Adjusted height for mobile cards */
    }
    .page-no-hu__game-card-title {
        font-size: 1.2rem;
    }
    .page-no-hu__game-card-text {
        font-size: 0.9rem;
    }

    /* Guide Section */
    .page-no-hu__guide-section {
        padding: 40px 0;
    }
    .page-no-hu__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__guide-image {
        height: 150px; /* Adjusted height for guide images */
    }
    .page-no-hu__guide-step-title {
        font-size: 1.3rem;
    }
    .page-no-hu__guide-step-text {
        font-size: 0.9rem;
    }

    /* Promo Section */
    .page-no-hu__promo-section {
        padding: 40px 0;
    }
    .page-no-hu__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__promo-card-image {
        height: 180px; /* Adjusted height for promo cards */
    }
    .page-no-hu__promo-card-title {
        font-size: 1.2rem;
    }
    .page-no-hu__promo-card-text {
        font-size: 0.9rem;
    }

    /* FAQ Section */
    .page-no-hu__faq-section {
        padding: 40px 0;
    }
    .page-no-hu__faq-list {
        margin-top: 30px;
    }
    .page-no-hu__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-no-hu__faq-toggle {
        font-size: 1.5rem;
    }
    .page-no-hu__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }

    /* CTA Banner Section */
    .page-no-hu__cta-banner-section {
        padding: 60px 0;
    }
    .page-no-hu__cta-banner-section .page-no-hu__section-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }
    .page-no-hu__cta-banner-section .page-no-hu__section-description {
        font-size: 1rem;
    }

    /* General image responsiveness for all content images */
    .page-no-hu img:not(.page-no-hu__icon-box-media img) { /* Exclude icon-box-media img */
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    /* Ensure containers also adapt */
    .page-no-hu__section,
    .page-no-hu__card,
    .page-no-hu__container,
    .page-no-hu__intro-item,
    .page-no-hu__game-card,
    .page-no-hu__guide-step,
    .page-no-hu__promo-card,
    .page-no-hu__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        /* Padding added to container, not individual items to avoid double padding */
    }
}