/* style/no-hu.css */
.page-no-hu {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFF5E1; /* Default text color for the page, assuming dark body background */
    background-color: var(--background-color, #B71C1C); /* Use custom background color if body default is not dark enough */
}

/* Base container styling */
.page-no-hu__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-no-hu__section-title {
    font-size: 2.8em;
    color: #FFCC66; /* Gold for titles */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-no-hu__text-block {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-text-link {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure responsiveness */
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    color: #7A0E0E; /* Deep Red for text on gold button */
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-no-hu__btn-secondary {
    background: transparent;
    color: #FFD86A; /* Gold for text on transparent button */
    border: 2px solid #FFD86A;
    margin-left: 15px;
}

.page-no-hu__btn-secondary:hover {
    background-color: rgba(255, 216, 106, 0.1);
    transform: translateY(-2px);
}

.page-no-hu__btn-text-link {
    background: transparent;
    color: #FFD86A; /* Gold for text links */
    padding: 5px 0;
    margin: 10px 0 0;
    display: block;
    text-align: left;
    font-weight: normal;
    border-bottom: 1px solid transparent;
}

.page-no-hu__btn-text-link:hover {
    border-color: #FFD86A;
}

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

/* HERO Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, assuming body has header offset */
    padding-bottom: 60px;
    background-color: #B71C1C; /* Background color for hero */
}

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

.page-no-hu__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: #FFF5E1; /* Light text for dark background */
}

.page-no-hu__main-title {
    font-size: 3.2em;
    color: #FFD86A; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-no-hu__description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 600px;
}

.page-no-hu__cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

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

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

/* Intro Section (Dark Background) */
.page-no-hu__intro-section {
    background-color: #7A0E0E; /* Deep Red background */
    padding: 60px 0;
    color: #FFF5E1;
}

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

.page-no-hu__feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for cards */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 216, 106, 0.2);
}

.page-no-hu__icon-box-media {
    width: 240px;
    height: 240px;
    aspect-ratio: 1 / 1;
    margin: 0 auto 16px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #F4D34D; /* Gold border for circular images */
    box-shadow: 0 0 15px rgba(255, 204, 102, 0.6); /* Gold glow */
}

.page-no-hu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Ensure image is also circular */
    display: block;
}

.page-no-hu__feature-title {
    font-size: 1.8em;
    color: #FFD86A; /* Gold for feature titles */
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__feature-description {
    font-size: 1em;
    color: #FFF5E1;
}

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

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

.page-no-hu__game-card {
    background-color: #D32F2F; /* Card background color */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #F2B544; /* 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-title {
    font-size: 1.6em;
    color: #FFD86A; /* Gold for card titles */
    padding: 15px 20px 5px;
    font-weight: bold;
}

.page-no-hu__game-card-description {
    font-size: 1em;
    color: #FFF5E1;
    padding: 0 20px 20px;
    flex-grow: 1;
}

/* Guide Section (Dark Background) */
.page-no-hu__guide-section {
    background-color: #7A0E0E; /* Deep Red background */
    padding: 60px 0;
    color: #FFF5E1;
}

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

.page-no-hu__step-item {
    background-color: rgba(225, 57, 53, 0.1); /* Use E53935 with transparency for subtle contrast */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 216, 106, 0.2);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.page-no-hu__step-number {
    font-size: 2.5em;
    color: #F4D34D; /* Gold for step numbers */
    font-weight: bold;
    margin-bottom: 15px;
    border-bottom: 2px solid #F4D34D;
    padding-bottom: 5px;
    display: inline-block;
}

.page-no-hu__step-title {
    font-size: 1.8em;
    color: #FFD86A; /* Gold for step titles */
    margin-bottom: 10px;
    font-weight: bold;
}

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

/* Tips Section */
.page-no-hu__tips-section {
    padding: 60px 0;
    background-color: #B71C1C; /* Background color */
    color: #FFF5E1;
}

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

.page-no-hu__tip-card {
    background-color: #D32F2F; /* Card background color */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid #F2B544; /* Border color */
    display: flex;
    flex-direction: column;
}

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

.page-no-hu__tip-card-title {
    font-size: 1.6em;
    color: #FFD86A; /* Gold for card titles */
    padding: 15px 20px 5px;
    font-weight: bold;
}

.page-no-hu__tip-card-description {
    font-size: 1em;
    color: #FFF5E1;
    padding: 0 20px 20px;
    flex-grow: 1;
}

/* Promo Section (Dark Background) */
.page-no-hu__promo-section {
    background-color: #7A0E0E; /* Deep Red background */
    padding: 60px 0;
    color: #FFF5E1;
}

.page-no-hu__promo-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
    text-align: left;
}

.page-no-hu__promo-item {
    font-size: 1.1em;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #FFF5E1;
}

.page-no-hu__promo-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD86A; /* Gold checkmark */
    font-size: 1.2em;
    line-height: 1.6;
}

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

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

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

.page-no-hu__faq-item {
    background-color: #D32F2F; /* Card background color */
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #F2B544; /* Border color */
    overflow: hidden;
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.3em;
    color: #FFD86A; /* Gold for FAQ questions */
    cursor: pointer;
    font-weight: bold;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-no-hu__faq-question:hover {
    background-color: rgba(255, 216, 106, 0.1); /* Subtle hover effect */
}

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

.page-no-hu__faq-question::marker {
    display: none;
}

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

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

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

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    font-size: 1.1em;
    color: #FFF5E1;
}

.page-no-hu__faq-answer p {
    margin-bottom: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-no-hu__main-title {
        font-size: 2.8em;
    }
    .page-no-hu__section-title {
        font-size: 2.4em;
    }
    .page-no-hu__hero-container {
        padding: 30px 16px;
    }
    .page-no-hu__container {
        padding: 30px 16px;
    }
}

@media (max-width: 768px) {
    /* General responsiveness for images and containers */
    .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__game-grid,
    .page-no-hu__guide-steps,
    .page-no-hu__tips-grid,
    .page-no-hu__promo-list,
    .page-no-hu__faq-list,
    .page-no-hu__cta-buttons,
    .page-no-hu__button-group,
    .page-no-hu__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* HERO Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important; /* Small top padding */
        padding-bottom: 40px;
    }
    .page-no-hu__hero-container {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }
    .page-no-hu__hero-content {
        flex: none;
        width: 100%;
        order: 2; /* Content below image */
    }
    .page-no-hu__hero-image {
        flex: none;
        width: 100%;
        order: 1; /* Image above content */
        margin-bottom: 20px;
    }
    .page-no-hu__main-title {
        font-size: 2.2em;
        text-align: center;
    }
    .page-no-hu__description {
        font-size: 1em;
        text-align: center;
    }
    .page-no-hu__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        margin-left: 0 !important;
        padding: 12px 15px;
    }

    /* Module 1 - Intro Section with circular images */
    .page-no-hu__intro-section {
        padding: 40px 0;
    }
    .page-no-hu__section-title {
        font-size: 2em;
    }
    .page-no-hu__text-block {
        font-size: 0.95em;
        margin-bottom: 30px;
    }
    .page-no-hu__features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    .page-no-hu__icon-box-media {
        width: 180px; /* Still square */
        height: 180px; /* Still square */
        border-width: 3px;
    }
    .page-no-hu__feature-title {
        font-size: 1.5em;
    }

    /* Game Types Section */
    .page-no-hu__game-types-section {
        padding: 40px 0;
    }
    .page-no-hu__game-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    .page-no-hu__game-card-image {
        height: 160px; /* Adjust height */
    }
    .page-no-hu__game-card-title {
        font-size: 1.4em;
    }
    .page-no-hu__game-card-description {
        font-size: 0.95em;
    }

    /* Guide Section */
    .page-no-hu__guide-section {
        padding: 40px 0;
    }
    .page-no-hu__guide-steps {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    .page-no-hu__step-number {
        font-size: 2em;
    }
    .page-no-hu__step-title {
        font-size: 1.5em;
    }
    .page-no-hu__step-description {
        font-size: 0.95em;
    }
    .page-no-hu__btn-text-link {
        text-align: center; /* Center text links on mobile */
        padding: 5px 10px;
    }

    /* Tips Section */
    .page-no-hu__tips-section {
        padding: 40px 0;
    }
    .page-no-hu__tips-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 30px;
    }
    .page-no-hu__tip-card-image {
        height: 150px; /* Adjust height */
    }
    .page-no-hu__tip-card-title {
        font-size: 1.4em;
    }
    .page-no-hu__tip-card-description {
        font-size: 0.95em;
    }

    /* Promo Section */
    .page-no-hu__promo-section {
        padding: 40px 0;
    }
    .page-no-hu__promo-list {
        margin: 30px auto;
    }
    .page-no-hu__promo-item {
        font-size: 0.95em;
        padding-left: 25px;
    }
    .page-no-hu__promo-item::before {
        font-size: 1em;
    }

    /* FAQ Section */
    .page-no-hu__faq-section {
        padding: 40px 0;
    }
    .page-no-hu__faq-list {
        margin: 30px auto 0;
    }
    .page-no-hu__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-no-hu__faq-toggle {
        font-size: 1.3em;
    }
    .page-no-hu__faq-answer {
        font-size: 0.95em;
        padding: 0 20px 15px;
    }
}