/* style/no-hu.css */
.page-no-hu {
    font-family: 'Arial', sans-serif;
    color: #FFF1E8; /* Text Main */
    background-color: #140C0C; /* Background */
}

.page-no-hu__content-area {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
    box-sizing: border-box;
}

.page-no-hu__section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #F3C54D; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-no-hu__section-description {
    font-size: clamp(16px, 2vw, 20px);
    color: #FFF1E8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.page-no-hu__main-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    color: #F3C54D; /* Gold */
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 700px;
}

.page-no-hu__description {
    font-size: clamp(18px, 2.5vw, 24px);
    color: #FFF1E8;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 600px;
}

/* Hero Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, not var(--header-offset) */
    padding-bottom: 60px;
    background-color: #140C0C;
}

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

.page-no-hu__hero-content {
    flex: 1 1 500px;
    padding-right: 20px;
}

.page-no-hu__hero-image {
    flex: 1 1 500px;
    text-align: center;
}

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%); /* Button */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 176, 74, 0.4);
}

.page-no-hu__btn-primary:hover {
    background: linear-gradient(180deg, #E5A03A 0%, #C35D10 100%);
    transform: translateY(-2px);
}

.page-no-hu__btn-secondary {
    background-color: transparent;
    color: #F3C54D; /* Gold */
    border: 2px solid #F3C54D; /* Gold */
    box-shadow: 0 4px 15px rgba(243, 197, 77, 0.2);
}

.page-no-hu__btn-secondary:hover {
    background-color: #F3C54D;
    color: #140C0C;
    transform: translateY(-2px);
}

/* Intro Section (Module 1) */
.page-no-hu__intro-section {
    padding: 60px 0;
    background-color: #140C0C;
}

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

.page-no-hu__feature-item {
    background-color: #2A1212; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #6A1E1E; /* Border */
}

.page-no-hu__icon-box-media {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #F3C54D; /* Gold */
    box-shadow: 0 0 0 6px rgba(243, 197, 77, 0.3);
}

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

.page-no-hu__feature-title {
    font-size: 24px;
    font-weight: 700;
    color: #F3C54D;
    margin-bottom: 15px;
}

.page-no-hu__feature-text {
    font-size: 16px;
    color: #FFF1E8;
    line-height: 1.6;
}

/* Popular Games Section */
.page-no-hu__popular-games-section {
    padding: 60px 0;
    background-color: #140C0C;
}

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

.page-no-hu__game-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #6A1E1E; /* Border */
    transition: transform 0.3s ease;
}

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

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

.page-no-hu__game-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #F3C54D;
    padding: 15px 20px 0;
}

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

.page-no-hu__game-card-title a:hover {
    text-decoration: underline;
}

.page-no-hu__game-card-text {
    font-size: 15px;
    color: #FFF1E8;
    padding: 0 20px 20px;
    line-height: 1.6;
}

.page-no-hu__view-all-games {
    text-align: center;
}

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

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

.page-no-hu__guide-item {
    background-color: #2A1212; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #6A1E1E; /* Border */
    text-align: center;
}

.page-no-hu__guide-icon {
    width: 60px;
    height: 60px;
    background-color: #F3C54D; /* Gold */
    color: #140C0C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 6px rgba(243, 197, 77, 0.3);
}

.page-no-hu__guide-title {
    font-size: 24px;
    font-weight: 700;
    color: #F3C54D;
    margin-bottom: 15px;
}

.page-no-hu__guide-text {
    font-size: 16px;
    color: #FFF1E8;
    line-height: 1.6;
}

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

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

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

.page-no-hu__promo-card {
    background-color: #2A1212; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #6A1E1E; /* Border */
    transition: transform 0.3s ease;
}

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

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

.page-no-hu__promo-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #F3C54D;
    padding: 15px 20px 0;
}

.page-no-hu__promo-card-title a {
    color: inherit;
    text-decoration: none;
}

.page-no-hu__promo-card-title a:hover {
    text-decoration: underline;
}

.page-no-hu__promo-card-text {
    font-size: 15px;
    color: #FFF1E8;
    padding: 0 20px 20px;
    line-height: 1.6;
}

.page-no-hu__view-all-promos {
    text-align: center;
}

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

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

.page-no-hu__faq-item {
    background-color: #2A1212; /* Card BG */
    border: 1px solid #6A1E1E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    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: 18px 25px;
    font-size: 20px;
    font-weight: 600;
    color: #F3C54D; /* Gold */
    cursor: pointer;
    list-style: none;
    position: relative;
}

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

.page-no-hu__faq-qtext {
    flex-grow: 1;
    padding-right: 15px;
}

.page-no-hu__faq-toggle {
    font-size: 28px;
    line-height: 1;
    width: 30px;
    text-align: center;
}

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    font-size: 16px;
    color: #FFF1E8;
    line-height: 1.6;
}

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

.page-no-hu__faq-answer a {
    color: #F3C54D;
    text-decoration: underline;
}

/* Universal 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__hero-container {
        flex-direction: column;
        text-align: center;
    }

    .page-no-hu__hero-content {
        padding-right: 0;
    }

    .page-no-hu__main-title {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .page-no-hu__description {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

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

    .page-no-hu__game-card img,
    .page-no-hu__promo-card img {
        
    }

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

@media (max-width: 768px) {
    /* HERO Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px !important;
    }

    .page-no-hu__hero-container {
        padding: 0 15px !important;
        gap: 30px !important;
    }

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

    .page-no-hu__description {
        font-size: clamp(16px, 4vw, 20px);
        text-align: center;
    }

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

    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 16px !important;
    }

    /* General content area padding and width for mobile */
    .page-no-hu__content-area {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Section paddings for mobile */
    .page-no-hu__intro-section,
    .page-no-hu__popular-games-section,
    .page-no-hu__guide-section,
    .page-no-hu__promo-section,
    .page-no-hu__faq-section {
        padding: 40px 0 !important;
    }

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

    .page-no-hu__section-description {
        font-size: clamp(15px, 3.5vw, 18px);
        margin-bottom: 30px;
    }

    /* Module 1 (Features Grid) */
    .page-no-hu__features-grid,
    .page-no-hu__game-cards-grid,
    .page-no-hu__guide-steps,
    .page-no-hu__promo-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }

    .page-no-hu__icon-box-media {
        width: 150px !important;
        height: 150px !important;
        border-width: 3px !important;
        box-shadow: 0 0 0 4px rgba(243, 197, 77, 0.3) !important;
    }

    .page-no-hu__feature-title,
    .page-no-hu__guide-title,
    .page-no-hu__game-card-title,
    .page-no-hu__promo-card-title {
        font-size: 20px !important;
    }

    .page-no-hu__feature-text,
    .page-no-hu__guide-text,
    .page-no-hu__game-card-text,
    .page-no-hu__promo-card-text,
    .page-no-hu__faq-answer p {
        font-size: 15px !important;
    }
}