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

.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #E53935 0%, #C91F17 100%); /* Using brand auxiliary and main colors */
    color: #FFF5E1; /* Text Main for dark background */
}

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

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

.page-no-hu__main-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFF5E1;
}

.page-no-hu__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #FFF5E1;
}

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

.page-no-hu__cta-buttons--center {
    justify-content: center;
    margin-top: 40px;
}

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
}

.page-no-hu__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Custom button color */
    color: #7A0E0E; /* Deep Red for contrast on gold button */
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-no-hu__btn-primary:hover {
    background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-no-hu__btn-secondary {
    background: #FFF5E1; /* Text Main color as background */
    color: #C91F17; /* Main brand color as text */
    border: 2px solid #F2B544; /* Border color */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-no-hu__btn-secondary:hover {
    background: #F2B544; /* Border color as background */
    color: #FFF5E1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.page-no-hu__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: block;
    margin: 0 auto;
}

.page-no-hu__content-area {
    max-width: 1170px;
    margin: 0 auto;
    padding: 40px 16px;
}

.page-no-hu__section-title {
    font-size: 2.5em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
    color: #C91F17; /* Main brand color */
}

.page-no-hu__dark-section {
    background: #B71C1C; /* Custom background color */
    color: #FFF5E1; /* Text Main for dark background */
    padding: 60px 0;
}

.page-no-hu__dark-section .page-no-hu__section-title {
    color: #FFF5E1; /* Text Main for dark background */
}

.page-no-hu__intro-section .page-no-hu__features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
}

.page-no-hu__feature-item {
    flex: 1 1 30%;
    min-width: 280px;
    text-align: center;
    background: #D32F2F; /* Custom Card BG */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    color: #FFF5E1; /* Text Main for dark background */
}

.page-no-hu__icon-box-media {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #F2B544; /* Custom border color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-no-hu__icon-box-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%; /* Ensure circular crop */
    display: block;
}

.page-no-hu__feature-title {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFF5E1; /* Text Main for dark background */
}

.page-no-hu__game-list-section {
    padding: 60px 0;
}

.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: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.page-no-hu__game-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-no-hu__game-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.page-no-hu__game-card img {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-no-hu__game-title {
    font-size: 1.3em;
    font-weight: bold;
    padding: 15px;
    color: #C91F17; /* Main brand color */
    text-align: center;
}

.page-no-hu__guide-section {
    padding: 60px 0;
}

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

.page-no-hu__guide-step {
    background: #D32F2F; /* Custom Card BG */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    color: #FFF5E1; /* Text Main for dark background */
}

.page-no-hu__step-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFF5E1; /* Text Main for dark background */
}

.page-no-hu__tips-section {
    padding: 60px 0;
}

.page-no-hu__tips-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-no-hu__tips-list li {
    background: #ffffff;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    color: #333333;
}

.page-no-hu__tip-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #C91F17; /* Main brand color */
}

.page-no-hu__promo-section {
    padding: 60px 0;
}

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

.page-no-hu__promo-card {
    background: #D32F2F; /* Custom Card BG */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    color: #FFF5E1; /* Text Main for dark background */
    display: flex;
    flex-direction: column;
}

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

.page-no-hu__promo-card .page-no-hu__promo-title {
    font-size: 1.4em;
    font-weight: bold;
    padding: 15px 15px 5px;
    color: #FFF5E1;
}

.page-no-hu__promo-card .page-no-hu__promo-desc {
    padding: 0 15px 15px;
    flex-grow: 1;
}

.page-no-hu__promo-card .page-no-hu__btn-secondary {
    margin: 0 15px 15px;
    align-self: flex-start;
    width: calc(100% - 30px);
    max-width: none; /* Override default max-width for card button */
}

.page-no-hu__faq-section {
    padding: 60px 0;
}

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

.page-no-hu__faq-item {
    background: #ffffff;
    border: 1px solid #F2B544; /* Custom border color */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    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: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: #C91F17; /* Main brand color */
    list-style: none; /* Remove default marker for details summary */
}

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

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

.page-no-hu__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #E53935;
}

.page-no-hu__faq-item[open] .page-no-hu__faq-toggle {
    content: '−';
}

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    color: #333333;
    font-size: 1em;
}

.page-no-hu__final-cta-section {
    padding: 80px 0;
    text-align: center;
}

.page-no-hu__final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-no-hu__final-cta-content .page-no-hu__section-title {
    margin-bottom: 20px;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-no-hu__main-title {
        font-size: 2.8em;
    }
    .page-no-hu__section-title {
        font-size: 2.2em;
    }
    .page-no-hu__hero-container {
        flex-direction: column;
        text-align: center;
    }
    .page-no-hu__hero-content {
        text-align: center;
    }
    .page-no-hu__cta-buttons {
        justify-content: center;
    }
    .page-no-hu__icon-box-media {
        width: 140px;
        height: 140px;
    }
}