/* style/no-hu.css */
.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: #1F2D3D; /* Text Main */
    background: #F4F7FB; /* Background */
}

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

.page-no-hu__section-title {
    font-size: 3em;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-no-hu__section-description {
    font-size: 1.1em;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

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

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
    color: #FFFFFF;
    border: none;
}

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

.page-no-hu__btn-secondary {
    background: #FFFFFF; /* Card BG */
    color: #2F6BFF;
    border: 2px solid #2F6BFF;
}

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

.page-no-hu__btn-text {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-no-hu__btn-text:hover {
    color: #4A8BFF;
}

/* HERO Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #D6E2FF 0%, #F4F7FB 100%); /* Light gradient background */
}

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

.page-no-hu__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    text-align: left;
    color: #1F2D3D; /* Text Main */
}

.page-no-hu__main-title {
    font-size: clamp(2.5em, 5vw, 3.8em); /* Responsive font size */
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

.page-no-hu__hero-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #1F2D3D; /* Text Main */
}

.page-no-hu__cta-buttons {
    display: flex;
    gap: 20px;
    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);
}

/* Intro Section (Dark Background) */
.page-no-hu__intro-section {
    background: #2F6BFF; /* Main Color */
    color: #FFFFFF;
    padding: 60px 0;
}

.page-no-hu__intro-section .page-no-hu__section-title,
.page-no-hu__intro-section .page-no-hu__section-description,
.page-no-hu__intro-section .page-no-hu__feature-title,
.page-no-hu__intro-section .page-no-hu__feature-text {
    color: #FFFFFF;
}

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

.page-no-hu__feature-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-no-hu__feature-item:hover {
    transform: translateY(-5px);
}

.page-no-hu__icon-box-media {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #6FA3FF; /* Auxiliary Color */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.2);
}

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

.page-no-hu__feature-title {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__feature-text {
    font-size: 1em;
    line-height: 1.5;
    opacity: 0.9;
}

/* Game Tabs Section */
.page-no-hu__game-tabs {
    padding: 60px 0;
}

.page-no-hu__tab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.page-no-hu__tab-button {
    background: #FFFFFF; /* Card BG */
    color: #2F6BFF;
    border: 2px solid #D6E2FF; /* Border */
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-no-hu__tab-button:hover {
    background: #E0EFFF;
}

.page-no-hu__tab-button.is-active {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
    color: #FFFFFF;
    border-color: #2F6BFF;
}

.page-no-hu__game-panel {
    display: none;
}

.page-no-hu__game-panel.is-active {
    display: block;
}

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

.page-no-hu__game-card {
    background: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    padding-bottom: 20px;
    text-align: center;
}

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

.page-no-hu__game-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-no-hu__game-title {
    font-size: 1.6em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-no-hu__game-desc {
    font-size: 0.95em;
    color: #1F2D3D;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-no-hu__game-card .page-no-hu__btn-primary {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 0.9em;
}

/* Promo Section */
.page-no-hu__promo-section {
    padding: 60px 0;
    background: #F4F7FB; /* Background */
}

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

.page-no-hu__promo-card {
    background: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.page-no-hu__promo-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    margin-bottom: 15px;
}

.page-no-hu__promo-title {
    font-size: 1.6em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
    padding: 0 15px;
}

.page-no-hu__promo-text {
    font-size: 0.95em;
    color: #1F2D3D;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 15px;
}

.page-no-hu__promo-card .page-no-hu__btn-primary {
    margin-bottom: 20px;
    padding: 10px 20px;
    font-size: 0.9em;
}

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

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

.page-no-hu__guide-step {
    background: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-no-hu__guide-step:hover {
    transform: translateY(-5px);
}

.page-no-hu__guide-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: #2F6BFF; /* Main Color */
    color: #FFFFFF;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.page-no-hu__guide-title {
    font-size: 1.6em;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 10px;
}

.page-no-hu__guide-text {
    font-size: 0.95em;
    color: #1F2D3D;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-no-hu__bottom-text {
    font-size: 1em;
    color: #1F2D3D;
    text-align: center;
    margin-top: 40px;
    line-height: 1.6;
}

/* Trust Section (Dark Background) */
.page-no-hu__trust-section {
    background: #2F6BFF; /* Main Color */
    color: #FFFFFF;
    padding: 60px 0;
}

.page-no-hu__trust-section .page-no-hu__section-title,
.page-no-hu__trust-section .page-no-hu__section-description,
.page-no-hu__trust-section .page-no-hu__trust-title,
.page-no-hu__trust-section .page-no-hu__trust-text {
    color: #FFFFFF;
}

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

.page-no-hu__trust-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-no-hu__trust-item:hover {
    transform: translateY(-5px);
}

.page-no-hu__trust-item img {
    
    
    object-fit: contain;
    margin-bottom: 20px;
}

.page-no-hu__trust-title {
    font-size: 1.8em;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__trust-text {
    font-size: 1em;
    line-height: 1.5;
    opacity: 0.9;
}

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

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

.page-no-hu__faq-item {
    background: #FFFFFF; /* Card BG */
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    background: #F4F7FB; /* Background */
    border-bottom: 1px solid #D6E2FF; /* Border */
    list-style: none;
}

.page-no-hu__faq-item[open] > .page-no-hu__faq-question {
    background: #E0EFFF;
    border-bottom: 1px solid #2F6BFF;
}

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

.page-no-hu__faq-toggle {
    font-size: 1.5em;
    font-weight: bold;
    color: #2F6BFF;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    transform: rotate(45deg);
}

.page-no-hu__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: #1F2D3D;
}

/* Blog Section */
.page-no-hu__blog-section {
    padding: 60px 0;
    background: #F4F7FB; /* Background */
}

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

.page-no-hu__blog-card {
    background: #FFFFFF; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.page-no-hu__blog-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.page-no-hu__blog-content {
    padding: 20px;
}

.page-no-hu__blog-title {
    font-size: 1.5em;
    margin-bottom: 10px;
    line-height: 1.4;
}

.page-no-hu__blog-title a {
    color: #1F2D3D; /* Text Main */
    text-decoration: none;
    font-weight: bold;
}

.page-no-hu__blog-title a:hover {
    color: #2F6BFF;
}

.page-no-hu__blog-date {
    font-size: 0.9em;
    color: #6FA3FF; /* Auxiliary Color */
    margin-bottom: 10px;
}

.page-no-hu__blog-excerpt {
    font-size: 0.95em;
    color: #1F2D3D;
    line-height: 1.5;
    margin-bottom: 20px;
}

.page-no-hu__read-more {
    color: #2F6BFF;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.page-no-hu__read-more:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-no-hu__section-title {
        font-size: 2.5em;
    }

    .page-no-hu__hero-container {
        flex-direction: column;
        text-align: center;
    }

    .page-no-hu__hero-content {
        text-align: center;
    }

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

    .page-no-hu__hero-image {
        order: -1; /* Image above content on smaller screens */
        margin-bottom: 20px;
    }

    .page-no-hu__icon-box-media {
        width: 150px;
        height: 150px;
    }

    .page-no-hu__tab-button {
        font-size: 1em;
        padding: 10px 20px;
    }
}

@media (max-width: 768px) {
    .page-no-hu {
        font-size: 16px;
        line-height: 1.6;
    }

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

    .page-no-hu__section-title {
        font-size: 2em !important;
        margin-bottom: 15px !important;
    }

    .page-no-hu__section-description {
        font-size: 1em !important;
        margin-bottom: 20px !important;
    }

    /* HERO Section Mobile */
    .page-no-hu__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px !important;
    }

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

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

    .page-no-hu__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px !important;
        width: 100% !important;
    }

    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        text-align: center;
    }

    /* Intro Section Mobile */
    .page-no-hu__intro-section,
    .page-no-hu__game-tabs,
    .page-no-hu__promo-section,
    .page-no-hu__guide-section,
    .page-no-hu__trust-section,
    .page-no-hu__faq-section,
    .page-no-hu__blog-section {
        padding: 30px 0 !important;
    }

    .page-no-hu__features-grid,
    .page-no-hu__game-grid,
    .page-no-hu__promo-grid,
    .page-no-hu__guide-steps,
    .page-no-hu__trust-points,
    .page-no-hu__blog-grid {
        grid-template-columns: 1fr !important; /* Single column layout */
        gap: 20px !important;
    }

    .page-no-hu__icon-box-media {
        width: 120px !important;
        height: 120px !important;
        margin-bottom: 15px !important;
        border-width: 3px !important;
    }

    .page-no-hu__feature-title,
    .page-no-hu__game-title,
    .page-no-hu__promo-title,
    .page-no-hu__guide-title,
    .page-no-hu__trust-title,
    .page-no-hu__blog-title {
        font-size: 1.4em !important;
    }

    /* Game Tabs Mobile */
    .page-no-hu__tab-nav {
        flex-direction: column !important;
        gap: 10px !important;
        margin-bottom: 20px !important;
    }

    .page-no-hu__tab-button {
        width: 100% !important;
        max-width: 100% !important;
        font-size: 0.9em !important;
        padding: 10px 15px !important;
    }

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

    .page-no-hu__game-card img,
    .page-no-hu__promo-card img,
    .page-no-hu__blog-card img {
        
    }

    /* FAQ Mobile */
    .page-no-hu__faq-question {
        padding: 15px 20px !important;
        font-size: 1.1em !important;
    }

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

    .page-no-hu__faq-toggle {
        font-size: 1.2em !important;
    }

    /* Ensure all containing elements have correct mobile padding/width */
    .page-no-hu__hero-section .page-no-hu__hero-container,
    .page-no-hu__intro-section .page-no-hu__content-area,
    .page-no-hu__game-tabs .page-no-hu__content-area,
    .page-no-hu__promo-section .page-no-hu__content-area,
    .page-no-hu__guide-section .page-no-hu__content-area,
    .page-no-hu__trust-section .page-no-hu__content-area,
    .page-no-hu__faq-section .page-no-hu__content-area,
    .page-no-hu__blog-section .page-no-hu__content-area {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}