/* style/no-hu.css */

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

.page-no-hu {
    font-family: Arial, sans-serif;
    color: var(--text-main-color);
    background-color: var(--bg-page-color); /* Assuming --bg-page is light */
    line-height: 1.6;
}

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

.page-no-hu__section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--text-dark-color);
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-no-hu__section-description {
    font-size: 18px;
    color: var(--text-main-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    box-sizing: border-box;
    max-width: 100%;
    word-wrap: break-word;
}

.page-no-hu__btn-primary {
    background: var(--btn-gradient);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.3);
}

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

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

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

/* HERO Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, relying on body padding-top for header offset */
    padding-bottom: 60px;
    background-color: var(--bg-page-color);
}

.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-image-wrapper {
    flex: 1 1 500px;
    text-align: center;
    order: 1;
}

.page-no-hu__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

.page-no-hu__hero-content {
    flex: 1 1 400px;
    order: 2;
    text-align: left;
    color: var(--text-main-color);
}

.page-no-hu__main-title {
    font-size: clamp(32px, 4.5vw, 56px);
    font-weight: 800;
    color: var(--text-dark-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-no-hu__hero-description {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-main-color);
}

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

/* Intro Section (Features Grid) */
.page-no-hu__intro-section {
    padding: 60px 0;
    background-color: var(--bg-page-color);
}

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

.page-no-hu__feature-item {
    background: var(--bg-card-color);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-no-hu__icon-box-media {
    width: 180px;
    height: 180px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.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: 24px;
    font-weight: 700;
    color: var(--text-dark-color);
    margin-bottom: 15px;
}

.page-no-hu__icon-box-text {
    font-size: 16px;
    color: var(--text-main-color);
}

/* Games Showcase Section */
.page-no-hu__games-showcase {
    padding: 60px 0;
    background-color: var(--bg-page-color);
}

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

.page-no-hu__game-card {
    background: var(--bg-card-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-no-hu__game-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

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

.page-no-hu__game-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark-color);
    padding: 15px 20px 0;
}

.page-no-hu__game-card-text {
    font-size: 15px;
    color: var(--text-main-color);
    padding: 0 20px 20px;
}

/* Promo Section */
.page-no-hu__promo-section {
    padding: 60px 0;
    background-color: var(--bg-page-color);
}

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

.page-no-hu__promo-card {
    background: var(--bg-card-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

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

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

.page-no-hu__promo-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark-color);
    padding: 20px 20px 10px;
}

.page-no-hu__promo-card-text {
    font-size: 16px;
    color: var(--text-main-color);
    padding: 0 20px 20px;
}

.page-no-hu__promo-card .page-no-hu__btn-primary {
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.page-no-hu__why-choose-us {
    padding: 60px 0;
    background-color: var(--bg-page-color);
}

.page-no-hu__benefits-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-no-hu__benefits-list {
    flex: 1 1 450px;
    color: var(--text-main-color);
}

.page-no-hu__benefits-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-no-hu__benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 17px;
}

.page-no-hu__benefits-list li p {
    margin: 0;
    padding-left: 10px;
}

.page-no-hu__benefits-list li::before {
    content: '✅';
    font-size: 20px;
    margin-right: 10px;
    flex-shrink: 0;
}

.page-no-hu__benefits-cta {
    margin-top: 30px;
    display: inline-block;
}

.page-no-hu__benefits-image-wrapper {
    flex: 1 1 400px;
    text-align: center;
}

.page-no-hu__benefits-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: block;
}

/* FAQ Section */
.page-no-hu__faq-section {
    padding: 60px 0;
    background-color: var(--bg-page-color);
}

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

.page-no-hu__faq-item {
    background: var(--bg-card-color);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.page-no-hu__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

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

.page-no-hu__faq-item[open] summary {
    border-bottom-color: transparent;
}

.page-no-hu__faq-toggle {
    font-size: 24px;
    line-height: 1;
    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: 0 25px 20px;
    font-size: 16px;
    color: var(--text-main-color);
    line-height: 1.7;
}

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

/* Final CTA Section */
.page-no-hu__final-cta-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: #ffffff;
}

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

.page-no-hu__final-cta-section .page-no-hu__section-description {
    color: #f0f0f0;
    margin-bottom: 30px;
}

.page-no-hu__final-cta-section .page-no-hu__btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__final-cta-section .page-no-hu__btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* General image rules */
.page-no-hu img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

    .page-no-hu__hero-image-wrapper {
        order: 1;
    }

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

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

    .page-no-hu__benefits-content {
        flex-direction: column;
    }

    .page-no-hu__benefits-list,
    .page-no-hu__benefits-image-wrapper {
        flex: 1 1 100%;
    }
}

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

    .page-no-hu__container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-no-hu__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-no-hu__main-title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .page-no-hu__hero-description {
        font-size: 16px;
    }

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

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

    .page-no-hu__section-title {
        font-size: clamp(24px, 7vw, 36px);
    }

    .page-no-hu__section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-no-hu__features-grid,
    .page-no-hu__game-grid,
    .page-no-hu__promo-grid {
        grid-template-columns: 1fr;
    }

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

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

    .page-no-hu__game-card-image,
    .page-no-hu__promo-card-image,
    .page-no-hu__benefits-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-no-hu__faq-item summary {
        font-size: 16px;
        padding: 15px 20px;
    }

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

    /* Ensure all content area images are responsive */
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        box-sizing: border-box !important;
    }

    .page-no-hu__section,
    .page-no-hu__card,
    .page-no-hu__container,
    .page-no-hu__hero-container,
    .page-no-hu__features-grid,
    .page-no-hu__game-grid,
    .page-no-hu__promo-grid,
    .page-no-hu__benefits-content,
    .page-no-hu__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
}