/* style/no-hu.css */
.page-no-hu {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light body background */
    background-color: #FFFFFF; /* Explicitly set for clarity */
}

/* Hero Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* As per rule for non-header-offset */
    padding-bottom: 40px;
    background-color: #f0f8ff; /* Light blue tint for hero */
}

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

.page-no-hu__hero-content {
    flex: 1 1 45%;
    min-width: 300px;
    color: #1e1765; /* Darker blue for contrast */
}

.page-no-hu__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Clamp for responsive H1 */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #26A9E0; /* Brand color for main title */
}

.page-no-hu__hero-description {
    font-size: 1.125rem;
    margin-bottom: 24px;
    color: #333333;
}

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Crucial for responsiveness */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    max-width: 100%; /* For mobile buttons, overridden by media query */
}

.page-no-hu__btn-primary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #26A9E0;
}

.page-no-hu__btn-primary:hover {
    background-color: #1e87b7;
    border-color: #1e87b7;
}

.page-no-hu__btn-secondary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #26A9E0;
}

.page-no-hu__btn-secondary:hover {
    background-color: #e0f2f7;
    color: #1e87b7;
    border-color: #1e87b7;
}

.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: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* General Section Styles */
.page-no-hu__container {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
}

.page-no-hu__section-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #26A9E0;
}

.page-no-hu__section-title--white {
    color: #FFFFFF;
}

.page-no-hu__text-block {
    font-size: 1.05rem;
    margin-bottom: 15px;
    text-align: justify;
    color: #333333;
}

.page-no-hu__light-bg {
    background-color: #FFFFFF;
}

.page-no-hu__dark-bg {
    background-color: #26A9E0;
    color: #FFFFFF; /* Ensure white text on dark background */
}
.page-no-hu__dark-bg .page-no-hu__text-block,
.page-no-hu__dark-bg .page-no-hu__feature-description {
    color: #FFFFFF; /* Ensure white text on dark background for paragraphs */
}

/* Intro Section */
.page-no-hu__intro-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

/* Features Section */
.page-no-hu__features-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-no-hu__feature-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white on brand color */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-no-hu__feature-item:hover {
    transform: translateY(-5px);
}

.page-no-hu__feature-icon {
    width: 120px; /* Fixed size for feature icons */
    height: 120px;
    object-fit: cover;
    border-radius: 50%; /* Make it circular */
    margin: 0 auto 20px; /* Center it */
    border: 4px solid #FFFFFF;
    display: block; /* Ensure it's a block element for margin auto to work */
}

.page-no-hu__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #FFFFFF;
}

.page-no-hu__feature-description {
    font-size: 1rem;
    color: #f0f0f0;
}

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

/* Popular Games Section */
.page-no-hu__popular-games-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-no-hu__game-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.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.3rem;
    font-weight: 600;
    margin: 15px 10px 10px;
    color: #26A9E0;
}

.page-no-hu__game-card-description {
    font-size: 0.95rem;
    color: #555555;
    padding: 0 15px 15px;
}

.page-no-hu__btn-small {
    padding: 8px 18px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

/* Guide Section */
.page-no-hu__guide-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-no-hu__guide-step-item {
    background-color: #f0f8ff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-no-hu__guide-step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #EA7C07; /* Login color for highlight */
    margin-bottom: 10px;
}

.page-no-hu__guide-step-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #26A9E0;
}

.page-no-hu__guide-step-description {
    font-size: 1rem;
    color: #555555;
}

.page-no-hu__guide-image-container {
    margin-top: 50px;
    text-align: center;
}

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

/* FAQ Section */
.page-no-hu__faq-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.page-no-hu__faq-list {
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-no-hu__faq-item {
    background-color: rgba(255, 255, 255, 0.9); /* Semi-transparent white on brand color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333333; /* Dark text on light background */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    background-color: #FFFFFF;
    border-bottom: 1px solid #e0e0e0;
    color: #26A9E0;
    list-style: none; /* For details/summary */
}

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

.page-no-hu__faq-question:hover {
    background-color: #f5f5f5;
}

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

.page-no-hu__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #EA7C07;
    margin-left: 15px;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    color: #26A9E0;
}

.page-no-hu__faq-answer {
    padding: 15px 25px 20px;
    font-size: 1rem;
    color: #555555;
    line-height: 1.7;
    background-color: #fdfdfd;
}

/* Bottom CTA Section */
.page-no-hu__cta-bottom-section {
    padding-top: 60px;
    padding-bottom: 60px;
    text-align: center;
}

.page-no-hu__cta-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.page-no-hu__btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

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

    .page-no-hu__hero-content,
    .page-no-hu__hero-image {
        flex: 1 1 100%;
    }

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

    .page-no-hu__game-cards-grid,
    .page-no-hu__features-grid,
    .page-no-hu__guide-steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    /* General Mobile Styles */
    .page-no-hu {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-no-hu__container {
        padding: 25px 15px !important; /* Ensure padding for all containers */
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-no-hu img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    /* Hero Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important; /* Specific rule for hero top padding */
        padding-bottom: 25px !important;
    }

    .page-no-hu__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 10px;
    }

    .page-no-hu__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .page-no-hu__hero-cta-buttons {
        flex-direction: column;
        gap: 10px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px; /* Add padding to container */
        padding-right: 15px; /* Add padding to container */
    }
    
    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary,
    .page-no-hu a[class*="button"],
    .page-no-hu a[class*="btn"] {
        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 */
    .page-no-hu__intro-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .page-no-hu__section-title {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
        margin-bottom: 20px;
    }

    .page-no-hu__text-block {
        font-size: 0.95rem;
    }

    /* Features Section */
    .page-no-hu__features-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .page-no-hu__features-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
    }

    .page-no-hu__feature-item {
        padding: 20px;
    }

    .page-no-hu__feature-icon {
        width: 100px !important; /* Adjust size for mobile */
        height: 100px !important;
        border: 3px solid #FFFFFF;
    }

    .page-no-hu__feature-title {
        font-size: 1.3rem;
    }

    /* Popular Games Section */
    .page-no-hu__popular-games-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .page-no-hu__game-cards-grid {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
    }

    .page-no-hu__game-card-image {
        height: 180px; /* Adjust height for mobile */
    }

    .page-no-hu__game-card-title {
        font-size: 1.2rem;
    }

    .page-no-hu__btn-small {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    /* Guide Section */
    .page-no-hu__guide-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .page-no-hu__guide-steps {
        grid-template-columns: 1fr; /* Single column */
        gap: 20px;
    }

    .page-no-hu__guide-step-item {
        padding: 20px;
    }

    .page-no-hu__guide-step-number {
        font-size: 2rem;
    }

    .page-no-hu__guide-step-title {
        font-size: 1.2rem;
    }

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

    /* FAQ Section */
    .page-no-hu__faq-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .page-no-hu__faq-list {
        margin-top: 25px;
    }

    .page-no-hu__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .page-no-hu__faq-toggle {
        font-size: 1.3rem;
    }

    .page-no-hu__faq-answer {
        padding: 10px 20px 15px;
        font-size: 0.95rem;
    }

    /* Bottom CTA Section */
    .page-no-hu__cta-bottom-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .page-no-hu__btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }
}