.page-nh {
    font-family: 'Arial', sans-serif;
    color: #FFF6D6; /* Text Main */
    background-color: #0A0A0A; /* Background */
}

.page-nh__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, not var(--header-offset) */
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    min-height: 500px;
}

.page-nh__hero-image {
    width: 100%;
    height: 675px;
    object-fit: cover;
    display: block;
}

.page-nh__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 40px auto 80px;
    padding: 0 20px;
}

.page-nh__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFD36B; /* Glow */
    text-shadow: 0 0 10px rgba(255, 211, 107, 0.5);
}

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

.page-nh__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-nh__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-nh__cta-button--secondary {
    background: #111111; /* Card BG */
    border: 2px solid #F2C14E; /* Main Color */
    color: #F2C14E; /* Main Color */
    box-shadow: none;
}

.page-nh__cta-button--secondary:hover {
    background: #F2C14E;
    color: #111111;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.4);
}

.page-nh__section-spacing {
    padding: 60px 0;
}

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

.page-nh__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #FFD36B; /* Glow */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 211, 107, 0.3);
}

.page-nh__text-block, .page-nh__description-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #FFF6D6;
    margin-bottom: 20px;
    text-align: justify;
}

.page-nh__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.page-nh__content-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    display: block;
}

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

.page-nh__feature-item {
    background-color: #111111; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A2A12; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-nh__feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 211, 107, 0.2);
}

.page-nh__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: brightness(1.2);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-nh__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #F2C14E; /* Main Color */
    margin-bottom: 15px;
}

.page-nh__feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #FFF6D6;
}

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

.page-nh__game-card {
    background-color: #111111; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #3A2A12; /* Border */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-nh__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 211, 107, 0.2);
}

.page-nh__game-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-nh__game-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #F2C14E; /* Main Color */
    padding: 20px 20px 10px;
}

.page-nh__game-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #FFF6D6;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-nh__guide-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-nh__guide-list li {
    background-color: #111111; /* Card BG */
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 1px solid #3A2A12; /* Border */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-nh__guide-step-title {
    font-size: 1.3rem;
    color: #FFD36B; /* Glow */
    margin-bottom: 10px;
}

.page-nh__guide-step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF6D6;
}

.page-nh__tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.page-nh__tips-list li {
    background-color: #111111; /* Card BG */
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #3A2A12; /* Border */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-nh__tip-title {
    font-size: 1.3rem;
    color: #FFD36B; /* Glow */
    margin-bottom: 10px;
}

.page-nh__tip-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF6D6;
}

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

.page-nh__promo-card {
    background-color: #111111; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #3A2A12; /* Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-nh__promo-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Main Color */
    margin-bottom: 15px;
}

.page-nh__promo-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF6D6;
}

.page-nh__button-group {
    text-align: center;
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

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

.page-nh__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-nh__faq-item summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F2C14E; /* Main Color */
    outline: none;
    position: relative;
}

.page-nh__faq-item summary::-webkit-details-marker, 
.page-nh__faq-item summary::marker {
    display: none;
}

.page-nh__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-nh__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: #FFD36B; /* Glow */
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-nh__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #FFF6D6;
}

.page-nh__conclusion-section {
    text-align: center;
}

/* General Image Responsiveness */
.page-nh img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-nh__hero-section {
        min-height: 400px;
        padding-top: 10px !important;
    }

    .page-nh__hero-image {
        height: 400px;
    }

    .page-nh__hero-content {
        margin: 20px auto 40px;
        padding: 0 15px;
    }

    .page-nh__main-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .page-nh__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-nh__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-nh__section-spacing {
        padding: 40px 0;
    }

    .page-nh__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-nh__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-nh__text-block, .page-nh__description-text {
        font-size: 0.95rem;
    }

    .page-nh__content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .page-nh__content-image {
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
    }

    .page-nh__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-nh__feature-item {
        padding: 20px;
    }

    .page-nh__feature-icon {
        width: 60px;
        height: 60px;
        min-width: 200px !important; /* Enforce minimum size */
        min-height: 200px !important; /* Enforce minimum size */
    }

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

    .page-nh__game-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-nh__game-card {
        padding-bottom: 0;
    }

    .page-nh__game-image {
        height: 200px;
    }

    .page-nh__game-title {
        font-size: 1.4rem;
        padding: 15px 15px 5px;
    }

    .page-nh__game-description {
        font-size: 0.9rem;
        padding: 0 15px 15px;
    }

    .page-nh__guide-list li,
    .page-nh__tips-list li {
        padding: 20px;
        margin-bottom: 15px;
    }

    .page-nh__guide-step-title,
    .page-nh__tip-title {
        font-size: 1.2rem;
    }

    .page-nh__guide-step-description,
    .page-nh__tip-description {
        font-size: 0.95rem;
    }

    .page-nh__promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-nh__promo-card {
        padding: 25px;
    }

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

    .page-nh__faq-item summary {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-nh__faq-toggle {
        font-size: 1.5rem;
    }

    .page-nh__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95rem;
    }

    .page-nh img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-nh__button-group {
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }

    .page-nh__button-group .page-nh__cta-button {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}