/* General styles for the page-no-hu scope */
.page-no-hu {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Default text color for dark background */
    background-color: #08160F; /* Ensure body background is dark */
}

.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.5em;
    color: #F2FFF6;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-no-hu__section-description {
    font-size: 1.1em;
    color: #A7D9B8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Hero Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 60px;
    background-color: #08160F;
}

.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: clamp(2.5em, 5vw, 3.5em); /* Responsive font size */
    color: #F2C14E;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-no-hu__hero-description {
    font-size: 1.15em;
    color: #A7D9B8;
    margin-bottom: 30px;
}

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

.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;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%; /* Ensure buttons adapt to container */
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
}

.page-no-hu__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px #57E38D;
}

.page-no-hu__btn-secondary {
    background: transparent;
    color: #57E38D;
    border: 2px solid #57E38D;
}

.page-no-hu__btn-secondary:hover {
    background: #57E38D;
    color: #08160F;
}

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

.page-no-hu__hero-side-image {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.page-no-hu__intro-section {
    padding: 60px 0;
    background-color: #08160F;
}

.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-color: #11271B;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #1E3A2A;
}

.page-no-hu__icon-box-media {
    width: 160px; /* Smaller size for feature icons */
    height: 160px;
    aspect-ratio: 1/1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #57E38D;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A4B2C;
}

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

.page-no-hu__feature-title {
    font-size: 1.5em;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__feature-text {
    color: #A7D9B8;
    font-size: 1em;
}

/* Game Types Section */
.page-no-hu__game-types-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Darker background */
}

.page-no-hu__dark-section .page-no-hu__section-title {
    color: #F2FFF6;
}
.page-no-hu__dark-section .page-no-hu__section-description {
    color: #A7D9B8;
}

.page-no-hu__game-tabs {
    margin-top: 40px;
}

.page-no-hu__tab-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #1E3A2A;
    padding-bottom: 15px;
}

.page-no-hu__tab-button {
    background-color: transparent;
    border: 2px solid #1E3A2A;
    color: #A7D9B8;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.05em;
    font-weight: bold;
    transition: all 0.3s ease;
}

.page-no-hu__tab-button:hover {
    border-color: #57E38D;
    color: #57E38D;
}

.page-no-hu__tab-button.is-active {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border-color: transparent;
    box-shadow: 0 0 10px rgba(87, 227, 141, 0.4);
}

.page-no-hu__game-panel {
    display: none;
    background-color: #11271B;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #1E3A2A;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-no-hu__panel-title {
    font-size: 2em;
    color: #F2C14E;
    margin-bottom: 15px;
    text-align: center;
}

.page-no-hu__panel-text {
    color: #A7D9B8;
    font-size: 1.05em;
    margin-bottom: 25px;
    text-align: center;
}

.page-no-hu__game-showcase {
    margin-bottom: 30px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__game-trial-frame {
    border: none;
    width: 100%;
    min-height: 400px;
    display: block;
}

.page-no-hu__panel-cta {
    display: block;
    margin: 0 auto;
    max-width: 300px;
}

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

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

.page-no-hu__step-item {
    background-color: #11271B;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #1E3A2A;
}

.page-no-hu__step-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #F2FFF6;
    border-radius: 50%;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
}

.page-no-hu__step-title {
    font-size: 1.6em;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__step-text {
    color: #A7D9B8;
    font-size: 1em;
    margin-bottom: 15px;
}

.page-no-hu__step-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    display: block; /* Ensure it behaves as a block element */
}

.page-no-hu__link {
    color: #57E38D;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-no-hu__link:hover {
    color: #F2C14E;
    text-decoration: underline;
}

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

.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: #11271B;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #1E3A2A;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.page-no-hu__promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-no-hu__promo-title {
    font-size: 1.4em;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: bold;
    flex-grow: 1; /* Allow title to take up available space */
}

.page-no-hu__promo-text {
    color: #A7D9B8;
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-no-hu__promo-card .page-no-hu__btn-secondary {
    margin-top: auto; /* Push button to bottom */
    width: fit-content;
    align-self: center;
}

.page-no-hu__all-promo-cta {
    text-align: center;
    margin-top: 50px;
}

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

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

.page-no-hu__faq-item {
    background-color: #11271B;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #1E3A2A;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6;
    background-color: #11271B;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    list-style: none; /* For <summary> tag */
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.page-no-hu__faq-question:hover {
    background-color: #0A4B2C;
}

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

.page-no-hu__faq-toggle {
    font-size: 1.5em;
    margin-left: 20px;
    color: #57E38D;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    content: "−"; /* Changes to minus sign when open */
}

/* For details/summary, hide default marker */
.page-no-hu__faq-item summary::-webkit-details-marker {
    display: none;
}
.page-no-hu__faq-item summary::marker {
    display: none;
}

.page-no-hu__faq-answer {
    padding: 15px 25px 20px;
    background-color: #0A4B2C;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    color: #A7D9B8;
    font-size: 1em;
    line-height: 1.5;
}
.page-no-hu__faq-answer p {
    margin-bottom: 10px;
}
.page-no-hu__faq-answer p:last-child {
    margin-bottom: 0;
}

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

.page-no-hu__cta-banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* General image responsive styles */
.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;
        text-align: center;
        gap: 20px;
    }
    .page-no-hu__hero-content,
    .page-no-hu__hero-image {
        flex: 1 1 100%;
    }
    .page-no-hu__cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .page-no-hu {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-no-hu__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 40px;
    }
    .page-no-hu__hero-container {
        padding: 30px 15px;
    }
    .page-no-hu__main-title {
        font-size: clamp(2em, 8vw, 2.8em);
    }
    .page-no-hu__hero-description {
        font-size: 1em;
    }
    .page-no-hu__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-no-hu__section-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-no-hu__section-description {
        font-size: 0.95em;
        margin-bottom: 30px;
    }

    /* Module 1: Intro Section */
    .page-no-hu__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__icon-box-media {
        width: 120px;
        height: 120px;
        border-width: 2px;
    }
    .page-no-hu__feature-title {
        font-size: 1.3em;
    }

    /* Game Tabs Section */
    .page-no-hu__tab-nav {
        flex-direction: column;
        gap: 10px;
        padding-bottom: 10px;
        border-bottom: none; /* Remove border on mobile */
    }
    .page-no-hu__tab-button {
        width: 100%;
        font-size: 0.95em;
        padding: 10px 15px;
    }
    .page-no-hu__game-panel {
        padding: 20px;
    }
    .page-no-hu__panel-title {
        font-size: 1.6em;
    }
    .page-no-hu__panel-text {
        font-size: 0.95em;
    }
    .page-no-hu__game-trial-frame {
        min-height: 250px;
    }
    .page-no-hu__panel-cta {
        max-width: 100%;
    }

    /* Guide Section */
    .page-no-hu__guide-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__step-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 1.8em;
    }
    .page-no-hu__step-title {
        font-size: 1.4em;
    }
    .page-no-hu__step-text {
        font-size: 0.95em;
   }}