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

/* Hero Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, header offset handled by body */
    padding-bottom: 40px;
    background-color: #f5faff; /* Light background for hero section */
}

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

.page-no-hu__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    color: #1e1765; /* Darker text for hero content for contrast */
}

.page-no-hu__hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for H1 */
}

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

.page-no-hu__hero-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 {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-no-hu__btn-primary:hover {
    background-color: #1e87b9;
    border-color: #1e87b9;
}

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

.page-no-hu__btn-secondary:hover {
    background-color: #e0f2f7;
    color: #1e87b9;
    border-color: #1e87b9;
}

.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;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* General Section Styling */
.page-no-hu__section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #26A9E0;
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

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

.page-no-hu__intro-section,
.page-no-hu__game-types-section,
.page-no-hu__tips-section,
.page-no-hu__download-app-section {
    padding: 60px 0;
}

.page-no-hu__light-bg {
    background-color: #f9f9f9;
    color: #333333;
}

.page-no-hu__dark-bg {
    background-color: #26A9E0;
    color: #FFFFFF;
}

.page-no-hu__dark-bg .page-no-hu__section-title,
.page-no-hu__dark-bg p,
.page-no-hu__dark-bg li {
    color: #FFFFFF;
}

.page-no-hu__image-center {
    text-align: center;
    margin: 30px 0;
}

.page-no-hu__content-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

/* Lists */
.page-no-hu__game-list,
.page-no-hu__guide-list,
.page-no-hu__tips-list,
.page-no-hu__promo-list,
.page-no-hu__app-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-no-hu__game-list li,
.page-no-hu__guide-list li,
.page-no-hu__tips-list li,
.page-no-hu__promo-list li,
.page-no-hu__app-benefits li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

.page-no-hu__game-list li::before,
.page-no-hu__tips-list li::before,
.page-no-hu__promo-list li::before,
.page-no-hu__app-benefits li::before {
    content: '✅'; /* Checkmark icon */
    position: absolute;
    left: 0;
    color: #26A9E0;
}

.page-no-hu__guide-list li::before {
    content: counter(list-item) "."; /* Numbered list */
    counter-increment: list-item;
    position: absolute;
    left: 0;
    font-weight: bold;
    color: #26A9E0;
}

/* CTA Buttons Centered */
.page-no-hu__cta-buttons--center {
    justify-content: center;
    margin-top: 40px;
    display: flex; /* Ensure flex for centering */
    width: 100%; /* Occupy full width for centering */
}

/* FAQ Section */
.page-no-hu__faq-section {
    padding: 60px 0;
}

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

.page-no-hu__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.page-no-hu__faq-item summary {
    list-style: none; /* Hide default marker */
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #26A9E0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.page-no-hu__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

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

.page-no-hu__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    transform: rotate(45deg); /* Rotate '+' to 'x' or just change to '-' */
    content: '−'; /* Change to minus sign */
}

.page-no-hu__faq-answer {
    padding: 0 25px 18px;
    font-size: 1rem;
    color: #555555;
    animation: fadein 0.3s ease-out;
}

@keyframes fadein {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-no-hu__hero-container {
        padding: 30px 15px;
    }
    .page-no-hu__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-no-hu__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 30px;
    }

    .page-no-hu__hero-container {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
        gap: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

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

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

    .page-no-hu__hero-cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px;
        width: 100%; /* Occupy full width for stacking */
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

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

    .page-no-hu__hero-image {
        flex: 1 1 100%;
        min-width: unset;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

    /* General Content Sections */
    .page-no-hu__intro-section,
    .page-no-hu__game-types-section,
    .page-no-hu__tips-section,
    .page-no-hu__download-app-section,
    .page-no-hu__promo-section,
    .page-no-hu__faq-section {
        padding: 40px 0;
    }

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

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

    /* Images */
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .page-no-hu__content-image {
        min-width: unset;
        min-height: unset;
    }

    /* Lists */
    .page-no-hu__game-list li,
    .page-no-hu__guide-list li,
    .page-no-hu__tips-list li,
    .page-no-hu__promo-list li,
    .page-no-hu__app-benefits li {
        font-size: 0.95rem;
        padding-left: 20px;
    }

    /* FAQ */
    .page-no-hu__faq-item summary {
        padding: 15px 20px;
        font-size: 1rem;
    }

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

    .page-no-hu__cta-buttons--center {
        flex-direction: column;
        gap: 10px;
        padding-left: 15px;
        padding-right: 15px;
    }
}