/* style/no-hu.css */

/* Root variables for colors */
:root {
    --page-no-hu-bg-color: #08160F;
    --page-no-hu-card-bg: #11271B;
    --page-no-hu-text-main: #F2FFF6;
    --page-no-hu-text-secondary: #A7D9B8;
    --page-no-hu-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --page-no-hu-border-color: #2E7A4E;
    --page-no-hu-glow-color: #57E38D;
    --page-no-hu-gold-color: #F2C14E;
    --page-no-hu-divider-color: #1E3A2A;
    --page-no-hu-deep-green: #0A4B2C;
    --page-no-hu-primary-color: #11A84E;
    --page-no-hu-secondary-color: #22C768;
}

/* Base styles for the page */
.page-no-hu {
    background-color: var(--page-no-hu-bg-color);
    color: var(--page-no-hu-text-main); /* Light text for dark background */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    padding-bottom: 40px; /* Ensure space above footer */
}

.page-no-hu a {
    color: var(--page-no-hu-glow-color);
    text-decoration: none;
}

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

/* Container for content */
.page-no-hu__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Section titles and descriptions */
.page-no-hu__section {
    padding: 60px 0;
}

.page-no-hu__section-title {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--page-no-hu-gold-color);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.page-no-hu__section-description {
    font-size: 18px;
    color: var(--page-no-hu-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-no-hu__text-center {
    text-align: center;
}

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-no-hu__btn-primary {
    background: var(--page-no-hu-btn-gradient);
    color: #ffffff; /* White text for dark button */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-no-hu__btn-secondary {
    background: transparent;
    color: var(--page-no-hu-glow-color); /* Glow color text */
    border: 2px solid var(--page-no-hu-glow-color);
    margin-left: 20px;
}

.page-no-hu__btn-secondary:hover {
    background: var(--page-no-hu-glow-color);
    color: var(--page-no-hu-bg-color); /* Dark text for glow background */
    transform: translateY(-2px);
}

.page-no-hu__btn-large {
    padding: 18px 40px;
    font-size: 20px;
}

/* Hero Section */
.page-no-hu__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    padding-top: 10px; /* Small offset for the first section */
    box-sizing: border-box;
    overflow: hidden;
}

.page-no-hu__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.page-no-hu__hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay for readability */
    border-radius: 12px;
    margin-top: 50px; /* Adjust based on hero image and content flow */
}

.page-no-hu__main-title {
    font-size: clamp(36px, 5vw, 60px);
    color: var(--page-no-hu-gold-color);
    margin-bottom: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.page-no-hu__hero-description {
    font-size: 20px;
    color: var(--page-no-hu-text-main);
    margin-bottom: 40px;
    line-height: 1.5;
}

.page-no-hu__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Why Choose Us Section */
.page-no-hu__why-choose-us {
    background-color: var(--page-no-hu-deep-green);
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-no-hu__feature-card {
    background-color: var(--page-no-hu-card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--page-no-hu-border-color);
}

.page-no-hu__feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-no-hu__feature-icon {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

.page-no-hu__feature-title {
    font-size: 24px;
    color: var(--page-no-hu-gold-color);
    margin-bottom: 15px;
}

.page-no-hu__feature-text {
    font-size: 16px;
    color: var(--page-no-hu-text-secondary);
}

/* Featured Games Section */
.page-no-hu__featured-games {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-no-hu__game-card {
    background-color: var(--page-no-hu-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--page-no-hu-border-color);
    display: flex;
    flex-direction: column;
}

.page-no-hu__game-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-no-hu__game-thumbnail {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--page-no-hu-divider-color);
}

.page-no-hu__game-title {
    font-size: 22px;
    color: var(--page-no-hu-gold-color);
    padding: 20px 20px 10px;
}

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

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

.page-no-hu__game-description {
    font-size: 15px;
    color: var(--page-no-hu-text-secondary);
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-no-hu__btn-play {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 0;
    background: var(--page-no-hu-btn-gradient);
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

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

/* Guide for Newbies Section */
.page-no-hu__guide-for-newbies {
    background-color: var(--page-no-hu-deep-green);
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-no-hu__step-card {
    background-color: var(--page-no-hu-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-no-hu-border-color);
    display: flex;
    flex-direction: column;
}

.page-no-hu__step-title {
    font-size: 22px;
    color: var(--page-no-hu-gold-color);
    margin-bottom: 15px;
}

.page-no-hu__step-text {
    font-size: 16px;
    color: var(--page-no-hu-text-secondary);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Promotions Section */
.page-no-hu__promotions {
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-no-hu__promo-card {
    background-color: var(--page-no-hu-card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--page-no-hu-border-color);
    display: flex;
    flex-direction: column;
}

.page-no-hu__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.page-no-hu__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid var(--page-no-hu-divider-color);
}

.page-no-hu__promo-title {
    font-size: 22px;
    color: var(--page-no-hu-gold-color);
    padding: 20px 20px 10px;
}

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

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

.page-no-hu__promo-text {
    font-size: 15px;
    color: var(--page-no-hu-text-secondary);
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-no-hu__btn-view-details {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 10px 0;
    background: var(--page-no-hu-primary-color);
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
    font-weight: bold;
    transition: opacity 0.3s ease;
}

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

/* Security Info Section */
.page-no-hu__security-info {
    background-color: var(--page-no-hu-deep-green);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-no-hu__security-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-no-hu__security-item {
    background-color: var(--page-no-hu-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-no-hu-border-color);
}

.page-no-hu__security-heading {
    font-size: 22px;
    color: var(--page-no-hu-gold-color);
    margin-bottom: 15px;
}

.page-no-hu__security-text {
    font-size: 16px;
    color: var(--page-no-hu-text-secondary);
}

/* Download App Section */
.page-no-hu__download-app {
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-no-hu__app-download-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-no-hu__app-platform {
    background-color: var(--page-no-hu-card-bg);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--page-no-hu-border-color);
    width: 300px;
    box-sizing: border-box;
}

.page-no-hu__platform-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-no-hu__platform-title {
    font-size: 24px;
    color: var(--page-no-hu-gold-color);
    margin-bottom: 15px;
}

.page-no-hu__platform-text {
    font-size: 16px;
    color: var(--page-no-hu-text-secondary);
    margin-bottom: 25px;
}

/* FAQ Section */
.page-no-hu__faq-section {
    background-color: var(--page-no-hu-deep-green);
    padding-top: 80px;
    padding-bottom: 80px;
}

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

.page-no-hu__faq-item {
    background-color: var(--page-no-hu-card-bg);
    border: 1px solid var(--page-no-hu-border-color);
    border-radius: 12px;
    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: 20px 25px;
    font-size: 18px;
    font-weight: bold;
    color: var(--page-no-hu-gold-color);
    cursor: pointer;
    background-color: var(--page-no-hu-card-bg);
    transition: background-color 0.3s ease;
}

.page-no-hu__faq-question:hover {
    background-color: rgba(var(--page-no-hu-primary-color), 0.1);
}

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

.page-no-hu__faq-toggle {
    font-size: 24px;
    line-height: 1;
    margin-left: 15px;
    color: var(--page-no-hu-glow-color);
}

/* For details tag, hide default marker */
.page-no-hu__faq-item summary {
    list-style: none;
}

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

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    font-size: 16px;
    color: var(--page-no-hu-text-secondary);
    line-height: 1.6;
}

/* Call to Action Section */
.page-no-hu__call-to-action {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-no-hu__hero-content {
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .page-no-hu__section {
        padding: 40px 0;
    }

    .page-no-hu__section-title {
        font-size: 32px;
    }

    .page-no-hu__section-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .page-no-hu__hero-content {
        padding: 30px 15px;
        margin-top: 30px;
    }

    .page-no-hu__main-title {
        font-size: 40px;
    }

    .page-no-hu__hero-description {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .page-no-hu__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        width: 100% !important;
        margin-left: 0;
        margin-right: 0;
    }

    .page-no-hu__btn-large {
        padding: 16px 30px;
        font-size: 18px;
    }

    .page-no-hu__feature-icon {
        width: 120px;
    }

    .page-no-hu__feature-title,
    .page-no-hu__game-title,
    .page-no-hu__step-title,
    .page-no-hu__promo-title,
    .page-no-hu__security-heading {
        font-size: 20px;
    }

    .page-no-hu__game-thumbnail,
    .page-no-hu__promo-image {
        height: 180px;
    }

    .page-no-hu__app-download-grid {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .page-no-hu__app-platform {
        width: 100%;
        max-width: 350px;
    }

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

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

    .page-no-hu__section,
    .page-no-hu__card,
    .page-no-hu__container,
    .page-no-hu__hero-section,
    .page-no-hu__hero-content,
    .page-no-hu__why-choose-us,
    .page-no-hu__featured-games,
    .page-no-hu__guide-for-newbies,
    .page-no-hu__promotions,
    .page-no-hu__security-info,
    .page-no-hu__download-app,
    .page-no-hu__faq-section,
    .page-no-hu__call-to-action,
    .page-no-hu__game-card,
    .page-no-hu__promo-card,
    .page-no-hu__step-card,
    .page-no-hu__feature-card,
    .page-no-hu__app-platform {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-no-hu__hero-section {
      padding-top: 10px !important; /* body already handles --header-offset */
    }
    
    .page-no-hu__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0px;
        padding-right: 0px;
        flex-wrap: wrap !important;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-no-hu__main-title {
        font-size: 32px;
    }

    .page-no-hu__section-title {
        font-size: 28px;
    }

    .page-no-hu__hero-description {
        font-size: 16px;
    }

    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        font-size: 16px;
        padding: 12px 20px;
    }
    .page-no-hu__feature-icon {
        width: 100px;
    }
}