/* style/no-hu.css */

:root {
    --page-no-hu-primary-color: #F2C14E;
    --page-no-hu-secondary-color: #FFD36B;
    --page-no-hu-background-dark: #0A0A0A;
    --page-no-hu-card-background: #111111;
    --page-no-hu-text-main: #FFF6D6;
    --page-no-hu-border-color: #3A2A12;
    --page-no-hu-glow-color: #FFD36B;
    --page-no-hu-gradient-button: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    --page-no-hu-text-dark: #333333;
}

.page-no-hu {
    background-color: var(--page-no-hu-background-dark);
    color: var(--page-no-hu-text-main);
    font-family: 'Arial', sans-serif;
}

.page-no-hu__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

.page-no-hu__section-title {
    font-size: clamp(28px, 4vw, 48px);
    color: var(--page-no-hu-secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.4);
}

.page-no-hu__text-block {
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: var(--page-no-hu-text-main);
}

.page-no-hu img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* HERO Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Adjusted to 10px as per instructions */
    padding-bottom: 60px;
    background-color: var(--page-no-hu-background-dark);
    position: relative;
    overflow: hidden;
}

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

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

.page-no-hu__main-title {
    font-size: clamp(36px, 5vw, 60px);
    color: var(--page-no-hu-primary-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
    text-shadow: 0 0 15px rgba(242, 193, 78, 0.6);
}

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

.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: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-no-hu__btn-primary {
    background: var(--page-no-hu-gradient-button);
    color: var(--page-no-hu-background-dark);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
}

.page-no-hu__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-no-hu__btn-secondary {
    background: transparent;
    color: var(--page-no-hu-primary-color);
    border: 2px solid var(--page-no-hu-primary-color);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-no-hu__btn-secondary:hover {
    background: var(--page-no-hu-primary-color);
    color: var(--page-no-hu-background-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

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

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

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

.page-no-hu__image-content {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Features Section */
.page-no-hu__features-section {
    padding: 60px 0;
    background-color: var(--page-no-hu-card-background);
}

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

.page-no-hu__feature-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--page-no-hu-background-dark);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-no-hu-border-color);
}

.page-no-hu__icon-box-media {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--page-no-hu-primary-color);
    box-shadow: 0 0 15px var(--page-no-hu-glow-color);
}

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

.page-no-hu__feature-title {
    font-size: 24px;
    color: var(--page-no-hu-primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.page-no-hu__feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--page-no-hu-text-main);
}

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

.page-no-hu__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
}

.page-no-hu__game-card {
    background-color: var(--page-no-hu-card-background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-no-hu-border-color);
    display: flex;
    flex-direction: column;
}

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

.page-no-hu__game-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-no-hu__game-card-title {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 700;
}

.page-no-hu__game-card-title a {
    color: var(--page-no-hu-primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-no-hu__game-card-title a:hover {
    color: var(--page-no-hu-secondary-color);
}

.page-no-hu__game-card-description {
    font-size: 15px;
    line-height: 1.5;
    color: var(--page-no-hu-text-main);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-no-hu__btn-play-now {
    display: block;
    width: 100%;
    padding: 12px 20px;
    background: var(--page-no-hu-gradient-button);
    color: var(--page-no-hu-background-dark);
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
}

.page-no-hu__btn-play-now:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Guide Section */
.page-no-hu__guide-section {
    padding: 60px 0;
    background-color: var(--page-no-hu-card-background);
}

.page-no-hu__guide-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.page-no-hu__guide-text {
    flex: 1 1 45%;
    min-width: 300px;
}

.page-no-hu__guide-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.page-no-hu__guide-list li {
    background-color: var(--page-no-hu-background-dark);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--page-no-hu-text-main);
    border-left: 5px solid var(--page-no-hu-primary-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu__guide-list li strong {
    color: var(--page-no-hu-secondary-color);
}

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

.page-no-hu__guide-cta {
    margin-top: 20px;
    display: inline-block;
}

/* Tips Section */
.page-no-hu__tips-section {
    padding: 60px 0;
    background-color: var(--page-no-hu-background-dark);
}

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

.page-no-hu__tips-item {
    background-color: var(--page-no-hu-card-background);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-no-hu-border-color);
}

.page-no-hu__tips-title {
    font-size: 20px;
    color: var(--page-no-hu-secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-no-hu__tips-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--page-no-hu-text-main);
}

.page-no-hu__tips-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Promo Section */
.page-no-hu__promo-section {
    padding: 60px 0;
    background-color: var(--page-no-hu-card-background);
    text-align: center;
}

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

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

.page-no-hu__faq-item {
    background-color: var(--page-no-hu-card-background);
    border: 1px solid var(--page-no-hu-border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background-color: var(--page-no-hu-card-background);
    color: var(--page-no-hu-primary-color);
    font-size: 19px;
    font-weight: bold;
    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: 24px;
    line-height: 1;
    margin-left: 15px;
}

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--page-no-hu-text-main);
    transition: max-height 0.3s ease-out;
    max-height: 0;
    overflow: hidden;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-answer {
    max-height: 1000px; /* Large enough for content */
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
    background-color: var(--page-no-hu-background-dark);
    border-bottom: 1px solid var(--page-no-hu-border-color);
}

/* CTA Banner */
.page-no-hu__cta-banner {
    padding: 80px 0;
    background: var(--page-no-hu-gradient-button);
    text-align: center;
    color: var(--page-no-hu-background-dark);
}

.page-no-hu__cta-banner .page-no-hu__section-title {
    color: var(--page-no-hu-background-dark);
    text-shadow: none;
}

.page-no-hu__cta-banner .page-no-hu__text-block {
    color: var(--page-no-hu-background-dark);
}

.page-no-hu__cta-banner .page-no-hu__btn-primary {
    background: var(--page-no-hu-background-dark);
    color: var(--page-no-hu-primary-color);
    box-shadow: none;
}

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

.page-no-hu__cta-banner .page-no-hu__btn-secondary {
    background: var(--page-no-hu-background-dark);
    color: var(--page-no-hu-primary-color);
    border: 2px solid var(--page-no-hu-primary-color);
    box-shadow: none;
}

.page-no-hu__cta-banner .page-no-hu__btn-secondary:hover {
    background: var(--page-no-hu-primary-color);
    color: var(--page-no-hu-background-dark);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .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__guide-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-no-hu__section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .page-no-hu__text-block,
    .page-no-hu__hero-description {
        font-size: 16px;
        line-height: 1.5;
    }

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

    .page-no-hu__main-title {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .page-no-hu__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-no-hu__hero-image {
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Intro Section */
    .page-no-hu__intro-section,
    .page-no-hu__features-section,
    .page-no-hu__games-showcase-section,
    .page-no-hu__guide-section,
    .page-no-hu__tips-section,
    .page-no-hu__promo-section,
    .page-no-hu__faq-section,
    .page-no-hu__cta-banner {
        padding: 40px 0;
    }

    /* Module 1: Features Section (three-column) */
    .page-no-hu__features-grid {
        flex-direction: column;
        gap: 20px;
    }

    .page-no-hu__feature-item {
        min-width: unset;
        padding: 25px;
    }

    .page-no-hu__icon-box-media {
        width: 150px; /* Maintain square aspect ratio */
        height: 150px; /* Maintain square aspect ratio */
        margin-bottom: 15px;
    }

    /* Game Showcase Grid */
    .page-no-hu__games-grid {
        grid-template-columns: 1fr;
    }

    .page-no-hu__game-card-image {
        height: 180px;
    }

    /* Guide Section */
    .page-no-hu__guide-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-no-hu__guide-text,
    .page-no-hu__guide-image {
        min-width: unset;
        width: 100%;
    }

    .page-no-hu__guide-list li {
        font-size: 15px;
        padding: 15px;
    }

    /* Tips Section */
    .page-no-hu__tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 30px;
    }

    .page-no-hu__tips-item {
        padding: 20px;
    }

    /* FAQ Section */
    .page-no-hu__faq-question {
        font-size: 17px;
        padding: 15px 20px;
    }

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

    /* General image and container responsiveness */
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-no-hu__container,
    .page-no-hu__hero-container,
    .page-no-hu__features-grid,
    .page-no-hu__games-grid,
    .page-no-hu__guide-content,
    .page-no-hu__tips-grid,
    .page-no-hu__faq-list {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

@media (max-width: 480px) {
    .page-no-hu__main-title {
        font-size: 32px;
    }
    .page-no-hu__section-title {
        font-size: 28px;
    }
    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        font-size: 16px;
        padding: 12px 20px;
    }
}