.page-bnc {
    color: var(--text-main, #F2FFF6); 
    background-color: var(--bg-color, #08160F); 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

.page-bnc h1, .page-bnc h2, .page-bnc h3, .page-bnc h4, .page-bnc h5, .page-bnc h6 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.page-bnc__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 20px 60px; 
    background: var(--card-bg, #11271B); 
    border-bottom: 2px solid var(--divider-color, #1E3A2A);
}

.page-bnc__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 30px;
}

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

.page-bnc__hero-content {
    max-width: 900px;
    padding: 0 15px;
}

.page-bnc__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); 
    color: var(--text-main, #F2FFF6);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 0.05em;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); 
}

.page-bnc__hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
}

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

.page-bnc__btn-primary,
.page-bnc__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    max-width: 100%; 
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-bnc__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-bnc__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(87, 227, 141, 0.4); 
}

.page-bnc__btn-secondary {
    background: transparent;
    color: var(--main-color, #11A84E); 
    border: 2px solid var(--main-color, #11A84E);
}

.page-bnc__btn-secondary:hover {
    background: var(--main-color, #11A84E);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(17, 168, 78, 0.4);
}

.page-bnc__section-title {
    font-size: 2.5rem;
    color: var(--gold-color, #F2C14E); 
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.3);
}

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

.page-bnc__content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-bnc__about-section,
.page-bnc__how-to-play-section,
.page-bnc__why-choose-section,
.page-bnc__faq-section {
    padding: 80px 0;
    background-color: var(--bg-color, #08160F);
    color: var(--text-main, #F2FFF6);
}

.page-bnc__image-inline {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-bnc__features-section,
.page-bnc__providers-section,
.page-bnc__cta-section {
    padding: 80px 0;
    background-color: var(--card-bg, #11271B); 
    color: var(--text-main, #F2FFF6);
}

.page-bnc__dark-section {
    background-color: var(--card-bg, #11271B);
    color: var(--text-main, #F2FFF6);
}

.page-bnc__light-bg {
    background-color: var(--bg-color, #08160F); 
    color: var(--text-main, #F2FFF6);
}

.page-bnc__features-grid,
.page-bnc__providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-bnc__feature-card,
.page-bnc__provider-card {
    background-color: var(--deep-green, #0A4B2C); 
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--divider-color, #1E3A2A);
}

.page-bnc__feature-card:hover,
.page-bnc__provider-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(87, 227, 141, 0.3);
}

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

.page-bnc__card-title {
    font-size: 1.4rem;
    color: var(--gold-color, #F2C14E);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-bnc__card-description {
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
}

.page-bnc__steps-list,
.page-bnc__tips-list,
.page-bnc__why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-bnc__step-item,
.page-bnc__tip-item,
.page-bnc__why-item {
    background-color: var(--deep-green, #0A4B2C);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--divider-color, #1E3A2A);
}

.page-bnc__step-title,
.page-bnc__tip-title,
.page-bnc__why-title {
    font-size: 1.3rem;
    color: var(--main-color, #11A84E);
    margin-bottom: 10px;
    font-weight: bold;
}

.page-bnc__step-item p,
.page-bnc__tip-item p,
.page-bnc__why-item p {
    color: var(--text-secondary, #A7D9B8);
    font-size: 1rem;
}

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

.page-bnc__faq-item {
    background-color: var(--deep-green, #0A4B2C);
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--divider-color, #1E3A2A);
}

.page-bnc__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--gold-color, #F2C14E);
    cursor: pointer;
    list-style: none; 
    outline: none;
}

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

.page-bnc__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    color: var(--glow-color, #57E38D);
}

.page-bnc__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary, #A7D9B8);
    line-height: 1.7;
}

.page-bnc__cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: var(--deep-green, #0A4B2C);
}

.page-bnc__cta-description {
    font-size: 1.2rem;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .page-bnc__section-title {
        font-size: 2rem;
    }
    .page-bnc__hero-content {
        padding: 0 10px;
    }
}

@media (max-width: 768px) {
    .page-bnc {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-bnc__hero-section {
        padding: 10px 15px 40px;
    }
    .page-bnc__main-title {
        font-size: clamp(2rem, 8vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-bnc__hero-description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-bnc__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-bnc__btn-primary,
    .page-bnc__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-bnc__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-bnc__about-section,
    .page-bnc__how-to-play-section,
    .page-bnc__why-choose-section,
    .page-bnc__faq-section,
    .page-bnc__features-section,
    .page-bnc__providers-section,
    .page-bnc__cta-section {
        padding: 50px 0;
    }
    .page-bnc__content-wrapper,
    .page-bnc__features-grid,
    .page-bnc__providers-grid,
    .page-bnc__faq-list {
        padding: 0 15px;
    }
    .page-bnc__image-inline,
    .page-bnc__card-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-bnc__feature-card,
    .page-bnc__provider-card,
    .page-bnc__step-item,
    .page-bnc__tip-item,
    .page-bnc__why-item,
    .page-bnc__faq-item {
        padding: 20px;
    }
    .page-bnc__card-title,
    .page-bnc__step-title,
    .page-bnc__tip-title,
    .page-bnc__why-title {
        font-size: 1.2rem;
    }
    .page-bnc__faq-item summary {
        font-size: 1.05rem;
        padding: 15px 20px;
    }
    .page-bnc__faq-answer {
        padding: 0 20px 15px;
    }
    .page-bnc__hero-image-wrapper,
    .page-bnc__content-wrapper,
    .page-bnc__features-grid,
    .page-bnc__providers-grid,
    .page-bnc__faq-list,
    .page-bnc__cta-buttons {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}