/* style/no-hu.css */

:root {
    --primary-color: #2F6BFF;
    --secondary-color: #6FA3FF;
    --button-gradient: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg: #FFFFFF;
    --background-light: #F4F7FB;
    --text-main: #1F2D3D;
    --text-dark: #000000;
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
    --white-text: #ffffff;
    --dark-text: #333333;
}

.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: var(--dark-text); /* Default text color for light backgrounds */
    background-color: var(--background-light); /* Assuming body background is light */
}

.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, not --header-offset */
    padding-bottom: 60px;
    background-color: var(--background-light);
}

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

.page-no-hu__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: var(--text-main);
}

.page-no-hu__hero-title {
    font-size: 3.2em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-no-hu__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: var(--text-main);
}

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

.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);
}

.page-no-hu__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 20px;
}

.page-no-hu__section-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-main);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.page-no-hu__content-area {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
}

.page-no-hu__intro-section {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.page-no-hu__icon-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page-no-hu__icon-box {
    flex: 1 1 30%;
    min-width: 280px;
    text-align: center;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-no-hu__icon-box-media {
    width: 240px;
    height: 240px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--border-color);
}

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

.page-no-hu__icon-box-title {
    font-size: 1.6em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-no-hu__icon-box-text {
    font-size: 1em;
    line-height: 1.6;
    color: var(--text-main);
}

.page-no-hu__about-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.page-no-hu__about-section p {
    font-size: 1.05em;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 25px;
    text-align: justify;
}

.page-no-hu__content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-no-hu__popular-games-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--white-text);
}

.page-no-hu__popular-games-section .page-no-hu__section-title,
.page-no-hu__popular-games-section .page-no-hu__section-description {
    color: var(--white-text);
}

.page-no-hu__game-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.page-no-hu__game-card {
    flex: 1 1 30%;
    min-width: 280px;
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-align: center;
    padding-bottom: 20px;
    color: var(--dark-text);
}

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

.page-no-hu__game-card-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.page-no-hu__game-card-description {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--text-main);
    padding: 0 15px;
    margin-bottom: 20px;
}

.page-no-hu__tips-section {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.page-no-hu__tips-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.page-no-hu__tips-list,
.page-no-hu__tips-image {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-no-hu__tips-list ol {
    list-style: decimal;
    padding-left: 25px;
}

.page-no-hu__tips-list li {
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--text-main);
    margin-bottom: 15px;
}

.page-no-hu__tips-list li strong {
    color: var(--primary-color);
}

.page-no-hu__faq-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

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

.page-no-hu__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
}

.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.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--primary-color);
}

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.7;
    color: var(--text-main);
}

.page-no-hu__cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    text-align: center;
    color: var(--white-text);
}

.page-no-hu__cta-section .page-no-hu__section-title,
.page-no-hu__cta-section .page-no-hu__section-description {
    color: var(--white-text);
}

.page-no-hu__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-no-hu__btn-primary {
    background: var(--button-gradient);
    color: var(--white-text);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

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

.page-no-hu__btn-secondary {
    background: var(--card-bg);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-no-hu__btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white-text);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.page-no-hu__btn-small {
    padding: 10px 20px;
    font-size: 0.95em;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-no-hu__hero-title {
        font-size: 2.8em;
    }
    .page-no-hu__section-title {
        font-size: 2.2em;
    }
    .page-no-hu__hero-container,
    .page-no-hu__icon-boxes,
    .page-no-hu__game-cards,
    .page-no-hu__tips-layout {
        flex-direction: column;
        align-items: center;
    }
    .page-no-hu__hero-content,
    .page-no-hu__hero-image,
    .page-no-hu__icon-box,
    .page-no-hu__game-card,
    .page-no-hu__tips-list,
    .page-no-hu__tips-image {
        flex: 1 1 100%;
        max-width: 700px;
    }
    .page-no-hu__icon-box-media {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-no-hu__hero-title {
        font-size: 2.2em;
        text-align: center;
    }
    .page-no-hu__hero-description {
        font-size: 1em;
        text-align: center;
    }
    .page-no-hu__hero-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .page-no-hu__hero-image {
        order: -1; /* Image above text on mobile */
    }

    /* Intro Section - Module 1 Three-column round image */
    .page-no-hu__intro-section {
        padding: 50px 0;
    }
    .page-no-hu__icon-box-media {
        width: 180px;
        height: 180px;
        margin: 0 auto 15px;
    }
    .page-no-hu__icon-box-title {
        font-size: 1.4em;
    }

    /* About, Popular Games, Tips Sections - General content layout */
    .page-no-hu__section-title {
        font-size: 1.8em;
    }
    .page-no-hu__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-no-hu__content-area {
        padding: 20px 15px;
    }
    .page-no-hu__about-section p,
    .page-no-hu__tips-list li {
        font-size: 0.95em;
    }

    /* Universal Image Adaptation */
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-no-hu__section,
    .page-no-hu__card,
    .page-no-hu__container,
    .page-no-hu__game-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Exception for round images, they should maintain aspect ratio */
    .page-no-hu__icon-box-media img {
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Buttons and Button Containers */
    .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;
        padding-right: 15px;
        text-align: center;
    }
    .page-no-hu__hero-cta-buttons,
    .page-no-hu__cta-buttons,
    .page-no-hu__button-group,
    .page-no-hu__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-direction: column !important; /* Force vertical stacking for buttons */
        gap: 10px;
    }

    /* FAQ Section */
    .page-no-hu__faq-question {
        font-size: 1.05em;
        padding: 15px 20px;
    }
    .page-no-hu__faq-answer {
        font-size: 0.95em;
        padding: 0 20px 15px;
    }
    .page-no-hu__faq-toggle {
        font-size: 1.3em;
    }

    /* CTA Section */
    .page-no-hu__cta-section {
        padding: 50px 0;
    }
}