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

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

.page-bnc__hero-section {
    padding-top: 10px; /* Assumes shared.css handles body padding-top */
    padding-bottom: 40px;
    text-align: center;
    background-color: #B71C1C; /* Background */
}

.page-bnc__hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-bnc__hero-title {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #FFF5E1; /* Text Main */
    margin-bottom: 15px;
}

.page-bnc__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #FFF5E1; /* Text Main */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-bnc__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button color */
    color: #333333; /* Dark text for contrast on gold */
    border: 2px solid #F2B544; /* Border */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px #FFCC66; /* Glow */
}

.page-bnc__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 15px #FFCC66;
}

.page-bnc__btn-secondary {
    background-color: #ffffff;
    color: #C91F17; /* Primary color */
    border: 2px solid #C91F17;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-bnc__btn-secondary:hover {
    transform: translateY(-3px);
    background-color: #f0f0f0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-bnc__btn-text {
    color: #F4D34D; /* Gold */
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-bnc__btn-text:hover {
    color: #FFCC66; /* Glow */
}

.page-bnc__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #FFF5E1; /* Text Main */
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-bnc__section-description {
    font-size: 1.05em;
    line-height: 1.6;
    color: #FFF5E1; /* Text Main */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-bnc__dark-section {
    background-color: #B71C1C; /* Background */
    color: #FFF5E1; /* Text Main */
    padding: 60px 0;
}

.page-bnc__about-md5tx-section .page-bnc__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-bnc__sub-title {
    font-size: 1.6em;
    color: #F4D34D; /* Gold */
    margin-bottom: 15px;
}

.page-bnc__text-block p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.page-bnc__image-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-bnc__how-to-play-section {
    background-color: #C91F17; /* Primary color */
    padding: 60px 0;
}

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

.page-bnc__card {
    background-color: #D32F2F; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
}

.page-bnc__card-title {
    font-size: 1.4em;
    color: #F4D34D; /* Gold */
    margin-bottom: 15px;
    font-weight: 700;
}

.page-bnc__card p {
    font-size: 1em;
    line-height: 1.6;
    color: #FFF5E1; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1;
}

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

.page-bnc__card-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
    object-fit: cover;
}

.page-bnc__promotions-section {
    background-color: #C91F17; /* Primary color */
    padding: 60px 0;
}

.page-bnc__cta-contact {
    text-align: center;
    margin-top: 40px;
}

.page-bnc__faq-section {
    background-color: #C91F17; /* Primary color */
    padding: 60px 0;
}

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

.page-bnc__faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #D32F2F; /* Card BG */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-bnc__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: #F4D34D; /* Gold */
    background-color: #7A0E0E; /* Deep Red */
    border-bottom: 1px solid #F2B544; /* Border */
    list-style: none;
}

.page-bnc__faq-question::-webkit-details-marker {
    display: none;
}

.page-bnc__faq-question:hover {
    background-color: #5a0b0b;
}

.page-bnc__faq-item[open] .page-bnc__faq-question {
    border-bottom: 1px solid #F2B544; /* Border */
}

.page-bnc__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #FFF5E1; /* Text Main */
}

.page-bnc__faq-answer {
    padding: 20px 30px;
    font-size: 1em;
    line-height: 1.7;
    color: #FFF5E1; /* Text Main */
    background-color: #D32F2F; /* Card BG */
}

.page-bnc__faq-answer p {
    margin-bottom: 10px;
}

.page-bnc__conclusion-section {
    padding: 60px 0;
    text-align: center;
}

.page-bnc__conclusion-cta {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-bnc__container {
        padding: 0 15px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-bnc__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px !important;
    }

    .page-bnc__hero-title {
        font-size: 2em !important;
        line-height: 1.3 !important;
    }

    .page-bnc__hero-description {
        font-size: 1em !important;
        margin-bottom: 20px !important;
    }

    .page-bnc__hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        padding: 0 15px;
    }

    .page-bnc__btn-primary,
    .page-bnc__btn-secondary,
    .page-bnc a[class*="button"],
    .page-bnc a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }

    .page-bnc__about-md5tx-section .page-bnc__content-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .page-bnc__section-title {
        font-size: 1.8em !important;
        padding-top: 30px !important;
    }

    .page-bnc__section-description {
        font-size: 0.95em !important;
        margin-bottom: 30px !important;
    }

    .page-bnc__steps-grid,
    .page-bnc__features-grid,
    .page-bnc__promotions-grid,
    .page-bnc__security-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .page-bnc__card {
        padding: 25px !important;
        text-align: left !important;
    }

    .page-bnc__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin-left: auto;
        margin-right: auto;
    }

    .page-bnc__faq-question {
        font-size: 1.1em !important;
        padding: 15px 20px !important;
    }

    .page-bnc__faq-answer {
        padding: 15px 20px !important;
        font-size: 0.95em !important;
    }

    .page-bnc__dark-section,
    .page-bnc__how-to-play-section,
    .page-bnc__promotions-section,
    .page-bnc__security-section,
    .page-bnc__faq-section,
    .page-bnc__conclusion-section {
        padding: 40px 0 !important;
    }

    /* Ensure all content image containers are responsive */
    .page-bnc__section,
    .page-bnc__card,
    .page-bnc__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Specific rule for images within content areas to prevent overflow */
    .page-bnc img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}