/* style/no-hu.css */

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

.page-no-hu {
    color: var(--text-main-color);
    background-color: var(--bg-color);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-no-hu__section-title {
    font-size: 2.5em;
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

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

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

.page-no-hu__hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 15px;
    box-sizing: border-box;
}

.page-no-hu__hero-content {
    flex: 1;
    min-width: 300px;
}

.page-no-hu__hero-title {
    font-size: clamp(2.5em, 4vw, 3.5em);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.page-no-hu__hero-description {
    font-size: 1.1em;
    color: var(--text-main-color);
    margin-bottom: 30px;
}

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

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

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

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-small,
.page-no-hu__btn-large {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-no-hu__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

.page-no-hu__btn-small {
    padding: 8px 15px;
    font-size: 0.9em;
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
    border-radius: 5px;
}

.page-no-hu__btn-small:hover {
    opacity: 0.9;
}

.page-no-hu__btn-large {
    font-size: 1.2em;
    padding: 15px 30px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    display: block;
}

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

.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: var(--card-bg-color);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
}

.page-no-hu__icon-box-media {
    width: 150px;
    height: 150px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--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;
    display: block;
    border-radius: 50%; /* Ensure image is also circular */
}

.page-no-hu__feature-title {
    font-size: 1.5em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-no-hu__feature-text {
    color: var(--text-main-color);
}

/* Game List Section */
.page-no-hu__game-list-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

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

.page-no-hu__game-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--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: 1.4em;
    color: var(--gold-color);
    margin-bottom: 10px;
}

.page-no-hu__game-card-text {
    color: var(--text-main-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-no-hu__view-all-games {
    text-align: center;
    margin-top: 40px;
}

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

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

.page-no-hu__guide-steps {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.page-no-hu__guide-step-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.page-no-hu__guide-step-number {
    background: var(--gold-color);
    color: var(--deep-red-color);
    width: 35px;
    height: 35px;
    min-width: 35px; /* Ensure number doesn't shrink */
    min-height: 35px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.2em;
}

.page-no-hu__guide-step-title {
    font-size: 1.4em;
    color: var(--gold-color);
    margin-top: 0;
    margin-bottom: 5px;
}

.page-no-hu__guide-step-text {
    color: var(--text-main-color);
    margin-top: 0;
}

.page-no-hu__guide-image {
    flex: 1;
    text-align: center;
}

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

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

.page-no-hu__promo-card {
    background-color: var(--card-bg-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
}

.page-no-hu__promo-image {
    flex: 1;
    max-width: 400px;
    height: auto;
    border-radius: 8px;
}

.page-no-hu__promo-details {
    flex: 2;
}

.page-no-hu__promo-title {
    font-size: 1.8em;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-no-hu__promo-text {
    color: var(--text-main-color);
    margin-bottom: 25px;
}

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

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

.page-no-hu__faq-item {
    background-color: var(--card-bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: bold;
    color: var(--gold-color);
    font-size: 1.2em;
    list-style: none; /* For details/summary */
    -webkit-tap-highlight-color: transparent;
}

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

.page-no-hu__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: var(--gold-color);
    transition: transform 0.3s ease;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    transform: rotate(45deg);
}

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

/* Final CTA Section */
.page-no-hu__final-cta-section {
    padding: 80px 0;
    background-color: var(--bg-color);
    text-align: center;
}

/* Responsive Styles */

/* Generic image and container responsive styles */
.page-no-hu img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-no-hu__container,
.page-no-hu__hero-container,
.page-no-hu__features-grid,
.page-no-hu__game-cards-grid,
.page-no-hu__guide-content-wrapper,
.page-no-hu__promo-card,
.page-no-hu__faq-list,
.page-no-hu__hero-cta-buttons,
.page-no-hu__view-all-games {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

@media (max-width: 1024px) {
    .page-no-hu__hero-container {
        flex-direction: column;
        text-align: center;
    }

    .page-no-hu__hero-image {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }

    .page-no-hu__guide-content-wrapper {
        flex-direction: column-reverse; /* Guide image above steps */
    }

    .page-no-hu__guide-image {
        margin-bottom: 30px;
    }

    .page-no-hu__promo-card {
        flex-direction: column;
        text-align: center;
    }

    .page-no-hu__promo-image {
        max-width: 100%;
        margin-bottom: 20px;
    }
}

@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: 30px 15px !important;
        gap: 20px !important;
    }
    .page-no-hu__hero-title {
        font-size: 2em !important;
    }
    .page-no-hu__hero-description {
        font-size: 1em !important;
    }
    .page-no-hu__hero-cta-buttons {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 0 15px;
    }
    .page-no-hu__btn-primary, .page-no-hu__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 15px !important;
    }

    /* Intro Section - Module 1 Three Column Perfect Circle */
    .page-no-hu__intro-section {
        padding: 40px 0 !important;
    }
    .page-no-hu__section-title {
        font-size: 2em !important;
    }
    .page-no-hu__section-description {
        font-size: 0.95em !important;
        margin-bottom: 30px !important;
    }
    .page-no-hu__features-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .page-no-hu__icon-box-media {
        width: 120px !important;
        height: 120px !important;
        border-width: 2px !important;
    }
    .page-no-hu__feature-title {
        font-size: 1.3em !important;
    }

    /* Game List Section */
    .page-no-hu__game-list-section {
        padding: 40px 0 !important;
    }
    .page-no-hu__game-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .page-no-hu__game-card-image {
        height: 180px !important;
    }
    .page-no-hu__game-card-title {
        font-size: 1.2em !important;
    }
    .page-no-hu__btn-small {
        max-width: 100% !important;
        width: 100% !important;
        padding: 10px 15px !important;
    }
    .page-no-hu__view-all-games {
        margin-top: 30px !important;
    }

    /* Guide Section */
    .page-no-hu__guide-section {
        padding: 40px 0 !important;
    }
    .page-no-hu__guide-content-wrapper {
        gap: 20px !important;
    }
    .page-no-hu__guide-step-item {
        gap: 10px !important;
    }
    .page-no-hu__guide-step-number {
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        min-height: 30px !important;
        font-size: 1em !important;
    }
    .page-no-hu__guide-step-title {
        font-size: 1.2em !important;
    }

    /* Promo Section */
    .page-no-hu__promo-section {
        padding: 40px 0 !important;
    }
    .page-no-hu__promo-card {
        padding: 20px !important;
        gap: 20px !important;
    }
    .page-no-hu__promo-title {
        font-size: 1.5em !important;
    }

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

    /* Final CTA Section */
    .page-no-hu__final-cta-section {
        padding: 50px 0 !important;
    }
    .page-no-hu__btn-large {
        max-width: 100% !important;
        font-size: 1.1em !important;
    }

    /* Generic image and container responsive styles */
    .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-cards-grid,
    .page-no-hu__guide-content-wrapper,
    .page-no-hu__promo-card,
    .page-no-hu__faq-list,
    .page-no-hu__hero-cta-buttons,
    .page-no-hu__view-all-games {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}