/* style/no-hu.css */

:root {
    --page-no-hu-primary-color: #C61F1F;
    --page-no-hu-secondary-color: #E53030;
    --page-no-hu-card-bg: #2A1212;
    --page-no-hu-bg: #140C0C;
    --page-no-hu-text-main: #FFF1E8;
    --page-no-hu-border-color: #6A1E1E;
    --page-no-hu-gold-color: #F3C54D;
    --page-no-hu-deep-red-color: #7E0D0D;
    --page-no-hu-button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
}

.page-no-hu {
    font-family: Arial, sans-serif;
    color: var(--page-no-hu-text-main); /* Ensure light text on dark body background */
    background-color: var(--page-no-hu-bg);
}

.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;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: var(--page-no-hu-gold-color);
    line-height: 1.2;
}

.page-no-hu__section-description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    color: var(--page-no-hu-text-main);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-gold {
    display: inline-block;
    padding: 12px 25px;
    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;
    white-space: normal;
    word-wrap: break-word;
}

.page-no-hu__btn-primary {
    background: var(--page-no-hu-button-gradient);
    color: #ffffff;
    border: none;
}

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

.page-no-hu__btn-secondary {
    background: transparent;
    color: var(--page-no-hu-gold-color);
    border: 2px solid var(--page-no-hu-gold-color);
}

.page-no-hu__btn-secondary:hover {
    background: var(--page-no-hu-gold-color);
    color: var(--page-no-hu-bg);
    transform: translateY(-2px);
}

.page-no-hu__btn-gold {
    background: var(--page-no-hu-button-gradient);
    color: #ffffff;
    border: none;
    font-size: 1em;
    padding: 10px 20px;
}

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

/* Hero Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    background-color: var(--page-no-hu-deep-red-color);
}

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

.page-no-hu__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: var(--page-no-hu-text-main);
}

.page-no-hu__main-title {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--page-no-hu-gold-color);
    line-height: 1.1;
    max-width: 600px;
}

.page-no-hu__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

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

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

/* Intro Section (Module 1 - 3 columns with circular images) */
.page-no-hu__intro-section {
    padding: 60px 0;
    background-color: var(--page-no-hu-card-bg);
    color: var(--page-no-hu-text-main);
}

.page-no-hu__dark-section {
    background-color: var(--page-no-hu-card-bg);
    color: var(--page-no-hu-text-main);
}

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

.page-no-hu__feature-item {
    padding: 25px;
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--page-no-hu-border-color);
}

.page-no-hu__icon-box-media {
    width: 200px;
    height: 200px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--page-no-hu-gold-color);
    box-shadow: 0 0 15px rgba(243, 197, 77, 0.5);
}

.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.8em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--page-no-hu-gold-color);
}

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

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

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

.page-no-hu__game-card {
    background-color: var(--page-no-hu-card-bg);
    border: 1px solid var(--page-no-hu-border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 25px;
}

.page-no-hu__card {
    background-color: var(--page-no-hu-card-bg);
    color: var(--page-no-hu-text-main);
}

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

.page-no-hu__game-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--page-no-hu-gold-color);
    padding: 0 15px;
}

.page-no-hu__game-description {
    font-size: 0.95em;
    line-height: 1.5;
    margin-bottom: 20px;
    padding: 0 15px;
}

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

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

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

.page-no-hu__guide-subtitle {
    font-size: 1.7em;
    font-weight: bold;
    margin-top: 25px;
    margin-bottom: 10px;
    color: var(--page-no-hu-gold-color);
}

.page-no-hu__guide-text p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.page-no-hu__guide-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: block;
    margin: 0 auto;
}

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

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

.page-no-hu__promo-card {
    background-color: var(--page-no-hu-card-bg);
    border: 1px solid var(--page-no-hu-border-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    padding-bottom: 25px;
}

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

.page-no-hu__promo-title {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--page-no-hu-gold-color);
    padding: 0 15px;
}

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

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

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

.page-no-hu__faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--page-no-hu-border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--page-no-hu-gold-color);
    cursor: pointer;
    list-style: none; /* Remove default marker */
}

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

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

.page-no-hu__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
}

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    line-height: 1.6;
    color: var(--page-no-hu-text-main);
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-no-hu__main-title {
        font-size: 2.5em;
    }
    .page-no-hu__section-title {
        font-size: 2.2em;
    }
    .page-no-hu__hero-container,
    .page-no-hu__guide-content {
        flex-direction: column;
        text-align: center;
    }
    .page-no-hu__hero-content,
    .page-no-hu__hero-image-wrapper,
    .page-no-hu__guide-text,
    .page-no-hu__guide-image-wrapper {
        flex: 1 1 100%;
    }
    .page-no-hu__cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* HERO Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }
    .page-no-hu__hero-container {
        padding: 15px 10px;
        gap: 25px;
    }
    .page-no-hu__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-no-hu__hero-description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-no-hu__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    .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;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Intro Section (Module 1) */
    .page-no-hu__intro-section {
        padding: 40px 0;
    }
    .page-no-hu__section-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-no-hu__section-description {
        font-size: 0.9em;
        margin-bottom: 30px;
    }
    .page-no-hu__feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__icon-box-media {
        width: 150px; /* Smaller square */
        height: 150px; /* Smaller square */
        border-width: 2px;
    }
    .page-no-hu__feature-title {
        font-size: 1.5em;
    }

    /* Games Section */
    .page-no-hu__games-section {
        padding: 40px 0;
    }
    .page-no-hu__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__game-image {
        height: 180px;
    }
    .page-no-hu__game-title {
        font-size: 1.4em;
    }

    /* Guide Section */
    .page-no-hu__guide-section {
        padding: 40px 0;
    }
    .page-no-hu__guide-content {
        gap: 25px;
    }
    .page-no-hu__guide-subtitle {
        font-size: 1.5em;
        margin-top: 20px;
    }
    .page-no-hu__guide-text p {
        font-size: 0.9em;
    }

    /* Promo Section */
    .page-no-hu__promo-section {
        padding: 40px 0;
    }
    .page-no-hu__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-no-hu__promo-image {
        height: 180px;
    }
    .page-no-hu__promo-title {
        font-size: 1.4em;
    }

    /* FAQ Section */
    .page-no-hu__faq-section {
        padding: 40px 0;
    }
    .page-no-hu__faq-question {
        padding: 15px 20px;
        font-size: 1.1em;
    }
    .page-no-hu__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9em;
    }

    /* Universal Image and Container Mobile Rules */
    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-no-hu__container,
    .page-no-hu__hero-section,
    .page-no-hu__intro-section,
    .page-no-hu__games-section,
    .page-no-hu__guide-section,
    .page-no-hu__promo-section,
    .page-no-hu__faq-section,
    .page-no-hu__game-card,
    .page-no-hu__promo-card,
    .page-no-hu__feature-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-no-hu__faq-list {
        padding-left: 0;
        padding-right: 0;
    }
    .page-no-hu__faq-item {
        margin-left: 0;
        margin-right: 0;
    }
}