.page-no-hu {
    font-family: Arial, sans-serif;
    color: #FFF5E1; /* Text Main */
    background-color: #B71C1C; /* Background */
}

.page-no-hu__hero-section {
    padding-top: 10px; /* Small top padding */
    padding-bottom: 60px;
    background-color: #7A0E0E; /* Deep Red */
}

.page-no-hu__hero-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    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: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FFD86A; /* Gold-like for title */
}

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

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

.page-no-hu__btn-primary,
.page-no-hu__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    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: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
    color: #7A0E0E; /* Deep Red for contrast */
    border: 2px solid #F4D34D; /* Gold border */
}

.page-no-hu__btn-primary:hover {
    background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
    box-shadow: 0 0 15px rgba(255, 216, 106, 0.7);
}

.page-no-hu__btn-secondary {
    background-color: transparent;
    color: #FFD86A; /* Gold-like */
    border: 2px solid #FFD86A; /* Gold-like border */
}

.page-no-hu__btn-secondary:hover {
    background-color: #FFD86A;
    color: #7A0E0E;
    box-shadow: 0 0 15px rgba(255, 216, 106, 0.5);
}

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

.page-no-hu__hero-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

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

.page-no-hu__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD86A; /* Gold-like */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-no-hu__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F4D34D, transparent);
    border-radius: 2px;
}

.page-no-hu__text-block {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #FFF5E1;
    text-align: justify;
}

.page-no-hu__highlight {
    color: #FFD86A;
    font-weight: 700;
}

.page-no-hu__intro-section {
    padding-bottom: 60px;
}

.page-no-hu__game-types-section {
    background-color: #D32F2F; /* Card BG */
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-no-hu__game-card {
    background-color: #7A0E0E; /* Deep Red */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-no-hu__game-card-media {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    overflow: hidden;
}

.page-no-hu__game-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-no-hu__game-card-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-no-hu__game-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.page-no-hu__game-card-title a {
    color: #FFD86A;
    text-decoration: none;
}

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

.page-no-hu__game-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #FFF5E1;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-no-hu__card-link {
    display: inline-block;
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%);
    color: #7A0E0E;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-no-hu__card-link:hover {
    background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
}

.page-no-hu__advantages-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-no-hu__advantage-item {
    background-color: #D32F2F; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.page-no-hu__advantage-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #F4D34D; /* Gold */
    margin-bottom: 15px;
}

.page-no-hu__advantage-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF5E1;
}

.page-no-hu__guide-section {
    background-color: #7A0E0E; /* Deep Red */
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-no-hu__guide-step {
    background-color: #B71C1C; /* Background */
    padding: 30px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
}

.page-no-hu__step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: #FFD86A; /* Button color */
    color: #7A0E0E; /* Deep Red for contrast */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    border: 2px solid #F4D34D; /* Gold border */
}

.page-no-hu__step-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #FFD86A; /* Gold-like */
    margin-bottom: 15px;
    padding-top: 20px;
}

.page-no-hu__step-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #FFF5E1;
}

.page-no-hu__step-description a {
    color: #F4D34D;
    text-decoration: underline;
}

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

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

.page-no-hu__promo-item {
    background-color: #D32F2F; /* Card BG */
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #FFF5E1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-left: 45px;
}

.page-no-hu__promo-item::before {
    content: '⭐'; /* Unicode star or similar icon */
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: #F4D34D;
}

.page-no-hu__button-group {
    text-align: center;
    margin-top: 40px;
}

.page-no-hu__faq-section {
    background-color: #D32F2F; /* Card BG */
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-no-hu__faq-item {
    background-color: #7A0E0E; /* Deep Red */
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-no-hu__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFD86A;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.page-no-hu__faq-item summary:hover {
    background-color: #B71C1C; /* Background */
}

.page-no-hu__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-no-hu__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: #FFF5E1;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-no-hu__faq-answer p {
    margin-top: 15px;
    margin-bottom: 0;
}

.page-no-hu__faq-answer a {
    color: #F4D34D;
    text-decoration: underline;
}

.page-no-hu__cta-bottom-section {
    padding-top: 60px;
    padding-bottom: 80px;
    text-align: center;
}

.page-no-hu__cta-bottom-section .page-no-hu__section-title {
    margin-bottom: 20px;
}

.page-no-hu__cta-bottom-section .page-no-hu__text-block {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-no-hu__cta-bottom-section .page-no-hu__cta-buttons {
    justify-content: center;
}

.page-no-hu__footer-content {
    padding: 30px 16px;
    background-color: #C91F17; /* Main Color */
    text-align: center;
    border-top: 1px solid #F4D34D; /* Border */
}

.page-no-hu__copyright {
    font-size: 0.9rem;
    color: #FFF5E1;
    margin: 0;
}

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

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

    .page-no-hu__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px !important;
    }

    .page-no-hu__hero-container {
        flex-direction: column;
        text-align: center;
        padding: 30px 15px;
        gap: 30px;
    }

    .page-no-hu__hero-content {
        text-align: center;
        min-width: unset;
    }

    .page-no-hu__main-title {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

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

    .page-no-hu__cta-buttons {
        flex-direction: column;
        gap: 10px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-no-hu__btn-primary,
    .page-no-hu__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-no-hu__hero-image {
        min-width: unset;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    .page-no-hu__container,
    .page-no-hu__game-cards-grid,
    .page-no-hu__advantages-grid,
    .page-no-hu__guide-steps,
    .page-no-hu__promo-list,
    .page-no-hu__faq-list {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-no-hu__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-no-hu__game-card-media {
        height: 180px;
    }

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

    .page-no-hu__advantage-title {
        font-size: 1.5rem;
    }

    .page-no-hu__step-title {
        font-size: 1.4rem;
        padding-top: 10px;
    }

    .page-no-hu__faq-item summary {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .page-no-hu__faq-answer {
        padding: 0 20px 15px;
    }

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

    /* Ensure content sections have proper padding for mobile */
    .page-no-hu__intro-section,
    .page-no-hu__game-types-section,
    .page-no-hu__advantages-section,
    .page-no-hu__guide-section,
    .page-no-hu__promo-section,
    .page-no-hu__faq-section,
    .page-no-hu__cta-bottom-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-no-hu__game-card,
    .page-no-hu__advantage-item,
    .page-no-hu__guide-step,
    .page-no-hu__promo-item,
    .page-no-hu__faq-item {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}