:root {
    --primary-color: #113B7A;
    --accent-color: #1D5FD1;
    --button-gradient: linear-gradient(180deg, #2B73F6 0%, #1144A6 100%);
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy: #08162B; /* Assuming this is the body background from shared.css */
}

/* Base styles for the page content */
.page-no-hu {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* Light text for dark body background */
    background-color: var(--deep-navy); /* Ensure consistency if body background is not fully propagated */
    padding-bottom: 60px; /* Add some padding at the bottom */
}

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

.page-no-hu__section-title {
    font-size: 2.5rem;
    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.1rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Buttons */
.page-no-hu__btn-primary,
.page-no-hu__btn-secondary,
.page-no-hu__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
    box-sizing: border-box; /* Ensure padding is included in width */
    max-width: 100%; /* Important for responsiveness */
}

.page-no-hu__btn-primary {
    background: var(--button-gradient);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-secondary {
    background: transparent;
    color: var(--glow-color);
    border: 2px solid var(--glow-color);
}

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

.page-no-hu__card-btn {
    background: var(--button-gradient);
    color: var(--text-main);
    font-size: 1rem;
    padding: 10px 20px;
    margin-top: 15px;
}

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

/* Hero Section */
.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, relies on body padding-top for header offset */
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
    background-color: var(--deep-navy);
}

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

.page-no-hu__hero-content {
    flex: 1 1 50%;
    min-width: 300px;
    text-align: left;
    color: var(--text-main);
}

.page-no-hu__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Using clamp for H1 */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-no-hu__hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

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

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

.page-no-hu__hero-side-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    display: block; /* Ensure no extra space below image */
}

/* Intro Section */
.page-no-hu__intro-section {
    padding: 60px 0;
    background-color: var(--deep-navy); /* Ensure section background is consistent */
}

.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: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-no-hu__feature-icon {
    width: 100%; /* Take full width of its container */
    height: auto; /* Maintain aspect ratio */
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

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

.page-no-hu__feature-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Games Showcase Section */
.page-no-hu__games-showcase {
    padding: 60px 0;
    background-color: var(--deep-navy);
}

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

.page-no-hu__game-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure cards are same height */
}

.page-no-hu__game-thumbnail {
    width: 100%;
    height: 200px; /* Fixed height for thumbnails, or aspect ratio */
    object-fit: cover;
    display: block;
}

.page-no-hu__game-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin: 15px 15px 10px;
    font-weight: bold;
}

.page-no-hu__game-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    padding: 0 15px 15px;
    flex-grow: 1; /* Pushes button to bottom */
}

/* Benefits Section */
.page-no-hu__benefits-section {
    padding: 60px 0;
    background-color: var(--deep-navy);
}

.page-no-hu__benefits-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: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-no-hu__benefit-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__benefit-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

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

.page-no-hu__step-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.page-no-hu__step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--glow-color);
    margin-bottom: 15px;
}

.page-no-hu__step-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-no-hu__step-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

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

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

.page-no-hu__promo-card {
    background-color: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.page-no-hu__promo-image {
    width: 100%;
    height: 220px; /* Fixed height for promo images */
    object-fit: cover;
    display: block;
}

.page-no-hu__promo-title {
    font-size: 1.4rem;
    color: var(--gold-color);
    margin: 15px 15px 10px;
    font-weight: bold;
}

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

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

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

.page-no-hu__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    transform: rotate(45deg); /* Change to X or rotate + to - */
}

.page-no-hu__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--gold-color);
    cursor: pointer;
    background-color: var(--card-bg);
    list-style: none; /* Hide default marker */
    position: relative;
    user-select: none;
}

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

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

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-answer {
    max-height: 500px; /* Sufficiently large to show content */
    transition: max-height 0.5s ease-in;
}

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

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .page-no-hu__hero-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-no-hu__section-title {
        font-size: 2.2rem;
    }
    .page-no-hu__feature-icon {
        min-width: 200px;
        min-height: 200px;
    }
    .page-no-hu__game-thumbnail {
        height: 180px;
    }
    .page-no-hu__promo-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    /* General mobile styles */
    .page-no-hu {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-no-hu__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }
    .page-no-hu__section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    .page-no-hu__section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* HERO Section */
    .page-no-hu__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 40px;
    }
    .page-no-hu__hero-container {
        flex-direction: column;
        padding: 30px 15px;
        gap: 30px;
    }
    .page-no-hu__hero-content {
        flex: 1 1 100%;
        text-align: center;
    }
    .page-no-hu__hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem); /* Adjust for smaller screens */
        margin-bottom: 15px;
    }
    .page-no-hu__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-no-hu__hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
}