/* style/no-hu.css */

.page-no-hu {
    font-family: Arial, sans-serif;
    color: #FFF3E6; /* Main text color for dark background */
    background-color: #0D0E12; /* Overall page background */
}

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

/* --- Hero Section --- */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, relying on shared for body padding */
    padding-bottom: 60px;
    background-color: #0D0E12;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-no-hu__hero-section .page-no-hu__container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

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

.page-no-hu__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive H1 font size */
    font-weight: bold;
    line-height: 1.2;
    color: #FF8C1A; /* Brand color for main title */
    margin-bottom: 20px;
}

.page-no-hu__description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF3E6;
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__btn-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text breaking */
    box-sizing: border-box;
    max-width: 100%;
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    border: none;
}

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

.page-no-hu__btn-secondary {
    background: transparent;
    color: #FFA53A;
    border: 2px solid #FFA53A;
}

.page-no-hu__btn-secondary:hover {
    background: #FFA53A;
    color: #ffffff;
}

.page-no-hu__btn-small {
    padding: 8px 15px;
    font-size: 0.9rem;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    border: none;
    border-radius: 5px;
}

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

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

.page-no-hu__main-visual-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* --- General Section Styling --- */
.page-no-hu__intro-section,
.page-no-hu__game-features-section,
.page-no-hu__how-to-play-section,
.page-no-hu__tips-section,
.page-no-hu__popular-games-section,
.page-no-hu__benefits-section,
.page-no-hu__faq-section,
.page-no-hu__cta-final-section {
    padding: 60px 0;
    background-color: #0D0E12;
}

.page-no-hu__section-title {
    font-size: 2.5rem;
    color: #FF8C1A;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

.page-no-hu__text-block {
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px auto;
    color: #FFF3E6;
}

.page-no-hu__text-block a {
    color: #FFA53A;
    text-decoration: none;
    font-weight: bold;
}

.page-no-hu__text-block a:hover {
    text-decoration: underline;
}

/* --- Game Features Section --- */
.page-no-hu__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-no-hu__feature-item {
    background-color: #17191F; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #A84F0C; /* Border color */
}

.page-no-hu__feature-icon {
    width: 200px; /* Min size 200x200 */
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu__feature-title {
    font-size: 1.4rem;
    color: #FFA53A;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-no-hu__feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF3E6;
}

/* --- How to Play Section --- */
.page-no-hu__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-no-hu__guide-step-item {
    background-color: #17191F;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #A84F0C;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-no-hu__step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 0 15px rgba(255, 165, 58, 0.5); /* Glow */
}

.page-no-hu__step-title {
    font-size: 1.3rem;
    color: #FFA53A;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-no-hu__step-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF3E6;
    text-align: center;
}
.page-no-hu__step-text a {
    color: #FFA53A;
    text-decoration: none;
    font-weight: bold;
}
.page-no-hu__step-text a:hover {
    text-decoration: underline;
}

/* --- Tips Section --- */
.page-no-hu__tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-no-hu__tip-item {
    background-color: #17191F;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #A84F0C;
    text-align: center;
}

.page-no-hu__tip-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    max-width: 100%;
    display: block;
}

.page-no-hu__tip-title {
    font-size: 1.3rem;
    color: #FFA53A;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-no-hu__tip-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF3E6;
}

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

/* --- Popular Games Section --- */
.page-no-hu__games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-no-hu__game-card {
    background-color: #17191F;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #A84F0C;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-no-hu__game-image {
    width: 100%;
    height: 180px; /* Fixed height for game cards */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    max-width: 100%;
    display: block;
}

.page-no-hu__game-title {
    font-size: 1.3rem;
    color: #FFA53A;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__game-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #FFF3E6;
    margin-bottom: 20px;
    flex-grow: 1; /* Allow description to take available space */
}

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

/* --- Benefits Section --- */
.page-no-hu__benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-no-hu__benefit-item {
    background-color: #17191F;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #A84F0C;
}

.page-no-hu__benefit-heading {
    font-size: 1.4rem;
    color: #FFA53A;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-no-hu__benefit-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF3E6;
}

/* --- FAQ Section --- */
.page-no-hu__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu__faq-item {
    background-color: #17191F;
    border: 1px solid #A84F0C;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: #FFA53A;
    cursor: pointer;
    background-color: #17191F;
    border-bottom: 1px solid transparent;
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-no-hu__faq-item[open] .page-no-hu__faq-question {
    border-bottom: 1px solid #A84F0C;
    background-color: #0D0E12; /* Slightly darker when open */
}

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

.page-no-hu__faq-qtext {
    flex-grow: 1;
    color: #FFA53A; /* Ensure question text color */
}

.page-no-hu__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    color: #FF8C1A; /* Toggle icon color */
}